 :root {
   --bg: #f7f6f2;
   --surface: #ffffff;
   --ink: #1f2a22;
   --muted: #56655b;
   --brand: #2d7a5b;
   --brand-dark: #215a44;
   --accent: #d7efe5;
   --warm: #f0e8d9;
   --line: #e3e0d6;
   --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
 }
 
 * {
   box-sizing: border-box;
 }
 
 body {
   margin: 0;
   font-family: "Inter", "Segoe UI", Arial, sans-serif;
   color: var(--ink);
   background: var(--bg);
   line-height: 1.6;
 }
 
 img,
 svg {
   max-width: 100%;
   display: block;
 }
 
 a {
   color: inherit;
   text-decoration: none;
 }
 
 .skip-link {
   position: absolute;
   left: -999px;
   top: 0;
   background: var(--brand);
   color: #fff;
   padding: 0.5rem 1rem;
   z-index: 1000;
 }
 
 .skip-link:focus {
   left: 1rem;
 }
 
 .container {
   width: min(1120px, 92%);
   margin: 0 auto;
 }
 
 .section {
   padding: 3.5rem 0;
 }
 
 .section.alt {
   background: var(--surface);
 }
 
 .section.warm {
   background: var(--warm);
 }
 
 .eyebrow {
   text-transform: uppercase;
   letter-spacing: 0.12em;
   font-size: 0.78rem;
   color: var(--muted);
 }
 
 .lead {
   font-size: 1.1rem;
   color: var(--muted);
 }
 
 .site-header {
   background: var(--surface);
   border-bottom: 1px solid var(--line);
   position: sticky;
   top: 0;
   z-index: 20;
 }
 
 .header-inner {
   display: flex;
   align-items: center;
   justify-content: space-between;
   padding: 1rem 0;
   gap: 1rem;
 }
 
 .brand {
   display: flex;
   align-items: center;
   gap: 0.6rem;
   font-weight: 700;
   font-size: 1.1rem;
 }
 
 .brand-mark {
   width: 38px;
   height: 38px;
   background: var(--accent);
   border-radius: 10px;
   display: flex;
   align-items: center;
   justify-content: center;
 }
 
 .menu-toggle {
   background: var(--brand);
   color: #fff;
   border: none;
   border-radius: 999px;
   padding: 0.5rem 1rem;
   font-weight: 600;
   cursor: pointer;
 }
 
 nav {
   position: relative;
 }
 
 .nav-links {
   list-style: none;
   margin: 0;
   padding: 0;
   display: flex;
   flex-direction: column;
   gap: 0.6rem;
   background: var(--surface);
   border: 1px solid var(--line);
   border-radius: 16px;
   padding: 1rem;
   position: absolute;
   right: 0;
   top: 3.2rem;
   min-width: 200px;
   opacity: 0;
   pointer-events: none;
   transform: translateY(-10px);
   transition: 0.2s ease;
   box-shadow: var(--shadow);
 }
 
 .nav-links a {
   padding: 0.35rem 0.6rem;
   border-radius: 8px;
 }
 
 .nav-links a:hover,
 .nav-links a:focus {
   background: var(--accent);
 }
 
 body.menu-open .nav-links {
   opacity: 1;
   pointer-events: auto;
   transform: translateY(0);
 }
 
 .hero {
   display: flex;
   flex-direction: column;
   gap: 2rem;
 }
 
 .hero-card {
   background: var(--surface);
   border-radius: 24px;
   padding: 2rem;
   box-shadow: var(--shadow);
   display: flex;
   flex-direction: column;
   gap: 1rem;
 }
 
 .button {
   display: inline-flex;
   align-items: center;
   gap: 0.5rem;
   background: var(--brand);
   color: #fff;
   border-radius: 999px;
   padding: 0.7rem 1.4rem;
   font-weight: 600;
   border: none;
   cursor: pointer;
 }
 
 .button.ghost {
   background: transparent;
   color: var(--brand-dark);
   border: 1px solid var(--brand-dark);
 }
 
 .cards {
   display: flex;
   flex-direction: column;
   gap: 1.2rem;
 }
 
 .card {
   background: var(--surface);
   border-radius: 18px;
   padding: 1.5rem;
   border: 1px solid var(--line);
   display: flex;
   flex-direction: column;
   gap: 0.8rem;
 }
 
 .icon-circle {
   width: 44px;
   height: 44px;
   border-radius: 50%;
   background: var(--accent);
   display: flex;
   align-items: center;
   justify-content: center;
 }
 
 .split {
   display: flex;
   flex-direction: column;
   gap: 2rem;
 }
 
 .stats {
   display: flex;
   flex-direction: column;
   gap: 1rem;
 }
 
 .stat {
   background: var(--surface);
   border-radius: 16px;
   padding: 1.2rem;
   border: 1px solid var(--line);
 }
 
 .testimonials {
   display: flex;
   flex-direction: column;
   gap: 1.2rem;
 }
 
 .quote {
   background: var(--surface);
   border-left: 4px solid var(--brand);
   padding: 1.4rem;
   border-radius: 14px;
 }
 
 .faq-list {
   display: flex;
   flex-direction: column;
   gap: 0.8rem;
 }
 
 .faq-item {
   background: var(--surface);
   border-radius: 14px;
   border: 1px solid var(--line);
 }
 
 .faq-question {
   width: 100%;
   text-align: left;
   background: none;
   border: none;
   padding: 1rem 1.2rem;
   font-weight: 600;
   cursor: pointer;
 }
 
 .faq-answer {
   padding: 0 1.2rem 1rem;
   color: var(--muted);
   display: none;
 }
 
 .faq-item[aria-expanded="true"] .faq-answer {
   display: block;
 }
 
 .badge-row {
   display: flex;
   flex-wrap: wrap;
   gap: 0.8rem;
 }
 
 .badge {
   background: var(--accent);
   padding: 0.5rem 0.9rem;
   border-radius: 999px;
   font-size: 0.9rem;
 }
 
 .compare {
   display: flex;
   flex-direction: column;
   gap: 1rem;
 }
 
 .compare-item {
   background: var(--surface);
   border-radius: 16px;
   padding: 1.2rem;
   border: 1px solid var(--line);
 }
 
 .cta-panel {
   background: var(--brand);
   color: #fff;
   border-radius: 24px;
   padding: 2rem;
   display: flex;
   flex-direction: column;
   gap: 1rem;
 }
 
 .cta-panel .button {
   background: #fff;
   color: var(--brand-dark);
 }
 
 .site-footer {
   background: var(--ink);
   color: #f3f3f3;
   padding: 2.5rem 0;
 }
 
 .footer-grid {
   display: flex;
   flex-direction: column;
   gap: 1.5rem;
 }
 
 .footer-links {
   list-style: none;
   padding: 0;
   margin: 0;
   display: flex;
   flex-direction: column;
   gap: 0.4rem;
 }
 
 .footer-links a {
   color: #f3f3f3;
 }
 
 .cookie-banner {
   position: fixed;
   bottom: 1rem;
   left: 1rem;
   right: 1rem;
   background: var(--surface);
   border-radius: 16px;
   border: 1px solid var(--line);
   padding: 1rem;
   display: none;
   flex-direction: column;
   gap: 0.8rem;
   box-shadow: var(--shadow);
   z-index: 40;
 }
 
 .cookie-actions {
   display: flex;
   flex-wrap: wrap;
   gap: 0.6rem;
 }
 
 .cookie-modal {
   position: fixed;
   inset: 0;
   background: rgba(0, 0, 0, 0.4);
   display: none;
   align-items: center;
   justify-content: center;
   padding: 1.5rem;
   z-index: 50;
 }
 
 .cookie-modal .modal-content {
   background: var(--surface);
   border-radius: 18px;
   padding: 1.6rem;
   width: min(520px, 100%);
   display: flex;
   flex-direction: column;
   gap: 1rem;
 }
 
 .toggle-group {
   display: flex;
   flex-direction: column;
   gap: 0.6rem;
 }
 
 .toggle-row {
   display: flex;
   align-items: center;
   justify-content: space-between;
   background: var(--warm);
   border-radius: 12px;
   padding: 0.8rem 1rem;
 }
 
 .toggle-row button {
   border: 1px solid var(--brand-dark);
   background: transparent;
   color: var(--brand-dark);
   border-radius: 999px;
   padding: 0.4rem 0.9rem;
   cursor: pointer;
 }
 
 .toggle-row button[aria-pressed="true"] {
   background: var(--brand);
   color: #fff;
   border-color: var(--brand);
 }
 
 @media (min-width: 768px) {
   .menu-toggle {
     display: none;
   }
 
   .nav-links {
     position: static;
     flex-direction: row;
     align-items: center;
     border: none;
     padding: 0;
     box-shadow: none;
     opacity: 1;
     pointer-events: auto;
     transform: none;
     background: transparent;
   }
 
   .hero {
     flex-direction: row;
     align-items: center;
   }
 
   .split {
     flex-direction: row;
     align-items: flex-start;
   }
 
   .cards,
   .testimonials {
     flex-direction: row;
     flex-wrap: wrap;
   }
 
   .card,
   .quote {
     flex: 1 1 260px;
   }
 
   .stats {
     flex-direction: row;
     flex-wrap: wrap;
   }
 
   .stat {
     flex: 1 1 200px;
   }
 
   .compare {
     flex-direction: row;
   }
 
   .footer-grid {
     flex-direction: row;
     justify-content: space-between;
   }
 
   .cookie-banner {
     left: auto;
     max-width: 420px;
     right: 2rem;
   }
 }
