/* =====================================================================
   CSS RESET & BASE NORMALIZATION
====================================================================== */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p,
blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, 
img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, 
i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, 
caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, 
embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby,
section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  font-family: 'Roboto', Arial, sans-serif;
  background: #F7F7F9;
  color: #1C2331;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}
img, picture, video, canvas, svg {
  display: inline-block;
  max-width: 100%;
  height: auto;
}
a {
  color: #1C2331;
  text-decoration: none;
  transition: color 0.2s;
}
a:focus {
  outline: 2px solid #36B37E;
  outline-offset: 2px;
}
display, abbr[title] {
  border-bottom: 1px dotted #aaa;
  cursor: help;
}
ul, ol {
  margin-left: 1.5em;
  margin-bottom: 16px;
}
li {
  margin-bottom: 8px;
}

/* =====================================================================
   COLOR CUSTOM PROPERTIES (SCANDINAVIAN CLEAN + BRAND)
====================================================================== */
:root {
  --primary: #1C2331;
  --secondary: #36B37E;
  --accent: #F7F7F9;
  --card-bg: #fff;
  --text-main: #1C2331;
  --text-muted: #757575;
  --border-light: #E8ECEF;
  --shadow: 0 2px 12px rgba(28,35,49,0.07);
  --radius: 14px;
  --radius-sm: 8px;
  --transition: 0.22s cubic-bezier(0.4,0,0.2,1);
}

/* =====================================================================
   TYPOGRAPHY
====================================================================== */
body {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  color: var(--text-main);
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 0.01em;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 16px;
  line-height: 1.15;
}
h2 {
  font-size: 2rem;
  margin-bottom: 14px;
}
h3 {
  font-size: 1.45rem;
  margin-bottom: 10px;
}
h4, h5, h6 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}
p, ul, ol {
  color: var(--text-main);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 14px;
}
strong {
  font-weight: 600;
  color: var(--primary);
}
.text-muted {
  color: var(--text-muted);
}

/* Typography scale, utility */
.text-section h2,
.text-section h3 {
  margin-top: 30px;
  margin-bottom: 14px;
}

/* =====================================================================
   LAYOUT UTILITIES & CONTAINER
====================================================================== */
.container {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 20px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: transparent;
}

@media (max-width: 900px) {
  .container {
    max-width: 99vw;
    padding: 0 10px;
  }
}
@media (max-width: 768px) {
  .section {
    margin-bottom: 40px;
    padding: 24px 8px;
  }
}

/* =====================================================================
   HEADER & NAVBAR (SCANDINAVIAN CLEAN)
====================================================================== */
header {
  background: var(--card-bg);
  box-shadow: 0 1px 8px rgba(28,35,49,0.07);
  position: relative;
  z-index: 100;
}
header nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 20px;
  min-height: 72px;
}
header nav > a img {
  height: 36px;
  vertical-align: middle;
}
header nav ul {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  list-style: none;
  align-items: center;
}
header nav ul li {
  margin: 0;
}
header nav ul li a {
  display: block;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 15px;
  color: var(--primary);
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  transition: background .14s;
}
header nav ul li a:hover,
header nav ul li a:focus {
  background: var(--accent);
  color: var(--secondary);
}
header .cta-button {
  margin-left: 20px;
}
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  color: var(--primary);
  cursor: pointer;
  margin-left: 12px;
}

@media (max-width: 900px) {
  header nav {
    padding: 0 10px;
  }
}
@media (max-width: 768px) {
  header nav ul,
  header .cta-button {
    display: none;
  }
  .mobile-menu-toggle {
    display: inline-block;
  }
}

