:root {
  --navy: #0B1F3A;
  --navy-2: #0A2540;
  --navy-deep: #071628;
  --teal: #1FA6A0;
  --teal-2: #1E9E97;
  --teal-dark: #178a85;
  --teal-soft: #e6f6f5;
  --teal-bar: #E8F5F4;
  --whatsapp: #25D366;
  --whatsapp-dark: #1ebe57;
  --white: #ffffff;
  --grey-bg: #F3F5F7;
  --grey-line: #E5E9EE;
  --grey-text: #5A6573;
  --muted: #8A94A3;
  --shadow: 0 12px 40px rgba(11, 31, 58, 0.12);
  --radius: 12px;
  --container: 1140px;
  --font: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  color: var(--navy);
  background: var(--white);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
.container {
  width: min(100% - 40px, var(--container));
  margin-inline: auto;
}
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ——— Buttons ——— */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-weight: 700; font-size: 13px; letter-spacing: 0.04em;
  text-transform: uppercase; border: none; cursor: pointer;
  border-radius: 8px; padding: 14px 22px;
  transition: background .2s, transform .15s, box-shadow .2s, color .2s, border-color .2s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn-teal { background: var(--teal); color: #fff; }
.btn-teal:hover { background: var(--teal-dark); box-shadow: 0 8px 20px rgba(31,166,160,.35); }
.btn-whatsapp { background: var(--whatsapp); color: #fff; }
.btn-whatsapp:hover { background: var(--whatsapp-dark); box-shadow: 0 8px 20px rgba(37,211,102,.35); }
.btn-outline {
  background: transparent; color: var(--teal);
  border: 2px solid var(--teal); padding: 12px 24px;
}
.btn-outline:hover { background: var(--teal); color: #fff; }
.btn-outline-white {
  background: transparent; color: #fff;
  border: 2px solid rgba(255,255,255,.55); padding: 12px 24px;
}
.btn-outline-white:hover { background: #fff; color: var(--navy); }
.btn-block { width: 100%; }

.label-teal {
  display: block; color: var(--teal); font-size: 12px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 10px;
}
.section-title {
  font-size: clamp(26px, 3.2vw, 36px); font-weight: 800;
  line-height: 1.2; color: var(--navy); letter-spacing: -0.02em;
}
.section-lead {
  color: var(--grey-text); font-size: 16px; max-width: 640px; margin-top: 14px;
}

/* ——— Header ——— */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--grey-line);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; min-height: 78px; padding: 10px 0;
}
.logo {
  display: flex; align-items: center; gap: 12px; flex-shrink: 0;
}
.logo-mark { width: 52px; height: 52px; flex-shrink: 0; }
.logo-text {
  display: flex; flex-direction: column; line-height: 1.05;
  color: var(--navy); font-weight: 800; letter-spacing: 0.02em;
}
.logo-text .tiny { font-size: 10px; letter-spacing: 0.14em; font-weight: 700; }
.logo-text .mid { font-size: 13px; letter-spacing: 0.04em; }
.logo-text .bot {
  font-size: 11px; letter-spacing: 0.12em; display: flex; align-items: center; gap: 8px;
  margin-top: 2px;
}
.logo-text .bot::before,
.logo-text .bot::after {
  content: ""; flex: 1; height: 1.5px; background: var(--teal); min-width: 14px;
}
.logo-white .logo-text { color: #fff; }
.logo-white .logo-text .bot::before,
.logo-white .logo-text .bot::after { background: var(--teal); }

.nav-desktop {
  display: flex; align-items: center; gap: 28px;
  list-style: none;
}
.nav-desktop a {
  font-size: 14px; font-weight: 500; color: var(--navy);
  transition: color .15s;
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
}
.nav-desktop a:hover { color: var(--teal); }
.nav-desktop a.active {
  color: var(--navy); font-weight: 600;
  border-bottom-color: var(--teal);
}

.header-actions {
  display: flex; align-items: center; gap: 16px; flex-shrink: 0;
}
.header-actions .sep {
  width: 1px; height: 24px; background: var(--grey-line);
}
.wa-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 14px; font-weight: 600; color: var(--navy);
  transition: color .15s;
}
.wa-link:hover { color: var(--whatsapp-dark); }
.wa-link svg { width: 22px; height: 22px; flex-shrink: 0; }
.call-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 14px; font-weight: 700; color: var(--navy);
}
.call-link:hover { color: var(--teal); }
.need-help {
  font-size: 14px; font-weight: 500; color: var(--grey-text);
}
.menu-toggle {
  display: none; background: none; border: none; cursor: pointer;
  width: 42px; height: 42px; align-items: center; justify-content: center;
  border-radius: 8px;
}
.menu-toggle:hover { background: var(--grey-bg); }
.menu-toggle span {
  display: block; width: 22px; height: 2px; background: var(--navy);
  position: relative;
}
.menu-toggle span::before,
.menu-toggle span::after {
  content: ""; position: absolute; left: 0; width: 22px; height: 2px; background: var(--navy);
}
.menu-toggle span::before { top: -7px; }
.menu-toggle span::after { top: 7px; }
.menu-toggle[aria-expanded="true"] span { background: transparent; }
.menu-toggle[aria-expanded="true"] span::before { top: 0; transform: rotate(45deg); }
.menu-toggle[aria-expanded="true"] span::after { top: 0; transform: rotate(-45deg); }

.mobile-nav {
  display: none; border-top: 1px solid var(--grey-line);
  padding: 16px 0 20px; background: #fff;
}
.mobile-nav.open { display: block; }
.mobile-nav ul { list-style: none; display: flex; flex-direction: column; gap: 4px; }
.mobile-nav a {
  display: block; padding: 12px 4px; font-weight: 600; font-size: 15px;
}
.mobile-nav a.active { color: var(--teal); }
.mobile-nav .mobile-ctas {
  display: flex; flex-direction: column; gap: 10px; margin-top: 14px;
}

/* ——— Homepage Hero ——— */
.hero {
  position: relative;
  background:
    linear-gradient(105deg, rgba(7,22,40,.88) 0%, rgba(7,22,40,.72) 42%, rgba(7,22,40,.25) 68%, rgba(7,22,40,.15) 100%),
    url("images/hero-park.jpg") center/cover no-repeat;
  color: #fff;
  padding: 56px 0 64px;
  min-height: 560px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 40px;
  align-items: center;
}
.hero h1 {
  font-size: clamp(30px, 4vw, 44px);
  font-weight: 800; line-height: 1.15; letter-spacing: -0.025em;
  max-width: 520px; margin-bottom: 16px;
}
.hero-sub {
  font-size: 16px; line-height: 1.6; color: rgba(255,255,255,.9);
  max-width: 480px; margin-bottom: 28px;
}
.hero-benefits {
  display: flex; flex-wrap: wrap; gap: 18px 28px; margin-bottom: 28px;
  list-style: none;
}
.hero-benefits li {
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; font-weight: 600;
}
.icon-circle {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--teal); display: grid; place-items: center; flex-shrink: 0;
}
.icon-circle svg { width: 18px; height: 18px; }
.hero-tagline {
  display: flex; align-items: center; gap: 14px;
  font-size: 13px; color: rgba(255,255,255,.85); font-weight: 500;
}
.hero-tagline::before {
  content: ""; width: 36px; height: 2px; background: var(--teal); flex-shrink: 0;
}

/* Valuation card (homepage) */
.valuation-card {
  background: #fff; color: var(--navy);
  border-radius: 16px; padding: 28px 26px 24px;
  box-shadow: var(--shadow);
}
.valuation-card .label-teal { margin-bottom: 4px; }
.valuation-card h2 {
  font-size: 22px; font-weight: 800; margin-bottom: 18px; letter-spacing: -0.02em;
}
.progress {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 18px; gap: 12px;
}
.progress-label { font-size: 12px; color: var(--muted); font-weight: 600; }
.progress-dots { display: flex; align-items: center; gap: 0; flex: 1; max-width: 140px; }
.progress-dots .dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--grey-line); border: 2px solid var(--grey-line); flex-shrink: 0;
}
.progress-dots .dot.active {
  background: var(--teal); border-color: var(--teal);
}
.progress-dots .bar {
  flex: 1; height: 2px; background: var(--grey-line);
}
.progress-dots .bar.active { background: var(--teal); }

