 :root {
   --bg: #0f172a;
   --bg-soft: #111c3b;
   --text: #eef2ff;
   --muted: #c7d2fe;
   --accent: #ff7a59;
   --accent-dark: #e76547;
   --card: #1b2550;
   --border: #2a3570;
 }
 
 * {
   box-sizing: border-box;
   margin: 0;
   padding: 0;
 }
 
 html {
   scroll-behavior: smooth;
 }
 
 body {
   font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
   background: var(--bg);
   color: var(--text);
   line-height: 1.6;
 }
 
 a {
   color: inherit;
   text-decoration: none;
 }
 
 img {
   max-width: 100%;
   display: block;
 }
 
 .container {
   width: min(1100px, 92%);
   margin: 0 auto;
 }
 
 .skip-link {
   position: absolute;
   left: -999px;
   top: 0;
   background: var(--accent);
   color: #0b0f1a;
   padding: 0.6rem 1rem;
   border-radius: 999px;
   z-index: 1000;
 }
 
 .skip-link:focus {
   left: 1rem;
   top: 1rem;
 }
 
 header {
   position: sticky;
   top: 0;
   background: rgba(15, 23, 42, 0.9);
   backdrop-filter: blur(10px);
   border-bottom: 1px solid var(--border);
   z-index: 50;
 }
 
 .nav-bar {
   display: flex;
   align-items: center;
   justify-content: space-between;
   padding: 1rem 0;
   gap: 1rem;
 }
 
 .brand {
   display: flex;
   align-items: center;
   gap: 0.75rem;
   font-weight: 700;
   letter-spacing: 0.02em;
 }
 
 .brand-mark {
   width: 36px;
   height: 36px;
 }
 
 .nav-links {
   display: none;
   flex-direction: column;
   gap: 1rem;
   background: var(--bg-soft);
   border: 1px solid var(--border);
   padding: 1rem;
   border-radius: 1rem;
   position: absolute;
   right: 4%;
   top: 70px;
   min-width: 220px;
 }
 
 .nav-links.open {
   display: flex;
 }
 
 .nav-links a {
   font-weight: 600;
 }
 
 .menu-toggle {
   background: var(--accent);
   border: none;
   color: #0b0f1a;
   padding: 0.6rem 0.9rem;
   border-radius: 0.8rem;
   font-weight: 700;
   cursor: pointer;
 }
 
 main {
   padding: 2rem 0 4rem;
 }
 
 .hero {
   display: flex;
   flex-direction: column;
   gap: 1.5rem;
   padding: 2.5rem 0 2rem;
 }
 
 .hero h1 {
   font-size: clamp(2rem, 4vw, 3.2rem);
   line-height: 1.2;
 }
 
 .hero p {
   color: var(--muted);
   font-size: 1.05rem;
 }
 
 .hero-actions {
   display: flex;
   flex-wrap: wrap;
   gap: 0.8rem;
 }
 
 .btn {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   padding: 0.75rem 1.2rem;
   border-radius: 999px;
   font-weight: 700;
   border: 1px solid transparent;
 }
 
 .btn-primary {
   background: var(--accent);
   color: #0b0f1a;
 }
 
 .btn-secondary {
   border-color: var(--accent);
   color: var(--accent);
 }
 
 section {
   margin-top: 2.5rem;
 }
 
 .section-title {
   font-size: 1.6rem;
   margin-bottom: 1rem;
 }
 
 .cards {
   display: flex;
   flex-direction: column;
   gap: 1.2rem;
 }
 
 .card {
   background: var(--card);
   border: 1px solid var(--border);
   padding: 1.4rem;
   border-radius: 1.2rem;
   display: flex;
   flex-direction: column;
   gap: 0.7rem;
 }
 
 .card .price {
   font-weight: 700;
   color: var(--accent);
 }
 
 .split {
   display: flex;
   flex-direction: column;
   gap: 1.5rem;
 }
 
 .list {
   display: flex;
   flex-direction: column;
   gap: 0.7rem;
   color: var(--muted);
 }
 
 .testimonials {
   display: flex;
   flex-direction: column;
   gap: 1rem;
 }
 
 .testimonial {
   background: var(--bg-soft);
   border: 1px solid var(--border);
   border-radius: 1rem;
   padding: 1.2rem;
   display: flex;
   flex-direction: column;
   gap: 0.6rem;
 }
 
 .testimonial span {
   color: var(--muted);
   font-size: 0.95rem;
 }
 
 footer {
   border-top: 1px solid var(--border);
   padding: 2rem 0;
   color: var(--muted);
 }
 
 .footer-links {
   display: flex;
   flex-direction: column;
   gap: 0.7rem;
   margin-top: 1rem;
 }
 
 .footer-links a {
   color: var(--muted);
 }
 
 .contact-card {
   display: flex;
   flex-direction: column;
   gap: 0.6rem;
   background: var(--card);
   border: 1px solid var(--border);
   padding: 1.4rem;
   border-radius: 1.2rem;
 }
 
 .badge {
   display: inline-flex;
   background: rgba(255, 122, 89, 0.16);
   color: var(--accent);
   padding: 0.3rem 0.7rem;
   border-radius: 999px;
   font-size: 0.85rem;
 }
 
 .cookie-banner {
   position: fixed;
   bottom: 1.2rem;
   left: 50%;
   transform: translateX(-50%);
   background: var(--bg-soft);
   border: 1px solid var(--border);
   border-radius: 1rem;
   padding: 1rem 1.2rem;
   width: min(520px, 92%);
   display: none;
   flex-direction: column;
   gap: 0.8rem;
   z-index: 100;
 }
 
 .cookie-banner.show {
   display: flex;
 }
 
 .cookie-actions {
   display: flex;
   flex-wrap: wrap;
   gap: 0.6rem;
 }
 
 .cookie-modal {
   position: fixed;
   inset: 0;
   background: rgba(8, 12, 24, 0.7);
   display: none;
   align-items: center;
   justify-content: center;
   z-index: 120;
 }
 
 .cookie-modal.show {
   display: flex;
 }
 
 .cookie-modal-content {
   background: var(--bg-soft);
   border: 1px solid var(--border);
   border-radius: 1.2rem;
   padding: 1.5rem;
   width: min(560px, 92%);
   display: flex;
   flex-direction: column;
   gap: 1rem;
 }
 
 .cookie-options {
   display: flex;
   flex-direction: column;
   gap: 0.8rem;
 }
 
 .cookie-option {
   display: flex;
   align-items: center;
   justify-content: space-between;
   background: var(--card);
   border: 1px solid var(--border);
   padding: 0.8rem 1rem;
   border-radius: 0.9rem;
 }
 
 .toggle {
   background: transparent;
   border: 1px solid var(--accent);
   color: var(--accent);
   padding: 0.4rem 0.8rem;
   border-radius: 999px;
   font-weight: 700;
   cursor: pointer;
 }
 
 @media (min-width: 900px) {
   .nav-links {
     position: static;
     display: flex;
     flex-direction: row;
     background: transparent;
     border: none;
     padding: 0;
     gap: 1.4rem;
   }
 
   .menu-toggle {
     display: none;
   }
 
   .hero {
     flex-direction: row;
     align-items: center;
   }
 
   .hero-content {
     flex: 1.2;
   }
 
   .hero-highlight {
     flex: 0.8;
   }
 
   .cards {
     flex-direction: row;
     flex-wrap: wrap;
   }
 
   .card {
     flex: 1 1 280px;
   }
 
   .split {
     flex-direction: row;
   }
 
   .split > div {
     flex: 1;
   }
 
   .testimonials {
     flex-direction: row;
   }
 
   .testimonial {
     flex: 1;
   }
 
   .footer-links {
     flex-direction: row;
     flex-wrap: wrap;
     gap: 1.2rem;
   }
 }
