 :root {
   --bg: #0b0f14;
   --bg-alt: #121826;
   --panel: #0f1624;
   --text: #e6edf6;
   --muted: #a9b4c2;
   --accent: #3f8cff;
   --accent-2: #4bd4c8;
   --warning: #f2c84b;
   --border: #233045;
 }
 
 * {
   box-sizing: border-box;
 }
 
 body {
   margin: 0;
   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%;
   height: auto;
 }
 
 .container {
   width: 100%;
   max-width: 1120px;
   margin: 0 auto;
   padding: 0 20px;
 }
 
 header {
   position: sticky;
   top: 0;
   z-index: 100;
   background: rgba(11, 15, 20, 0.94);
   border-bottom: 1px solid var(--border);
   backdrop-filter: blur(10px);
 }
 
 .nav-bar {
   display: flex;
   align-items: center;
   justify-content: space-between;
   padding: 16px 0;
 }
 
 .brand {
   display: flex;
   align-items: center;
   gap: 12px;
   font-weight: 600;
   letter-spacing: 0.4px;
 }
 
 .brand svg {
   width: 36px;
 }
 
 .nav-links {
   display: flex;
   flex-direction: column;
   gap: 16px;
   background: var(--panel);
   position: absolute;
   right: 20px;
   top: 68px;
   padding: 20px;
   border: 1px solid var(--border);
   border-radius: 12px;
   min-width: 220px;
   box-shadow: 0 18px 40px rgba(0, 0, 0, 0.4);
   opacity: 0;
   pointer-events: none;
   transform: translateY(-8px);
   transition: all 0.2s ease;
 }
 
 .nav-links a {
   color: var(--text);
 }
 
 .nav-links.open {
   opacity: 1;
   pointer-events: auto;
   transform: translateY(0);
 }
 
 .nav-toggle {
   background: transparent;
   border: 1px solid var(--border);
   color: var(--text);
   padding: 8px 12px;
   border-radius: 10px;
   display: flex;
   align-items: center;
   gap: 8px;
 }
 
 .nav-toggle span {
   width: 18px;
   height: 2px;
   background: var(--text);
   display: block;
   border-radius: 999px;
 }
 
 .section {
   padding: 64px 0;
 }
 
 .section.alt {
   background: var(--bg-alt);
 }
 
 .section h2 {
   margin-top: 0;
   margin-bottom: 16px;
   font-size: 28px;
 }
 
 .eyebrow {
   text-transform: uppercase;
   letter-spacing: 2px;
   font-size: 12px;
   color: var(--accent-2);
   margin-bottom: 12px;
   font-weight: 600;
 }
 
 .hero {
   display: flex;
   flex-direction: column;
   gap: 32px;
 }
 
 .hero h1 {
   font-size: 36px;
   margin: 0 0 12px;
 }
 
 .hero p {
   color: var(--muted);
   margin: 0 0 20px;
 }
 
 .button-row {
   display: flex;
   flex-wrap: wrap;
   gap: 12px;
 }
 
 .btn {
   display: inline-flex;
   align-items: center;
   gap: 8px;
   padding: 12px 18px;
   border-radius: 999px;
   border: 1px solid transparent;
   font-weight: 600;
   font-size: 14px;
   cursor: pointer;
 }
 
 .btn.primary {
   background: var(--accent);
   color: #08101b;
 }
 
 .btn.ghost {
   background: transparent;
   border-color: var(--border);
   color: var(--text);
 }
 
 .card-grid {
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 .card {
   padding: 20px;
   border-radius: 14px;
   border: 1px solid var(--border);
   background: var(--panel);
 }
 
 .card h3 {
   margin-top: 0;
 }
 
 .split {
   display: flex;
   flex-direction: column;
   gap: 24px;
 }
 
 .stat-bar {
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 .stat {
   display: flex;
   align-items: center;
   justify-content: space-between;
   padding: 16px 20px;
   border-radius: 12px;
   background: var(--panel);
   border: 1px solid var(--border);
 }
 
 .stat span {
   color: var(--muted);
 }
 
 .quote {
   padding: 28px;
   border-left: 4px solid var(--accent-2);
   background: rgba(75, 212, 200, 0.08);
   border-radius: 12px;
 }
 
 .icon-list {
   display: flex;
   flex-direction: column;
   gap: 14px;
 }
 
 .icon-item {
   display: flex;
   gap: 14px;
   align-items: flex-start;
 }
 
 .icon-item svg {
   width: 28px;
   flex-shrink: 0;
 }
 
 .process {
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 .process-step {
   display: flex;
   gap: 16px;
   align-items: flex-start;
   background: var(--panel);
   border: 1px solid var(--border);
   padding: 18px;
   border-radius: 12px;
 }
 
 .process-step .step-number {
   font-size: 20px;
   color: var(--accent);
   font-weight: 700;
 }
 
 .tags {
   display: flex;
   flex-wrap: wrap;
   gap: 10px;
 }
 
 .tag {
   padding: 8px 12px;
   border-radius: 999px;
   background: rgba(63, 140, 255, 0.15);
   color: var(--accent);
   font-size: 13px;
 }
 
 .comparison {
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 .comparison-row {
   display: flex;
   flex-direction: column;
   gap: 12px;
   padding: 16px;
   border-radius: 12px;
   background: var(--panel);
   border: 1px solid var(--border);
 }
 
 .faq {
   display: flex;
   flex-direction: column;
   gap: 12px;
 }
 
 .faq-item {
   border: 1px solid var(--border);
   border-radius: 12px;
   overflow: hidden;
   background: var(--panel);
 }
 
 .faq-question {
   display: flex;
   justify-content: space-between;
   align-items: center;
   width: 100%;
   background: transparent;
   border: none;
   color: var(--text);
   padding: 16px 18px;
   text-align: left;
   cursor: pointer;
   font-size: 16px;
 }
 
 .faq-answer {
   max-height: 0;
   overflow: hidden;
   padding: 0 18px;
   color: var(--muted);
   transition: max-height 0.2s ease, padding 0.2s ease;
 }
 
 .faq-item.open .faq-answer {
   max-height: 200px;
   padding: 0 18px 16px;
 }
 
 footer {
   border-top: 1px solid var(--border);
   padding: 40px 0;
   background: #0b111a;
 }
 
 .footer-grid {
   display: flex;
   flex-direction: column;
   gap: 24px;
 }
 
 .footer-links {
   display: flex;
   flex-wrap: wrap;
   gap: 14px;
   color: var(--muted);
 }
 
 .cookie-banner {
   position: fixed;
   left: 16px;
   right: 16px;
   bottom: 16px;
   background: var(--panel);
   border: 1px solid var(--border);
   padding: 16px;
   border-radius: 14px;
   display: none;
   flex-direction: column;
   gap: 12px;
   z-index: 200;
 }
 
 .cookie-banner.show {
   display: flex;
 }
 
 .cookie-actions {
   display: flex;
   flex-wrap: wrap;
   gap: 10px;
 }
 
 .modal {
   position: fixed;
   inset: 0;
   background: rgba(5, 10, 20, 0.65);
   display: none;
   align-items: center;
   justify-content: center;
   z-index: 250;
   padding: 20px;
 }
 
 .modal.show {
   display: flex;
 }
 
 .modal-content {
   background: var(--panel);
   border: 1px solid var(--border);
   border-radius: 16px;
   max-width: 560px;
   width: 100%;
   padding: 24px;
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 .toggle-list {
   display: flex;
   flex-direction: column;
   gap: 10px;
 }
 
 .toggle-item {
   display: flex;
   align-items: center;
   justify-content: space-between;
   padding: 12px 14px;
   border-radius: 12px;
   border: 1px solid var(--border);
 }
 
 .toggle-button {
   padding: 6px 14px;
   border-radius: 999px;
   border: 1px solid var(--border);
   background: transparent;
   color: var(--text);
   cursor: pointer;
 }
 
 .toggle-button[aria-pressed="true"] {
   background: var(--accent-2);
   color: #041019;
   border-color: transparent;
 }
 
 @media (min-width: 760px) {
   .nav-links {
     position: static;
     flex-direction: row;
     align-items: center;
     background: transparent;
     border: none;
     box-shadow: none;
     opacity: 1;
     pointer-events: auto;
     transform: none;
     padding: 0;
   }
 
   .nav-toggle {
     display: none;
   }
 
   .hero {
     flex-direction: row;
     align-items: center;
     justify-content: space-between;
   }
 
   .hero h1 {
     font-size: 44px;
   }
 
   .card-grid {
     flex-direction: row;
     flex-wrap: wrap;
   }
 
   .card {
     flex: 1 1 280px;
   }
 
   .split {
     flex-direction: row;
   }
 
   .stat-bar {
     flex-direction: row;
     flex-wrap: wrap;
   }
 
   .stat {
     flex: 1 1 220px;
   }
 
   .process {
     flex-direction: row;
     flex-wrap: wrap;
   }
 
   .process-step {
     flex: 1 1 280px;
   }
 
   .comparison {
     flex-direction: row;
   }
 
   .comparison-row {
     flex: 1 1 240px;
   }
 
   .footer-grid {
     flex-direction: row;
     justify-content: space-between;
   }
 }