/* =====================================================================
   MOBILE MENU (OFF CANVAS)
====================================================================== */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(28,35,49,0.87);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  transform: translateX(-100%);
  transition: transform 0.33s var(--transition);
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  margin: 22px 22px 0 0;
  background: none;
  color: #fff;
  border: none;
  font-size: 2.5rem;
  cursor: pointer;
  z-index: 10001;
  padding: 0 0.2em;
  transition: background 0.13s;
  border-radius: 50%;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  background: rgba(255,255,255,0.16);
}
.mobile-menu nav.mobile-nav {
  width: 90vw;
  max-width: 370px;
  background: var(--card-bg);
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 36px 36px 24px 32px;
  box-shadow: var(--shadow);
  border-top-left-radius: var(--radius);
  border-bottom-left-radius: var(--radius);
  margin-top: 0;
  overflow-y: auto;
}
.mobile-menu nav.mobile-nav a {
  color: var(--primary);
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 20px;
  padding: 12px 0;
  width: 95%;
  border-radius: var(--radius-sm);
  transition: background 0.13s, color 0.13s;
}
.mobile-menu nav.mobile-nav a:hover, 
.mobile-menu nav.mobile-nav a:focus {
  background: var(--accent);
  color: var(--secondary);
}
@media (min-width: 769px) {
  .mobile-menu, .mobile-menu-toggle {
    display: none !important;
  }
}

/* =====================================================================
   BUTTONS, CTA, LINKS
====================================================================== */
.cta-button {
  display: inline-block;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.10rem;
  color: #fff !important;
  background: var(--secondary);
  padding: 13px 34px;
  border: none;
  border-radius: var(--radius);
  box-shadow: 0 2px 8px rgba(54,179,126,0.07);
  cursor: pointer;
  letter-spacing: 0.03em;
  margin-top: 5px;
  transition: background 0.19s, box-shadow 0.18s, transform 0.14s;
}
.cta-button:hover, .cta-button:focus {
  background: #299966;
  color: #fff;
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 4px 16px rgba(54,179,126,0.14);
}
a.button-link {
  color: var(--secondary);
  background: none;
  font-weight: 600;
  text-decoration: underline;
  transition: color .15s;
}
a.button-link:hover {
  color: #299966;
}

/* =====================================================================
   HERO SECTION
====================================================================== */
.hero {
  background: linear-gradient(111deg, var(--accent) 92%, #e7ecea 100%);
  border-bottom: 1px solid var(--border-light);
  min-height: 330px;
  display: flex;
  align-items: center;
  margin-bottom: 60px;
}
.hero .container {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 240px;
}
.hero .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
}
.hero h1 {
  color: var(--primary);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  font-size: 2.2rem;
  margin-bottom: 10px;
}
.hero p {
  color: var(--text-muted);
  margin-bottom: 5px;
  font-size: 1.15rem;
}

@media (max-width: 768px) {
  .hero {
    min-height: 220px;
    padding: 36px 0 16px 0;
    margin-bottom: 32px;
  }
  .hero h1 {
    font-size: 1.45rem;
  }
}

/* =====================================================================
   FLEX & CARD CONTAINERS (MANDATORY CLASSES)
====================================================================== */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: stretch;
  margin-bottom: 20px;
}
.card {
  background: var(--card-bg);
  box-shadow: var(--shadow);
  border-radius: var(--radius);
  min-width: 260px;
  margin-bottom: 20px;
  position: relative;
  padding: 28px 28px 22px 28px;
  flex: 1 1 300px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: box-shadow .22s, transform .15s;
}
.card:hover, .card:focus-within {
  box-shadow: 0 6px 24px rgba(28,35,49,0.11);
  transform: translateY(-2px) scale(1.01);
}

.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  align-items: stretch;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* =====================================================================
   FEATURES GRID
====================================================================== */
.features .feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 22px;
  justify-content: space-between;
}
.feature {
  background: var(--card-bg);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  flex: 1 1 240px;
  min-width: 225px;
  max-width: 360px;
  padding: 28px 22px 20px 22px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  position: relative;
  margin-bottom: 20px;
  transition: box-shadow .19s, transform .13s;
}
.feature img {
  height: 34px;
  width: 34px;
  margin-bottom: 6px;
}
.feature h3 {
  font-size: 1.20rem;
}
.feature:hover {
  box-shadow: 0 9px 32px rgba(54,179,126,0.13);
  transform: translateY(-3px) scale(1.025);
}
@media (max-width: 768px) {
  .features .feature-grid {
    flex-direction: column;
    gap: 16px;
  }
  .feature {
    max-width: unset;
    padding: 22px 13px 16px 15px;
  }
}

