:root {
  --primary: #0b3a6a;
  --primary-dark: #082947;
  --text: #111827;
  --muted: #6b7280;
  --border: #d8e1ec;
  --bg: #f5f7fa;
  --white: #ffffff;
  --success: #0f766e;
  --shadow-soft: 0 10px 30px rgba(15, 23, 42, 0.08);
  --shadow-card: 0 12px 40px rgba(15, 23, 42, 0.06);
  --radius-lg: 18px;
  --radius-md: 12px;
  --radius-sm: 8px;
  --max-width: 1200px;
  --transition: 0.2s ease;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  color: var(--text);
  background: linear-gradient(to bottom, #ffffff, #f5f7fa);
  line-height: 1.55;
  overflow-x: hidden;
}

#top,
#trust,
#how-it-works,
#services,
#wizard-section {
  scroll-margin-top: 88px;
}

/* HERO */
.hero {
  position: relative;
  overflow: hidden;
  padding: 70px 20px 60px;
  background: linear-gradient(180deg, #ffffff 0%, #f7f9fc 100%);
  border-bottom: 1px solid rgba(216, 225, 236, 0.8);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at top right, rgba(11, 58, 106, 0.06), transparent 35%),
    radial-gradient(circle at top left, rgba(11, 58, 106, 0.04), transparent 30%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.logo {
  width: 84px;
  height: auto;
  display: block;
  margin: 0 auto 20px;
}

.hero h1 {
  margin: 0 0 14px;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
}

.hero-text {
  max-width: 680px;
  margin: 0 auto 26px;
  color: var(--muted);
  font-size: 1.05rem;
}

.hero-btn {
  display: inline-block;
  padding: 14px 24px;
  border-radius: 999px;
  background: var(--primary);
  color: var(--white);
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
  box-shadow: var(--shadow-soft);
}

.hero-btn:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
}

/* TRUST BAR */
.trust-bar {
  padding: 26px 20px 8px;
}

.trust-card {
  max-width: var(--max-width);
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 22px 24px;
  box-shadow: var(--shadow-card);
}

.trust-card h2,
.trust-card h3 {
  margin: 0 0 12px;
  font-size: 1.15rem;
}

.trust-card p {
  margin: 6px 0;
  color: var(--text);
}

.trust-card a {
  display: inline-block;
  margin-top: 12px;
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
}

.trust-card a:hover {
  text-decoration: underline;
}

/* MAIN LAYOUT */
.main-wrap {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 24px 20px 60px;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 360px);
  gap: 24px;
  align-items: start;
}

/* WIZARD */
.wizard-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 22px;
  box-shadow: var(--shadow-card);
  padding: 28px;
}

.progress-wrap {
  margin-bottom: 26px;
}

.progress-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 0.95rem;
  color: var(--muted);
  font-weight: 600;
}

.progress-bar {
  width: 100%;
  height: 10px;
  background: #edf2f7;
  border-radius: 999px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  width: 12.5%;
  background: linear-gradient(90deg, var(--primary), #2d6fb1);
  border-radius: 999px;
  transition: width 0.25s ease;
}

.wizard-step {
  display: none;
}

.wizard-step.active {
  display: block;
}

.wizard-step h2 {
  margin: 0 0 10px;
  font-size: 1.5rem;
  line-height: 1.2;
}

.sub-text {
  margin: 0 0 20px;
  color: var(--muted);
}

/* OPTION GRID */
.option-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.option-card {
  width: 100%;
  min-height: 66px;
  padding: 16px 18px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--white);
  color: var(--text);
  text-align: left;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.option-card:hover {
  border-color: var(--primary);
  transform: translateY(-1px);
  box-shadow: var(--shadow-soft);
}

.option-card.full {
  grid-column: 1 / -1;
}

/* FIELDS */
.dynamic-fields,
.checkbox-list {
  display: grid;
  gap: 12px;
}

label {
  font-weight: 600;
  color: var(--text);
  margin-top: 4px;
}

input,
select,
textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--white);
  color: var(--text);
  font: inherit;
  transition: var(--transition);
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(11, 58, 106, 0.12);
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.hidden {
  display: none !important;
}

.top-space {
  margin-top: 16px;
}

/* ESTIMATE / SUMMARY */
.estimate-preview,
.summary-box,
.price-box,
.deposit-note {
  margin-top: 18px;
  padding: 16px 18px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  background: #fbfcfe;
}

