 :root {
   color-scheme: light;
   --ink: #1a1a1a;
   --muted: #5a5a5a;
   --brand: #2a4b8d;
   --accent: #f2b705;
   --soft: #f6f3ef;
   --deep: #10121a;
   --card: #ffffff;
   --shadow: 0 16px 40px rgba(16, 18, 26, 0.12);
 }
 
 * {
   box-sizing: border-box;
 }
 
 body {
   margin: 0;
   font-family: "Inter", "Segoe UI", system-ui, sans-serif;
   color: var(--ink);
   background: #ffffff;
   line-height: 1.6;
 }
 
 img {
   display: block;
   width: 100%;
   height: 100%;
   object-fit: cover;
 }
 
 a {
   color: var(--brand);
   text-decoration: none;
 }
 
 a.button,
 button.button {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   padding: 12px 20px;
   border-radius: 24px;
   border: 1px solid var(--brand);
   background: var(--brand);
   color: #ffffff;
   font-weight: 600;
   cursor: pointer;
 }
 
 a.button.secondary,
 button.button.secondary {
   background: transparent;
   color: var(--brand);
 }
 
 header.site-header {
   padding: 20px 6vw;
   display: flex;
   align-items: center;
   justify-content: space-between;
   gap: 16px;
   border-bottom: 1px solid #e7e7e7;
 }
 
 .brand {
   font-weight: 700;
   letter-spacing: 0.04em;
   text-transform: lowercase;
 }
 
 .ad-label {
   font-size: 0.85rem;
   color: var(--muted);
   max-width: 280px;
   text-align: center;
 }
 
 nav.site-nav {
   display: flex;
   gap: 16px;
   flex-wrap: wrap;
   justify-content: flex-end;
 }
 
 main {
   display: flex;
   flex-direction: column;
   gap: 32px;
 }
 
 .section {
   padding: 56px 6vw;
 }
 
 .section.alt {
   background: var(--soft);
 }
 
 .section.deep {
   background: var(--deep);
   color: #ffffff;
 }
 
.section.bg-image {
  background-color: #0d0f17;
  background-image:
    linear-gradient(rgba(12, 14, 22, 0.75), rgba(12, 14, 22, 0.75)),
    url("https://images.unsplash.com/photo-1517245386807-bb43f82c33c4?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.section.bg-image .content {
  background: rgba(12, 14, 22, 0.6);
  padding: 18px;
  border-radius: 16px;
}

 .split {
   display: flex;
   gap: 32px;
   align-items: center;
 }
 
 .split.reverse {
   flex-direction: row-reverse;
 }
 
 .split .content,
 .split .media {
   flex: 1;
 }
 
 .media {
   min-height: 320px;
   border-radius: 20px;
   overflow: hidden;
   background-color: #d9dde6;
   box-shadow: var(--shadow);
 }
 
 .media.tall {
   min-height: 420px;
 }
 
 .pill-list {
   display: flex;
   flex-wrap: wrap;
   gap: 10px;
   margin: 16px 0 0;
 }
 
 .pill {
   padding: 6px 14px;
   background: #ffffff;
   border-radius: 20px;
   border: 1px solid #e0e0e0;
   color: var(--muted);
   font-size: 0.9rem;
 }
 
 .card-stack {
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 .card {
   display: flex;
   gap: 16px;
   padding: 18px;
   background: var(--card);
   border-radius: 18px;
   box-shadow: var(--shadow);
   align-items: center;
 }
 
 .card-media {
   width: 140px;
   height: 110px;
   border-radius: 14px;
   overflow: hidden;
   background-color: #e4e6ef;
   flex-shrink: 0;
 }
 
 .price {
   font-weight: 700;
   color: var(--brand);
 }
 
 .cta-row {
   display: flex;
   flex-wrap: wrap;
   gap: 12px;
   margin-top: 18px;
 }
 
 .inline-cta {
   display: inline-flex;
   align-items: center;
   gap: 6px;
   font-weight: 600;
 }
 
 .form-card {
   padding: 24px;
   background: #ffffff;
   border-radius: 20px;
   box-shadow: var(--shadow);
 }
 
 form.lead-form {
   display: flex;
   flex-direction: column;
   gap: 14px;
 }
 
 form.lead-form label {
   font-weight: 600;
 }
 
 form.lead-form input,
 form.lead-form select {
   padding: 12px 14px;
   border-radius: 10px;
   border: 1px solid #d9d9d9;
   font-size: 1rem;
 }
 
 .split-note {
   background: rgba(255, 255, 255, 0.12);
   padding: 18px;
   border-radius: 16px;
   border: 1px solid rgba(255, 255, 255, 0.2);
 }
 
 .sticky-cta {
   position: sticky;
   bottom: 16px;
   align-self: flex-end;
   background: #ffffff;
   padding: 12px 18px;
   border-radius: 999px;
   box-shadow: var(--shadow);
   margin-right: 6vw;
   display: inline-flex;
   gap: 10px;
   align-items: center;
 }
 
 footer.site-footer {
   padding: 48px 6vw;
   background: #0c0e16;
   color: #d5d7df;
   display: flex;
   flex-direction: column;
   gap: 18px;
 }
 
 .footer-links {
   display: flex;
   flex-wrap: wrap;
   gap: 16px;
 }
 
 .footer-links a {
   color: #d5d7df;
 }
 
 .disclaimer {
   font-size: 0.9rem;
   color: #b3b6c2;
 }
 
 .cookie-banner {
   position: fixed;
   bottom: 16px;
   left: 16px;
   right: 16px;
   background: #ffffff;
   border-radius: 16px;
   box-shadow: var(--shadow);
   padding: 16px;
   display: none;
   gap: 12px;
   align-items: center;
   justify-content: space-between;
   z-index: 20;
 }
 
 .cookie-banner.is-visible {
   display: flex;
 }
 
 .cookie-actions {
   display: flex;
   gap: 10px;
   flex-wrap: wrap;
 }
 
 .cookie-actions button {
   padding: 10px 16px;
   border-radius: 999px;
   border: 1px solid var(--brand);
   background: var(--brand);
   color: #ffffff;
   cursor: pointer;
 }
 
 .cookie-actions button.secondary {
   background: transparent;
   color: var(--brand);
 }
 
 @media (max-width: 960px) {
   header.site-header {
     flex-direction: column;
     align-items: flex-start;
   }
 
   .ad-label {
     text-align: left;
   }
 
   .split,
   .split.reverse {
     flex-direction: column;
   }
 
   .sticky-cta {
     align-self: center;
     margin-right: 0;
   }
 }
