 :root {
   --bg: #f7f8fb;
   --surface: #ffffff;
   --text: #1d2433;
   --muted: #5f6b7a;
   --brand: #2451ff;
   --brand-dark: #1737b3;
   --accent: #11a675;
   --border: #e1e6ef;
   --shadow: 0 10px 30px rgba(14, 24, 45, 0.08);
 }
 
 * {
   box-sizing: border-box;
   margin: 0;
   padding: 0;
 }
 
 html {
   scroll-behavior: smooth;
 }
 
 body {
   font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
   background: var(--bg);
   color: var(--text);
   line-height: 1.6;
 }
 
 a {
   color: inherit;
   text-decoration: none;
 }
 
 img,
 svg {
   max-width: 100%;
   display: block;
 }
 
 .container {
   width: min(1120px, 92%);
   margin: 0 auto;
 }
 
 .section {
   padding: 64px 0;
 }
 
 .section-alt {
   background: var(--surface);
 }
 
 .eyebrow {
   text-transform: uppercase;
   letter-spacing: 0.18em;
   font-size: 12px;
   color: var(--muted);
   margin-bottom: 12px;
 }
 
 .section-title {
   font-size: clamp(26px, 3vw, 38px);
   margin-bottom: 16px;
 }
 
 .section-lead {
   color: var(--muted);
   max-width: 720px;
 }
 
 .button {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   gap: 8px;
   padding: 12px 20px;
   border-radius: 999px;
   background: var(--brand);
   color: #fff;
   font-weight: 600;
   border: 1px solid transparent;
   transition: background 0.2s ease, transform 0.2s ease, color 0.2s ease;
 }
 
 .button:hover,
 .button:focus-visible {
   background: var(--brand-dark);
   transform: translateY(-1px);
 }
 
 .button.outline {
   background: transparent;
   border-color: var(--brand);
   color: var(--brand);
 }
 
 .button.outline:hover,
 .button.outline:focus-visible {
   background: var(--brand);
   color: #fff;
 }
 
 .chip {
   display: inline-flex;
   align-items: center;
   gap: 8px;
   padding: 8px 14px;
   background: #eef2ff;
   color: var(--brand-dark);
   border-radius: 999px;
   font-weight: 600;
   font-size: 13px;
 }
 
 .site-header {
   background: var(--surface);
   border-bottom: 1px solid var(--border);
   position: sticky;
   top: 0;
   z-index: 100;
 }
 
 .nav {
   display: flex;
   align-items: center;
   justify-content: space-between;
   padding: 16px 0;
   gap: 16px;
 }
 
 .brand {
   display: flex;
   align-items: center;
   gap: 12px;
   font-weight: 700;
   font-size: 18px;
 }
 
 .brand svg {
   width: 32px;
   height: 32px;
 }
 
 .nav-links {
   display: none;
   flex-direction: column;
   gap: 12px;
   background: var(--surface);
   position: absolute;
   top: 68px;
   left: 0;
   right: 0;
   padding: 20px;
   border-bottom: 1px solid var(--border);
   box-shadow: var(--shadow);
 }
 
 .nav-links a {
   font-weight: 600;
 }
 
 .nav-links.is-open {
   display: flex;
 }
 
 .nav-toggle {
   background: transparent;
   border: 1px solid var(--border);
   border-radius: 10px;
   padding: 8px 10px;
   cursor: pointer;
 }
 
 .nav-toggle span {
   display: block;
   width: 22px;
   height: 2px;
   background: var(--text);
   margin: 5px 0;
 }
 
 .hero {
   padding: 72px 0;
 }
 
 .hero-grid {
   display: flex;
   flex-direction: column;
   gap: 32px;
 }
 
 .hero-card {
   background: var(--surface);
   padding: 28px;
   border-radius: 20px;
   box-shadow: var(--shadow);
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 .hero-card ul {
   list-style: none;
   display: flex;
   flex-direction: column;
   gap: 10px;
   color: var(--muted);
 }
 
 .hero-actions {
   display: flex;
   flex-wrap: wrap;
   gap: 12px;
 }
 
 .card-grid {
   display: flex;
   flex-direction: column;
   gap: 20px;
   margin-top: 32px;
 }
 
 .card {
   background: var(--surface);
   border-radius: 18px;
   padding: 24px;
   border: 1px solid var(--border);
   display: flex;
   flex-direction: column;
   gap: 12px;
 }
 
 .card .price {
   font-size: 20px;
   font-weight: 700;
   color: var(--brand-dark);
 }
 
 .feature-list {
   display: flex;
   flex-direction: column;
   gap: 14px;
   margin-top: 24px;
 }
 
 .feature {
   display: flex;
   gap: 14px;
   align-items: flex-start;
 }
 
 .feature svg {
   width: 28px;
   height: 28px;
   flex: 0 0 auto;
 }
 
 .split {
   display: flex;
   flex-direction: column;
   gap: 24px;
 }
 
 .highlight {
   background: #0f172a;
   color: #fff;
   border-radius: 24px;
   padding: 28px;
 }
 
 .highlight .section-lead {
   color: #d7def0;
 }
 
 .stats {
   display: flex;
   flex-direction: column;
   gap: 16px;
   margin-top: 32px;
 }
 
 .stat {
   background: var(--surface);
   border-radius: 16px;
   padding: 20px;
   border: 1px solid var(--border);
   display: flex;
   justify-content: space-between;
   align-items: center;
   gap: 12px;
 }
 
 .stat strong {
   font-size: 26px;
 }
 
 .timeline {
   display: flex;
   flex-direction: column;
   gap: 18px;
   margin-top: 28px;
 }
 
 .timeline-item {
   background: var(--surface);
   border-radius: 16px;
   padding: 18px;
   border-left: 4px solid var(--accent);
 }
 
 .quote {
   background: #eef2ff;
   border-radius: 18px;
   padding: 26px;
   font-style: italic;
   color: #2b3a55;
 }
 
 .testimonials {
   display: flex;
   flex-direction: column;
   gap: 18px;
   margin-top: 24px;
 }
 
 .testimonial {
   background: var(--surface);
   border-radius: 18px;
   padding: 22px;
   border: 1px solid var(--border);
 }
 
 .industries {
   display: flex;
   flex-wrap: wrap;
   gap: 12px;
   margin-top: 22px;
 }
 
 .industry-tag {
   padding: 8px 14px;
   border-radius: 999px;
   border: 1px solid var(--border);
   background: var(--surface);
   font-weight: 600;
 }
 
 .comparison {
   display: flex;
   flex-direction: column;
   gap: 16px;
   margin-top: 28px;
 }
 
 .comparison-row {
   display: flex;
   flex-direction: column;
   gap: 10px;
   background: var(--surface);
   border-radius: 18px;
   padding: 20px;
   border: 1px solid var(--border);
 }
 
 .comparison-row span {
   font-weight: 600;
 }
 
 .faq {
   margin-top: 26px;
   display: flex;
   flex-direction: column;
   gap: 14px;
 }
 
 .faq-item {
   background: var(--surface);
   border-radius: 16px;
   border: 1px solid var(--border);
   overflow: hidden;
 }
 
 .faq-question {
   width: 100%;
   text-align: left;
   padding: 16px 18px;
   border: none;
   background: transparent;
   font-weight: 600;
   cursor: pointer;
   display: flex;
   justify-content: space-between;
   align-items: center;
   gap: 12px;
 }
 
 .faq-answer {
   padding: 0 18px 18px;
   color: var(--muted);
   display: none;
 }
 
 .faq-item.is-open .faq-answer {
   display: block;
 }
 
 .cta-panel {
   background: #fff;
   border-radius: 24px;
   padding: 32px;
   border: 1px solid var(--border);
   display: flex;
   flex-direction: column;
   gap: 18px;
 }
 
 .site-footer {
   background: #0d1321;
   color: #dbe2f4;
   padding: 48px 0 72px;
 }
 
 .footer-grid {
   display: flex;
   flex-direction: column;
   gap: 24px;
 }
 
 .footer-links {
   display: flex;
   flex-wrap: wrap;
   gap: 12px 20px;
 }
 
 .footer-links a {
   color: #dbe2f4;
 }
 
 .cookie-banner {
   position: fixed;
   bottom: 16px;
   left: 16px;
   right: 16px;
   background: #0f172a;
   color: #fff;
   padding: 16px;
   border-radius: 16px;
   display: none;
   flex-direction: column;
   gap: 12px;
   box-shadow: var(--shadow);
   z-index: 120;
 }
 
 .cookie-banner.is-visible {
   display: flex;
 }
 
 .cookie-actions {
   display: flex;
   flex-wrap: wrap;
   gap: 10px;
 }
 
 .modal {
   position: fixed;
   inset: 0;
   background: rgba(15, 23, 42, 0.5);
   display: none;
   align-items: center;
   justify-content: center;
   padding: 20px;
   z-index: 130;
 }
 
 .modal.is-visible {
   display: flex;
 }
 
 .modal-content {
   background: #fff;
   border-radius: 20px;
   padding: 24px;
   width: min(520px, 92%);
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 .toggle-row {
   display: flex;
   justify-content: space-between;
   align-items: center;
   padding: 12px 0;
   border-bottom: 1px solid var(--border);
 }
 
 .toggle {
   display: inline-flex;
   align-items: center;
   gap: 8px;
   cursor: pointer;
 }
 
 .toggle .switch {
   width: 42px;
   height: 24px;
   border-radius: 999px;
   background: #cbd5f5;
   position: relative;
   transition: background 0.2s ease;
 }
 
 .toggle .switch::after {
   content: "";
   position: absolute;
   width: 18px;
   height: 18px;
   background: #fff;
   border-radius: 50%;
   top: 3px;
   left: 3px;
   transition: transform 0.2s ease;
 }
 
 .toggle[aria-checked="true"] .switch {
   background: var(--accent);
 }
 
 .toggle[aria-checked="true"] .switch::after {
   transform: translateX(18px);
 }
 
 .info-list {
   display: flex;
   flex-direction: column;
   gap: 10px;
 }
 
 .info-item {
   background: var(--surface);
   border-radius: 14px;
   padding: 16px;
   border: 1px solid var(--border);
 }
 
 .two-column {
   display: flex;
   flex-direction: column;
   gap: 18px;
 }
 
 .note {
   font-size: 14px;
   color: var(--muted);
 }
 
 .divider {
   height: 1px;
   background: var(--border);
   margin: 22px 0;
 }
 
 @media (min-width: 768px) {
   .nav-links {
     position: static;
     display: flex;
     flex-direction: row;
     gap: 20px;
     padding: 0;
     border: none;
     box-shadow: none;
   }
 
   .nav-toggle {
     display: none;
   }
 
   .hero-grid {
     flex-direction: row;
     align-items: center;
   }
 
   .card-grid {
     flex-direction: row;
     flex-wrap: wrap;
   }
 
   .card {
     flex: 1 1 calc(50% - 20px);
   }
 
   .split {
     flex-direction: row;
     align-items: flex-start;
   }
 
   .stats {
     flex-direction: row;
     flex-wrap: wrap;
   }
 
   .stat {
     flex: 1 1 calc(33% - 16px);
   }
 
   .testimonials {
     flex-direction: row;
   }
 
   .testimonial {
     flex: 1 1 0;
   }
 
   .comparison {
     flex-direction: row;
   }
 
   .comparison-row {
     flex: 1 1 0;
   }
 
   .footer-grid {
     flex-direction: row;
     justify-content: space-between;
   }
 
   .two-column {
     flex-direction: row;
   }
 
   .info-item {
     flex: 1 1 0;
   }
 }
 
 @media (min-width: 1024px) {
   .card {
     flex: 1 1 calc(33% - 20px);
   }
 }
