 :root {
   --bg: #f6f4f1;
   --surface: #ffffff;
   --ink: #1f2328;
   --muted: #5a616b;
   --brand: #3c2c7a;
   --brand-soft: #efeaff;
   --accent: #1d6e5c;
   --line: #e2e0dc;
   --shadow: 0 12px 30px rgba(31, 35, 40, 0.08);
 }
 
 * {
   box-sizing: border-box;
 }
 
 html {
   scroll-behavior: smooth;
 }
 
 body {
   margin: 0;
   font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
   background: var(--bg);
   color: var(--ink);
   line-height: 1.6;
 }
 
 a {
   color: inherit;
   text-decoration: none;
 }
 
 img,
 svg {
   max-width: 100%;
   height: auto;
 }
 
 .container {
   width: min(1100px, 92%);
   margin: 0 auto;
 }
 
 .site-header {
   position: sticky;
   top: 0;
   z-index: 10;
   background: var(--surface);
   border-bottom: 1px solid var(--line);
 }
 
 .header-inner {
   display: flex;
   align-items: center;
   justify-content: space-between;
   padding: 16px 0;
   gap: 16px;
 }
 
 .logo {
   font-weight: 700;
   letter-spacing: 0.6px;
 }
 
 .menu-toggle {
   background: transparent;
   border: 1px solid var(--line);
   padding: 10px 14px;
   border-radius: 999px;
   font-size: 0.95rem;
   cursor: pointer;
 }
 
 .nav {
   display: none;
   flex-direction: column;
   gap: 14px;
   padding: 16px 0 12px;
 }
 
 .nav.is-open {
   display: flex;
 }
 
 .nav a {
   font-weight: 500;
   color: var(--muted);
 }
 
 .nav a:hover,
 .nav a:focus {
   color: var(--ink);
 }
 
 .section {
   padding: 56px 0;
 }
 
 .section.alt {
   background: var(--surface);
 }
 
 .section.soft {
   background: var(--brand-soft);
 }
 
 .eyebrow {
   text-transform: uppercase;
   font-size: 0.78rem;
   letter-spacing: 1.4px;
   color: var(--accent);
   margin-bottom: 12px;
 }
 
 .hero {
   display: flex;
   flex-direction: column;
   gap: 24px;
 }
 
 .hero h1 {
   font-size: clamp(2rem, 4vw, 3.2rem);
   margin: 0;
 }
 
 .hero p {
   font-size: 1.05rem;
   color: var(--muted);
 }
 
 .btn-row {
   display: flex;
   flex-wrap: wrap;
   gap: 12px;
 }
 
 .btn {
   padding: 12px 20px;
   border-radius: 999px;
   border: 1px solid var(--brand);
   font-weight: 600;
   cursor: pointer;
   display: inline-flex;
   align-items: center;
   gap: 8px;
 }
 
 .btn-primary {
   background: var(--brand);
   color: #fff;
 }
 
 .btn-ghost {
   background: transparent;
   color: var(--brand);
 }
 
 .grid {
   display: flex;
   flex-direction: column;
   gap: 18px;
 }
 
 .card {
   background: var(--surface);
   padding: 20px;
   border-radius: 16px;
   border: 1px solid var(--line);
   box-shadow: var(--shadow);
   display: flex;
   flex-direction: column;
   gap: 12px;
 }
 
 .card .icon {
   width: 42px;
   height: 42px;
   background: var(--brand-soft);
   display: inline-flex;
   align-items: center;
   justify-content: center;
   border-radius: 12px;
 }
 
 .feature-list {
   display: flex;
   flex-direction: column;
   gap: 12px;
   padding: 0;
   margin: 0;
   list-style: none;
 }
 
 .feature-list li {
   display: flex;
   gap: 12px;
   align-items: flex-start;
 }
 
 .feature-list span {
   background: var(--brand);
   color: #fff;
   width: 24px;
   height: 24px;
   border-radius: 999px;
   display: inline-flex;
   align-items: center;
   justify-content: center;
   font-size: 0.75rem;
   flex-shrink: 0;
 }
 
 .stats {
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 .stat-item {
   background: var(--surface);
   padding: 18px;
   border-radius: 14px;
   border: 1px solid var(--line);
   display: flex;
   justify-content: space-between;
   align-items: center;
   gap: 16px;
 }
 
 .stat-item strong {
   font-size: 1.4rem;
 }
 
 .quote {
   background: var(--brand);
   color: #fff;
   padding: 28px;
   border-radius: 18px;
   display: flex;
   flex-direction: column;
   gap: 12px;
 }
 
 .split {
   display: flex;
   flex-direction: column;
   gap: 24px;
 }
 
 .comparison {
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 .comparison-item {
   background: var(--surface);
   border: 1px solid var(--line);
   border-radius: 16px;
   padding: 18px;
   display: flex;
   flex-direction: column;
   gap: 10px;
 }
 
 .tag {
   display: inline-flex;
   align-items: center;
   gap: 6px;
   padding: 4px 12px;
   border-radius: 999px;
   background: var(--brand-soft);
   color: var(--brand);
   font-size: 0.8rem;
   font-weight: 600;
 }
 
 .faq {
   display: flex;
   flex-direction: column;
   gap: 12px;
 }
 
 .faq-item {
   background: var(--surface);
   border-radius: 14px;
   border: 1px solid var(--line);
   overflow: hidden;
 }
 
 .faq-item button {
   width: 100%;
   background: transparent;
   border: none;
   padding: 16px 18px;
   text-align: left;
   font-weight: 600;
   display: flex;
   justify-content: space-between;
   align-items: center;
   cursor: pointer;
 }
 
 .faq-item .answer {
   display: none;
   padding: 0 18px 16px;
   color: var(--muted);
 }
 
 .faq-item.is-open .answer {
   display: block;
 }
 
 .service-card {
   display: flex;
   flex-direction: column;
   gap: 10px;
 }
 
 .price {
   font-weight: 700;
   color: var(--brand);
 }
 
 .footer {
   background: #101016;
   color: #d7d4db;
   padding: 40px 0;
 }
 
 .footer a {
   color: inherit;
 }
 
 .footer-inner {
   display: flex;
   flex-direction: column;
   gap: 24px;
 }
 
 .footer-nav {
   display: flex;
   flex-direction: column;
   gap: 8px;
 }
 
 .cookie-banner {
   position: fixed;
   inset: auto 16px 16px 16px;
   background: var(--surface);
   border: 1px solid var(--line);
   border-radius: 16px;
   box-shadow: var(--shadow);
   padding: 16px;
   display: none;
   gap: 12px;
   flex-direction: column;
 }
 
 .cookie-banner.is-visible {
   display: flex;
 }
 
 .cookie-actions {
   display: flex;
   flex-wrap: wrap;
   gap: 10px;
 }
 
 .cookie-modal {
   position: fixed;
   inset: 0;
   background: rgba(15, 18, 22, 0.55);
   display: none;
   align-items: center;
   justify-content: center;
   padding: 18px;
 }
 
 .cookie-modal.is-visible {
   display: flex;
 }
 
 .cookie-panel {
   background: var(--surface);
   border-radius: 20px;
   padding: 24px;
   width: min(560px, 96%);
   display: flex;
   flex-direction: column;
   gap: 18px;
 }
 
 .switch {
   display: flex;
   justify-content: space-between;
   align-items: center;
   padding: 12px;
   border-radius: 12px;
   border: 1px solid var(--line);
 }
 
 .switch button {
   border: 1px solid var(--line);
   background: var(--brand-soft);
   border-radius: 999px;
   padding: 6px 16px;
   font-weight: 600;
   cursor: pointer;
 }
 
 .switch button[aria-pressed="true"] {
   background: var(--brand);
   color: #fff;
   border-color: var(--brand);
 }
 
 .section-title {
   display: flex;
   flex-direction: column;
   gap: 10px;
   margin-bottom: 18px;
 }
 
 .callout {
   background: var(--accent);
   color: #fff;
   padding: 24px;
   border-radius: 18px;
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 .info-block {
   border: 1px solid var(--line);
   border-radius: 16px;
   padding: 18px;
   background: var(--surface);
   display: flex;
   flex-direction: column;
   gap: 8px;
 }
 
 @media (min-width: 768px) {
   .nav {
     display: flex;
     flex-direction: row;
     gap: 20px;
     padding: 0;
   }
 
   .menu-toggle {
     display: none;
   }
 
   .hero {
     flex-direction: row;
     align-items: center;
     justify-content: space-between;
   }
 
   .grid {
     flex-direction: row;
     flex-wrap: wrap;
   }
 
   .grid .card {
     flex: 1 1 calc(33.333% - 18px);
     min-width: 220px;
   }
 
   .split {
     flex-direction: row;
     align-items: flex-start;
   }
 
   .stats {
     flex-direction: row;
     flex-wrap: wrap;
   }
 
   .stat-item {
     flex: 1 1 calc(50% - 16px);
   }
 
   .comparison {
     flex-direction: row;
   }
 
   .comparison-item {
     flex: 1 1 0;
   }
 
   .footer-inner {
     flex-direction: row;
     justify-content: space-between;
   }
 
   .footer-nav {
     flex-direction: row;
     gap: 18px;
   }
 }