.field { margin-bottom: 12px; }
.field label { display: block; font-size: 12px; font-weight: 600; color: var(--grey-text); margin-bottom: 6px; }
.field-label-navy { color: var(--navy) !important; font-weight: 700 !important; font-size: 13px !important; }
.input-wrap { position: relative; }
.input-wrap .pin {
  position: absolute; left: 14px; top: 50%; transform: translateY(-50%);
  color: var(--navy); pointer-events: none;
}
.input-wrap input,
.field select,
.field input[type="text"],
.field input[type="email"],
.field input[type="tel"],
.field textarea {
  width: 100%; height: 48px; border: 1.5px solid var(--grey-line);
  border-radius: 8px; padding: 0 14px; background: #fff;
  color: var(--navy); font-size: 14px; appearance: none;
  transition: border-color .15s, box-shadow .15s;
}
.field textarea { height: auto; min-height: 100px; padding: 12px 14px; resize: vertical; }
.input-wrap input { padding-left: 42px; }
.field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%230B1F3A' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center;
  padding-right: 36px; cursor: pointer;
}
.input-wrap input:focus,
.field select:focus,
.field input:focus,
.field textarea:focus {
  outline: none; border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(31,166,160,.18);
}
.form-note {
  display: flex; align-items: center; gap: 8px;
  margin-top: 12px; font-size: 12px; color: var(--muted);
}
.form-note svg { flex-shrink: 0; color: var(--teal); }

.field-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px;
}

/* Segmented control */
.segmented {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 0;
  border: 1.5px solid var(--grey-line); border-radius: 8px; overflow: hidden;
}
.segmented label {
  position: relative;
  display: flex; align-items: center; justify-content: center;
  height: 48px; cursor: pointer; font-size: 14px; font-weight: 600;
  color: var(--navy); background: #fff; border-right: 1.5px solid var(--grey-line);
  margin: 0; transition: background .15s, color .15s;
}
.segmented label:last-child { border-right: none; }
.segmented input { position: absolute; opacity: 0; pointer-events: none; }
.segmented input:checked + span,
.segmented label:has(input:checked) {
  background: var(--teal-soft); color: var(--teal-dark);
}
.segmented label:has(input:focus-visible) {
  box-shadow: inset 0 0 0 2px var(--teal);
}

/* Toast */
.toast {
  position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%) translateY(120%);
  background: var(--navy); color: #fff; padding: 14px 22px; border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,.25); font-size: 14px; font-weight: 600;
  z-index: 200; transition: transform .3s ease; max-width: min(420px, calc(100% - 32px));
  text-align: center;
}
.toast.show { transform: translateX(-50%) translateY(0); }

