 :root {
   --ink: #1b1d29;
   --muted: #5d6579;
   --brand: #2f6bff;
   --brand-dark: #1847c2;
   --accent: #f4b942;
   --surface: #ffffff;
   --surface-alt: #f3f5f9;
   --surface-dark: #101622;
   --border: #e1e6ef;
 }
 
 * {
   box-sizing: border-box;
 }
 
 body {
   margin: 0;
   font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
   color: var(--ink);
   background: var(--surface);
   line-height: 1.6;
 }
 
 img,
 svg {
   max-width: 100%;
   display: block;
 }
 
 a {
   color: inherit;
   text-decoration: none;
 }
 
 .container {
   width: min(1120px, 92%);
   margin: 0 auto;
 }
 
 .site-header {
   position: sticky;
   top: 0;
   background: var(--surface);
   border-bottom: 1px solid var(--border);
   z-index: 50;
 }
 
 .header-inner {
   display: flex;
   align-items: center;
   justify-content: space-between;
   padding: 1rem 0;
   gap: 1rem;
 }
 
 .brand {
   font-weight: 700;
   letter-spacing: 0.2px;
   font-size: 1.2rem;
 }
 
 .menu-toggle {
   border: 1px solid var(--border);
   background: var(--surface);
   color: var(--ink);
   padding: 0.55rem 0.85rem;
   border-radius: 999px;
   font-size: 0.95rem;
 }
 
 .primary-nav {
   position: absolute;
   top: 100%;
   right: 4%;
   background: var(--surface);
   border: 1px solid var(--border);
   border-radius: 12px;
   display: none;
   flex-direction: column;
   gap: 0.75rem;
   padding: 1rem;
   min-width: 200px;
   box-shadow: 0 18px 30px rgba(16, 22, 34, 0.1);
 }
 
 .primary-nav a {
   color: var(--ink);
   font-weight: 600;
 }
 
 .primary-nav.is-open {
   display: flex;
 }
 
 .section {
   padding: 3.5rem 0;
 }
 
 .section-alt {
   background: var(--surface-alt);
 }
 
 .section-dark {
   background: var(--surface-dark);
   color: #f8f9fb;
 }
 
 .section-title {
   font-size: 2rem;
   margin: 0 0 1rem;
 }
 
 .section-lead {
   color: var(--muted);
   max-width: 720px;
 }
 
 .split {
   display: flex;
   flex-direction: column;
   gap: 2rem;
 }
 
 .cards {
   display: flex;
   flex-direction: column;
   gap: 1.5rem;
 }
 
 .card {
   border: 1px solid var(--border);
   background: var(--surface);
   padding: 1.5rem;
   border-radius: 16px;
   display: flex;
   flex-direction: column;
   gap: 0.75rem;
 }
 
 .card strong {
   font-size: 1.05rem;
 }
 
 .tag {
   display: inline-flex;
   align-items: center;
   gap: 0.4rem;
   padding: 0.3rem 0.8rem;
   border-radius: 999px;
   background: rgba(47, 107, 255, 0.12);
   color: var(--brand-dark);
   font-size: 0.85rem;
   font-weight: 600;
 }
 
 .stat-grid {
   display: flex;
   flex-direction: column;
   gap: 1.5rem;
 }
 
 .stat {
   border-left: 4px solid var(--brand);
   padding-left: 1rem;
 }
 
 .stat strong {
   font-size: 1.8rem;
   display: block;
 }
 
 .feature-list {
   display: flex;
   flex-direction: column;
   gap: 1rem;
 }
 
 .feature-item {
   display: flex;
   gap: 1rem;
   align-items: flex-start;
 }
 
 .feature-icon {
   width: 44px;
   height: 44px;
   border-radius: 12px;
   background: rgba(47, 107, 255, 0.12);
   display: flex;
   align-items: center;
   justify-content: center;
 }
 
 .button {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   padding: 0.7rem 1.4rem;
   border-radius: 999px;
   background: var(--brand);
   color: #ffffff;
   font-weight: 600;
   border: none;
 }
 
 .button.secondary {
   background: transparent;
   color: var(--brand);
   border: 1px solid var(--brand);
 }
 
 .quote {
   font-size: 1.3rem;
   font-style: italic;
   margin: 0;
 }
 
 .timeline {
   display: flex;
   flex-direction: column;
   gap: 1.25rem;
 }
 
 .timeline-item {
   padding: 1rem 1.25rem;
   background: var(--surface-alt);
   border-radius: 12px;
 }
 
 .faq {
   display: flex;
   flex-direction: column;
   gap: 1rem;
 }
 
 .faq-item {
   border: 1px solid var(--border);
   border-radius: 12px;
   overflow: hidden;
 }
 
 .faq-question {
   width: 100%;
   text-align: left;
   padding: 1rem 1.2rem;
   font-weight: 600;
   background: var(--surface);
   border: none;
 }
 
 .faq-answer {
   padding: 0 1.2rem 1rem;
   display: none;
   color: var(--muted);
 }
 
 .faq-item.is-open .faq-answer {
   display: block;
 }
 
 .compare {
   display: flex;
   flex-direction: column;
   gap: 1rem;
 }
 
 .compare-row {
   display: flex;
   flex-direction: column;
   gap: 0.75rem;
   padding: 1rem;
   border: 1px solid var(--border);
   border-radius: 12px;
   background: var(--surface);
 }
 
 .compare-row strong {
   font-size: 1.05rem;
 }
 
 .contact-grid {
   display: flex;
   flex-direction: column;
   gap: 1.5rem;
 }
 
 .site-footer {
   background: var(--surface-alt);
   padding: 2.5rem 0;
 }
 
 .footer-links {
   display: flex;
   flex-direction: column;
   gap: 0.5rem;
   margin-top: 1rem;
 }
 
 .cookie-banner {
   position: fixed;
   bottom: 1.5rem;
   left: 50%;
   transform: translateX(-50%);
   background: var(--surface);
   border: 1px solid var(--border);
   padding: 1.25rem;
   border-radius: 16px;
   width: min(560px, 92%);
   box-shadow: 0 20px 40px rgba(16, 22, 34, 0.15);
   display: none;
   z-index: 60;
 }
 
 .cookie-banner.is-visible {
   display: block;
 }
 
 .cookie-actions {
   display: flex;
   flex-direction: column;
   gap: 0.5rem;
   margin-top: 1rem;
 }
 
 .cookie-modal {
   position: fixed;
   inset: 0;
   background: rgba(16, 22, 34, 0.5);
   display: none;
   align-items: center;
   justify-content: center;
   padding: 1.5rem;
   z-index: 70;
 }
 
 .cookie-modal.is-open {
   display: flex;
 }
 
 .cookie-panel {
   background: var(--surface);
   border-radius: 16px;
   padding: 1.5rem;
   width: min(540px, 95%);
 }
 
 .cookie-toggle {
   display: flex;
   justify-content: space-between;
   align-items: center;
   padding: 0.75rem 0;
   border-bottom: 1px solid var(--border);
 }
 
 .cookie-toggle:last-child {
   border-bottom: none;
 }
 
 .cookie-toggle button {
   border-radius: 999px;
   padding: 0.3rem 0.9rem;
   border: 1px solid var(--border);
   background: var(--surface-alt);
 }
 
 .cookie-toggle button[aria-pressed="true"] {
   background: var(--brand);
   color: #fff;
   border-color: var(--brand);
 }
 
 @media (min-width: 768px) {
   .menu-toggle {
     display: none;
   }
 
   .primary-nav {
     position: static;
     display: flex;
     flex-direction: row;
     gap: 1.5rem;
     padding: 0;
     border: none;
     box-shadow: none;
     background: transparent;
   }
 
   .split {
     flex-direction: row;
     align-items: center;
   }
 
   .cards {
     flex-direction: row;
     flex-wrap: wrap;
   }
 
   .card {
     flex: 1 1 240px;
   }
 
   .stat-grid {
     flex-direction: row;
   }
 
   .feature-list {
     flex-direction: row;
     flex-wrap: wrap;
   }
 
   .feature-item {
     flex: 1 1 260px;
   }
 
   .compare-row {
     flex-direction: row;
     align-items: center;
     justify-content: space-between;
   }
 
   .contact-grid {
     flex-direction: row;
     flex-wrap: wrap;
   }
 
   .contact-grid .card {
     flex: 1 1 320px;
   }
 
   .footer-links {
     flex-direction: row;
     flex-wrap: wrap;
     gap: 1rem;
   }
 
   .cookie-actions {
     flex-direction: row;
     justify-content: flex-end;
   }
 }
