 :root {
   --bg: #0b0e13;
   --bg-soft: #121823;
   --panel: #1a2230;
   --panel-alt: #131923;
   --text: #eef2f7;
   --muted: #b7c0ce;
   --brand: #6dd6ff;
   --brand-strong: #39b4f2;
   --accent: #8bffb3;
   --warning: #ffd166;
   --shadow: 0 18px 40px rgba(5, 8, 12, 0.35);
   --radius: 18px;
 }
 
 * {
   box-sizing: border-box;
   margin: 0;
   padding: 0;
 }
 
 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%;
   height: auto;
   display: block;
 }
 
 .container {
   width: min(1120px, 92vw);
   margin: 0 auto;
 }
 
 .section {
   padding: 64px 0;
 }
 
 .section-alt {
   background: var(--bg-soft);
 }
 
 .section-panel {
   background: var(--panel);
 }
 
 .eyebrow {
   text-transform: uppercase;
   font-size: 0.8rem;
   letter-spacing: 0.15em;
   color: var(--accent);
 }
 
 .section h2 {
   font-size: 2rem;
   margin: 12px 0 16px;
 }
 
 .section p {
   color: var(--muted);
 }
 
 .btn {
   display: inline-flex;
   align-items: center;
   gap: 8px;
   padding: 12px 20px;
   border-radius: 999px;
   border: 1px solid transparent;
   font-weight: 600;
   background: var(--brand);
   color: #07121c;
   transition: transform 0.2s ease, box-shadow 0.2s ease;
   box-shadow: var(--shadow);
 }
 
 .btn:hover {
   transform: translateY(-2px);
 }
 
 .btn-outline {
   background: transparent;
   color: var(--text);
   border-color: var(--brand);
   box-shadow: none;
 }
 
 .site-header {
   position: sticky;
   top: 0;
   z-index: 50;
   background: rgba(11, 14, 19, 0.92);
   backdrop-filter: blur(14px);
   border-bottom: 1px solid rgba(109, 214, 255, 0.15);
 }
 
 .nav-bar {
   display: flex;
   align-items: center;
   justify-content: space-between;
   padding: 18px 0;
 }
 
 .brand {
   display: flex;
   align-items: center;
   gap: 12px;
   font-weight: 700;
   text-transform: lowercase;
   letter-spacing: 0.02em;
 }
 
 .brand span {
   color: var(--brand);
 }
 
 .nav-toggle {
   background: transparent;
   border: 1px solid rgba(109, 214, 255, 0.4);
   color: var(--text);
   padding: 8px 12px;
   border-radius: 999px;
   font-size: 0.9rem;
 }
 
 .nav-links {
   display: none;
   list-style: none;
 }
 
 .nav-links a {
   padding: 10px 16px;
   border-radius: 999px;
   transition: background 0.2s ease;
 }
 
 .nav-links a:hover,
 .nav-links a:focus {
   background: rgba(109, 214, 255, 0.15);
 }
 
 .mobile-panel {
   display: none;
   flex-direction: column;
   gap: 12px;
   background: var(--panel);
   padding: 20px;
   border-radius: var(--radius);
   box-shadow: var(--shadow);
   margin-top: 12px;
 }
 
 .mobile-panel a {
   padding: 10px 12px;
   border-radius: 10px;
   background: rgba(109, 214, 255, 0.08);
 }
 
 .nav-open .mobile-panel {
   display: flex;
 }
 
 .hero {
   padding: 86px 0 72px;
 }
 
 .hero-grid {
   display: flex;
   flex-direction: column;
   gap: 32px;
 }
 
 .hero h1 {
   font-size: 2.6rem;
   line-height: 1.1;
 }
 
 .hero p {
   font-size: 1.05rem;
   color: var(--muted);
 }
 
 .hero-actions {
   display: flex;
   flex-wrap: wrap;
   gap: 12px;
   margin-top: 24px;
 }
 
 .hero-card {
   background: var(--panel);
   padding: 24px;
   border-radius: var(--radius);
   box-shadow: var(--shadow);
 }
 
 .cards {
   display: flex;
   flex-direction: column;
   gap: 18px;
   margin-top: 24px;
 }
 
 .card {
   background: var(--panel-alt);
   padding: 22px;
   border-radius: var(--radius);
   border: 1px solid rgba(255, 255, 255, 0.06);
 }
 
 .card h3 {
   margin-bottom: 10px;
   font-size: 1.2rem;
 }
 
 .split {
   display: flex;
   flex-direction: column;
   gap: 24px;
 }
 
 .stat-list {
   display: flex;
   flex-direction: column;
   gap: 12px;
   margin-top: 16px;
 }
 
 .stat {
   background: rgba(109, 214, 255, 0.08);
   padding: 16px;
   border-radius: 14px;
 }
 
 .stat strong {
   font-size: 1.6rem;
   color: var(--brand);
 }
 
 .pill-list {
   display: flex;
   flex-wrap: wrap;
   gap: 10px;
   margin-top: 16px;
 }
 
 .pill {
   padding: 8px 14px;
   border-radius: 999px;
   background: rgba(139, 255, 179, 0.12);
   color: var(--accent);
   font-size: 0.9rem;
 }
 
 .quote {
   font-size: 1.3rem;
   font-weight: 600;
 }
 
 .testimonials {
   display: flex;
   flex-direction: column;
   gap: 18px;
   margin-top: 24px;
 }
 
 .testimonial {
   background: var(--panel);
   padding: 22px;
   border-radius: var(--radius);
 }
 
 .testimonial span {
   display: block;
   color: var(--accent);
   margin-top: 10px;
 }
 
 .steps {
   display: flex;
   flex-direction: column;
   gap: 16px;
   margin-top: 20px;
 }
 
 .step {
   display: flex;
   gap: 12px;
   align-items: flex-start;
 }
 
 .step-number {
   width: 36px;
   height: 36px;
   border-radius: 50%;
   background: rgba(109, 214, 255, 0.2);
   display: flex;
   align-items: center;
   justify-content: center;
   font-weight: 700;
   color: var(--brand);
 }
 
 .faq {
   display: flex;
   flex-direction: column;
   gap: 12px;
   margin-top: 18px;
 }
 
 .faq-item {
   background: var(--panel-alt);
   border-radius: 14px;
   overflow: hidden;
 }
 
 .faq-toggle {
   width: 100%;
   text-align: left;
   padding: 16px 18px;
   background: transparent;
   border: none;
   color: var(--text);
   font-weight: 600;
   display: flex;
   justify-content: space-between;
   align-items: center;
 }
 
 .faq-content {
   padding: 0 18px 16px;
   color: var(--muted);
 }
 
 .comparison {
   display: flex;
   flex-direction: column;
   gap: 16px;
   margin-top: 20px;
 }
 
 .comparison-row {
   display: flex;
   flex-direction: column;
   gap: 10px;
   padding: 18px;
   border-radius: 14px;
   background: rgba(109, 214, 255, 0.08);
 }
 
 .badge {
   display: inline-flex;
   align-items: center;
   padding: 6px 12px;
   border-radius: 999px;
   background: rgba(255, 209, 102, 0.18);
   color: var(--warning);
   font-size: 0.85rem;
 }
 
 .service-grid {
   display: flex;
   flex-direction: column;
   gap: 20px;
   margin-top: 24px;
 }
 
 .service-card {
   padding: 24px;
   border-radius: var(--radius);
   background: var(--panel);
   border: 1px solid rgba(109, 214, 255, 0.12);
 }
 
 .service-card strong {
   color: var(--brand);
 }
 
 .info-list {
   display: flex;
   flex-direction: column;
   gap: 12px;
   margin-top: 18px;
 }
 
 .footer {
   padding: 40px 0;
   border-top: 1px solid rgba(109, 214, 255, 0.12);
 }
 
 .footer-grid {
   display: flex;
   flex-direction: column;
   gap: 20px;
 }
 
 .footer a {
   color: var(--muted);
 }
 
 .cookie-banner {
   position: fixed;
   bottom: 20px;
   left: 50%;
   transform: translateX(-50%);
   width: min(1020px, 92vw);
   background: var(--panel);
   border-radius: 16px;
   padding: 18px;
   display: none;
   flex-direction: column;
   gap: 12px;
   box-shadow: var(--shadow);
   z-index: 100;
 }
 
 .cookie-banner.active {
   display: flex;
 }
 
 .cookie-actions {
   display: flex;
   flex-wrap: wrap;
   gap: 10px;
 }
 
 .modal {
   position: fixed;
   inset: 0;
   background: rgba(5, 8, 12, 0.7);
   display: none;
   align-items: center;
   justify-content: center;
   z-index: 120;
 }
 
 .modal.active {
   display: flex;
 }
 
 .modal-card {
   width: min(620px, 90vw);
   background: var(--panel);
   border-radius: 20px;
   padding: 24px;
   box-shadow: var(--shadow);
 }
 
 .modal-header {
   display: flex;
   align-items: center;
   justify-content: space-between;
   margin-bottom: 16px;
 }
 
 .toggle-row {
   display: flex;
   align-items: center;
   justify-content: space-between;
   gap: 14px;
   padding: 12px 0;
   border-bottom: 1px solid rgba(255, 255, 255, 0.08);
 }
 
 .toggle-btn {
   border-radius: 999px;
   padding: 6px 14px;
   border: 1px solid rgba(109, 214, 255, 0.4);
   background: transparent;
   color: var(--text);
   font-size: 0.85rem;
 }
 
 .toggle-btn[aria-pressed="true"] {
   background: rgba(109, 214, 255, 0.2);
   color: var(--brand);
 }
 
 .visually-hidden {
   position: absolute;
   height: 1px;
   width: 1px;
   overflow: hidden;
   clip: rect(1px, 1px, 1px, 1px);
   white-space: nowrap;
 }
 
 @media (min-width: 720px) {
   .nav-toggle {
     display: none;
   }
 
   .nav-links {
     display: flex;
     gap: 10px;
   }
 
   .mobile-panel {
     display: none !important;
   }
 
   .hero-grid,
   .split {
     flex-direction: row;
     align-items: center;
   }
 
   .hero-grid > * {
     flex: 1;
   }
 
   .cards,
   .testimonials,
   .service-grid {
     flex-direction: row;
     flex-wrap: wrap;
   }
 
   .card,
   .testimonial,
   .service-card {
     flex: 1 1 calc(50% - 18px);
   }
 
   .comparison {
     flex-direction: row;
   }
 
   .comparison-row {
     flex: 1;
   }
 
   .steps {
     flex-direction: row;
     flex-wrap: wrap;
   }
 
   .step {
     flex: 1 1 calc(50% - 16px);
   }
 
   .footer-grid {
     flex-direction: row;
     justify-content: space-between;
   }
 }
 
 @media (min-width: 1024px) {
   .hero h1 {
     font-size: 3.2rem;
   }
 
   .card,
   .testimonial,
   .service-card {
     flex: 1 1 calc(33% - 18px);
   }
 }
