 :root {
   --bg: #f7f8fb;
   --text: #1c2330;
   --muted: #5a667a;
   --brand: #1f7a8c;
   --brand-dark: #165b69;
   --accent: #ff7a59;
   --card: #ffffff;
   --border: #e4e8ef;
 }
 
 * {
   box-sizing: border-box;
 }
 
 html {
   scroll-behavior: smooth;
 }
 
 body {
   margin: 0;
   font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
   color: var(--text);
   background: var(--bg);
   line-height: 1.6;
 }
 
 a {
   color: inherit;
   text-decoration: none;
 }
 
 img,
 svg {
   max-width: 100%;
   height: auto;
 }
 
 .container {
   width: 100%;
   max-width: 1140px;
   margin: 0 auto;
   padding: 0 20px;
 }
 
 .skip-link {
   position: absolute;
   left: -999px;
   top: 10px;
   background: var(--brand);
   color: #fff;
   padding: 8px 12px;
   border-radius: 6px;
   z-index: 10;
 }
 
 .skip-link:focus {
   left: 10px;
 }
 
 header {
   background: #fff;
   border-bottom: 1px solid var(--border);
   position: sticky;
   top: 0;
   z-index: 50;
 }
 
 .nav-bar {
   display: flex;
   align-items: center;
   justify-content: space-between;
   padding: 16px 0;
 }
 
 .brand {
   display: flex;
   align-items: center;
   gap: 10px;
   font-weight: 700;
   letter-spacing: 0.4px;
 }
 
 .brand-mark {
   width: 32px;
   height: 32px;
 }
 
 .menu-toggle {
   background: none;
   border: 1px solid var(--border);
   padding: 8px 12px;
   border-radius: 8px;
   font-size: 0.95rem;
 }
 
 nav ul {
   list-style: none;
   margin: 0;
   padding: 0;
   display: flex;
   flex-direction: column;
   gap: 10px;
 }
 
 nav {
   display: none;
   flex-direction: column;
   gap: 16px;
   padding: 12px 0 20px;
 }
 
 nav.open {
   display: flex;
 }
 
 .nav-links a {
   color: var(--muted);
   font-weight: 500;
 }
 
 .nav-actions {
   display: flex;
   gap: 10px;
   flex-wrap: wrap;
 }
 
 main {
   padding: 24px 0 64px;
 }
 
 .section {
   padding: 32px 0;
 }
 
 .section.alt {
   background: #ffffff;
   border-top: 1px solid var(--border);
   border-bottom: 1px solid var(--border);
 }
 
 .hero {
   display: flex;
   flex-direction: column;
   gap: 24px;
 }
 
 .hero h1 {
   font-size: 2.2rem;
   line-height: 1.2;
   margin: 0;
 }
 
 .hero p {
   color: var(--muted);
   margin: 0;
 }
 
 .hero-actions {
   display: flex;
   gap: 12px;
   flex-wrap: wrap;
 }
 
 .btn {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   gap: 8px;
   padding: 10px 16px;
   border-radius: 10px;
   border: 1px solid transparent;
   font-weight: 600;
 }
 
 .btn-primary {
   background: var(--brand);
   color: #fff;
 }
 
 .btn-primary:hover {
   background: var(--brand-dark);
 }
 
 .btn-secondary {
   background: #fff;
   border-color: var(--brand);
   color: var(--brand);
 }
 
 .btn-ghost {
   background: #fff;
   border-color: var(--border);
   color: var(--muted);
 }
 
 .cards {
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 .card {
   background: var(--card);
   border: 1px solid var(--border);
   border-radius: 14px;
   padding: 18px;
   display: flex;
   flex-direction: column;
   gap: 12px;
 }
 
 .card h3 {
   margin: 0;
 }
 
 .icon {
   width: 36px;
   height: 36px;
   color: var(--brand);
 }
 
 .split {
   display: flex;
   flex-direction: column;
   gap: 24px;
 }
 
 .highlight {
   background: #fff3ef;
   border: 1px solid #ffd7cc;
   padding: 18px;
   border-radius: 14px;
 }
 
 .stats {
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 .stat {
   background: #fff;
   border-radius: 14px;
   padding: 16px;
   border: 1px solid var(--border);
   display: flex;
   flex-direction: column;
   gap: 8px;
 }
 
 .stat strong {
   font-size: 1.6rem;
 }
 
 .testimonial {
   background: #fff;
   border-radius: 16px;
   padding: 18px;
   border: 1px solid var(--border);
   display: flex;
   flex-direction: column;
   gap: 10px;
 }
 
 .testimonial span {
   color: var(--muted);
   font-size: 0.95rem;
 }
 
 .faq {
   display: flex;
   flex-direction: column;
   gap: 12px;
 }
 
 .faq-item {
   border: 1px solid var(--border);
   border-radius: 12px;
   background: #fff;
   overflow: hidden;
 }
 
 .faq-question {
   width: 100%;
   text-align: left;
   background: none;
   border: none;
   padding: 14px 16px;
   font-weight: 600;
   display: flex;
   justify-content: space-between;
   align-items: center;
 }
 
 .faq-answer {
   padding: 0 16px 16px;
   color: var(--muted);
   display: none;
 }
 
 .faq-item.open .faq-answer {
   display: block;
 }
 
 .steps {
   display: flex;
   flex-direction: column;
   gap: 14px;
 }
 
 .step {
   display: flex;
   gap: 12px;
   align-items: flex-start;
 }
 
 .step-number {
   width: 30px;
   height: 30px;
   border-radius: 50%;
   background: var(--brand);
   color: #fff;
   display: flex;
   align-items: center;
   justify-content: center;
   font-weight: 700;
 }
 
 .comparison {
   display: flex;
   flex-direction: column;
   gap: 12px;
 }
 
 .comparison-row {
   display: flex;
   flex-direction: column;
   gap: 8px;
   padding: 14px;
   border: 1px solid var(--border);
   border-radius: 12px;
   background: #fff;
 }
 
 .badge {
   display: inline-flex;
   align-items: center;
   gap: 6px;
   font-size: 0.85rem;
   color: var(--brand);
   background: #e9f4f6;
   padding: 4px 8px;
   border-radius: 999px;
 }
 
 .list {
   display: flex;
   flex-direction: column;
   gap: 8px;
   padding-left: 18px;
 }
 
 .cta {
   background: var(--brand);
   color: #fff;
   border-radius: 16px;
   padding: 24px;
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 .cta .btn-secondary {
   border-color: #fff;
   color: #fff;
   background: transparent;
 }
 
 footer {
   background: #0f1c24;
   color: #d9e4ea;
   padding: 40px 0 24px;
 }
 
 .footer-grid {
   display: flex;
   flex-direction: column;
   gap: 24px;
 }
 
 .footer-grid a {
   color: #d9e4ea;
 }
 
 .legal {
   border-top: 1px solid rgba(255, 255, 255, 0.12);
   margin-top: 24px;
   padding-top: 16px;
   font-size: 0.9rem;
 }
 
 .pillars {
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 .pill {
   background: #fff;
   border-radius: 14px;
   padding: 16px;
   border: 1px solid var(--border);
 }
 
 .cookie-banner {
   position: fixed;
   left: 16px;
   right: 16px;
   bottom: 16px;
   background: #fff;
   border-radius: 14px;
   border: 1px solid var(--border);
   padding: 16px;
   display: none;
   flex-direction: column;
   gap: 12px;
   z-index: 100;
 }
 
 .cookie-banner.show {
   display: flex;
 }
 
 .cookie-actions {
   display: flex;
   gap: 10px;
   flex-wrap: wrap;
 }
 
 .modal-backdrop {
   position: fixed;
   inset: 0;
   background: rgba(0, 0, 0, 0.5);
   display: none;
   align-items: center;
   justify-content: center;
   z-index: 120;
   padding: 16px;
 }
 
 .modal-backdrop.show {
   display: flex;
 }
 
 .modal {
   background: #fff;
   border-radius: 16px;
   padding: 20px;
   max-width: 520px;
   width: 100%;
   display: flex;
   flex-direction: column;
   gap: 14px;
 }
 
 .modal h3 {
   margin: 0;
 }
 
 .preference {
   display: flex;
   align-items: flex-start;
   gap: 12px;
   border: 1px solid var(--border);
   border-radius: 12px;
   padding: 12px;
 }
 
 .preference input {
   margin-top: 4px;
 }
 
 .tagline {
   color: var(--muted);
 }
 
 @media (min-width: 768px) {
   nav {
     display: flex;
     flex-direction: row;
     align-items: center;
     gap: 24px;
     padding: 0;
   }
 
   nav ul {
     flex-direction: row;
     gap: 20px;
   }
 
   .menu-toggle {
     display: none;
   }
 
   .hero {
     flex-direction: row;
     align-items: center;
   }
 
   .hero > div {
     flex: 1;
   }
 
   .cards {
     flex-direction: row;
     flex-wrap: wrap;
   }
 
   .card {
     flex: 1 1 260px;
   }
 
   .split {
     flex-direction: row;
     align-items: flex-start;
   }
 
   .split > div {
     flex: 1;
   }
 
   .stats {
     flex-direction: row;
     flex-wrap: wrap;
   }
 
   .stat {
     flex: 1 1 200px;
   }
 
   .footer-grid {
     flex-direction: row;
     justify-content: space-between;
   }
 
   .pillars {
     flex-direction: row;
     flex-wrap: wrap;
   }
 
   .pill {
     flex: 1 1 260px;
   }
 
   .comparison {
     flex-direction: row;
     flex-wrap: wrap;
   }
 
   .comparison-row {
     flex: 1 1 260px;
   }
 }
 
 @media (min-width: 1024px) {
   .hero h1 {
     font-size: 2.8rem;
   }
 
   .cta {
     flex-direction: row;
     align-items: center;
     justify-content: space-between;
   }
 }