/* ——— WhatsApp bar ——— */
.wa-bar {
  background: var(--grey-bg); padding: 36px 0;
}
.wa-bar-inner {
  display: grid; grid-template-columns: auto 1fr auto;
  gap: 28px; align-items: center;
}
.wa-big {
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--whatsapp); display: grid; place-items: center;
  box-shadow: 0 8px 20px rgba(37,211,102,.3);
}
.wa-big svg { width: 34px; height: 34px; }
.wa-bar h2 {
  font-size: clamp(22px, 2.5vw, 28px); font-weight: 800;
  letter-spacing: -0.02em; margin: 4px 0 8px;
}
.wa-bar p { color: var(--grey-text); font-size: 15px; max-width: 520px; }
.wa-bar-cta { text-align: center; }
.wa-bar-cta .note {
  display: block; margin-top: 8px; font-size: 12px; color: var(--teal); font-weight: 500;
}

/* ——— How it works (homepage) ——— */
.how { padding: 72px 0 64px; background: #fff; }
.how .section-title { text-align: center; margin-bottom: 40px; }
.steps {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px;
}
.step-card {
  border: 1.5px solid var(--grey-line); border-radius: var(--radius);
  padding: 28px 24px 26px; background: #fff;
  transition: box-shadow .2s, border-color .2s;
}
.step-card:hover { box-shadow: var(--shadow); border-color: transparent; }
.step-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; }
.step-num {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--teal-soft); color: var(--teal);
  display: grid; place-items: center; font-weight: 800; font-size: 15px;
}
.step-icon { color: var(--navy); }
.step-card h3 { font-size: 18px; font-weight: 800; margin-bottom: 8px; }
.step-card p { color: var(--grey-text); font-size: 14px; }

.geo-line {
  display: flex; align-items: center; justify-content: center; gap: 14px;
  margin-top: 48px; color: var(--navy); font-size: 14px; font-weight: 600;
}
.geo-line::before, .geo-line::after {
  content: ""; height: 2px; background: var(--teal); flex: 1; max-width: 180px;
}
.geo-line svg { color: var(--teal); flex-shrink: 0; }

/* Location bar (page bottoms) */
.location-bar {
  background: var(--teal-bar); padding: 22px 0;
  display: flex; align-items: center; justify-content: center; gap: 10px;
  font-size: 14px; font-weight: 600; color: var(--navy);
}
.location-bar svg { color: var(--navy); flex-shrink: 0; }

/* ——— What we buy (homepage) ——— */
.what-buy {
  padding: 72px 0; background: #F7FAFA;
  text-align: center;
}
.what-buy .section-lead { margin-inline: auto; margin-bottom: 36px; }
.buy-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px;
  text-align: center; margin-bottom: 36px;
}
.buy-card {
  background: #fff; border-radius: var(--radius); padding: 28px 18px 24px;
  box-shadow: 0 4px 18px rgba(11,31,58,.06);
}
.buy-icon {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--teal-soft); color: var(--navy);
  display: grid; place-items: center; margin: 0 auto 16px;
}
.buy-card h3 { font-size: 16px; font-weight: 800; margin-bottom: 8px; }
.buy-card p { font-size: 13px; color: var(--grey-text); line-height: 1.5; }
.what-buy .hint {
  margin-top: 12px; font-size: 13px; color: var(--grey-text);
}

