 :root {
   --bg: #0f1115;
   --bg-soft: #171a21;
   --text: #f2f4f8;
   --muted: #b8c0cc;
   --accent: #7cd3ff;
   --accent-2: #9b8cff;
   --border: #2a2f3a;
   --success: #4fd1a5;
 }
 
 * {
   box-sizing: border-box;
   margin: 0;
   padding: 0;
 }
 
 body {
   font-family: "Inter", "Segoe UI", Arial, sans-serif;
   background: var(--bg);
   color: var(--text);
   line-height: 1.6;
 }
 
 a {
   color: inherit;
   text-decoration: none;
 }
 
 img {
   max-width: 100%;
   height: auto;
 }
 
 .container {
   width: 100%;
   max-width: 1120px;
   margin: 0 auto;
   padding: 0 20px;
 }
 
 header {
   position: sticky;
   top: 0;
   z-index: 50;
   background: rgba(15, 17, 21, 0.95);
   border-bottom: 1px solid var(--border);
   backdrop-filter: blur(8px);
 }
 
 .nav {
   display: flex;
   align-items: center;
   justify-content: space-between;
   padding: 16px 0;
 }
 
 .brand {
   display: flex;
   align-items: center;
   gap: 12px;
   font-weight: 600;
 }
 
 .brand span {
   letter-spacing: 0.5px;
 }
 
 .nav-links {
   display: none;
   align-items: center;
   gap: 18px;
 }
 
 .nav-links a {
   color: var(--muted);
   font-size: 0.95rem;
 }
 
 .nav-links a:hover,
 .nav-links a:focus {
   color: var(--text);
 }
 
 .menu-toggle {
   display: flex;
   align-items: center;
   justify-content: center;
   background: transparent;
   border: 1px solid var(--border);
   color: var(--text);
   padding: 8px 12px;
   border-radius: 8px;
   cursor: pointer;
 }
 
 .mobile-panel {
   display: flex;
   flex-direction: column;
   gap: 14px;
   padding: 20px;
   background: var(--bg-soft);
   border-top: 1px solid var(--border);
   position: absolute;
   left: 0;
   right: 0;
   top: 100%;
   transform: translateY(-8px);
   opacity: 0;
   pointer-events: none;
   transition: opacity 0.2s ease, transform 0.2s ease;
 }
 
 .mobile-panel a {
   color: var(--text);
   font-size: 1rem;
 }
 
 .mobile-panel.is-open {
   opacity: 1;
   transform: translateY(0);
   pointer-events: auto;
 }
 
 .hero {
   padding: 64px 0 48px;
 }
 
 .hero-content {
   display: flex;
   flex-direction: column;
   gap: 24px;
 }
 
 .hero h1 {
   font-size: 2.2rem;
   line-height: 1.2;
 }
 
 .hero p {
   color: var(--muted);
   font-size: 1.05rem;
 }
 
 .hero-actions {
   display: flex;
   flex-direction: column;
   gap: 12px;
 }
 
 .button {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   gap: 8px;
   padding: 12px 20px;
   border-radius: 10px;
   border: 1px solid transparent;
   cursor: pointer;
   font-weight: 600;
 }
 
 .button.primary {
   background: var(--accent);
   color: #0b0f14;
 }
 
 .button.secondary {
   border-color: var(--border);
   background-color: var(--bg);
   color: var(--text);
 }
 
 .section {
   padding: 48px 0;
 }
 
 .section h2 {
   font-size: 1.6rem;
   margin-bottom: 16px;
 }
 
 .section p {
   color: var(--muted);
 }
 
 .card-list {
   display: flex;
   flex-direction: column;
   gap: 16px;
   margin-top: 24px;
 }
 