/* =====================================================================
   TESTIMONIALS
====================================================================== */
.testimonials .testimonial-carousel {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 18px;
  align-items: flex-stretch;
  justify-content: flex-start;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 22px 20px 18px 22px;
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  min-width: 220px;
  max-width: 380px;
  box-shadow: 0 2px 10px rgba(28,35,49,0.04);
  margin-bottom: 20px;
  transition: box-shadow .19s, transform .13s;
}
.testimonial-card p {
  font-size: 1.05rem;
  color: var(--primary);
  margin-bottom: 0;
  text-align: center;
}
.testimonial-author {
  font-size: 0.98rem;
  color: var(--secondary);
  font-weight: 700;
  margin-top: 6px;
  letter-spacing: 0.01em;
}
.testimonial-card:hover {
  box-shadow: 0 8px 24px rgba(54,179,126,0.11);
  transform: translateY(-2px) scale(1.02);
}
@media (max-width: 768px) {
  .testimonials .testimonial-carousel {
    flex-direction: column;
    gap: 14px;
  }
}

/* =====================================================================
   HOW IT WORKS & PROCESS STEPPER
====================================================================== */
ol.steps-list,
ol.process-stepper {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-left: 1.5em;
  margin-bottom: 20px;
}
ol.steps-list li,
ol.process-stepper li {
  background: #fff;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-light);
  padding: 15px 20px;
  font-size: 1.07rem;
  color: var(--primary);
  margin-bottom: 0;
  list-style-type: decimal;
  box-shadow: 0 1px 4px rgba(28,35,49,0.03);
  transition: box-shadow .13s;
}
ol.steps-list li strong,
ol.process-stepper li strong {
  color: var(--secondary);
  font-weight: 700;
}
ol.steps-list li:hover, ol.process-stepper li:hover {
  box-shadow: 0 5px 20px rgba(54,179,126,0.13);
}

/* =====================================================================
   CASE STUDIES & CARDS
====================================================================== */
.case-study-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 25px;
}
.case-card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid var(--border-light);
  min-width: 245px;
  flex: 1 1 310px;
  max-width: 400px;
  padding: 24px 20px 16px 22px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 13px;
  transition: box-shadow 0.21s, transform 0.13s;
}
.case-card h2 {
  font-size: 1.20rem;
  margin-bottom: 7px;
}
.case-card ul {
  margin-left: 1.2em;
}
.case-card:hover {
  box-shadow: 0 8px 32px rgba(28,35,49,0.11);
  transform: translateY(-2px) scale(1.02);
}
@media (max-width: 768px) {
  .case-study-list {
    flex-direction: column;
    gap: 15px;
  }
}

/* =====================================================================
   SERVICES SECTION & CARDS
====================================================================== */
.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
  align-items: flex-start;
}
.service-card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid var(--border-light);
  flex: 1 1 240px;
  min-width: 215px;
  max-width: 330px;
  padding: 22px 18px 18px 20px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: box-shadow 0.22s, transform 0.13s;
}
.service-card h2 {
  font-size: 1.12rem;
  margin-bottom: 4px;
}
.price-tag {
  margin-top: 4px;
  font-size: 1.10rem;
  color: var(--secondary);
  font-weight: 700;
  background: var(--accent);
  border-radius: var(--radius-sm);
  padding: 4px 11px;
  display: inline-block;
}
.service-card:hover {
  box-shadow: 0 6px 24px rgba(54,179,126,0.09);
  transform: translateY(-2px) scale(1.015);
}
@media (max-width: 768px) {
  .service-list {
    flex-direction: column;
    gap: 13px;
  }
}

/* =====================================================================
   PRICING TABLE
====================================================================== */
.pricing-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin-bottom: 30px;
  background: #fff;
  box-shadow: var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}
