 :root {
   color-scheme: light;
   --ink: #1d2430;
   --muted: #5a6675;
   --brand: #1f4e79;
   --accent: #e6b566;
   --surface: #f5f2ec;
   --surface-strong: #ffffff;
   --outline: #e2e6ec;
 }
 
 * {
   box-sizing: border-box;
 }
 
 body {
   margin: 0;
   font-family: "Inter", "Segoe UI", Arial, sans-serif;
   color: var(--ink);
   background: #f7f8fb;
   line-height: 1.6;
 }
 
 a {
   color: var(--brand);
   text-decoration: none;
 }
 
 a:hover {
   text-decoration: underline;
 }
 
 header {
   padding: 24px 6vw;
   background: var(--surface-strong);
   border-bottom: 1px solid var(--outline);
 }
 
 .nav {
   display: flex;
   align-items: center;
   justify-content: space-between;
   gap: 16px;
   flex-wrap: wrap;
 }
 
 .brand {
   font-weight: 700;
   letter-spacing: 0.5px;
 }
 
 .nav-links {
   display: flex;
   gap: 16px;
   flex-wrap: wrap;
   align-items: center;
 }
 
 .ad-label {
   padding: 6px 10px;
   background: #f1e6d5;
   color: #734c12;
   border-radius: 999px;
   font-size: 0.85rem;
 }
 
 main {
   display: flex;
   flex-direction: column;
   gap: 48px;
   padding: 32px 6vw 64px;
 }
 
 .split-section {
   display: flex;
   gap: 40px;
   align-items: center;
   justify-content: space-between;
 }
 
 .split-section.reverse {
   flex-direction: row-reverse;
 }
 
 .split-content {
   flex: 1;
   min-width: 260px;
 }
 
 .split-visual {
   flex: 1;
   min-width: 260px;
 }
 
 .image-frame {
   background: #e8eef5;
   border-radius: 18px;
   overflow: hidden;
 }
 
 .image-frame img {
   width: 100%;
   height: 100%;
   object-fit: cover;
   display: block;
 }
 
 .section {
   padding: 28px;
   background: var(--surface-strong);
   border-radius: 20px;
   box-shadow: 0 16px 40px rgba(29, 36, 48, 0.08);
 }
 
 .section.alt {
   background: var(--surface);
 }
 
 .tagline {
   font-size: 0.95rem;
   letter-spacing: 0.08em;
   color: var(--muted);
   text-transform: uppercase;
 }
 
 .cta-row {
   display: flex;
   gap: 16px;
   flex-wrap: wrap;
   margin-top: 16px;
 }
 
 .button {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   padding: 12px 20px;
   border-radius: 999px;
   background: var(--brand);
   color: #ffffff;
   border: none;
   cursor: pointer;
   font-weight: 600;
 }
 
 .button.secondary {
   background: transparent;
   color: var(--brand);
   border: 1px solid var(--brand);
 }
 
 .cards {
   display: flex;
   gap: 18px;
   flex-wrap: wrap;
 }
 
 .card {
   flex: 1;
   min-width: 220px;
   background: #ffffff;
   border: 1px solid var(--outline);
   border-radius: 16px;
   padding: 18px;
   display: flex;
   flex-direction: column;
   gap: 10px;
 }
 
 .card img {
   width: 100%;
   height: 160px;
   object-fit: cover;
   border-radius: 12px;
 }
 
 .price {
   font-weight: 700;
   font-size: 1.1rem;
 }
 
 .inline-cta {
   font-weight: 600;
 }
 
 .metrics {
   display: flex;
   gap: 22px;
   flex-wrap: wrap;
 }
 
 .metric {
   flex: 1;
   min-width: 200px;
   background: #ffffff;
   border-radius: 14px;
   padding: 16px;
   border: 1px solid var(--outline);
 }
 
 form {
   display: flex;
   flex-direction: column;
   gap: 14px;
 }
 
 label {
   font-weight: 600;
 }
 
 input,
 select,
 textarea {
   padding: 12px 14px;
   border-radius: 10px;
   border: 1px solid var(--outline);
   font-size: 1rem;
   font-family: inherit;
 }
 
 footer {
   padding: 40px 6vw;
   background: #101621;
   color: #ffffff;
 }
 
 footer a {
   color: #ffffff;
 }
 
 .footer-grid {
   display: flex;
   gap: 24px;
   flex-wrap: wrap;
 }
 
 .sticky-cta {
   position: fixed;
   right: 18px;
   bottom: 18px;
   background: var(--accent);
   color: #2c1f07;
   padding: 12px 18px;
   border-radius: 999px;
   font-weight: 700;
   border: none;
   cursor: pointer;
   box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
 }
 
 .cookie-banner {
   position: fixed;
   bottom: 16px;
   left: 16px;
   right: 16px;
   padding: 18px 20px;
   background: #ffffff;
   border-radius: 16px;
   border: 1px solid var(--outline);
   box-shadow: 0 12px 30px rgba(29, 36, 48, 0.12);
   display: none;
   z-index: 10;
 }
 
 .cookie-banner.visible {
   display: flex;
   gap: 16px;
   align-items: center;
   justify-content: space-between;
   flex-wrap: wrap;
 }
 
 .cookie-actions {
   display: flex;
   gap: 10px;
   flex-wrap: wrap;
 }
 
 .notice {
   background: #fdf6e9;
   padding: 14px;
   border-radius: 12px;
   border: 1px solid #f0d7ab;
 }
 
 @media (max-width: 860px) {
   .split-section,
   .split-section.reverse {
     flex-direction: column;
   }
 
   .sticky-cta {
     right: 12px;
     left: 12px;
     bottom: 12px;
     width: calc(100% - 24px);
     text-align: center;
   }
 }