/* ——— Difficult parts ——— */
.difficult { padding: 0 0 72px; background: #F7FAFA; }
.difficult-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  border-radius: 16px; overflow: hidden;
  box-shadow: var(--shadow); min-height: 420px;
}
.difficult-photo {
  background:
    url("images/difficult-transport.jpg") center/cover no-repeat;
  min-height: 320px;
}
.difficult-panel {
  background: var(--navy); color: #fff; padding: 48px 44px;
  display: flex; flex-direction: column; justify-content: center;
}
.difficult-panel h2 {
  font-size: clamp(24px, 2.8vw, 32px); font-weight: 800;
  letter-spacing: -0.02em; margin-bottom: 14px;
}
.difficult-panel > p {
  color: rgba(255,255,255,.75); font-size: 15px; margin-bottom: 24px;
}
.checklist { list-style: none; display: flex; flex-direction: column; gap: 14px; margin-bottom: 28px; }
.checklist li {
  display: flex; align-items: center; gap: 12px;
  font-size: 15px; font-weight: 500;
}
.check {
  width: 26px; height: 26px; border-radius: 50%; background: var(--teal);
  display: grid; place-items: center; flex-shrink: 0;
}
.check svg { width: 14px; height: 14px; }
.text-link {
  color: var(--teal); font-weight: 700; font-size: 13px;
  letter-spacing: 0.04em; text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 6px;
}
.text-link:hover { color: #5fd0ca; }

/* ——— Why owners ——— */
.why { padding: 72px 0; background: #EEF7F6; text-align: center; }
.why .section-lead { margin-inline: auto; margin-bottom: 40px; }
.why-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
  text-align: center;
}
.why-card { padding: 8px 16px; }
.why-icon {
  width: 56px; height: 56px; margin: 0 auto 16px;
  color: var(--navy);
}
.why-card h3 { font-size: 18px; font-weight: 800; margin-bottom: 8px; }
.why-card p { font-size: 14px; color: var(--grey-text); }

/* ——— FAQs (homepage) ——— */
.faqs { padding: 72px 0; background: #fff; }
.faqs-head { text-align: center; margin-bottom: 36px; }
.accordion {
  max-width: 760px; margin: 0 auto 36px;
  border-top: 1px solid var(--grey-line);
}
.acc-item { border-bottom: 1px solid var(--grey-line); }
.acc-btn {
  width: 100%; background: none; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 20px 4px; text-align: left;
  font-size: 16px; font-weight: 700; color: var(--navy);
}
.acc-btn:hover { color: var(--teal); }
.acc-icon {
  width: 28px; height: 28px; border-radius: 50%;
  border: 1.5px solid var(--grey-line); color: var(--navy);
  display: grid; place-items: center; flex-shrink: 0;
  font-size: 18px; line-height: 1; font-weight: 500;
  transition: background .15s, color .15s, border-color .15s;
}
.acc-item.open .acc-icon {
  background: var(--teal); border-color: var(--teal); color: #fff;
}
.acc-panel {
  display: none; padding: 0 4px 20px;
  color: var(--grey-text); font-size: 15px; line-height: 1.6;
}
.acc-item.open .acc-panel { display: block; }
.faqs-cta { text-align: center; }

/* ——— Final CTA ——— */
.final-cta {
  background: var(--navy); color: #fff; padding: 64px 0;
}
.final-inner {
  display: grid; grid-template-columns: auto 1fr; gap: 48px; align-items: center;
}
.final-art {
  position: relative; width: 180px; height: 120px;
}
.final-art .caravan-svg { width: 180px; height: auto; color: #fff; opacity: .95; }
.final-art .badge {
  position: absolute; right: -8px; bottom: 8px;
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--teal); display: grid; place-items: center;
  box-shadow: 0 4px 12px rgba(0,0,0,.25);
}
.final-cta h2 {
  font-size: clamp(26px, 3vw, 34px); font-weight: 800;
  letter-spacing: -0.02em; margin-bottom: 10px;
}
.final-cta p.final-sub {
  color: rgba(255,255,255,.75); margin-bottom: 22px; max-width: 480px;
}
.final-btns { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 16px; }
.final-note { font-size: 13px; color: rgba(255,255,255,.55); }

/* Dark CTA band (shared) */
.dark-cta {
  background: var(--navy); color: #fff; padding: 56px 0;
}
.dark-cta-inner {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 28px;
}
.dark-cta h2 {
  font-size: clamp(24px, 2.8vw, 32px); font-weight: 800;
  letter-spacing: -0.02em; margin-bottom: 8px;
}
.dark-cta p { color: rgba(255,255,255,.75); max-width: 480px; }
.dark-cta-btns { display: flex; flex-wrap: wrap; gap: 12px; }

/* ——— Footer ——— */
.site-footer {
  background: var(--navy-deep); color: rgba(255,255,255,.85); padding: 56px 0 0;
}
.footer-top {
  display: grid; grid-template-columns: 1.2fr 1fr 1fr 1fr; gap: 32px;
  padding-bottom: 40px;
}
.footer-col h4 {
  color: #fff; font-size: 13px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 16px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a {
  font-size: 14px; color: rgba(255,255,255,.7); transition: color .15s;
}
.footer-col a:hover { color: var(--teal); }
.footer-contact {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.footer-contact a {
  display: inline-flex; align-items: center; gap: 8px; margin-bottom: 10px;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 18px 0; display: flex; flex-wrap: wrap;
  justify-content: space-between; gap: 12px;
  font-size: 13px; color: rgba(255,255,255,.55);
}
.footer-bottom .left {
  display: flex; align-items: center; gap: 8px;
}
.footer-bottom svg { color: var(--teal); }

/* Trust line under CTAs */
.trust-line {
  display: flex; align-items: center; gap: 8px;
  margin-top: 16px; font-size: 13px; color: var(--grey-text); font-weight: 500;
}
.trust-line svg { color: var(--teal); flex-shrink: 0; }

.hero-ctas {
  display: flex; flex-wrap: wrap; gap: 12px; margin-top: 8px;
}

/* ========================================
   PAGE: How It Works
   ======================================== */
.page-hero {
  padding: 56px 0 48px; background: #fff;
}
.page-hero-split {
  display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center;
}
.page-hero h1 {
  font-size: clamp(28px, 3.5vw, 40px); font-weight: 800;
  line-height: 1.15; letter-spacing: -0.025em; margin-bottom: 16px;
  color: var(--navy);
}
.page-hero .lead {
  color: var(--grey-text); font-size: 16px; line-height: 1.65;
  max-width: 520px; margin-bottom: 24px;
}
.page-hero-photo {
  border-radius: 12px; min-height: 340px;
  background-size: cover; background-position: center;
  position: relative;
}
.page-hero-photo.fade-left::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, #fff 0%, transparent 28%);
  border-radius: 12px; pointer-events: none;
}

.hiw-steps { padding: 56px 0 64px; background: #F7FAFA; }
.hiw-steps .section-title { text-align: center; margin-bottom: 48px; }
.hiw-steps-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
  position: relative;
}
.hiw-steps-grid::before {
  content: ""; position: absolute; top: 28px; left: 12%; right: 12%;
  height: 2px; background: var(--teal); z-index: 0;
}
.hiw-step {
  text-align: center; padding: 0 16px; position: relative; z-index: 1;
}
.hiw-step-icon {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--teal); color: #fff;
  display: grid; place-items: center; margin: 0 auto 14px;
  box-shadow: 0 0 0 6px #F7FAFA;
}
.hiw-step .num {
  display: inline-block; font-size: 13px; font-weight: 800;
  color: var(--teal); margin-bottom: 8px;
}
.hiw-step h3 { font-size: 16px; font-weight: 800; margin-bottom: 8px; }
.hiw-step p { font-size: 13px; color: var(--grey-text); line-height: 1.5; }

.hiw-difficult { padding: 64px 0; background: #fff; }
.hiw-difficult-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center;
}
.hiw-difficult-photo {
  border-radius: 12px; min-height: 360px;
  background:
    url("images/difficult-condition.jpg") center/cover no-repeat;
}
.hiw-difficult-copy h2 {
  font-size: clamp(24px, 2.8vw, 32px); font-weight: 800;
  margin-bottom: 20px; letter-spacing: -0.02em;
}
.hiw-difficult-copy .checklist { margin-bottom: 28px; }
.hiw-difficult-copy .checklist li { color: var(--navy); }

/* ========================================
   PAGE: What We Buy
   ======================================== */
.wwb-grid-section {
  padding: 56px 0 64px; background: #F7FAFA; text-align: center;
}
.wwb-grid-section .section-title { margin-bottom: 36px; }
.wwb-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
  text-align: left;
}
.wwb-card {
  background: #fff; border-radius: var(--radius); padding: 28px 24px;
  box-shadow: 0 4px 18px rgba(11,31,58,.06);
}
.wwb-card .buy-icon { margin: 0 0 16px; }
.wwb-card h3 { font-size: 17px; font-weight: 800; margin-bottom: 8px; }
.wwb-card p { font-size: 14px; color: var(--grey-text); line-height: 1.55; }