.pricing-table th, .pricing-table td {
  text-align: left;
  padding: 15px 16px;
  font-size: 1.06rem;
  border-bottom: 1px solid var(--border-light);
}
.pricing-table th {
  background: var(--accent);
  color: var(--primary);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
}
.pricing-table tbody tr:last-child td {
  border-bottom: none;
}
.pricing-table tr:hover td {
  background: #f3f6f5;
}
@media (max-width: 550px) {
  .pricing-table th, .pricing-table td {
    padding: 9px 7px;
    font-size: 0.98rem;
  }
}

/* =====================================================================
   FAQ ACCORDION
====================================================================== */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 20px;
}
.faq-item {
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  padding: 16px 16px 12px 16px;
  box-shadow: 0 1px 5px rgba(28,35,49,0.06);
  transition: box-shadow .16s;
}
.faq-item:hover {
  box-shadow: 0 4px 18px rgba(54,179,126,0.09);
}
.faq-item h3 {
  font-size: 1.10rem;
  margin-bottom: 7px;
  cursor: pointer;
  user-select: none;
  color: var(--secondary);
}
.faq-item p {
  font-size: 0.98rem;
  margin-bottom: 0;
}

/* =====================================================================
   CONTACT PAGE
====================================================================== */
.text-section {
  margin-bottom: 30px;
}
.text-section ul {
  margin-bottom: 10px;
}
.text-section li {
  margin-bottom: 8px;
}
.text-section a {
  color: var(--secondary);
  text-decoration: underline;
  transition: color .15s, box-shadow .13s;
}
.text-section a:hover {
  color: #299966;
  box-shadow: 0 1px 0 #299966;
}
.contact-details strong {
  min-width: 115px;
  display: inline-block;
}

/* =====================================================================
   CTA SECTIONS
====================================================================== */
.cta {
  background: linear-gradient(97deg, #e7ecea 0%, var(--accent) 100%);
  border-radius: var(--radius);
  text-align: center;
  box-shadow: 0 2px 10px rgba(54,179,126,0.07);
  margin-bottom: 40px;
  padding: 38px 20px 42px;
}
.cta h2 {
  font-size: 2rem;
  margin-bottom: 12px;
}
.cta p {
  font-size: 1.13rem;
  margin-bottom: 19px;
  color: var(--text-main);
}

/* =====================================================================
   FOOTER
====================================================================== */
footer {
  background: #fff;
  border-top: 1px solid var(--border-light);
  padding: 32px 0 25px 0;
  margin-top: 60px;
}
footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}
footer nav {
  margin-bottom: 6px;
  font-size: 14px;
  color: var(--primary);
}
footer nav a {
  color: var(--primary);
  margin: 0 7px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  transition: color .14s;
}
footer nav a:hover {
  color: var(--secondary);
}
.footer-brand img {
  height: 32px;
  width: auto;
  margin-bottom: 8px;
}
footer small {
  color: var(--text-muted);
  font-size: 13px;
}

@media (max-width: 768px) {
  footer {
    padding: 20px 0 14px 0;
    margin-top: 32px;
  }
}

/* =====================================================================
   COOKIE CONSENT BANNER & MODAL
====================================================================== */
#cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 20000;
  background: #fff;
  border-top: 1.5px solid var(--border-light);
  box-shadow: 0 -2px 16px rgba(28,35,49,0.13);
  width: 100vw;
  padding: 24px 16px 18px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  transition: transform .33s var(--transition), opacity .22s;
  opacity: 0;
  pointer-events: none;
  transform: translateY(100%);
}
#cookie-banner.active {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}
#cookie-banner .cookie-text {
  font-size: 1rem;
  color: var(--primary);
  max-width: 480px;
}
#cookie-banner .cookie-buttons {
  display: flex;
  flex-direction: row;
  gap: 14px;
}
.cookie-accept, .cookie-reject, .cookie-settings {
  border: none;
  padding: 10px 23px;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: background .17s, color .13s, box-shadow .12s;
  font-weight: 600;
}
.cookie-accept {
  background: var(--secondary);
  color: #fff;
}
.cookie-accept:hover {
  background: #299966;
}
.cookie-reject {
  background: #e8ecef;
  color: var(--primary);
}
.cookie-reject:hover {
  background: #dde6e1;
}
.cookie-settings {
  background: none;
  border: 1.5px solid var(--border-light);
  color: var(--secondary);
}
.cookie-settings:hover {
  border-color: var(--secondary);
  background: var(--accent);
}
@media (max-width: 600px) {
  #cookie-banner {
    flex-direction: column;
    text-align: left;
    gap: 12px;
    padding: 18px 8px 10px 8px;
  }
}

