 :root {
   --ink: #1c1f23;
   --muted: #5c6670;
   --accent: #1f5b8f;
   --accent-soft: #e6eef7;
   --stone: #f3f2ef;
   --linen: #faf7f2;
   --shadow: 0 20px 40px rgba(20, 30, 40, 0.12);
 }
 
 * {
   box-sizing: border-box;
 }
 
 body {
   margin: 0;
   font-family: "Helvetica Neue", Arial, sans-serif;
   color: var(--ink);
   background: #ffffff;
   line-height: 1.6;
 }
 
 img {
   width: 100%;
   height: auto;
   display: block;
   object-fit: cover;
 }
 
 .image-frame {
   background: #e7e2da;
   padding: 16px;
 }
 
 a {
   color: inherit;
   text-decoration: none;
 }
 
 .page {
   max-width: 1200px;
   margin: 0 auto;
   padding: 40px 24px 120px;
 }
 
 header {
   display: flex;
   align-items: center;
   justify-content: space-between;
   gap: 20px;
   padding: 24px;
   position: relative;
 }
 
 .brand {
   font-weight: 700;
   letter-spacing: 0.08em;
   text-transform: uppercase;
 }
 
 .ad-disclosure {
   font-size: 0.85rem;
   color: var(--muted);
   text-align: center;
   flex: 1;
 }
 
 .nav {
   display: flex;
   align-items: center;
   gap: 16px;
   font-size: 0.95rem;
 }
 
 .nav a,
 .btn,
 .link-cta,
 .sticky-cta a,
 .cookie-banner button,
 .form-actions button {
   transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
 }
 
 .nav a:hover,
 .btn:hover,
 .link-cta:hover,
 .sticky-cta a:hover,
 .cookie-banner button:hover,
 .form-actions button:hover {
   transform: translateY(-2px);
 }
 
 .btn,
 .form-actions button,
 .cookie-banner button {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   padding: 12px 18px;
   border-radius: 999px;
   border: none;
   background: var(--accent);
   color: #ffffff;
   font-weight: 600;
   cursor: pointer;
 }
 
 .btn.secondary {
   background: transparent;
   border: 1px solid var(--accent);
   color: var(--accent);
 }
 
 .link-cta {
   color: var(--accent);
   font-weight: 600;
   border-bottom: 1px solid rgba(31, 91, 143, 0.3);
 }
 
 .hero {
   display: flex;
   flex-wrap: wrap;
   gap: 24px;
   align-items: stretch;
   position: relative;
 }
 
 .hero .hero-image {
   flex: 1 1 55%;
   min-width: 280px;
 }
 
 .hero .hero-copy {
   flex: 1 1 35%;
   background: var(--linen);
   padding: 32px;
   box-shadow: var(--shadow);
   margin-top: 40px;
 }
 
 .hero .hero-copy h1 {
   margin-top: 0;
   font-size: 2.4rem;
 }
 
 .offset-section {
   display: flex;
   flex-wrap: wrap;
   gap: 28px;
   margin: 80px 0;
   align-items: center;
 }
 
 .offset-section.reverse {
   flex-direction: row-reverse;
 }
 
 .offset-section .text-block {
   flex: 1 1 52%;
   background: var(--stone);
   padding: 28px;
   margin-top: -20px;
 }
 
 .offset-section .image-frame {
   flex: 1 1 38%;
   background: #e7e2da;
   padding: 16px;
 }
 
 .stacked {
   display: flex;
   flex-direction: column;
   gap: 32px;
   background: var(--accent-soft);
   padding: 32px;
 }
 
 .cards {
   display: flex;
   flex-wrap: wrap;
   gap: 24px;
 }
 
 .card {
   flex: 1 1 240px;
   background: #ffffff;
   box-shadow: var(--shadow);
   padding: 20px;
   display: flex;
   flex-direction: column;
   gap: 12px;
 }
 
 .card .image-frame {
   background: #dfe7ef;
   padding: 12px;
 }
 
 .card .price {
   font-weight: 700;
   color: var(--accent);
 }
 
 .background-layer {
   position: relative;
   display: flex;
   flex-wrap: wrap;
   gap: 28px;
   padding: 40px;
   background: #f6f0ea;
   overflow: hidden;
 }
 
 .background-layer .image-frame {
   flex: 1 1 45%;
   background: #e9e1d8;
   padding: 16px;
 }
 
 .background-layer .text-block {
   flex: 1 1 45%;
   z-index: 1;
 }
 
 .testimonial {
   background: #ffffff;
   border-left: 4px solid var(--accent);
   padding: 24px;
   box-shadow: var(--shadow);
 }
 
 .form-wrap {
   display: flex;
   flex-wrap: wrap;
   gap: 32px;
   align-items: flex-start;
   margin-top: 40px;
 }
 
 form {
   flex: 1 1 320px;
   display: flex;
   flex-direction: column;
   gap: 16px;
   background: var(--linen);
   padding: 24px;
 }
 
 label {
   font-weight: 600;
 }
 
 input,
 select,
 textarea {
   padding: 12px;
   border: 1px solid #cbd5df;
   border-radius: 10px;
   font-size: 1rem;
   font-family: inherit;
 }
 
 .form-actions {
   display: flex;
   gap: 12px;
   flex-wrap: wrap;
 }
 
 .sticky-cta {
   position: fixed;
   bottom: 16px;
   right: 16px;
   background: #ffffff;
   box-shadow: var(--shadow);
   padding: 12px 16px;
   border-radius: 999px;
   z-index: 10;
 }
 
 .sticky-cta a {
   color: var(--accent);
   font-weight: 600;
 }
 
 footer {
   margin-top: 80px;
   padding-top: 32px;
   border-top: 1px solid #e5e8ec;
   color: var(--muted);
   font-size: 0.95rem;
 }
 
 footer .footer-links {
   display: flex;
   flex-wrap: wrap;
   gap: 16px;
   margin: 16px 0;
 }
 
 .cookie-banner {
   position: fixed;
   left: 24px;
   bottom: 24px;
   max-width: 380px;
   background: #ffffff;
   box-shadow: var(--shadow);
   padding: 18px;
   display: none;
   flex-direction: column;
   gap: 12px;
   z-index: 20;
 }
 
 .cookie-banner.show {
   display: flex;
 }
 
 .split-page {
   display: flex;
   flex-direction: column;
   gap: 32px;
 }
 
 .split-page .hero-row {
   display: flex;
   flex-wrap: wrap;
   gap: 24px;
 }
 
 .split-page .hero-row .image-frame {
   flex: 1 1 45%;
   background: #e9e1d8;
   padding: 16px;
 }
 
 .split-page .hero-row .text-block {
   flex: 1 1 45%;
   background: var(--stone);
   padding: 24px;
 }
 
 .legal-block {
   background: #f8f6f1;
   padding: 24px;
   box-shadow: var(--shadow);
 }
 
 .notice {
   background: #fff6ea;
   padding: 18px;
   border-left: 4px solid #d2a679;
 }
 
 @media (max-width: 900px) {
   header {
     flex-direction: column;
   }
 
   .hero .hero-copy {
     margin-top: 0;
   }
 
   .sticky-cta {
     right: 12px;
     left: 12px;
     text-align: center;
   }
 }