.wwb-dark {
  background: var(--navy); color: #fff; padding: 56px 0;
}
.wwb-dark-inner {
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 40px; align-items: center;
}
.wwb-dark h2 {
  font-size: clamp(24px, 2.8vw, 32px); font-weight: 800;
  letter-spacing: -0.02em; margin-bottom: 12px;
}
.wwb-dark > .container > .wwb-dark-inner > div > p {
  color: rgba(255,255,255,.75); margin-bottom: 24px; max-width: 460px;
}
.confirm-box {
  border: 1.5px solid rgba(255,255,255,.25); border-radius: 12px;
  padding: 28px 26px;
}
.confirm-box h3 {
  font-size: 18px; font-weight: 800; margin-bottom: 18px; color: #fff;
}
.confirm-box .checklist li { color: #fff; }

/* ========================================
   PAGE: Reviews
   ======================================== */
.reviews-hero {
  padding: 56px 0 32px; text-align: center; background: #F7FAFA;
}
.reviews-hero h1 {
  font-size: clamp(28px, 3.4vw, 38px); font-weight: 800;
  letter-spacing: -0.025em; margin-bottom: 12px; max-width: 720px; margin-inline: auto;
}
.reviews-hero .lead {
  color: var(--grey-text); font-size: 16px; max-width: 560px; margin: 0 auto 24px;
}
.disclaimer-box {
  display: inline-flex; align-items: flex-start; gap: 10px;
  background: #E8F0FE; color: var(--navy); border-radius: 10px;
  padding: 14px 18px; font-size: 13px; font-weight: 500;
  max-width: 640px; text-align: left; margin-inline: auto;
}
.disclaimer-box .info-icon {
  width: 22px; height: 22px; border-radius: 50%; background: #4A90E2;
  color: #fff; display: grid; place-items: center; flex-shrink: 0;
  font-size: 13px; font-weight: 700; font-style: italic;
}

.reviews-summary {
  text-align: center; padding: 28px 0 8px; background: #F7FAFA;
}
.stars { display: flex; justify-content: center; gap: 4px; margin-bottom: 10px; color: var(--teal); }
.stars svg { width: 22px; height: 22px; }
.reviews-summary .label-teal { margin-bottom: 0; }

.reviews-grid-wrap { padding: 24px 0 64px; background: #F7FAFA; }
.reviews-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.review-card {
  background: #fff; border-radius: var(--radius); padding: 26px 22px 22px;
  box-shadow: 0 4px 18px rgba(11,31,58,.06);
  display: flex; flex-direction: column; gap: 10px;
}
.review-card .stars { justify-content: flex-start; margin-bottom: 4px; }
.review-card .stars svg { width: 16px; height: 16px; }
.review-card h3 { font-size: 16px; font-weight: 800; }
.review-card p { font-size: 14px; color: var(--grey-text); line-height: 1.55; flex: 1; }
.review-author {
  display: flex; align-items: center; gap: 12px; margin-top: 8px;
  padding-top: 14px; border-top: 1px solid var(--grey-line);
}
.avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--teal-soft); color: var(--teal-dark);
  display: grid; place-items: center; font-weight: 800; font-size: 15px; flex-shrink: 0;
}
.review-author .name { font-size: 14px; font-weight: 700; color: var(--navy); }
.review-author .meta { font-size: 12px; color: var(--muted); }
.review-author .example { font-weight: 500; color: var(--muted); font-size: 12px; }

/* ========================================
   PAGE: FAQs
   ======================================== */
.faq-page-hero {
  padding: 48px 0 36px; background: var(--teal-bar); text-align: center;
}
.faq-page-hero h1 {
  font-size: clamp(28px, 3.4vw, 38px); font-weight: 800;
  letter-spacing: -0.025em; margin-bottom: 12px;
}
.faq-page-hero .lead {
  color: var(--grey-text); font-size: 16px; max-width: 580px; margin: 0 auto 28px;
}
.faq-search-wrap {
  max-width: 520px; margin: 0 auto 18px; position: relative;
}
.faq-search-wrap svg {
  position: absolute; left: 16px; top: 50%; transform: translateY(-50%);
  color: var(--navy); pointer-events: none;
}
.faq-search-wrap input {
  width: 100%; height: 52px; border: 1.5px solid var(--grey-line);
  border-radius: 10px; padding: 0 16px 0 46px; background: #fff;
  font-size: 15px; color: var(--navy);
}
.faq-search-wrap input:focus {
  outline: none; border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(31,166,160,.18);
}
.faq-chips {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 10px;
}
.faq-chip {
  border: none; background: #fff; color: var(--navy);
  padding: 10px 18px; border-radius: 999px; font-size: 13px; font-weight: 600;
  cursor: pointer; box-shadow: 0 2px 8px rgba(11,31,58,.06);
  transition: background .15s, color .15s;
}
.faq-chip:hover, .faq-chip.active {
  background: var(--teal); color: #fff;
}