/* COOKIE SETTINGS MODAL */
#cookie-modal {
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 25000;
  background: rgba(28,35,49, 0.34);
  opacity: 0;
  pointer-events: none;
  transition: opacity .26s;
}
#cookie-modal.active {
  opacity: 1;
  pointer-events: all;
}
.cookie-modal-content {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: 0 6px 48px rgba(28,35,49,0.15);
  padding: 31px 27px 21px 27px;
  max-width: 410px;
  min-width: 246px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
  animation: modalPopIn .45s cubic-bezier(0.4,0,0.2,1);
}
@keyframes modalPopIn {
  0% { opacity: 0; transform: scale(.86) translateY(30px); }
  100% { opacity: 1; transform: scale(1) translateY(0); }
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 13px;
  width: 100%;
}
.cookie-category label {
  flex: 1 1 0;
  color: var(--primary);
  font-size: 1rem;
  font-weight: 500;
}
.cookie-category input[type="checkbox"] {
  width: 21px;
  height: 21px;
  cursor: pointer;
}
.cookie-category input[disabled] {
  opacity: .62;
  cursor: not-allowed;
}
.cookie-category .cookie-essential {
  color: #888;
  font-size: 0.98rem;
}
.cookie-modal-actions {
  display: flex;
  gap: 13px;
  margin-top: 7px;
}
#cookie-modal .cookie-modal-close {
  position: absolute;
  top: 17px;
  right: 27px;
  background: none;
  color: var(--primary);
  border: none;
  font-size: 2rem;
  cursor: pointer;
  padding: 2px;
}
#cookie-modal .cookie-modal-close:hover, #cookie-modal .cookie-modal-close:focus {
  color: var(--secondary);
  background: #efe;
}

/* =====================================================================
   MISCELLANEOUS & ACCESSIBILITY
====================================================================== */
::-webkit-scrollbar {
  width: 9px;
  background: #eaeef3;
}
::-webkit-scrollbar-thumb {
  background: #c9d1da;
  border-radius: 8px;
}
::-webkit-scrollbar-thumb:hover {
  background: #b1c0c7;
}

[tabindex="0"]:focus, button:focus, input:focus, select:focus, textarea:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(54,179,126,0.18);
}

/* Lists spacing */
ul, ol {
  margin-bottom: 14px;
}
li:last-child {
  margin-bottom: 0;
}

/* Responsive adjustments */
@media (max-width: 520px) {
  h1 { font-size: 1.35rem; }
  h2 { font-size: 1.08rem; }
  .cta {
    padding: 19px 7px 20px;
  }
}

/* Form controls, if any */
input, textarea, select {
  font-family: inherit;
  font-size: 1rem;
  border-radius: var(--radius-sm);
  border: 1.2px solid var(--border-light);
  background: #fff;
  padding: 10px 13px;
  margin-bottom: 12px;
  transition: border-color .16s;
}
input:focus, textarea:focus, select:focus {
  border-color: var(--secondary);
}

/* =====================================================================
   SMOOTH MICRO-INTERACTIONS FOR BUTTONS & LINKS
====================================================================== */
button, .cta-button, .cookie-accept, .cookie-reject, .cookie-settings, .cookie-modal-close {
  transition: background .19s, color .15s, box-shadow .16s, transform .16s;
}
button:active, .cta-button:active {
  transform: scale(.98);
}

/* Card hover shadow/micro-interactions already above */

/* =====================================================================
   END OF CSS FILE
====================================================================== */