.estimate-preview {
  color: var(--text);
}

.summary-box,
.price-box {
  line-height: 1.7;
}

.deposit-note {
  color: var(--muted);
}

/* CHECKBOX LIST */
.checkbox-list label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 12px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--white);
  font-weight: 500;
}

.checkbox-list input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  flex-shrink: 0;
}

/* ACTIONS */
.actions {
  margin-top: 24px;
  display: flex;
  justify-content: space-between;
  gap: 14px;
}

.back-btn,
.next-btn,
.pay-btn {
  appearance: none;
  border: none;
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition);
}

.back-btn,
.next-btn {
  min-width: 130px;
  padding: 14px 18px;
  border-radius: 999px;
  font-size: 0.98rem;
  font-weight: 600;
}

.back-btn {
  background: #eef2f7;
  color: var(--text);
}

.back-btn:hover {
  background: #e3eaf2;
}

.next-btn {
  background: var(--primary);
  color: var(--white);
  box-shadow: var(--shadow-soft);
}

.next-btn:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
}

.next-btn:disabled,
.back-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

/* SUCCESS / PAYMENT */
.payment-section {
  margin-top: 18px;
  padding-top: 10px;
}

.payment-section h3 {
  margin: 0 0 8px;
  font-size: 1.05rem;
  color: var(--text);
}

.pay-btn {
  display: inline-block;
  margin-top: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  background: var(--primary);
  color: var(--white);
  font-weight: 700;
  box-shadow: var(--shadow-soft);
}

.pay-btn:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
}

/* SIDE CARD */
.side-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 22px;
  box-shadow: var(--shadow-card);
  padding: 24px;
  position: sticky;
  top: 20px;
}

.side-card h2,
.side-card h3 {
  margin-top: 0;
  margin-bottom: 12px;
  font-size: 1.2rem;
}

.side-card p {
  margin-top: 0;
  color: var(--muted);
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0 22px;
}

.tags span {
  display: inline-block;
  padding: 9px 12px;
  background: #f3f7fb;
  border: 1px solid #d9e5f2;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--primary);
}

.review-box {
  margin-top: 14px;
  padding: 16px;
  border-radius: var(--radius-md);
  background: #fafbfd;
  border: 1px solid var(--border);
}

.review-box p {
  margin-bottom: 8px;
  color: var(--text);
  font-style: italic;
}

.review-box strong {
  color: var(--primary);
  font-size: 0.95rem;
}

/* UTILITY */
a {
  color: inherit;
}

img {
  max-width: 100%;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .main-wrap {
    grid-template-columns: 1fr;
  }

  .side-card {
    position: static;
  }
}

@media (max-width: 720px) {
  .hero {
    padding: 56px 16px 44px;
  }

  .main-wrap {
    padding: 20px 16px 40px;
  }

  .wizard-card,
  .side-card,
  .trust-card {
    padding: 20px;
  }

  .option-grid {
    grid-template-columns: 1fr;
  }

  .actions {
    flex-direction: column;
  }

  .back-btn,
  .next-btn {
    width: 100%;
  }

  .progress-top {
    flex-direction: column;
    align-items: flex-start;
  }
}
.consent-check {
  color: #374151;
  line-height: 1.6;
}

.consent-check input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-right: 10px;
  vertical-align: middle;
}

.consent-check a {
  color: var(--primary);
  font-weight: 600;
  text-decoration: none;
}

.consent-check a:hover {
  text-decoration: underline;
}

.payment-choice-box {
  background: #f8fafc;
  border: 1px solid #d8e1ec;
  border-radius: 12px;
  padding: 14px 16px;
}

.payment-choice-box label {
  color: #374151;
  line-height: 1.6;
  cursor: pointer;
}

.payment-choice-box input[type="radio"] {
  margin-right: 10px;
}

.payment-result-section {
  max-width: 900px;
  margin: 50px auto;
  padding: 0 20px 70px;
}

.payment-result-section.hidden {
  display: none;
}

.payment-result-card {
  background: #ffffff;
  border: 1px solid #d8e1ec;
  border-radius: 22px;
  padding: 34px;
  text-align: center;
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.08);
}

.payment-result-logo {
  width: 82px;
  height: auto;
  margin-bottom: 18px;
}

.payment-result-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 18px;
  border-radius: 999px;
  background: #eaf7ef;
  color: #16803c;
  font-size: 38px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}