.faq-layout {
  padding: 48px 0 64px; background: #fff;
}
.faq-layout-inner {
  display: grid; grid-template-columns: 1.4fr 0.7fr; gap: 36px; align-items: start;
}
.faq-layout h2 {
  font-size: 22px; font-weight: 800; margin-bottom: 20px;
}
.faq-layout .accordion { max-width: none; margin: 0; }
.faq-layout .acc-icon {
  background: var(--teal-soft); border-color: var(--teal); color: var(--teal);
}
.faq-layout .acc-item.open .acc-icon {
  background: var(--teal); color: #fff;
}
.acc-item[hidden] { display: none !important; }

.faq-sidebar {
  position: sticky; top: 96px;
  border: 1.5px solid var(--grey-line); border-radius: 14px;
  padding: 28px 24px; background: #fff;
  box-shadow: 0 4px 18px rgba(11,31,58,.06);
}
.faq-sidebar-art {
  width: 64px; height: 64px; margin: 0 auto 18px; color: var(--navy);
}
.faq-sidebar h3 { font-size: 18px; font-weight: 800; margin-bottom: 8px; }
.faq-sidebar p { font-size: 14px; color: var(--grey-text); margin-bottom: 16px; }
.faq-sidebar .divider {
  height: 1px; background: var(--grey-line); margin: 24px 0;
}
.faq-sidebar .call-link { margin-top: 12px; font-size: 14px; text-decoration: underline; }

/* ========================================
   PAGE: Valuation
   ======================================== */
.val-header .header-actions { gap: 20px; }

.val-hero {
  padding: 40px 0 24px; text-align: center; background: #F7FAFA;
}
.val-hero h1 {
  font-size: clamp(26px, 3.2vw, 36px); font-weight: 800;
  letter-spacing: -0.025em; margin-bottom: 10px;
}
.val-hero .sub {
  color: var(--teal); font-size: 15px; font-weight: 500; margin-bottom: 16px;
}
.val-trust-inline {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 24px;
  font-size: 13px; color: var(--grey-text); font-weight: 500;
}
.val-trust-inline span { display: inline-flex; align-items: center; gap: 8px; }
.val-trust-inline svg { color: var(--teal); }

.val-stepper-wrap {
  padding: 8px 0 28px; background: #F7FAFA;
}
.val-stepper {
  display: flex; align-items: center; justify-content: center; gap: 0;
  max-width: 640px; margin: 0 auto;
}
.val-stepper .step {
  display: flex; align-items: center; gap: 10px; font-size: 13px; font-weight: 600;
  color: var(--muted);
}
.val-stepper .step.active { color: var(--navy); }
.val-stepper .step.done { color: var(--teal); }
.val-stepper .bubble {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--grey-line); color: var(--muted);
  display: grid; place-items: center; font-size: 12px; font-weight: 800; flex-shrink: 0;
}
.val-stepper .step.active .bubble {
  background: var(--teal); color: #fff;
}
.val-stepper .step.done .bubble {
  background: var(--teal); color: #fff;
}
.val-stepper .connector {
  width: 48px; height: 2px; background: var(--grey-line); margin: 0 10px;
}
.val-stepper .connector.active { background: var(--teal); }

.val-main {
  padding: 0 0 48px; background: #F7FAFA;
}
.val-main-inner {
  display: grid; grid-template-columns: 1.35fr 0.75fr; gap: 28px; align-items: start;
}
.val-form-card {
  background: #fff; border-radius: 14px; padding: 32px 28px;
  border: 1.5px solid #D6E8E7; box-shadow: var(--shadow);
}
.val-form-card h2 {
  font-size: 20px; font-weight: 800; margin-bottom: 22px;
}
.val-form-card .field { margin-bottom: 16px; }
.val-panel[hidden] { display: none !important; }

