 :root {
   --bg: #0f1115;
   --bg-alt: #171a21;
   --text: #f4f5f7;
   --muted: #b7bcc6;
   --accent: #61dafb;
   --accent-dark: #3ea9c6;
   --card: #1e232d;
   --border: #2c3240;
   --focus: #ffe08a;
 }
 
 * {
   box-sizing: border-box;
 }
 
 body {
   margin: 0;
   font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
   color: var(--text);
   background: var(--bg);
   line-height: 1.6;
 }
 
 a {
   color: var(--accent);
   text-decoration: none;
 }
 
 a:focus,
 button:focus,
 select:focus,
 input:focus,
 textarea:focus {
   outline: 2px solid var(--focus);
   outline-offset: 2px;
 }
 
 .container {
   width: min(1100px, 92%);
   margin: 0 auto;
 }
 
 .nav {
   display: flex;
   align-items: center;
   justify-content: space-between;
   padding: 20px 0;
   gap: 24px;
 }
 
 .nav-left {
   display: flex;
   flex-direction: column;
   gap: 6px;
 }
 
 .brand {
   font-weight: 700;
   font-size: 1.25rem;
 }
 
 .ad-label {
   font-size: 0.85rem;
   color: var(--muted);
 }
 
 .nav-links {
   display: flex;
   gap: 18px;
   flex-wrap: wrap;
   justify-content: flex-end;
 }
 
 .hero {
   padding: 80px 0 120px;
   background-image: url("https://images.unsplash.com/photo-1498050108023-c5249f4df085?w=1400&q=80");
   background-size: cover;
   background-position: center;
   position: relative;
 }
 
 .hero::after {
   content: "";
   position: absolute;
   inset: 0;
   background: rgba(10, 12, 16, 0.72);
 }
 
 .hero-content {
   position: relative;
   display: flex;
   flex-direction: column;
   gap: 20px;
   max-width: 640px;
 }
 
 .eyebrow {
   text-transform: uppercase;
   letter-spacing: 0.12em;
   font-size: 0.75rem;
   color: var(--muted);
 }
 
 .btn {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   padding: 12px 22px;
   border-radius: 999px;
   background: var(--accent);
   color: #081016;
   font-weight: 600;
   border: none;
   cursor: pointer;
 }
 
 .btn.secondary {
   background: transparent;
   border: 1px solid var(--accent);
   color: var(--accent);
 }
 
 .section {
   padding: 72px 0;
 }
 
 .section.alt {
   background: var(--bg-alt);
 }
 
 .split {
   display: flex;
   gap: 40px;
   align-items: center;
   flex-wrap: wrap;
 }
 
 .split.reverse {
   flex-direction: row-reverse;
 }
 
 .split > div {
   flex: 1 1 320px;
 }
 
 .image-frame {
   background: #11151d;
   border-radius: 16px;
   overflow: hidden;
   border: 1px solid var(--border);
 }
 
 .media-img {
   display: block;
   width: 100%;
   height: auto;
   object-fit: cover;
 }
 
 .story-grid {
   display: flex;
   flex-direction: column;
   gap: 20px;
 }
 
 .cards {
   display: flex;
   gap: 20px;
   flex-wrap: wrap;
 }
 
 .card {
   flex: 1 1 240px;
   background: var(--card);
   border-radius: 18px;
   border: 1px solid var(--border);
   padding: 20px;
   display: flex;
   flex-direction: column;
   gap: 12px;
 }
 
 .card .price {
   font-size: 1.2rem;
   font-weight: 700;
 }
 
 .highlight {
   background: #0c0f15;
   border-left: 3px solid var(--accent);
   padding: 18px 22px;
 }
 
 .trust {
   background-image: url("https://images.unsplash.com/photo-1489515217757-5fd1be406fef?w=1400&q=80");
   background-size: cover;
   background-position: center;
   position: relative;
 }
 
 .trust::before {
   content: "";
   position: absolute;
   inset: 0;
   background: rgba(12, 15, 20, 0.82);
 }
 
 .trust .container {
   position: relative;
 }
 
 .list {
   display: flex;
   flex-direction: column;
   gap: 12px;
 }
 
 .badge {
   display: inline-flex;
   padding: 6px 12px;
   border-radius: 999px;
   background: rgba(97, 218, 251, 0.15);
   color: var(--accent);
   font-size: 0.85rem;
 }
 
 .muted {
   color: var(--muted);
 }
 
 .pricing-reveal {
   display: flex;
   flex-direction: column;
   gap: 18px;
 }
 
 .form-wrapper {
   background: var(--card);
   border: 1px solid var(--border);
   border-radius: 20px;
   padding: 28px;
 }
 
 form {
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 label {
   display: flex;
   flex-direction: column;
   gap: 6px;
   font-weight: 600;
 }
 
 input,
 select,
 textarea {
   padding: 12px 14px;
   border-radius: 10px;
   border: 1px solid var(--border);
   background: #0e1117;
   color: var(--text);
 }
 
 .cta-panel {
   display: flex;
   align-items: center;
   justify-content: space-between;
   gap: 20px;
   background: #111720;
   border-radius: 16px;
   padding: 20px;
   border: 1px solid var(--border);
   flex-wrap: wrap;
 }
 
 .sticky-cta {
   position: fixed;
   bottom: 16px;
   right: 16px;
   background: #0c1118;
   border: 1px solid var(--border);
   padding: 12px 16px;
   border-radius: 999px;
   display: flex;
   align-items: center;
   gap: 12px;
   z-index: 20;
 }
 
 .cookie-banner {
   position: fixed;
   bottom: 0;
   left: 0;
   right: 0;
   background: #0c0f15;
   border-top: 1px solid var(--border);
   padding: 16px;
   display: flex;
   justify-content: space-between;
   align-items: center;
   gap: 16px;
   z-index: 30;
 }
 
 .cookie-actions {
   display: flex;
   gap: 12px;
 }
 
 .footer {
   background: #0b0e13;
   padding: 40px 0;
   color: var(--muted);
   font-size: 0.9rem;
 }
 
 .footer-links {
   display: flex;
   gap: 18px;
   flex-wrap: wrap;
   margin-bottom: 18px;
 }
 
 .page-hero {
   padding: 60px 0 40px;
 }
 
 .page-hero .image-frame {
   margin-top: 24px;
 }
 
 .legal {
   display: flex;
   flex-direction: column;
   gap: 20px;
 }
 
 .contact-grid {
   display: flex;
   gap: 24px;
   flex-wrap: wrap;
 }
 
 .contact-card {
   flex: 1 1 260px;
   background: var(--card);
   padding: 20px;
   border-radius: 14px;
   border: 1px solid var(--border);
 }
 
 @media (max-width: 800px) {
   .nav {
     flex-direction: column;
     align-items: flex-start;
   }
 
   .sticky-cta {
     right: 12px;
     left: 12px;
     justify-content: space-between;
   }
 }