.section-actions {
  margin-top: 16px;
}

 .card {
   border: 1px solid var(--border);
   border-radius: 14px;
   padding: 18px;
   background: var(--bg-soft);
   display: flex;
   flex-direction: column;
   gap: 10px;
 }
 
 .card h3 {
   font-size: 1.1rem;
 }
 
 .price {
   color: var(--accent);
   font-weight: 600;
 }
 
 .split {
   display: flex;
   flex-direction: column;
   gap: 24px;
 }
 
 .pill {
   display: inline-flex;
   align-items: center;
   gap: 6px;
   padding: 6px 12px;
   border-radius: 999px;
   background: rgba(124, 211, 255, 0.1);
   color: var(--accent);
   font-size: 0.85rem;
 }
 
 .testimonials {
   display: flex;
   flex-direction: column;
   gap: 16px;
   margin-top: 20px;
 }
 
 .testimonial {
   border: 1px solid var(--border);
   border-radius: 12px;
   padding: 16px;
   background: #12151b;
   display: flex;
   flex-direction: column;
   gap: 8px;
 }
 
 .testimonial span {
   color: var(--muted);
   font-size: 0.9rem;
 }
 
 .cta {
   padding: 48px 0;
   background: linear-gradient(135deg, rgba(124, 211, 255, 0.15), rgba(155, 140, 255, 0.1));
 }
 
 .cta-inner {
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 footer {
   border-top: 1px solid var(--border);
   padding: 24px 0 36px;
   color: var(--muted);
   font-size: 0.9rem;
 }
 
 .footer-links {
   display: flex;
   flex-direction: column;
   gap: 8px;
   margin-top: 12px;
 }
 
 .cookie-banner {
   position: fixed;
   bottom: 18px;
   left: 18px;
   right: 18px;
   background: #10141b;
   border: 1px solid var(--border);
   border-radius: 14px;
   padding: 16px;
   display: none;
   flex-direction: column;
   gap: 12px;
   z-index: 100;
 }
 
 .cookie-banner.is-visible {
   display: flex;
 }
 
 .cookie-actions {
   display: flex;
   flex-direction: column;
   gap: 8px;
 }
 
 .cookie-modal {
   position: fixed;
   inset: 0;
   background: rgba(8, 10, 14, 0.8);
   display: none;
   align-items: center;
   justify-content: center;
   padding: 20px;
   z-index: 120;
 }
 
 .cookie-modal.is-visible {
   display: flex;
 }
 
 .cookie-panel {
   background: var(--bg-soft);
   border: 1px solid var(--border);
   border-radius: 16px;
   padding: 20px;
   width: 100%;
   max-width: 520px;
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 .toggle-list {
   display: flex;
   flex-direction: column;
   gap: 10px;
 }
 
 .toggle-row {
   display: flex;
   align-items: center;
   justify-content: space-between;
   gap: 16px;
   padding: 10px 12px;
   border: 1px solid var(--border);
   border-radius: 12px;
 }
 
 .toggle-row button {
   border: 1px solid var(--border);
   background: transparent;
   color: var(--text);
   border-radius: 999px;
   padding: 6px 12px;
   cursor: pointer;
 }
 
 .toggle-row button[aria-pressed="true"] {
   background: var(--success);
   color: #06120e;
   border-color: transparent;
 }
 
 .overlay {
   position: fixed;
   inset: 0;
   background: rgba(15, 17, 21, 0.4);
   display: none;
   z-index: 40;
 }
 
 .overlay.is-visible {
   display: block;
 }
 
 @media (min-width: 768px) {
   .nav-links {
     display: flex;
   }
 
   .menu-toggle {
     display: none;
   }
 
   .mobile-panel {
     display: none;
   }
 
   .hero-content {
     flex-direction: row;
     align-items: center;
     justify-content: space-between;
     gap: 40px;
   }
 
   .hero-actions {
     flex-direction: row;
   }
 
   .split {
     flex-direction: row;
     align-items: flex-start;
   }
 
   .card-list {
     flex-direction: row;
     flex-wrap: wrap;
   }
 
   .card {
     flex: 1 1 280px;
   }
 
   .footer-links {
     flex-direction: row;
     gap: 18px;
     flex-wrap: wrap;
   }
 
   .cookie-actions {
     flex-direction: row;
   }
 }