.payment-result-card h2 {
  color: #111827;
  font-size: 30px;
  margin-bottom: 12px;
}

.payment-result-message {
  color: #4b5563;
  font-size: 17px;
  line-height: 1.7;
  max-width: 700px;
  margin: 0 auto 22px;
}

.payment-result-details {
  background: #f8fafc;
  border: 1px solid #d8e1ec;
  border-radius: 16px;
  padding: 18px;
  text-align: left;
  margin: 22px auto;
  max-width: 650px;
  color: #374151;
  line-height: 1.8;
}

.payment-result-next {
  text-align: left;
  max-width: 650px;
  margin: 22px auto;
  background: #ffffff;
  border: 1px solid #e5edf5;
  border-radius: 16px;
  padding: 18px;
}

.payment-result-next h3 {
  margin-top: 0;
  color: #111827;
}

.payment-result-next ul {
  margin-bottom: 0;
  padding-left: 22px;
  color: #374151;
  line-height: 1.8;
}

.payment-result-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 26px;
}

.payment-result-actions a {
  text-decoration: none;
  display: inline-block;
}

.payment-result-support {
  margin-top: 22px;
  color: #6b7280;
  font-size: 14px;
}

.payment-result-support a {
  color: var(--primary);
  font-weight: 700;
  text-decoration: none;
}

.payment-result-support a:hover {
  text-decoration: underline;
}

@media (max-width: 720px) {
  .payment-result-card {
    padding: 24px 18px;
  }

  .payment-result-card h2 {
    font-size: 24px;
  }

  .payment-result-actions {
    flex-direction: column;
  }

  .payment-result-actions .next-btn,
  .payment-result-actions .back-btn {
    width: 100%;
    text-align: center;
  }
}
/* Premium 2026 visual refresh */
:root {
  --primary: #064777;
  --primary-dark: #063154;
  --eco: #0f8f73;
  --eco-soft: #e7f8f2;
  --ink: #071827;
  --glass: rgba(255, 255, 255, 0.78);
  --ring: rgba(15, 143, 115, 0.24);
  --shadow-premium: 0 24px 80px rgba(6, 49, 84, 0.14);
}

body {
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 8%, rgba(15, 143, 115, 0.16), transparent 28rem),
    radial-gradient(circle at 88% 4%, rgba(6, 71, 119, 0.18), transparent 30rem),
    linear-gradient(180deg, #f7fbff 0%, #ffffff 38%, #f2f8f6 100%);
}

body::before,
body::after {
  content: "";
  position: fixed;
  width: 18rem;
  height: 18rem;
  border-radius: 999px;
  pointer-events: none;
  z-index: -1;
  filter: blur(6px);
  opacity: 0.42;
  animation: floatGlow 14s ease-in-out infinite alternate;
}

body::before { background: rgba(15, 143, 115, 0.18); left: -7rem; top: 22rem; }
body::after { background: rgba(6, 71, 119, 0.16); right: -8rem; top: 8rem; animation-delay: -5s; }

.hero {
  min-height: 620px;
  display: grid;
  place-items: center;
  padding: 88px 20px 74px;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.94), rgba(236,249,245,0.88)),
    radial-gradient(circle at 70% 20%, rgba(15,143,115,0.22), transparent 32rem);
}

.hero-overlay {
  background:
    radial-gradient(circle at 82% 18%, rgba(6, 71, 119, 0.18), transparent 22rem),
    radial-gradient(circle at 18% 72%, rgba(15, 143, 115, 0.16), transparent 24rem);
  animation: premiumPulse 9s ease-in-out infinite alternate;
}

