 :root {
   color-scheme: light;
   --bg: #f6f4f1;
   --surface: #ffffff;
   --surface-alt: #eef2f4;
   --ink: #1c2b34;
   --muted: #5a6a74;
   --brand: #1f5b7a;
   --brand-strong: #17475f;
   --accent: #d9a441;
   --border: #d9e0e4;
   --shadow: 0 18px 40px rgba(28, 43, 52, 0.12);
 }
 
 * {
   box-sizing: border-box;
 }
 
 body {
   margin: 0;
   font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
   background: var(--bg);
   color: var(--ink);
   line-height: 1.6;
 }
 
 img {
   max-width: 100%;
   display: block;
 }
 
 a {
   color: inherit;
   text-decoration: none;
 }
 
 .container {
   width: min(1120px, 92vw);
   margin: 0 auto;
 }
 
 .site-header {
   background: var(--surface);
   position: sticky;
   top: 0;
   z-index: 10;
   border-bottom: 1px solid var(--border);
 }
 
 .nav-bar {
   display: flex;
   align-items: center;
   justify-content: space-between;
   padding: 1rem 0;
   gap: 1rem;
 }
 
 .brand {
   display: flex;
   align-items: center;
   gap: 0.75rem;
   font-weight: 700;
   letter-spacing: 0.4px;
 }
 
 .brand span {
   font-size: 1.1rem;
 }
 
 .nav-toggle {
   background: var(--brand);
   color: #fff;
   border: none;
   border-radius: 999px;
   padding: 0.6rem 1rem;
   font-weight: 600;
   display: inline-flex;
   align-items: center;
   gap: 0.5rem;
 }
 
 .nav-links {
   display: none;
   flex-direction: column;
   gap: 0.75rem;
   padding: 1rem 0 1.2rem;
 }
 
 .nav-links a {
   font-weight: 600;
   color: var(--muted);
 }
 
 .nav-links a.active {
   color: var(--brand);
 }
 
 .nav-open .nav-links {
   display: flex;
 }
 
 .nav-cta {
   background: var(--accent);
   color: #3c2a06;
   padding: 0.5rem 1rem;
   border-radius: 999px;
   font-weight: 600;
 }
 
 .section {
   padding: 3.5rem 0;
 }
 
 .section.alt {
   background: var(--surface-alt);
 }
 
 .section h2 {
   font-size: 2rem;
   margin-bottom: 1rem;
 }
 
 .lead {
   font-size: 1.1rem;
   color: var(--muted);
 }
 
 .hero {
   display: flex;
   flex-direction: column;
   gap: 2rem;
   align-items: flex-start;
 }
 
 .hero-card {
   background: var(--surface);
   padding: 2rem;
   border-radius: 24px;
   box-shadow: var(--shadow);
 }
 
 .hero-actions {
   display: flex;
   flex-wrap: wrap;
   gap: 0.75rem;
   margin-top: 1.5rem;
 }
 
 .btn {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   padding: 0.7rem 1.5rem;
   border-radius: 999px;
   border: 1px solid transparent;
   font-weight: 600;
 }
 
 .btn.primary {
   background: var(--brand);
   color: #fff;
 }
 
 .btn.secondary {
   border-color: var(--brand);
   color: var(--brand);
   background: transparent;
 }
 
 .cards {
   display: flex;
   flex-direction: column;
   gap: 1.5rem;
 }
 
 .card {
   background: var(--surface);
   border-radius: 20px;
   padding: 1.8rem;
   border: 1px solid var(--border);
   display: flex;
   flex-direction: column;
   gap: 1rem;
 }
 
 .card h3 {
   margin: 0;
 }
 
 .feature-list {
   display: flex;
   flex-direction: column;
   gap: 1rem;
 }
 
 .feature-item {
   display: flex;
   gap: 1rem;
   align-items: flex-start;
 }
 
 .feature-item img {
   width: 48px;
   height: 48px;
 }
 
 .split {
   display: flex;
   flex-direction: column;
   gap: 2rem;
 }
 
 .pillars {
   display: flex;
   flex-direction: column;
   gap: 1.5rem;
 }
 
 .stat-row {
   display: flex;
   flex-direction: column;
   gap: 1.5rem;
 }
 
 .stat {
   background: var(--surface);
   border-radius: 18px;
   padding: 1.5rem;
   border: 1px solid var(--border);
 }
 
 .quote {
   background: var(--brand-strong);
   color: #fff;
   padding: 2rem;
   border-radius: 24px;
 }
 
 .quote small {
   color: rgba(255, 255, 255, 0.8);
 }
 
 .timeline {
   display: flex;
   flex-direction: column;
   gap: 1rem;
 }
 
 .timeline-item {
   background: var(--surface);
   border-radius: 16px;
   padding: 1.2rem;
   border-left: 4px solid var(--accent);
 }
 
 .comparison {
   display: flex;
   flex-direction: column;
   gap: 1.2rem;
 }
 
 .comparison .card {
   background: var(--surface-alt);
 }
 
 .faq-list {
   display: flex;
   flex-direction: column;
   gap: 1rem;
 }
 
 .faq-item {
   background: var(--surface);
   border-radius: 16px;
   border: 1px solid var(--border);
   overflow: hidden;
 }
 
 .faq-question {
   width: 100%;
   background: none;
   border: none;
   padding: 1rem 1.2rem;
   text-align: left;
   font-weight: 600;
   display: flex;
   justify-content: space-between;
   align-items: center;
   cursor: pointer;
 }
 
 .faq-answer {
   padding: 0 1.2rem 1rem;
   color: var(--muted);
 }
 
 .contact-grid {
   display: flex;
   flex-direction: column;
   gap: 1.5rem;
 }
 
 .info-block {
   background: var(--surface);
   border-radius: 20px;
   padding: 1.5rem;
   border: 1px solid var(--border);
 }
 
 .site-footer {
   padding: 2rem 0 3rem;
   border-top: 1px solid var(--border);
   background: var(--surface);
 }
 
 .footer-links {
   display: flex;
   flex-direction: column;
   gap: 0.5rem;
   margin-top: 1rem;
 }
 
 .footer-links a {
   color: var(--muted);
 }
 
 .cookie-banner {
   position: fixed;
   inset: auto 1rem 1rem 1rem;
   background: var(--surface);
   border-radius: 16px;
   border: 1px solid var(--border);
   padding: 1.2rem;
   box-shadow: var(--shadow);
   display: none;
   flex-direction: column;
   gap: 1rem;
   z-index: 20;
 }
 
 .cookie-banner.visible {
   display: flex;
 }
 
 .cookie-actions {
   display: flex;
   flex-wrap: wrap;
   gap: 0.6rem;
 }
 
 .cookie-modal {
   position: fixed;
   inset: 0;
   background: rgba(12, 17, 20, 0.6);
   display: none;
   align-items: center;
   justify-content: center;
   z-index: 30;
   padding: 1.5rem;
 }
 
 .cookie-modal.visible {
   display: flex;
 }
 
 .cookie-panel {
   background: var(--surface);
   border-radius: 22px;
   padding: 2rem;
   max-width: 520px;
   width: 100%;
   display: flex;
   flex-direction: column;
   gap: 1rem;
 }
 
 .cookie-options {
   display: flex;
   flex-direction: column;
   gap: 0.75rem;
 }
 
 .cookie-options label {
   display: flex;
   align-items: center;
   gap: 0.6rem;
 }
 
 .legal-list {
   display: flex;
   flex-direction: column;
   gap: 0.75rem;
 }
 
 .tag {
   display: inline-flex;
   align-items: center;
   gap: 0.5rem;
   padding: 0.3rem 0.9rem;
   border-radius: 999px;
   background: var(--surface-alt);
   color: var(--muted);
   font-size: 0.9rem;
 }
 
 @media (min-width: 768px) {
   .nav-toggle {
     display: none;
   }
 
   .nav-links {
     display: flex;
     flex-direction: row;
     padding: 0;
     align-items: center;
   }
 
   .hero {
     flex-direction: row;
     align-items: center;
     justify-content: space-between;
   }
 
   .cards {
     flex-direction: row;
     flex-wrap: wrap;
   }
 
   .card {
     flex: 1 1 260px;
   }
 
   .split {
     flex-direction: row;
     align-items: flex-start;
   }
 
   .pillars {
     flex-direction: row;
     flex-wrap: wrap;
   }
 
   .pillars .card {
     flex: 1 1 240px;
   }
 
   .stat-row {
     flex-direction: row;
   }
 
   .stat {
     flex: 1 1 200px;
   }
 
   .comparison {
     flex-direction: row;
   }
 
   .comparison .card {
     flex: 1 1 240px;
   }
 
   .contact-grid {
     flex-direction: row;
   }
 
   .contact-grid .info-block {
     flex: 1 1 280px;
   }
 
   .footer-links {
     flex-direction: row;
     flex-wrap: wrap;
     gap: 1rem;
   }
 }
