 :root {
   --brand-900: #1e3d37;
   --brand-700: #2f5f55;
   --brand-500: #4f8577;
   --brand-200: #cfe2dc;
   --neutral-900: #1f2328;
   --neutral-700: #3a4046;
   --neutral-500: #5b636b;
   --neutral-200: #e8ecef;
   --neutral-100: #f6f7f8;
   --accent-500: #d7a144;
   --white: #ffffff;
 }
 
 * {
   box-sizing: border-box;
 }
 
 body {
   margin: 0;
   font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
   color: var(--neutral-900);
   background: var(--white);
   line-height: 1.6;
 }
 
 img,
 svg {
   max-width: 100%;
   height: auto;
 }
 
 a {
   color: inherit;
   text-decoration: none;
 }
 
 .container {
   width: min(1100px, 92%);
   margin: 0 auto;
 }
 
 .section {
   padding: 64px 0;
 }
 
 .section-alt {
   background: var(--neutral-100);
 }
 
 .section-soft {
   background: var(--brand-200);
 }
 
 .eyebrow {
   text-transform: uppercase;
   letter-spacing: 0.08em;
   font-size: 0.78rem;
   color: var(--brand-700);
   font-weight: 600;
 }
 
 .site-header {
   position: sticky;
   top: 0;
   background: var(--white);
   border-bottom: 1px solid var(--neutral-200);
   z-index: 20;
 }
 
 .nav-bar {
   display: flex;
   align-items: center;
   justify-content: space-between;
   padding: 16px 0;
 }
 
 .brand {
   font-weight: 700;
   color: var(--brand-900);
   font-size: 1.1rem;
 }
 
 .nav-toggle {
   background: var(--brand-700);
   color: var(--white);
   border: none;
   padding: 10px 14px;
   border-radius: 999px;
   font-weight: 600;
 }
 
 .nav-menu {
   position: absolute;
   top: 72px;
   right: 4%;
   background: var(--white);
   border: 1px solid var(--neutral-200);
   border-radius: 12px;
   padding: 16px;
   display: none;
   flex-direction: column;
   gap: 12px;
   box-shadow: 0 16px 40px rgba(31, 35, 40, 0.1);
 }
 
 .nav-menu.is-open {
   display: flex;
 }
 
 .nav-menu a {
   font-weight: 600;
   color: var(--neutral-700);
 }
 
 .hero {
   display: flex;
   flex-direction: column;
   gap: 24px;
 }
 
 .hero-card {
   background: var(--brand-900);
   color: var(--white);
   padding: 24px;
   border-radius: 16px;
 }
 
 .hero-actions {
   display: flex;
   flex-wrap: wrap;
   gap: 12px;
 }
 
 .btn {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   padding: 12px 18px;
   border-radius: 999px;
   font-weight: 600;
   border: 1px solid transparent;
 }
 
 .btn-primary {
   background: var(--brand-700);
   color: var(--white);
 }
 
 .btn-secondary {
   background: transparent;
   border-color: var(--brand-700);
   color: var(--brand-700);
 }
 
 .cards {
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 .card {
   background: var(--white);
   border: 1px solid var(--neutral-200);
   border-radius: 16px;
   padding: 20px;
   display: flex;
   flex-direction: column;
   gap: 12px;
 }
 
 .card-emphasis {
   border-color: var(--brand-700);
   box-shadow: 0 20px 40px rgba(47, 95, 85, 0.12);
 }
 
 .feature-list {
   display: flex;
   flex-direction: column;
   gap: 12px;
 }
 
 .feature {
   display: flex;
   gap: 12px;
   align-items: flex-start;
 }
 
 .feature svg {
   width: 28px;
   height: 28px;
   flex-shrink: 0;
 }
 
 .stats {
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 .stat {
   background: var(--white);
   border-radius: 14px;
   padding: 16px;
   border: 1px solid var(--neutral-200);
 }
 
 .stat strong {
   font-size: 1.4rem;
   color: var(--brand-900);
 }
 
 .chips {
   display: flex;
   flex-wrap: wrap;
   gap: 10px;
 }
 
 .chip {
   padding: 8px 14px;
   border-radius: 999px;
   background: var(--neutral-100);
   border: 1px solid var(--neutral-200);
   font-weight: 600;
   color: var(--neutral-700);
 }
 
 .testimonials {
   display: flex;
   flex-direction: column;
   gap: 18px;
 }
 
 .testimonial {
   background: var(--white);
   border-radius: 16px;
   padding: 20px;
   border: 1px solid var(--neutral-200);
 }
 
 .quote {
   font-style: italic;
 }
 
 .faq {
   display: flex;
   flex-direction: column;
   gap: 12px;
 }
 
 .faq-item {
   border-radius: 12px;
   border: 1px solid var(--neutral-200);
   overflow: hidden;
   background: var(--white);
 }
 
 .faq-question {
   width: 100%;
   text-align: left;
   padding: 16px;
   border: none;
   background: var(--white);
   font-weight: 600;
   display: flex;
   justify-content: space-between;
   align-items: center;
 }
 
 .faq-answer {
   padding: 0 16px 16px;
   display: none;
 }
 
 .faq-item.is-open .faq-answer {
   display: block;
 }
 
 .comparison {
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 .comparison-row {
   display: flex;
   flex-direction: column;
   gap: 8px;
   border: 1px solid var(--neutral-200);
   border-radius: 14px;
   padding: 16px;
   background: var(--white);
 }
 
 .info-grid {
   display: flex;
   flex-direction: column;
   gap: 12px;
 }
 
 .info-block {
   border: 1px solid var(--neutral-200);
   border-radius: 14px;
   padding: 16px;
   background: var(--white);
 }
 
 .footer {
   background: var(--neutral-900);
   color: var(--white);
   padding: 48px 0;
 }
 
 .footer a {
   color: var(--white);
 }
 
 .footer-links {
   display: flex;
   flex-direction: column;
   gap: 8px;
 }
 
 .cookie-banner {
   position: fixed;
   left: 16px;
   right: 16px;
   bottom: 16px;
   background: var(--neutral-900);
   color: var(--white);
   padding: 18px;
   border-radius: 14px;
   display: none;
   flex-direction: column;
   gap: 12px;
   z-index: 30;
 }
 
 .cookie-banner.is-visible {
   display: flex;
 }
 
 .cookie-actions {
   display: flex;
   flex-direction: column;
   gap: 8px;
 }
 
 .modal {
   position: fixed;
   inset: 0;
   background: rgba(31, 35, 40, 0.55);
   display: flex;
   align-items: center;
   justify-content: center;
   padding: 16px;
   z-index: 40;
 }
 
 .modal[hidden] {
   display: none;
 }
 
 .modal-content {
   background: var(--white);
   border-radius: 16px;
   padding: 20px;
   width: min(560px, 100%);
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 .toggle-list {
   display: flex;
   flex-direction: column;
   gap: 10px;
 }
 
 .toggle-item {
   display: flex;
   align-items: center;
   justify-content: space-between;
   gap: 12px;
   padding: 12px;
   border: 1px solid var(--neutral-200);
   border-radius: 12px;
 }
 
 .toggle-btn {
   border-radius: 999px;
   border: 1px solid var(--brand-700);
   padding: 6px 12px;
   background: transparent;
   color: var(--brand-700);
   font-weight: 600;
 }
 
 .toggle-btn.is-on {
   background: var(--brand-700);
   color: var(--white);
 }
 
 @media (min-width: 768px) {
   .nav-toggle {
     display: none;
   }
 
   .nav-menu {
     position: static;
     display: flex;
     flex-direction: row;
     gap: 18px;
     border: none;
     box-shadow: none;
     padding: 0;
   }
 
   .hero {
     flex-direction: row;
     align-items: center;
     justify-content: space-between;
   }
 
   .cards {
     flex-direction: row;
   }
 
   .card {
     flex: 1;
   }
 
   .stats {
     flex-direction: row;
   }
 
   .stat {
     flex: 1;
   }
 
   .testimonials {
     flex-direction: row;
   }
 
   .testimonial {
     flex: 1;
   }
 
   .comparison {
     flex-direction: row;
   }
 
   .comparison-row {
     flex: 1;
   }
 
   .info-grid {
     flex-direction: row;
   }
 
   .info-block {
     flex: 1;
   }
 
   .cookie-actions {
     flex-direction: row;
   }
 
   .footer-links {
     flex-direction: row;
     flex-wrap: wrap;
     gap: 16px;
   }
 }
