 :root {
   color-scheme: light;
   --ink: #1b2327;
   --muted: #4d5a63;
   --bg: #f4f2ef;
   --surface: #ffffff;
   --accent: #2f6f7b;
   --accent-soft: #d8e6e8;
   --sand: #ece6de;
   --shadow: rgba(15, 23, 29, 0.08);
 }
 
 * {
   box-sizing: border-box;
 }
 
 body {
   margin: 0;
   font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
   color: var(--ink);
   background: var(--bg);
   line-height: 1.6;
 }
 
 a {
   color: inherit;
   text-decoration: none;
 }
 
 img {
   display: block;
   width: 100%;
   height: 100%;
   object-fit: cover;
 }
 
 header {
   padding: 24px 5vw 8px;
 }
 
 .nav {
   display: flex;
   align-items: center;
   justify-content: space-between;
   gap: 16px;
 }
 
 .brand {
   font-weight: 700;
   letter-spacing: 0.5px;
 }
 
 .nav-links {
   display: flex;
   flex-wrap: wrap;
   gap: 16px;
   font-size: 0.95rem;
 }
 
 .ad-label {
   padding: 6px 10px;
   background: var(--accent-soft);
   color: var(--ink);
   border-radius: 999px;
   font-size: 0.8rem;
 }
 
 main {
   display: flex;
   flex-direction: column;
   gap: 48px;
   padding-bottom: 64px;
 }
 
 .section {
   padding: 42px 5vw;
 }
 
 .section.surface {
   background: var(--surface);
   box-shadow: 0 20px 40px var(--shadow);
 }
 
 .section.sand {
   background: var(--sand);
 }
 
 .split {
   display: flex;
   gap: 32px;
   align-items: stretch;
 }
 
 .split.reverse {
   flex-direction: row-reverse;
 }
 
 .split .copy,
 .split .visual {
   flex: 1 1 50%;
   display: flex;
   flex-direction: column;
   justify-content: center;
   gap: 16px;
 }
 
 .eyebrow {
   text-transform: uppercase;
   letter-spacing: 0.12em;
   font-size: 0.72rem;
   color: var(--muted);
 }
 
 h1, h2, h3 {
   margin: 0;
   line-height: 1.2;
 }
 
 h1 {
   font-size: clamp(2.2rem, 3.5vw, 3.2rem);
 }
 
 h2 {
   font-size: clamp(1.8rem, 2.6vw, 2.4rem);
 }
 
 h3 {
   font-size: 1.2rem;
 }
 
 p {
   margin: 0;
   color: var(--muted);
 }
 
 .cta-row {
   display: flex;
   flex-wrap: wrap;
   gap: 12px;
 }
 
 .cta-button,
 .cta-outline {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   padding: 12px 20px;
   border-radius: 999px;
   border: 1px solid var(--accent);
   font-weight: 600;
   transition: transform 0.2s ease, background 0.2s ease;
 }
 
 .cta-button {
   background: var(--accent);
   color: #fff;
 }
 
 .cta-outline {
   background: transparent;
   color: var(--accent);
 }
 
 .cta-button:hover,
 .cta-outline:hover {
   transform: translateY(-2px);
 }
 
 .image-frame {
   background: #dfe6e6;
   border-radius: 18px;
   overflow: hidden;
   min-height: 280px;
 }
 
 .card-row {
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 .card {
   background: var(--surface);
   border-radius: 16px;
   padding: 18px;
   box-shadow: 0 12px 24px var(--shadow);
   display: flex;
   flex-direction: column;
   gap: 10px;
 }
 
 .price {
   font-weight: 700;
   color: var(--ink);
 }
 
 .inline-cta {
   color: var(--accent);
   font-weight: 600;
 }
 
 form {
   display: flex;
   flex-direction: column;
   gap: 14px;
 }
 
 label {
   font-weight: 600;
   color: var(--ink);
 }
 
 input,
 select,
 textarea {
   padding: 12px 14px;
   border-radius: 10px;
   border: 1px solid #c9d2d4;
   font-size: 1rem;
   background: #fff;
 }
 
 .form-actions {
   display: flex;
   gap: 12px;
   flex-wrap: wrap;
 }
 
 footer {
   padding: 32px 5vw 48px;
   background: #182026;
   color: #eef3f4;
 }
 
 footer a {
   color: #eef3f4;
 }
 
 .footer-grid {
   display: flex;
   flex-wrap: wrap;
   gap: 32px;
 }
 
 .footer-col {
   flex: 1 1 180px;
   display: flex;
   flex-direction: column;
   gap: 10px;
 }
 
 .disclaimer {
   font-size: 0.85rem;
   color: #c6d2d5;
 }
 
 .sticky-cta {
   position: fixed;
   right: 18px;
   bottom: 18px;
   background: var(--accent);
   color: #fff;
   padding: 12px 16px;
   border-radius: 999px;
   box-shadow: 0 14px 30px var(--shadow);
   font-weight: 600;
 }
 
 .cookie-banner {
   position: fixed;
   left: 20px;
   right: 20px;
   bottom: 20px;
   background: var(--surface);
   border-radius: 18px;
   padding: 18px;
   box-shadow: 0 20px 40px var(--shadow);
   display: none;
   flex-direction: column;
   gap: 12px;
   z-index: 10;
 }
 
 .cookie-actions {
   display: flex;
   flex-wrap: wrap;
   gap: 10px;
 }
 
 .cookie-actions button {
   border: 1px solid var(--accent);
   border-radius: 999px;
   padding: 10px 16px;
   background: transparent;
   color: var(--accent);
   font-weight: 600;
   transition: transform 0.2s ease;
   cursor: pointer;
 }
 
 .cookie-actions button.accept {
   background: var(--accent);
   color: #fff;
 }
 
 .cookie-actions button:hover {
   transform: translateY(-2px);
 }
 
 .meta-list {
   display: flex;
   flex-direction: column;
   gap: 8px;
 }
 
 @media (max-width: 900px) {
   .split,
   .split.reverse {
     flex-direction: column;
   }
 
   .sticky-cta {
     right: 12px;
     bottom: 12px;
   }
 }