.logo { width: 104px; filter: drop-shadow(0 14px 26px rgba(6, 49, 84, 0.16)); }
.eyebrow { margin: 0 auto 14px; color: var(--eco); font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; font-size: 0.78rem; }
.hero h1 { font-size: clamp(2.45rem, 6vw, 5rem); max-width: 950px; margin-inline: auto; }
.hero-text { font-size: clamp(1.05rem, 2vw, 1.25rem); color: #385164; }
.hero-actions { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; margin-bottom: 24px; }
.hero-btn, .hero-secondary { min-height: 52px; display: inline-flex; align-items: center; justify-content: center; padding: 14px 24px; border-radius: 999px; font-weight: 800; text-decoration: none; transition: transform .22s ease, box-shadow .22s ease, background .22s ease; }
.hero-btn { background: linear-gradient(135deg, var(--primary), var(--eco)); color: #fff; box-shadow: 0 18px 38px rgba(6, 71, 119, 0.22); }
.hero-secondary { color: var(--primary-dark); background: rgba(255,255,255,.76); border: 1px solid rgba(6, 71, 119, 0.14); }
.hero-btn:hover, .hero-secondary:hover, .next-btn:hover, .pay-btn:hover { transform: translateY(-2px); box-shadow: 0 18px 38px rgba(6, 71, 119, 0.18); }
.hero-proof { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; }
.hero-proof span { padding: 10px 13px; border-radius: 999px; background: rgba(255,255,255,.82); border: 1px solid rgba(6,71,119,.12); color: #244358; font-weight: 700; font-size: .92rem; }

.trust-grid, .how-section { max-width: var(--max-width); margin: 0 auto; }
.trust-grid { display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 18px; }
.trust-card, .wizard-card, .side-card, .how-grid article {
  background: var(--glass);
  border: 1px solid rgba(216, 225, 236, 0.82);
  box-shadow: var(--shadow-premium);
  backdrop-filter: blur(18px);
}
.trust-highlight { background: linear-gradient(180deg, rgba(255,255,255,.9), rgba(231,248,242,.76)); }

.how-section { padding: 34px 20px 10px; }
.section-heading { text-align: center; margin-bottom: 20px; }
.section-heading h2 { margin: 0; font-size: clamp(1.8rem, 4vw, 2.8rem); }
.how-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; }
.how-grid article { border-radius: 20px; padding: 20px; animation: cardIn .55s ease both; }
.how-grid span { color: var(--eco); font-weight: 900; font-size: .8rem; letter-spacing: .12em; }
.how-grid h3 { margin: 8px 0; font-size: 1rem; }
.how-grid p { margin: 0; color: #526879; font-size: .94rem; }

.wizard-card { padding: clamp(20px, 4vw, 36px); border-radius: 30px; }
.progress-bar { height: 12px; background: #e7eef5; }
.progress-fill { background: linear-gradient(90deg, var(--eco), var(--primary)); box-shadow: 0 0 24px rgba(15,143,115,.38); }
.wizard-step.active { display: block; animation: stepSlide .28s ease both; }
.wizard-step h2 { font-size: clamp(1.55rem, 3vw, 2.1rem); letter-spacing: -0.03em; }
.sub-text { color: #526879; font-size: 1rem; }

.option-card { min-height: 118px; border-radius: 20px; padding: 18px; background: linear-gradient(180deg, #fff, #f8fbfd); position: relative; overflow: hidden; }
.option-card::after { content: ""; position: absolute; inset: auto 16px 16px auto; width: 38px; height: 38px; border-radius: 999px; background: var(--eco-soft); opacity: .8; }
.option-card span { display: block; font-size: 1.04rem; margin-bottom: 7px; color: var(--ink); }
.option-card small { display: block; color: #526879; font-weight: 600; line-height: 1.45; max-width: 92%; }
.option-card:hover, .option-card.is-selected { border-color: rgba(15,143,115,.72); background: linear-gradient(180deg, #ffffff, #ecfaf5); box-shadow: 0 18px 36px rgba(6, 71, 119, 0.12); }
.option-card.is-selected { outline: 3px solid var(--ring); }

input, select, textarea { min-height: 50px; border-radius: 15px; border-color: #c9d8e6; background: rgba(255,255,255,.92); font-size: 16px; }
input:focus, select:focus, textarea:focus, button:focus-visible, a:focus-visible { outline: 3px solid var(--ring); outline-offset: 3px; border-color: var(--eco); }
.checkbox-list label, .payment-choice-box label { min-height: 50px; align-items: center; border-radius: 16px; }
input[type="checkbox"], input[type="radio"] { accent-color: var(--eco); }
.estimate-preview, .summary-box, .price-box, .deposit-note, .checkout-reassurance { background: linear-gradient(180deg, #ffffff, #f5fbf9); border-color: #cfe4dd; border-radius: 18px; }
.checkout-reassurance { margin-top: 18px; padding: 18px; color: #385164; }
.checkout-reassurance h3 { margin: 0 0 8px; color: var(--ink); }
.checkout-reassurance p { margin: 0; }
.next-btn, .pay-btn { background: linear-gradient(135deg, var(--primary), var(--eco)); }
.back-btn { background: #eef6f4; color: #183447; }
.side-card { border-radius: 30px; }
.tags span { background: var(--eco-soft); border-color: #bfe8dd; color: #075f50; }

@keyframes premiumPulse { from { opacity: .75; transform: scale(1); } to { opacity: 1; transform: scale(1.04); } }
@keyframes floatGlow { from { transform: translate3d(0,0,0) scale(1); } to { transform: translate3d(24px,-28px,0) scale(1.08); } }
@keyframes stepSlide { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
@keyframes cardIn { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }

@media (max-width: 1024px) { .trust-grid, .how-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 720px) {
  .hero { min-height: auto; padding: 64px 16px 46px; }
  .logo { width: 86px; }
  .hero-actions, .hero-btn, .hero-secondary { width: 100%; }
  .trust-grid, .how-grid { grid-template-columns: 1fr; }
  .trust-bar { padding-inline: 16px; }
  .option-card { min-height: 106px; }
  .wizard-card, .side-card, .trust-card { border-radius: 24px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition-duration: 0.001ms !important; }
}

input[type="checkbox"],
input[type="radio"] {
  width: auto;
  min-height: auto;
  flex-shrink: 0;
}

/* Calm premium booking-first refinement */
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  max-width: calc(var(--max-width) + 40px);
  margin: 0 auto;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  background: rgba(248, 251, 253, 0.86);
  border-bottom: 1px solid rgba(201, 216, 230, 0.72);
  backdrop-filter: blur(18px);
  width: 100%;
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  color: var(--ink);
  text-decoration: none;
}

.brand-logo {
  width: 48px;
  height: 48px;
  object-fit: contain;
  flex: 0 0 auto;
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.66);
  padding: 5px;
  border: 1px solid rgba(201, 216, 230, 0.46);
  box-shadow: 0 8px 20px rgba(6, 49, 84, 0.06);
}

.brand-lockup strong,
.brand-lockup small {
  display: block;
  line-height: 1.15;
}

.brand-lockup strong {
  font-size: 1rem;
  letter-spacing: 0.08em;
}

.brand-lockup small {
  margin-top: 3px;
  color: #526879;
  font-size: 0.78rem;
  font-weight: 700;
}

.header-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(12px, 2.5vw, 28px);
  color: #385164;
  font-size: 0.94rem;
  font-weight: 750;
}

.header-nav a,
.header-cta {
  text-decoration: none;
}

.header-nav a:hover {
  color: var(--primary);
}

.header-cta {
  min-width: max-content;
  padding: 11px 17px;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  font-weight: 800;
  box-shadow: 0 12px 28px rgba(7, 24, 39, 0.16);
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.header-cta:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
  box-shadow: 0 16px 32px rgba(7, 24, 39, 0.18);
}

.hero {
  min-height: auto;
  padding: clamp(42px, 7vw, 86px) 20px clamp(44px, 7vw, 78px);
  border-bottom: 1px solid rgba(216, 225, 236, 0.74);
  background:
    radial-gradient(circle at 82% 18%, rgba(15, 143, 115, 0.11), transparent 26rem),
    radial-gradient(circle at 12% 78%, rgba(6, 71, 119, 0.09), transparent 24rem),
    linear-gradient(180deg, #f8fbfd 0%, #ffffff 100%);
}

.hero-overlay {
  opacity: 0.48;
  animation: premiumPulse 14s ease-in-out infinite alternate;
}

.hero-content {
  max-width: var(--max-width);
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(340px, 0.72fr);
  gap: clamp(26px, 5vw, 64px);
  align-items: center;
  text-align: left;
}

.hero-copy {
  max-width: 720px;
}

.hero .eyebrow,
.section-heading .eyebrow {
  margin-left: 0;
  margin-right: 0;
  color: #0b6f5c;
  letter-spacing: 0.11em;
}

.hero h1 {
  max-width: 760px;
  margin: 0 0 18px;
  font-size: clamp(2.35rem, 5.4vw, 4.65rem);
  line-height: 1.02;
  letter-spacing: -0.055em;
}

.hero-text {
  max-width: 620px;
  margin: 0 0 24px;
  color: #3f5668;
  font-size: clamp(1.02rem, 1.6vw, 1.18rem);
}

.hero-actions,
.hero-proof {
  justify-content: flex-start;
}

.hero-btn,
.hero-secondary,
.next-btn,
.back-btn,
.pay-btn {
  letter-spacing: -0.01em;
}

.hero-secondary {
  background: #fff;
}

.hero-proof span {
  padding: 8px 11px;
  background: rgba(255, 255, 255, 0.72);
  color: #385164;
  font-size: 0.86rem;
  font-weight: 750;
}

.booking-starter {
  padding: clamp(22px, 3vw, 30px);
  border: 1px solid rgba(201, 216, 230, 0.82);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 28px 70px rgba(6, 49, 84, 0.12);
  backdrop-filter: blur(18px);
}

.starter-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.starter-kicker,
.starter-badge {
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.starter-kicker { color: #0b6f5c; }
.starter-badge {
  padding: 7px 10px;
  border-radius: 999px;
  color: var(--primary-dark);
  background: #eef6f4;
}

.booking-starter h2 {
  margin: 0 0 18px;
  font-size: clamp(1.35rem, 2.2vw, 1.8rem);
  letter-spacing: -0.035em;
}

.booking-starter ol {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}

.booking-starter li {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  column-gap: 12px;
  padding: 13px;
  border: 1px solid rgba(216, 225, 236, 0.86);
  border-radius: 18px;
  background: linear-gradient(180deg, #fff, #f8fbfd);
}

.booking-starter li span {
  grid-row: span 2;
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: var(--eco-soft);
  color: #075f50;
  font-size: 0.78rem;
  font-weight: 900;
}

.booking-starter li strong { line-height: 1.25; }
.booking-starter li small { color: #526879; font-weight: 650; line-height: 1.4; }

.starter-link {
  display: inline-flex;
  margin-top: 18px;
  color: var(--primary);
  font-weight: 850;
  text-decoration: none;
}

.trust-bar { padding-top: 34px; }
.how-section { padding-top: 48px; }
.wizard-heading {
  grid-column: 1 / -1;
  text-align: left;
  margin: 0 0 -6px;
}

.main-wrap {
  padding-top: 44px;
  gap: 22px;
}

.progress-top {
  padding: 12px 14px;
  border: 1px solid rgba(216, 225, 236, 0.75);
  border-radius: 16px;
  background: #f8fbfd;
}

.option-card {
  border-color: rgba(201, 216, 230, 0.92);
}

.option-card::after {
  width: 12px;
  height: 12px;
  inset: 18px 18px auto auto;
  border: 2px solid #c9d8e6;
  background: #fff;
}

.option-card.is-selected::after {
  border-color: #0f8f73;
  background: #0f8f73;
  box-shadow: 0 0 0 5px var(--ring);
}

.review-box p {
  font-style: normal;
}

@media (max-width: 860px) {
  html {
    scroll-padding-top: 70px;
  }

  #top,
  #trust,
  #how-it-works,
  #services,
  #wizard-section {
    scroll-margin-top: 70px;
  }

  .site-header {
    padding: 9px 12px;
    gap: 8px;
  }

  .brand-logo {
    width: 38px;
    height: 38px;
    border-radius: 11px;
    padding: 4px;
  }

  .brand-lockup small,
  .header-nav {
    display: none;
  }

  .header-cta {
    padding: 9px 13px;
    font-size: 0.88rem;
    flex: 0 0 auto;
  }

  .hero {
    padding: 32px 16px 36px;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .hero h1 {
    font-size: clamp(1.95rem, 9.6vw, 2.8rem);
    line-height: 1.08;
    letter-spacing: -0.045em;
    font-weight: 680;
  }

  .hero-text {
    font-size: 1rem;
  }

  .hero-actions,
  .hero-proof {
    justify-content: stretch;
  }

  .hero-proof span {
    flex: 1 1 100%;
    text-align: center;
  }

  .booking-starter {
    border-radius: 24px;
  }

  .booking-starter li {
    grid-template-columns: 38px minmax(0, 1fr);
  }

  .booking-starter li span {
    width: 38px;
    height: 38px;
  }

  .wizard-heading {
    margin-bottom: -2px;
  }
}

@media (max-width: 420px) {
  .brand-lockup strong {
    font-size: 0.88rem;
    letter-spacing: 0.04em;
  }

  .hero-btn,
  .hero-secondary {
    padding-inline: 18px;
  }
}
