 :root {
   --bg: #f9f7fb;
   --surface: #ffffff;
   --ink: #1f1c2b;
   --muted: #5f5a72;
   --primary: #4a6fa1;
   --accent: #8c5fb2;
   --soft: #efe9f7;
   --border: #e2dced;
 }
 
 * {
   box-sizing: border-box;
 }
 
 body {
   margin: 0;
   font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
   color: var(--ink);
   background: var(--bg);
   line-height: 1.6;
 }
 
 img {
   max-width: 100%;
 }
 
 a {
   color: inherit;
   text-decoration: none;
 }
 
 .container {
   width: min(1100px, 90%);
   margin: 0 auto;
 }
 
 .skip-link {
   position: absolute;
   left: -999px;
   top: 10px;
   background: var(--ink);
   color: #fff;
   padding: 8px 12px;
   border-radius: 6px;
   z-index: 1000;
 }
 
 .skip-link:focus {
   left: 10px;
 }
 
 .site-header {
   background: var(--surface);
   border-bottom: 1px solid var(--border);
   position: sticky;
   top: 0;
   z-index: 100;
 }
 
 .nav-bar {
   display: flex;
   align-items: center;
   justify-content: space-between;
   padding: 16px 0;
   gap: 16px;
 }
 
 .brand {
   font-size: 1.2rem;
   font-weight: 700;
   letter-spacing: 0.5px;
 }
 
 .nav {
   display: none;
 }
 
 .nav-links {
   display: flex;
   gap: 18px;
   font-weight: 600;
   color: var(--muted);
 }
 
 .menu-toggle {
   background: var(--soft);
   border: 1px solid var(--border);
   padding: 8px 12px;
   border-radius: 999px;
   font-weight: 600;
   cursor: pointer;
 }
 
 .mobile-menu {
   display: none;
   border-top: 1px solid var(--border);
   background: var(--surface);
 }
 
 .mobile-menu.is-open {
   display: flex;
 }
 
 .mobile-menu-inner {
   display: flex;
   flex-direction: column;
   gap: 14px;
   padding: 18px 5%;
   font-weight: 600;
   color: var(--muted);
 }
 
 main {
   padding-bottom: 40px;
 }
 
 .section {
   padding: 56px 0;
 }
 
 .section.alt {
   background: var(--soft);
 }
 
 .hero {
   padding: 70px 0 60px;
 }
 
 .hero-grid {
   display: flex;
   flex-direction: column;
   gap: 24px;
 }
 
 .hero h1 {
   font-size: 2.4rem;
   line-height: 1.2;
   margin: 0 0 12px;
 }
 
 .hero p {
   color: var(--muted);
   max-width: 640px;
 }
 
 .hero-actions {
   display: flex;
   flex-wrap: wrap;
   gap: 12px;
   margin-top: 20px;
 }
 
 .button {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   padding: 10px 18px;
   border-radius: 999px;
   background: var(--primary);
   color: #fff;
   border: 1px solid var(--primary);
   font-weight: 600;
   cursor: pointer;
 }
 
 .button.secondary {
   background: transparent;
   color: var(--primary);
 }
 
 .button.ghost {
   background: var(--soft);
   color: var(--ink);
   border-color: var(--border);
 }
 
 .card-grid {
   display: flex;
   flex-direction: column;
   gap: 18px;
 }
 
 .card {
   background: var(--surface);
   border: 1px solid var(--border);
   border-radius: 16px;
   padding: 20px;
   display: flex;
   flex-direction: column;
   gap: 12px;
 }
 
 .card h3 {
   margin: 0;
 }
 
 .feature-row {
   display: flex;
   flex-direction: column;
   gap: 22px;
 }
 
 .feature-block {
   display: flex;
   flex-direction: column;
   gap: 12px;
   background: var(--surface);
   border-radius: 16px;
   padding: 18px;
   border: 1px solid var(--border);
 }
 
 .icon-circle {
   width: 44px;
   height: 44px;
   border-radius: 50%;
   background: var(--soft);
   display: flex;
   align-items: center;
   justify-content: center;
 }
 
 .split {
   display: flex;
   flex-direction: column;
   gap: 24px;
 }
 
 .stats {
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 .stat {
   background: var(--surface);
   border: 1px solid var(--border);
   border-radius: 14px;
   padding: 16px;
 }
 
 .stat strong {
   font-size: 1.4rem;
 }
 
 .quote {
   background: var(--surface);
   border-left: 4px solid var(--accent);
   padding: 20px;
   border-radius: 12px;
 }
 
 .testimonials {
   display: flex;
   flex-direction: column;
   gap: 18px;
 }
 
 .testimonial {
   background: var(--surface);
   border: 1px solid var(--border);
   border-radius: 16px;
   padding: 20px;
 }
 
 .badge-row {
   display: flex;
   flex-wrap: wrap;
   gap: 10px;
 }
 
 .badge {
   background: var(--soft);
   padding: 8px 12px;
   border-radius: 999px;
   font-weight: 600;
   color: var(--muted);
 }
 
 .faq-list {
   display: flex;
   flex-direction: column;
   gap: 12px;
 }
 
 .faq-item {
   border: 1px solid var(--border);
   border-radius: 12px;
   background: var(--surface);
   padding: 14px 16px;
 }
 
 .faq-question {
   background: none;
   border: none;
   width: 100%;
   text-align: left;
   font-size: 1rem;
   font-weight: 600;
   color: var(--ink);
   cursor: pointer;
   display: flex;
   align-items: center;
   justify-content: space-between;
   gap: 12px;
 }
 
 .faq-answer {
   margin-top: 10px;
   color: var(--muted);
   display: none;
 }
 
 .faq-item.open .faq-answer {
   display: block;
 }
 
 .cta-panel {
   background: var(--accent);
   color: #fff;
   border-radius: 20px;
   padding: 28px;
   display: flex;
   flex-direction: column;
   gap: 12px;
 }
 
 .cta-panel .button.secondary {
   color: #fff;
   border-color: #fff;
 }
 
 .footer {
   background: var(--surface);
   border-top: 1px solid var(--border);
   padding: 30px 0;
 }
 
 .footer-links {
   display: flex;
   flex-direction: column;
   gap: 10px;
   color: var(--muted);
   font-weight: 600;
 }
 
 .footer-meta {
   margin-top: 16px;
   color: var(--muted);
 }
 
 .cookie-banner {
   position: fixed;
   bottom: 16px;
   left: 50%;
   transform: translateX(-50%);
   background: var(--surface);
   border: 1px solid var(--border);
   box-shadow: 0 12px 30px rgba(31, 28, 43, 0.12);
   border-radius: 16px;
   padding: 16px;
   width: min(520px, 90%);
   display: none;
   z-index: 200;
 }
 
 .cookie-banner.is-visible {
   display: flex;
   flex-direction: column;
   gap: 12px;
 }
 
 .cookie-actions {
   display: flex;
   flex-wrap: wrap;
   gap: 10px;
 }
 
 .cookie-modal {
   position: fixed;
   inset: 0;
   background: rgba(31, 28, 43, 0.45);
   display: none;
   align-items: center;
   justify-content: center;
   z-index: 300;
   padding: 20px;
 }
 
 .cookie-modal.is-visible {
   display: flex;
 }
 
 .cookie-modal-content {
   background: var(--surface);
   border-radius: 18px;
   padding: 24px;
   max-width: 520px;
   width: 100%;
   display: flex;
   flex-direction: column;
   gap: 16px;
   position: relative;
 }
 
 .cookie-toggles {
   display: flex;
   flex-direction: column;
   gap: 10px;
 }
 
 .toggle-button {
   display: flex;
   justify-content: space-between;
   align-items: center;
   gap: 12px;
   padding: 10px 14px;
   border-radius: 12px;
   border: 1px solid var(--border);
   background: var(--soft);
   font-weight: 600;
   cursor: pointer;
 }
 
 .toggle-button[aria-pressed="true"] {
   background: var(--primary);
   color: #fff;
   border-color: var(--primary);
 }
 
 .modal-close {
   position: absolute;
   top: 12px;
   right: 12px;
   border: none;
   background: var(--soft);
   border-radius: 999px;
   padding: 6px 10px;
   cursor: pointer;
 }
 
 .no-scroll {
   overflow: hidden;
 }
 
 .comparison {
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 .comparison-column {
   flex: 1;
   border: 1px solid var(--border);
   border-radius: 14px;
   background: var(--surface);
   padding: 16px;
 }
 
 .info-list {
   display: flex;
   flex-direction: column;
   gap: 12px;
 }
 
 .info-item {
   background: var(--surface);
   border: 1px solid var(--border);
   border-radius: 12px;
   padding: 14px;
 }
 
 @media (min-width: 768px) {
   .nav {
     display: flex;
   }
 
   .menu-toggle {
     display: none;
   }
 
   .mobile-menu {
     display: none;
   }
 
   .hero-grid {
     flex-direction: row;
     align-items: center;
     justify-content: space-between;
   }
 
   .card-grid {
     flex-direction: row;
   }
 
   .card {
     flex: 1;
   }
 
   .feature-row {
     flex-direction: row;
   }
 
   .feature-block {
     flex: 1;
   }
 
   .split {
     flex-direction: row;
     align-items: flex-start;
   }
 
   .stats {
     flex-direction: row;
   }
 
   .stat {
     flex: 1;
   }
 
   .testimonials {
     flex-direction: row;
   }
 
   .testimonial {
     flex: 1;
   }
 
   .footer-links {
     flex-direction: row;
     flex-wrap: wrap;
   }
 
   .comparison {
     flex-direction: row;
   }
 }
