 :root {
   color-scheme: light;
   --ink: #0f172a;
   --muted: #475569;
   --soft: #f1f5f9;
   --accent: #2563eb;
   --accent-dark: #1e40af;
   --sun: #f59e0b;
   --line: #e2e8f0;
   --shadow: 0 24px 60px rgba(15, 23, 42, 0.12);
 }
 
 * {
   box-sizing: border-box;
 }
 
 body {
   margin: 0;
   font-family: "Inter", "Segoe UI", sans-serif;
   color: var(--ink);
   background: #ffffff;
   line-height: 1.6;
 }
 
 img {
   max-width: 100%;
   display: block;
 }
 
 a {
   color: inherit;
   text-decoration: none;
 }
 
 .page {
   width: min(1200px, 92%);
   margin: 0 auto;
   display: flex;
   flex-direction: column;
   gap: 48px;
 }
 
 header {
   padding: 28px 0 12px;
 }
 
 .nav-split {
   display: flex;
   justify-content: space-between;
   align-items: center;
   gap: 24px;
 }
 
 .logo {
   font-weight: 700;
   letter-spacing: 0.4px;
   font-size: 1.1rem;
 }
 
 .nav-links {
   display: flex;
   gap: 18px;
   font-size: 0.95rem;
   color: var(--muted);
 }
 
 .nav-links a:hover {
   color: var(--accent);
 }
 
 .hero {
   display: flex;
   flex-direction: column;
   gap: 24px;
   padding: 32px 0 12px;
 }
 
 .hero .hero-frame {
   display: flex;
   flex-direction: column;
   gap: 24px;
 }
 
 .hero-copy {
   max-width: 520px;
 }
 
 .hero-title {
   font-size: clamp(2rem, 4vw, 3.4rem);
   line-height: 1.1;
   margin: 0 0 16px;
 }
 
 .hero-sub {
   color: var(--muted);
   font-size: 1.05rem;
   margin: 0 0 20px;
 }
 
 .cta-row {
   display: flex;
   flex-wrap: wrap;
   gap: 14px;
   align-items: center;
 }
 
 .button {
   padding: 12px 18px;
   background: var(--accent);
   color: #fff;
   border-radius: 999px;
   font-weight: 600;
   display: inline-flex;
   align-items: center;
   gap: 8px;
   border: none;
   cursor: pointer;
 }
 
 .button.alt {
   background: #fff;
   color: var(--accent);
   border: 1px solid var(--accent);
 }
 
 .link-inline {
   color: var(--accent-dark);
   font-weight: 600;
 }
 
 .hero-visual {
   position: relative;
   background: linear-gradient(140deg, #e0f2fe, #f8fafc);
   border-radius: 28px;
   padding: 18px;
   box-shadow: var(--shadow);
 }
 
 .hero-visual img {
   border-radius: 18px;
 }
 
 .label-chip {
   position: absolute;
   right: 16px;
   bottom: 16px;
   background: #fff;
   padding: 8px 14px;
   border-radius: 999px;
   font-size: 0.85rem;
   box-shadow: 0 12px 24px rgba(15, 23, 42, 0.12);
 }
 
 .band {
   background: var(--soft);
   padding: 28px;
   border-radius: 24px;
   display: flex;
   flex-direction: column;
   gap: 20px;
 }
 
 .split {
   display: flex;
   flex-direction: column;
   gap: 20px;
 }
 
 .offset {
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 .offset .card {
   background: #fff;
   border-radius: 20px;
   padding: 20px;
   box-shadow: var(--shadow);
 }
 
 .offset .card:nth-child(2) {
   transform: translateX(18px);
 }
 
 .offset .card:nth-child(3) {
   transform: translateX(-12px);
 }
 
 .cards {
   display: flex;
   flex-direction: column;
   gap: 18px;
 }
 
 .card {
   border: 1px solid var(--line);
   border-radius: 20px;
   padding: 20px;
   display: flex;
   flex-direction: column;
   gap: 12px;
 }
 
 .card strong {
   font-size: 1.1rem;
 }
 
 .price {
   font-weight: 700;
   color: var(--accent-dark);
 }
 
 .pill {
   display: inline-flex;
   padding: 6px 12px;
   border-radius: 999px;
   background: #e0f2fe;
   color: var(--accent-dark);
   font-size: 0.85rem;
 }
 
 .media-block {
   position: relative;
   border-radius: 28px;
   overflow: hidden;
   box-shadow: var(--shadow);
 }
 
 .media-block img {
   height: 260px;
   object-fit: cover;
   width: 100%;
 }
 
 .media-overlay {
   position: absolute;
   inset: auto 24px 24px 24px;
   background: rgba(15, 23, 42, 0.85);
   color: #fff;
   padding: 16px;
   border-radius: 16px;
   font-size: 0.95rem;
 }
 
 .timeline {
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 .timeline-step {
   display: flex;
   gap: 16px;
   align-items: flex-start;
 }
 
 .timeline-step span {
   background: #fef3c7;
   color: #92400e;
   font-weight: 700;
   padding: 6px 12px;
   border-radius: 12px;
   min-width: 60px;
   text-align: center;
 }
 
 .cta-banner {
   background: linear-gradient(135deg, #1d4ed8, #0f172a);
   color: #fff;
   padding: 28px;
   border-radius: 26px;
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 .form-shell {
   background: #fff;
   border-radius: 28px;
   padding: 24px;
   box-shadow: var(--shadow);
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 label {
   font-size: 0.9rem;
   color: var(--muted);
 }
 
 input,
 select,
 textarea {
   width: 100%;
   padding: 12px;
   border-radius: 12px;
   border: 1px solid var(--line);
   font-family: inherit;
   font-size: 1rem;
 }
 
 textarea {
   min-height: 110px;
   resize: vertical;
 }
 
 .form-row {
   display: flex;
   flex-direction: column;
   gap: 12px;
 }
 
 .footer {
   padding: 48px 0 80px;
   border-top: 1px solid var(--line);
   display: flex;
   flex-direction: column;
   gap: 16px;
   color: var(--muted);
   font-size: 0.95rem;
 }
 
 .footer-links {
   display: flex;
   flex-wrap: wrap;
   gap: 16px;
 }
 
 .sticky-cta {
   position: fixed;
   right: 20px;
   bottom: 20px;
   background: var(--accent);
   color: #fff;
   padding: 12px 18px;
   border-radius: 999px;
   box-shadow: var(--shadow);
   font-weight: 600;
   z-index: 10;
 }
 
 .cookie-banner {
   position: fixed;
   left: 20px;
   bottom: 20px;
   right: 20px;
   background: #0f172a;
   color: #fff;
   padding: 18px;
   border-radius: 20px;
   display: none;
   flex-direction: column;
   gap: 12px;
   z-index: 9;
 }
 
 .cookie-actions {
   display: flex;
   gap: 10px;
   flex-wrap: wrap;
 }
 
 .cookie-actions .button {
   padding: 10px 16px;
 }
 
 .cookie-actions .button.alt {
   border-color: #fff;
   color: #fff;
   background: transparent;
 }
 
 .page-title {
   font-size: clamp(2rem, 4vw, 3rem);
   margin: 0;
 }
 
 @media (min-width: 860px) {
   .hero .hero-frame,
   .split {
     flex-direction: row;
     align-items: center;
   }
 
   .hero-copy {
     flex: 1;
   }
 
   .hero-visual {
     flex: 1;
     transform: translateY(22px);
   }
 
   .cards {
     flex-direction: row;
     flex-wrap: wrap;
   }
 
   .cards .card {
     flex: 1 1 calc(50% - 18px);
   }
 
   .form-row {
     flex-direction: row;
   }
 
   .form-row > div {
     flex: 1;
   }
 
   .cookie-banner {
     flex-direction: row;
     align-items: center;
     justify-content: space-between;
   }
 }
