 :root {
   --bg: #0f1115;
   --bg-soft: #171a21;
   --bg-alt: #f2f0ea;
   --text: #e9e8e2;
   --text-dark: #141414;
   --accent: #f4b266;
   --accent-2: #7bb4ff;
   --muted: #a7a7a1;
   --card: #1f2430;
 }
 
 * {
   box-sizing: border-box;
 }
 
 body {
   margin: 0;
   font-family: "Helvetica Neue", Arial, sans-serif;
   color: var(--text);
   background: var(--bg);
   line-height: 1.6;
 }
 
 a {
   color: inherit;
   text-decoration: none;
 }
 
 img {
   width: 100%;
   height: 100%;
   object-fit: cover;
   display: block;
 }
 
 .page {
   display: flex;
   flex-direction: column;
   min-height: 100vh;
 }
 
 .topbar {
   display: flex;
   justify-content: space-between;
   align-items: center;
   padding: 24px 6vw;
   border-bottom: 1px solid rgba(255, 255, 255, 0.1);
 }
 
 .brand {
   font-size: 1.2rem;
   letter-spacing: 0.1rem;
 }
 
 .nav {
   display: flex;
   gap: 18px;
   align-items: center;
   font-size: 0.95rem;
 }
 
 .ad-label {
   font-size: 0.85rem;
   color: var(--accent);
   padding: 6px 10px;
   border: 1px solid var(--accent);
   border-radius: 20px;
 }
 
 .section {
   padding: 70px 6vw;
 }
 
 .section.light {
   background: var(--bg-alt);
   color: var(--text-dark);
 }
 
 .section.dark {
   background: var(--bg-soft);
 }
 
 .split {
   display: flex;
   gap: 40px;
   align-items: stretch;
 }
 
 .split.reverse {
   flex-direction: row-reverse;
 }
 
 .split .panel {
   flex: 1;
   display: flex;
   flex-direction: column;
   justify-content: center;
   gap: 18px;
 }
 
 .hero-title {
   font-size: clamp(2.2rem, 3vw, 3.4rem);
   line-height: 1.15;
   margin: 0;
 }
 
 .subtle {
   color: var(--muted);
 }
 
 .cta-row {
   display: flex;
   gap: 16px;
   flex-wrap: wrap;
 }
 
 .btn {
   padding: 12px 22px;
   border-radius: 26px;
   border: 1px solid transparent;
   display: inline-flex;
   align-items: center;
   justify-content: center;
   cursor: pointer;
   font-weight: 600;
 }
 
 .btn.primary {
   background: var(--accent);
   color: #1a1a1a;
 }
 
 .btn.secondary {
   border-color: var(--text);
   color: var(--text);
 }
 
 .btn.light {
   background: var(--text-dark);
   color: var(--bg-alt);
 }
 
 .img-frame {
   background-color: #2b2f3a;
   border-radius: 18px;
   overflow: hidden;
   min-height: 280px;
 }
 
 .img-frame.light {
   background-color: #d7d4c8;
 }

.img-frame.small {
  min-height: 180px;
}
 
 .story-list {
   display: flex;
   flex-direction: column;
   gap: 18px;
 }
 
 .cards {
   display: flex;
   gap: 20px;
   flex-wrap: wrap;
 }
 
 .card {
   background: var(--card);
   border-radius: 18px;
   padding: 22px;
   flex: 1;
   min-width: 220px;
   display: flex;
   flex-direction: column;
   gap: 12px;
 }
 
 .card.light {
   background: #ffffff;
   color: var(--text-dark);
 }
 
 .card img {
   border-radius: 12px;
 }
 
 .pricing {
   display: flex;
   flex-direction: column;
   gap: 22px;
 }
 
 .price-row {
   display: flex;
   flex-wrap: wrap;
   gap: 16px;
   align-items: center;
   justify-content: space-between;
   border-bottom: 1px solid rgba(255, 255, 255, 0.1);
   padding-bottom: 12px;
 }
 
 .price-row.light {
   border-color: rgba(20, 20, 20, 0.1);
 }
 
 .price-tag {
   font-size: 1.2rem;
   color: var(--accent);
 }
 
 .note-box {
   background: rgba(255, 255, 255, 0.08);
   padding: 16px 18px;
   border-radius: 14px;
 }
 
 .note-box.light {
   background: rgba(20, 20, 20, 0.06);
 }
 
 .form-wrap {
   background: var(--card);
   padding: 26px;
   border-radius: 18px;
   display: flex;
   flex-direction: column;
   gap: 14px;
 }
 
 label {
   display: flex;
   flex-direction: column;
   gap: 6px;
   font-size: 0.95rem;
 }
 
 input,
 select,
 textarea {
   padding: 10px 12px;
   border-radius: 10px;
   border: 1px solid rgba(255, 255, 255, 0.2);
   background: transparent;
   color: inherit;
 }
 
 textarea {
   min-height: 120px;
 }
 
 .background-callout {
   background-color: #20263a;
   background-image: url("https://images.unsplash.com/photo-1524758631624-e2822e304c36?w=1400&q=80");
   background-size: cover;
   background-position: center;
   color: #ffffff;
 }
 
 .overlay {
   background: rgba(10, 12, 18, 0.75);
   padding: 60px;
   border-radius: 24px;
 }
 
 .footer {
   margin-top: auto;
   padding: 40px 6vw;
   background: #0b0c10;
   font-size: 0.9rem;
   color: var(--muted);
 }
 
 .footer-links {
   display: flex;
   flex-wrap: wrap;
   gap: 16px;
   margin-bottom: 16px;
 }
 
 .sticky-cta {
   position: fixed;
   right: 24px;
   bottom: 24px;
   z-index: 10;
 }
 
 .sticky-cta a {
   background: var(--accent-2);
   color: #0b0c10;
   padding: 12px 18px;
   border-radius: 26px;
   display: inline-flex;
   font-weight: 600;
 }
 
 .cookie-banner {
   position: fixed;
   left: 20px;
   bottom: 20px;
   background: #1a1d25;
   color: var(--text);
   padding: 18px;
   border-radius: 16px;
   max-width: 360px;
   display: none;
   gap: 12px;
   flex-direction: column;
   z-index: 20;
 }
 
 .cookie-actions {
   display: flex;
   gap: 10px;
 }
 
 .spacer {
   height: 16px;
 }
 
 @media (max-width: 900px) {
   .split,
   .split.reverse {
     flex-direction: column;
   }
 
   .topbar {
     flex-direction: column;
     gap: 12px;
   }
 
   .sticky-cta {
     position: static;
     margin: 24px 6vw 0;
   }
 }