.val-sidebar {
  background: var(--navy); color: #fff; border-radius: 14px;
  padding: 32px 26px; position: sticky; top: 96px;
}
.val-sidebar h3 {
  font-size: 20px; font-weight: 800; margin-bottom: 22px;
}
.val-next-list {
  list-style: none; display: flex; flex-direction: column; gap: 18px;
  margin-bottom: 24px;
}
.val-next-list li {
  display: flex; gap: 14px; align-items: flex-start;
  font-size: 14px; line-height: 1.5; color: rgba(255,255,255,.85);
}
.val-next-list strong { display: block; color: #fff; font-weight: 700; margin-bottom: 2px; }
.val-next-icon {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(31,166,160,.25); color: var(--teal);
  display: grid; place-items: center; flex-shrink: 0;
}
.val-sidebar .divider {
  height: 1px; background: rgba(255,255,255,.15); margin: 8px 0 22px;
}
.val-sidebar h4 {
  font-size: 15px; font-weight: 700; margin-bottom: 14px;
}
.val-sidebar .checklist { margin-bottom: 18px; }
.val-sidebar .checklist li { font-size: 14px; color: rgba(255,255,255,.9); }
.val-sidebar .text-link { color: #fff; text-decoration: underline; text-underline-offset: 3px; }
.val-sidebar .text-link:hover { color: var(--teal); }

.val-wa-band {
  background: var(--teal-bar); padding: 40px 0;
}
.val-wa-inner {
  display: grid; grid-template-columns: auto 1fr auto; gap: 28px; align-items: center;
}
.val-wa-inner h2 {
  font-size: clamp(22px, 2.4vw, 26px); font-weight: 800; margin: 4px 0 8px;
}
.val-wa-inner p { color: var(--grey-text); font-size: 14px; max-width: 480px; }
.val-wa-inner a.inline-link {
  color: var(--teal); font-weight: 600; text-decoration: underline;
}

.val-trust-bar {
  padding: 40px 0; background: #fff;
}
.val-trust-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; text-align: center;
}
.val-trust-item svg { color: var(--teal); margin: 0 auto 12px; }
.val-trust-item h3 { font-size: 15px; font-weight: 800; margin-bottom: 4px; }
.val-trust-item p { font-size: 13px; color: var(--grey-text); }

.val-thanks {
  text-align: center; padding: 40px 20px;
}
.val-thanks .check-big {
  width: 64px; height: 64px; border-radius: 50%; background: var(--teal);
  display: grid; place-items: center; margin: 0 auto 20px;
}
.val-thanks h2 { font-size: 24px; font-weight: 800; margin-bottom: 10px; }
.val-thanks p { color: var(--grey-text); max-width: 420px; margin: 0 auto 24px; }

.radio-stack { display: flex; flex-direction: column; gap: 10px; }
.radio-option {
  display: flex; align-items: center; gap: 12px;
  border: 1.5px solid var(--grey-line); border-radius: 8px;
  padding: 14px 16px; cursor: pointer; font-size: 14px; font-weight: 600;
  transition: border-color .15s, background .15s;
}
.radio-option:has(input:checked) {
  border-color: var(--teal); background: var(--teal-soft);
}
.radio-option input { accent-color: var(--teal); width: 18px; height: 18px; }
.photo-note {
  background: var(--grey-bg); border: 1.5px dashed var(--grey-line);
  border-radius: 10px; padding: 28px 20px; text-align: center;
  color: var(--grey-text); font-size: 14px;
}
.photo-note strong { display: block; color: var(--navy); margin-bottom: 6px; }
.form-nav-row {
  display: flex; flex-wrap: wrap; gap: 12px; margin-top: 8px;
}
.btn-ghost {
  background: transparent; color: var(--grey-text); border: 1.5px solid var(--grey-line);
  padding: 12px 20px;
}
.btn-ghost:hover { border-color: var(--navy); color: var(--navy); }

/* ========================================
   Legal pages
   ======================================== */
.draft-banner {
  background: #FFF3CD; color: #856404; padding: 12px 0;
  font-size: 13px; font-weight: 600; text-align: center;
  border-bottom: 1px solid #FFE69C;
}
.legal-page {
  padding: 48px 0 72px; background: #fff;
}
.legal-page h1 {
  font-size: clamp(28px, 3.2vw, 36px); font-weight: 800;
  letter-spacing: -0.02em; margin-bottom: 8px;
}
.legal-meta {
  font-size: 13px; color: var(--muted); margin-bottom: 32px;
}
.legal-page h2 {
  font-size: 18px; font-weight: 800; margin: 28px 0 10px; color: var(--navy);
}
.legal-page p, .legal-page li {
  font-size: 15px; color: var(--grey-text); line-height: 1.65; margin-bottom: 10px;
}
.legal-page ul { padding-left: 20px; margin-bottom: 12px; }
.legal-page a { color: var(--teal); text-decoration: underline; }


/* ——— CVR: form trust / photo / payment ——— */
.form-promise {
  font-size: 13px;
  font-weight: 600;
  color: var(--teal-dark, #178a85);
  background: var(--teal-soft, rgba(31,166,160,.12));
  border-radius: 8px;
  padding: 8px 12px;
  margin: -6px 0 14px;
  line-height: 1.4;
}
.photo-nudge {
  font-size: 12.5px;
  color: var(--grey-text);
  margin: 4px 0 6px;
  line-height: 1.45;
}
.photo-nudge a { color: var(--teal); font-weight: 600; text-decoration: underline; }
.photo-wa-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
  text-decoration: none;
}
.photo-wa-cta:hover { color: var(--teal); }
.payment-line {
  font-size: 12.5px;
  color: var(--grey-text);
  line-height: 1.45;
  margin: 12px 0 0;
  padding: 10px 12px;
  background: var(--grey-bg, #f4f6f8);
  border-radius: 8px;
  border-left: 3px solid var(--teal);
}

.hero-form-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Objection FAQs under / beside hero form */
.objection-faqs {
  background: rgba(255,255,255,.96);
  color: var(--navy);
  border-radius: 14px;
  padding: 16px 18px 8px;
  box-shadow: var(--shadow);
}
.objection-title {
  font-size: 14px;
  font-weight: 800;
  margin: 0 0 4px;
  letter-spacing: -0.01em;
}
.objection-acc .acc-btn {
  font-size: 13.5px;
  padding: 12px 0;
}
.objection-acc .acc-panel {
  font-size: 13px;
  line-height: 1.5;
  padding-bottom: 12px;
}
.objection-acc .acc-item:last-child { border-bottom: none; }

/* ——— Social proof strip ——— */
.social-proof {
  background: #fff;
  padding: 36px 0 40px;
  border-bottom: 1px solid var(--grey-line);
}
.social-proof-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}
.social-more { font-size: 13px; font-weight: 700; }
.social-proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.social-card {
  margin: 0;
  background: var(--grey-bg, #f4f6f8);
  border-radius: 12px;
  padding: 18px 18px 14px;
  border: 1px solid var(--grey-line);
}
.social-card p {
  font-size: 14px;
  line-height: 1.5;
  color: var(--navy);
  margin: 0 0 10px;
  font-weight: 500;
}
.social-card footer {
  font-size: 12px;
  font-weight: 700;
  color: var(--muted);
}

.company-placeholders {
  max-width: 520px;
  text-align: right;
  line-height: 1.45;
}

/* ——— Sticky mobile CTA ——— */
.sticky-cta {
  display: none;
}

/* ========================================
   Responsive
   ======================================== */
@media (max-width: 980px) {
  .nav-desktop { display: none; }
  .header-actions .wa-link span,
  .header-actions .need-help,
  .header-actions .call-link span { display: none; }
  .header-actions .btn { display: none; }
  .header-actions .sep { display: none; }
  .menu-toggle { display: inline-flex; }
  .val-header .header-actions .wa-link span,
  .val-header .header-actions .call-link span,
  .val-header .header-actions .need-help { display: inline; }
  .val-header .menu-toggle { display: none; }

  .hero-grid { grid-template-columns: 1fr; gap: 32px; }
  .wa-bar-inner { grid-template-columns: auto 1fr; }
  .wa-bar-cta { grid-column: 1 / -1; }
  .steps { grid-template-columns: 1fr; }
  .buy-grid { grid-template-columns: repeat(2, 1fr); }
  .difficult-inner { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; gap: 32px; }
  .final-inner { grid-template-columns: 1fr; text-align: center; }
  .final-art { margin: 0 auto; }
  .final-btns { justify-content: center; }
  .footer-top { grid-template-columns: 1fr 1fr; }

  .page-hero-split,
  .hiw-difficult-inner,
  .wwb-dark-inner,
  .faq-layout-inner,
  .val-main-inner,
  .val-wa-inner { grid-template-columns: 1fr; }
  .hiw-steps-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .hiw-steps-grid::before { display: none; }
  .wwb-grid { grid-template-columns: 1fr 1fr; }
  .reviews-grid { grid-template-columns: 1fr 1fr; }
  .val-sidebar { position: static; }
  .faq-sidebar { position: static; }
  .val-trust-grid { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .page-hero-photo.fade-left::before { display: none; }
  .social-proof-grid { grid-template-columns: 1fr 1fr; }
  .company-placeholders { text-align: left; max-width: none; }
}

@media (max-width: 640px) {
  .container { width: min(100% - 28px, var(--container)); }
  .hero { padding: 36px 0 44px; }
  .buy-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .geo-line::before, .geo-line::after { max-width: 40px; }
  .wa-bar-inner { grid-template-columns: 1fr; text-align: center; }
  .wa-big { margin: 0 auto; }
  .wa-bar p { margin-inline: auto; }
  .difficult-panel { padding: 36px 24px; }
  .btn { white-space: normal; text-align: center; }
  .hiw-steps-grid { grid-template-columns: 1fr; }
  .wwb-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .val-stepper { flex-direction: column; gap: 10px; align-items: flex-start; }
  .val-stepper .connector { width: 2px; height: 20px; margin: 0 0 0 13px; }
  .dark-cta-inner { flex-direction: column; align-items: flex-start; }
  .val-wa-inner { text-align: center; }
  .val-wa-inner .wa-big { margin: 0 auto; }

  .social-proof-grid { grid-template-columns: 1fr; }
  .social-proof { padding: 28px 0 32px; }

  /* Sticky mobile CTA */
  body {
    padding-bottom: 76px;
  }
  .sticky-cta {
    display: flex;
    position: fixed;
    left: 0; right: 0; bottom: 0;
    z-index: 150;
    gap: 8px;
    padding: 10px 12px calc(10px + env(safe-area-inset-bottom, 0px));
    background: rgba(255,255,255,.96);
    border-top: 1px solid var(--grey-line);
    box-shadow: 0 -6px 24px rgba(11,31,58,.12);
    backdrop-filter: blur(8px);
  }
  .sticky-cta .btn {
    flex: 1;
    justify-content: center;
    height: 46px;
    padding: 0 12px;
    font-size: 13px;
    white-space: nowrap;
  }
  .sticky-cta-wa {
    background: #25D366;
    color: #fff;
    display: inline-flex;
    align-items: center;
    gap: 6px;
  }
  .sticky-cta-wa:hover { filter: brightness(0.95); color: #fff; }
  .toast { bottom: 88px; }
}


/* ——— In-form photo upload ——— */
.photo-help {
  margin: 0 0 10px;
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.45;
}
#v-photos {
  display: block;
  width: 100%;
  padding: 12px;
  border: 1px dashed rgba(15, 40, 70, 0.25);
  border-radius: 10px;
  background: #f7fafc;
  font: inherit;
  cursor: pointer;
}
.photo-preview {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(88px, 1fr));
  gap: 8px;
  margin-top: 12px;
}
.photo-preview figure {
  margin: 0;
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 1;
  background: #e8eef4;
}
.photo-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.photo-preview button {
  position: absolute;
  top: 4px;
  right: 4px;
  width: 24px;
  height: 24px;
  border: none;
  border-radius: 50%;
  background: rgba(0,0,0,.65);
  color: #fff;
  font-size: 14px;
  line-height: 1;
  cursor: pointer;
}


/* ——— Cookie consent banner (soft launch) ——— */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 200;
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom, 0px));
  background: var(--navy);
  color: #fff;
  box-shadow: 0 -8px 28px rgba(7, 22, 40, 0.28);
}
.cookie-banner-inner {
  width: min(100%, var(--container));
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px 20px;
  flex-wrap: wrap;
}
.cookie-banner p {
  margin: 0;
  flex: 1 1 220px;
  font-size: 0.92rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.92);
}
.cookie-banner a {
  color: var(--teal);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.cookie-banner a:hover { color: #fff; }
.cookie-banner .cookie-accept {
  flex: 0 0 auto;
  min-width: 110px;
}
@media (max-width: 720px) {
  .cookie-banner {
    /* Sit above mobile sticky CTA bar when present */
    bottom: 66px;
    padding-bottom: 12px;
  }
  .cookie-banner-inner {
    flex-direction: column;
    align-items: stretch;
  }
  .cookie-banner .cookie-accept {
    width: 100%;
    justify-content: center;
  }
}
