 :root {
   --bg: #0f172a;
   --bg-soft: #172554;
   --bg-light: #f8fafc;
   --text: #0b1220;
   --text-light: #f8fafc;
   --muted: #475569;
   --accent: #0ea5e9;
   --accent-2: #22c55e;
   --card: #ffffff;
   --border: #e2e8f0;
   --shadow: 0 10px 30px rgba(2, 8, 23, 0.08);
 }
 
 * {
   box-sizing: border-box;
 }
 
 body {
   margin: 0;
   font-family: "Inter", "Segoe UI", Arial, sans-serif;
   color: var(--text);
   background: var(--bg-light);
   line-height: 1.6;
 }
 
 img {
   max-width: 100%;
   display: block;
 }
 
 a {
   color: inherit;
   text-decoration: none;
 }
 
 .container {
   width: min(1100px, 92%);
   margin: 0 auto;
 }
 
 .skip-link {
   position: absolute;
   left: -999px;
   top: auto;
   width: 1px;
   height: 1px;
   overflow: hidden;
 }
 
 .skip-link:focus {
   left: 16px;
   top: 16px;
   width: auto;
   height: auto;
   background: #fff;
   padding: 8px 12px;
   border-radius: 6px;
   box-shadow: var(--shadow);
 }
 
 header {
   background: #ffffff;
   border-bottom: 1px solid var(--border);
   position: sticky;
   top: 0;
   z-index: 20;
 }
 
 .top-bar {
   display: flex;
   align-items: center;
   justify-content: space-between;
   padding: 16px 0;
 }
 
 .brand {
   display: flex;
   align-items: center;
   gap: 12px;
   font-weight: 700;
   letter-spacing: 0.2px;
 }
 
 .brand img {
   width: 38px;
   height: 38px;
 }
 
 .nav-toggle {
   border: 1px solid var(--border);
   background: #fff;
   padding: 8px 10px;
   border-radius: 8px;
   cursor: pointer;
 }
 
 nav {
   display: none;
   flex-direction: column;
   gap: 12px;
   padding: 12px 0 20px;
 }
 
 nav.open {
   display: flex;
 }
 
 .nav-links {
   display: flex;
   flex-direction: column;
   gap: 10px;
 }
 
 .nav-links a {
   padding: 8px 0;
   font-weight: 500;
   color: var(--muted);
 }
 
 .nav-links a:hover,
 .nav-links a:focus {
   color: var(--text);
 }
 
 .btn {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   padding: 10px 18px;
   border-radius: 999px;
   border: 1px solid transparent;
   background: var(--accent);
   color: #fff;
   font-weight: 600;
   cursor: pointer;
 }
 
 .btn.secondary {
   background: transparent;
   color: var(--accent);
   border-color: var(--accent);
 }
 
 .hero {
   background: linear-gradient(120deg, #0ea5e9 0%, #38bdf8 50%, #f8fafc 100%);
   color: #031227;
   padding: 56px 0 44px;
 }
 
 .hero .hero-inner {
   display: flex;
   flex-direction: column;
   gap: 24px;
 }
 
 .hero .hero-card {
   background: #ffffff;
   border-radius: 18px;
   padding: 24px;
   box-shadow: var(--shadow);
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 .section {
   padding: 48px 0;
 }
 
 .section.alt {
   background: #ffffff;
 }
 
 .section-title {
   font-size: 1.6rem;
   margin: 0 0 16px;
 }
 
 .section-subtitle {
   color: var(--muted);
   margin: 0 0 24px;
 }
 
 .cards {
   display: flex;
   flex-direction: column;
   gap: 20px;
 }
 
 .card {
   background: var(--card);
   border-radius: 16px;
   padding: 20px;
   border: 1px solid var(--border);
   display: flex;
   flex-direction: column;
   gap: 12px;
   box-shadow: var(--shadow);
 }
 
 .card .icon {
   width: 40px;
   height: 40px;
 }
 
 .split {
   display: flex;
   flex-direction: column;
   gap: 24px;
 }
 
 .highlight {
   background: var(--bg-soft);
   color: var(--text-light);
   border-radius: 18px;
   padding: 24px;
 }
 
 .stats {
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 .stat {
   background: #ffffff;
   border-radius: 14px;
   padding: 18px;
   border: 1px solid var(--border);
   display: flex;
   align-items: center;
   justify-content: space-between;
 }
 
 .testimonial {
   background: #ffffff;
   border-radius: 16px;
   padding: 22px;
   border-left: 4px solid var(--accent);
   box-shadow: var(--shadow);
 }
 
 .faq {
   display: flex;
   flex-direction: column;
   gap: 12px;
 }
 
 .faq-item {
   border: 1px solid var(--border);
   border-radius: 12px;
   overflow: hidden;
   background: #ffffff;
 }
 
 .faq-question {
   width: 100%;
   text-align: left;
   background: #ffffff;
   border: none;
   padding: 16px;
   font-weight: 600;
   cursor: pointer;
   display: flex;
   align-items: center;
   justify-content: space-between;
 }
 
 .faq-answer {
   display: none;
   padding: 0 16px 16px;
   color: var(--muted);
 }
 
 .faq-item.open .faq-answer {
   display: block;
 }
 
 .service-grid {
   display: flex;
   flex-direction: column;
   gap: 20px;
 }
 
 .service-card {
   border: 1px solid var(--border);
   border-radius: 16px;
   background: #ffffff;
   padding: 20px;
   box-shadow: var(--shadow);
   display: flex;
   flex-direction: column;
   gap: 12px;
 }
 
 .price {
   font-weight: 700;
   color: var(--accent);
 }
 
 .comparison {
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 .comparison-row {
   display: flex;
   flex-direction: column;
   gap: 6px;
   background: #ffffff;
   border-radius: 12px;
   padding: 16px;
   border: 1px solid var(--border);
 }
 
 .steps {
   display: flex;
   flex-direction: column;
   gap: 14px;
 }
 
 .step {
   display: flex;
   flex-direction: column;
   gap: 6px;
   padding: 16px;
   background: #ffffff;
   border-radius: 12px;
   border: 1px solid var(--border);
 }
 
 .pill {
   display: inline-block;
   padding: 4px 10px;
   border-radius: 999px;
   background: #e0f2fe;
   color: #0369a1;
   font-size: 0.8rem;
   font-weight: 600;
 }
 
 footer {
   background: #0b1220;
   color: #e2e8f0;
   padding: 40px 0;
 }
 
 footer a {
   color: #cbd5f5;
 }
 
 .footer-grid {
   display: flex;
   flex-direction: column;
   gap: 24px;
 }
 
 .cookie-banner {
   position: fixed;
   bottom: 16px;
   left: 50%;
   transform: translateX(-50%);
   width: min(900px, 92%);
   background: #ffffff;
   border-radius: 16px;
   padding: 18px;
   box-shadow: var(--shadow);
   border: 1px solid var(--border);
   display: none;
   z-index: 30;
 }
 
 .cookie-banner.show {
   display: block;
 }
 
 .cookie-actions {
   display: flex;
   flex-direction: column;
   gap: 10px;
   margin-top: 12px;
 }
 
 .modal {
   position: fixed;
   inset: 0;
   background: rgba(15, 23, 42, 0.6);
   display: none;
   align-items: center;
   justify-content: center;
   z-index: 40;
 }
 
 .modal.show {
   display: flex;
 }
 
 .modal-content {
   background: #ffffff;
   width: min(640px, 92%);
   border-radius: 18px;
   padding: 24px;
   box-shadow: var(--shadow);
 }
 
 .modal-content h3 {
   margin-top: 0;
 }
 
 .preference-row {
   display: flex;
   align-items: center;
   justify-content: space-between;
   padding: 12px 0;
   border-bottom: 1px solid var(--border);
 }
 
 .preference-row:last-child {
   border-bottom: none;
 }
 
 .meta {
   color: var(--muted);
   font-size: 0.95rem;
 }
 
 @media (min-width: 768px) {
   nav {
     display: flex;
     flex-direction: row;
     align-items: center;
     justify-content: space-between;
     padding: 0;
   }
 
   .nav-toggle {
     display: none;
   }
 
   .nav-links {
     flex-direction: row;
     gap: 20px;
   }
 
   .hero .hero-inner {
     flex-direction: row;
     align-items: stretch;
   }
 
   .cards,
   .service-grid,
   .stats,
   .comparison,
   .steps,
   .footer-grid {
     flex-direction: row;
     flex-wrap: wrap;
   }
 
   .card,
   .service-card,
   .stat,
   .comparison-row,
   .step {
     flex: 1 1 260px;
   }
 
   .split {
     flex-direction: row;
     align-items: center;
   }
 
   .cookie-actions {
     flex-direction: row;
     align-items: center;
     justify-content: flex-end;
   }
 }
