/* ==========================================================================
   The Bin Doctor — shared stylesheet
   Brand: deep navy + medical teal. Clinical, trustworthy, clean.
   ========================================================================== */

:root {
  /* Brand palette — sampled directly from the business card.
     The --green* names are kept so every existing rule keeps working;
     they now carry the teal accent from the logo cross badge. */
  --navy:        #00305F;  /* wordmark "The Bin Doctor" */
  --navy-dark:   #001F42;  /* deep band on the card */
  --navy-light:  #2C6FA8;  /* mid blue */
  --green:       #12928B;  /* teal cross badge */
  --green-dark:  #0B6E69;  /* darker teal — clears WCAG AA on tints */
  --green-light: #E2F2F1;  /* pale teal tint */
  --splash:      #9FD4D4;  /* light blue splash from the card */

  /* Neutrals */
  --ink:         #16202B;
  --body:        #45535F;
  --muted:       #67747F;
  --line:        #DFE5EB;
  --bg:          #FFFFFF;
  --bg-soft:     #F5F8FA;
  --bg-tint:     #EDF4F9;

  /* System */
  --radius:      12px;
  --radius-lg:   18px;
  --shadow-sm:   0 1px 2px rgba(22, 32, 43, .06), 0 2px 8px rgba(22, 32, 43, .05);
  --shadow-md:   0 4px 12px rgba(22, 32, 43, .08), 0 12px 32px rgba(22, 32, 43, .07);
  --maxw:        1120px;
  --font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
          "Helvetica Neue", Arial, sans-serif;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.65;
  color: var(--body);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

h1, h2, h3, h4 {
  color: var(--navy);
  line-height: 1.2;
  margin: 0 0 .5em;
  font-weight: 700;
  letter-spacing: -.015em;
}

h1 { font-size: clamp(2.1rem, 5vw, 3.25rem); }
h2 { font-size: clamp(1.6rem, 3.4vw, 2.25rem); }
h3 { font-size: 1.2rem; }

p { margin: 0 0 1rem; }
p:last-child { margin-bottom: 0; }

a { color: var(--navy-light); }

/* ---------- Layout ---------- */
.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: 24px;
}

.wrap--narrow { max-width: 760px; }

section { padding: 72px 0; }
.section--soft { background: var(--bg-soft); }
.section--tint { background: var(--bg-tint); }

.section-head { max-width: 640px; margin-bottom: 40px; }
.section-head--center { margin-inline: auto; text-align: center; }

.eyebrow {
  display: inline-block;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--green-dark);
  margin-bottom: .75rem;
}

.lede { font-size: 1.125rem; color: var(--body); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: 14px 28px;
  border: 2px solid transparent;
  border-radius: 999px;
  font: inherit;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: transform .12s ease, background-color .15s ease,
              border-color .15s ease, color .15s ease, box-shadow .15s ease;
}

.btn:active { transform: translateY(1px); }

.btn--primary {
  background: var(--green);
  border-color: var(--green);
  color: #fff;
  box-shadow: 0 2px 10px rgba(18, 146, 139, .32);
}
.btn--primary:hover {
  background: var(--green-dark);
  border-color: var(--green-dark);
  box-shadow: 0 4px 16px rgba(18, 146, 139, .40);
}

.btn--secondary {
  background: transparent;
  border-color: var(--navy);
  color: var(--navy);
}
.btn--secondary:hover { background: var(--navy); color: #fff; }

.btn--ghost-light {
  background: rgba(255, 255, 255, .12);
  border-color: rgba(255, 255, 255, .55);
  color: #fff;
}
.btn--ghost-light:hover { background: #fff; color: var(--navy); border-color: #fff; }

.btn--lg { padding: 17px 38px; font-size: 1.06rem; }
.btn--block { width: 100%; }
.btn[disabled] { opacity: .55; cursor: not-allowed; box-shadow: none; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, .95);
  backdrop-filter: saturate(180%) blur(8px);
  border-bottom: 1px solid var(--line);
}

.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 74px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
  color: var(--navy);
}
.brand__icon { width: 50px; height: 50px; flex-shrink: 0; object-fit: contain; }
.brand__text { display: flex; flex-direction: column; line-height: 1.12; }
.brand__name {
  font-size: 1.32rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -.025em;
}
.brand__tag {
  font-size: .58rem;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--green-dark);
  font-weight: 700;
}

.nav { display: flex; align-items: center; gap: 28px; }
.nav a {
  color: var(--navy);
  text-decoration: none;
  font-weight: 600;
  font-size: .96rem;
}
.nav a:hover { color: var(--green-dark); }
.nav .btn { color: #fff; }
.nav .btn:hover { color: #fff; }

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 8px 10px;
  cursor: pointer;
  color: var(--navy);
}

/* ---------- Hero ---------- */
.hero {
  background:
    radial-gradient(1000px 460px at 82% -8%, rgba(18, 146, 139, .34), transparent 60%),
    linear-gradient(160deg, var(--navy) 0%, var(--navy-dark) 100%);
  color: #fff;
  padding: 96px 0 88px;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1fr 1.14fr;
  gap: 48px;
  align-items: center;
}
.hero h1 { color: #fff; max-width: 15ch; }
.hero__sub {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, .9);
  max-width: 54ch;
  margin-bottom: 2rem;
}
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 2.25rem; }
.hero__points {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: .95rem;
  color: rgba(255, 255, 255, .88);
}
.hero__points li { display: flex; align-items: center; gap: 8px; }
.hero__points svg { flex-shrink: 0; color: var(--splash); }

/* Before/after proof shot */
.hero__proof {
  position: relative;
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 18px 50px rgba(0, 0, 0, .38);
  border: 3px solid rgba(255, 255, 255, .16);
}
.hero__proof img { width: 100%; height: auto; display: block; }
.hero__proof-labels {
  position: absolute;
  inset: auto 0 0 0;
  display: flex;
}
.hero__proof-labels .lbl {
  flex: 1 1 50%;
  text-align: center;
  padding: 9px 6px;
  font-size: .74rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #fff;
}
.lbl--before { background: rgba(0, 0, 0, .62); }
.lbl--after  { background: rgba(11, 110, 105, .90); }

/* ---------- Steps ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  counter-reset: step;
}
.step {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px 26px 28px;
  box-shadow: var(--shadow-sm);
}
.step__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--green-light);
  color: var(--green-dark);
  font-weight: 800;
  font-size: 1.05rem;
  margin-bottom: 14px;
}
.step h3 { margin-bottom: .35em; }
.step p { font-size: .97rem; }

/* ---------- Pricing ---------- */
.pricing {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(255px, 1fr));
  gap: 24px;
  align-items: stretch;
}
.plan {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
}
.plan--featured {
  border: 2px solid var(--green);
  box-shadow: var(--shadow-md);
}
.plan__badge {
  position: absolute;
  top: -13px; left: 50%;
  transform: translateX(-50%);
  background: var(--green);
  color: #fff;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 999px;
  white-space: nowrap;
}
.plan__name {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 10px;
}
.plan__price {
  font-size: 3rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
  letter-spacing: -.03em;
}
.plan__unit { font-size: .92rem; color: var(--muted); margin: 8px 0 18px; }
.plan__for {
  font-size: .97rem;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  margin-bottom: 22px;
  flex-grow: 1;
}
.plan .btn { margin-top: auto; }

.pricing-note {
  text-align: center;
  margin-top: 28px;
  font-size: .95rem;
  color: var(--muted);
}

/* ---------- Add-on services ---------- */
.addons {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  margin-top: 36px;
}
.addon {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px 22px;
}
.addon svg { flex-shrink: 0; color: var(--green-dark); margin-top: 3px; }
.addon h3 { font-size: 1.02rem; margin-bottom: .2em; }
.addon p { font-size: .92rem; margin: 0; }
.addon__price {
  display: inline-block;
  margin-left: 6px;
  font-size: .82rem;
  font-weight: 700;
  color: var(--green-dark);
  background: var(--green-light);
  border-radius: 999px;
  padding: 2px 9px;
  vertical-align: 1px;
}

/* ---------- Feature list ---------- */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px 32px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 1.02rem;
  color: var(--ink);
}
.features svg { flex-shrink: 0; margin-top: 4px; color: var(--green); }

/* ---------- Split / callout ---------- */
.split {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 56px;
  align-items: center;
}

.callout {
  background: #fff;
  border-left: 4px solid var(--green);
  border-radius: var(--radius);
  padding: 26px 28px;
  box-shadow: var(--shadow-sm);
}
.callout h3 { margin-bottom: .4em; font-size: 1.08rem; }
.callout p { font-size: .98rem; margin-bottom: 0; }

/* ---------- Referral ---------- */
.referral {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 28px;
  align-items: center;
  background: #fff;
  border: 2px solid var(--green);
  border-radius: var(--radius-lg);
  padding: 36px 40px;
  box-shadow: var(--shadow-md);
}
.referral__icon {
  width: 76px; height: 76px;
  border-radius: 50%;
  background: var(--green-light);
  color: var(--green-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.referral h2, .referral h3 { margin-bottom: .3em; }
.referral p { font-size: 1.05rem; margin-bottom: 0; }
.referral__fine {
  font-size: .9rem !important;
  color: var(--muted);
  margin-top: 10px !important;
}

/* Compact variant for the booking confirmation */
.referral--compact {
  padding: 24px 26px;
  gap: 20px;
  text-align: left;
  margin-top: 8px;
}
.referral--compact .referral__icon { width: 56px; height: 56px; }
.referral--compact h3 { font-size: 1.1rem; }
.referral--compact p { font-size: .97rem; }

/* ---------- CTA band ---------- */
.cta-band {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  color: #fff;
  text-align: center;
}
.cta-band h2 { color: #fff; }
.cta-band p {
  color: rgba(255, 255, 255, .9);
  font-size: 1.12rem;
  max-width: 52ch;
  margin: 0 auto 28px;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--ink);
  color: rgba(255, 255, 255, .68);
  padding: 48px 0 32px;
  font-size: .93rem;
}
.site-footer a { color: rgba(255, 255, 255, .82); text-decoration: none; }
.site-footer a:hover { color: #fff; text-decoration: underline; }
.footer__grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 32px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255, 255, 255, .14);
}
.footer__brand-name { color: #fff; font-weight: 700; font-size: 1.1rem; }
.footer__links { display: flex; flex-wrap: wrap; gap: 20px; align-items: center; }
.footer__bottom {
  padding-top: 22px;
  font-size: .85rem;
  color: rgba(255, 255, 255, .5);
}

/* ==========================================================================
   Booking form
   ========================================================================== */

.booking-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 44px;
  align-items: start;
}

.form-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  padding: 8px 32px 32px;
}

fieldset.fstep {
  border: 0;
  padding: 26px 0;
  margin: 0;
  border-bottom: 1px solid var(--line);
}
fieldset.fstep:last-of-type { border-bottom: 0; }

.fstep__label {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--green-dark);
  margin-bottom: 6px;
}
.fstep__label span.n {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--green-light);
  font-size: .82rem;
  letter-spacing: 0;
}
legend { padding: 0; }
.fstep h2 { font-size: 1.28rem; margin-bottom: .35em; }
.help {
  font-size: .9rem;
  color: var(--muted);
  margin: 8px 0 0;
}

/* Radio cards */
.optgrid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 14px;
  margin-top: 18px;
}
.optgrid--two { grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); }
.optcard { position: relative; }
.optcard input {
  position: absolute;
  opacity: 0;
  width: 1px; height: 1px;
}
.optcard label {
  display: block;
  border: 2px solid var(--line);
  border-radius: var(--radius);
  padding: 18px 18px 16px;
  cursor: pointer;
  height: 100%;
  transition: border-color .15s ease, background-color .15s ease,
              box-shadow .15s ease;
}
.optcard label:hover { border-color: var(--navy-light); }
.optcard input:checked + label {
  border-color: var(--green);
  background: var(--green-light);
  box-shadow: 0 0 0 3px rgba(18, 146, 139, .18);
}
.optcard input:focus-visible + label {
  outline: 3px solid var(--navy-light);
  outline-offset: 2px;
}
.optcard__title {
  font-weight: 700;
  color: var(--navy);
  font-size: 1.02rem;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

/* Small tag on an option that isn't currently available */
.optcard__flag {
  font-size: .66rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--muted);
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 3px 9px;
  white-space: nowrap;
}

/* Unavailable option — visible but not selectable */
.optcard--disabled label {
  opacity: .5;
  cursor: not-allowed;
  background: var(--bg-soft);
}
.optcard--disabled label:hover { border-color: var(--line); }
.optcard__price {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--navy);
  margin: 6px 0 2px;
  letter-spacing: -.02em;
}
.optcard__meta { font-size: .87rem; color: var(--muted); line-height: 1.45; }

/* ---------- Included bins (locked) ---------- */
.included {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--green-light);
  border: 1.5px solid rgba(18, 146, 139, .32);
  border-radius: var(--radius);
  padding: 16px 20px;
  margin-top: 18px;
}
.included__icons { display: flex; gap: 6px; flex-shrink: 0; }
.included__icons svg { color: var(--green-dark); }
.included__text { flex-grow: 1; }
.included__title {
  font-weight: 700;
  color: var(--navy);
  font-size: 1.02rem;
  display: flex;
  align-items: center;
  gap: 8px;
}
.included__title .lock { color: var(--green-dark); flex-shrink: 0; }
.included__sub { font-size: .9rem; color: var(--body); margin-top: 2px; }
.included__price {
  font-weight: 700;
  color: var(--green-dark);
  font-size: .95rem;
  white-space: nowrap;
}

/* Compact radio row (pickup time, extra bins) */
.chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 16px; }
.chips[data-invalid="true"] {
  outline: 2px solid rgba(192, 57, 43, .5);
  outline-offset: 8px;
  border-radius: 8px;
}
.chip { position: relative; }
.chip input { position: absolute; opacity: 0; width: 1px; height: 1px; }
.chip label {
  display: block;
  border: 2px solid var(--line);
  border-radius: 999px;
  padding: 9px 20px;
  cursor: pointer;
  font-weight: 600;
  font-size: .95rem;
  color: var(--body);
  transition: all .15s ease;
  white-space: nowrap;
}
/* Extra-can pills carry a price, so give them a two-line treatment */
.chip label .amt {
  display: inline-block;
  margin-left: 7px;
  padding-left: 8px;
  border-left: 1px solid currentColor;
  opacity: .65;
  font-weight: 700;
}
.chip input:checked + label .amt { opacity: .9; }
.chip label:hover { border-color: var(--navy-light); }
.chip input:checked + label {
  border-color: var(--green);
  background: var(--green);
  color: #fff;
}
.chip input:focus-visible + label {
  outline: 3px solid var(--navy-light);
  outline-offset: 2px;
}

/* Text inputs */
.field { margin-top: 16px; }
.field-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
  margin-top: 16px;
}
.field label,
.field-row .field label {
  display: block;
  font-weight: 600;
  font-size: .92rem;
  color: var(--ink);
  margin-bottom: 6px;
}
.field-row .field { margin-top: 0; }
.req { color: #C0392B; }

input[type="text"],
input[type="tel"],
input[type="email"],
select,
textarea {
  width: 100%;
  font: inherit;
  font-size: 1rem;
  color: var(--ink);
  padding: 12px 14px;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  background: #fff;
  transition: border-color .15s ease, box-shadow .15s ease;
}
textarea { resize: vertical; min-height: 92px; }
select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%2367747F' stroke-width='2.5' stroke-linecap='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}

input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--navy-light);
  box-shadow: 0 0 0 3px rgba(44, 111, 168, .18);
}

input[aria-invalid="true"],
select[aria-invalid="true"] {
  border-color: #C0392B;
  box-shadow: 0 0 0 3px rgba(192, 57, 43, .12);
}

.err {
  display: none;
  color: #C0392B;
  font-size: .87rem;
  margin-top: 6px;
  font-weight: 600;
}
.err.show { display: block; }

/* Stepper for can count */
.stepper {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  border: 2px solid var(--line);
  border-radius: 999px;
  padding: 4px;
  margin-top: 16px;
}
.stepper button {
  width: 40px; height: 40px;
  border: 0;
  border-radius: 50%;
  background: var(--bg-soft);
  color: var(--navy);
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  transition: background-color .15s ease;
}
.stepper button:hover:not([disabled]) { background: var(--green-light); }
.stepper button[disabled] { opacity: .35; cursor: not-allowed; }
.stepper output {
  min-width: 56px;
  text-align: center;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--navy);
}

/* ---------- Requirement notice ---------- */
.notice {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  background: var(--green-light);
  border: 1px solid rgba(18, 146, 139, .32);
  border-radius: 9px;
  padding: 10px 13px;
  margin-top: 18px;
}
.notice svg { flex-shrink: 0; color: var(--green-dark); margin-top: 3px; }
.notice p { font-size: .875rem; line-height: 1.5; margin: 0; }
.notice strong { color: var(--navy); }

/* Amber variant — used for the cash-payment reminder */
.notice--alert {
  background: #FFF6E5;
  border-color: rgba(191, 132, 16, .38);
  margin-top: 16px;
  padding: 12px 15px;
}
.notice--alert svg { color: #B57A0D; }
.notice--alert p { font-size: .9rem; }
.notice--alert strong { color: #8A5B06; }

/* ---------- Acknowledgment checkbox ---------- */
.ack { position: relative; margin-top: 12px; }
.ack input {
  position: absolute;
  opacity: 0;
  width: 1px; height: 1px;
}
.ack label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  border: 1px solid var(--line);
  border-radius: 9px;
  padding: 11px 13px;
  cursor: pointer;
  font-size: .875rem;
  color: var(--body);
  line-height: 1.5;
  transition: border-color .15s ease, background-color .15s ease;
}
.ack label:hover { border-color: var(--navy-light); }
.ack label::before {
  content: "";
  flex-shrink: 0;
  width: 17px; height: 17px;
  margin-top: 2px;
  border: 1.5px solid var(--muted);
  border-radius: 4px;
  background: #fff;
  transition: all .15s ease;
}
.ack input:checked + label { border-color: var(--green); background: var(--green-light); }
.ack input:checked + label::before {
  background: var(--green) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E") center no-repeat;
  border-color: var(--green);
}
.ack input:focus-visible + label {
  outline: 3px solid var(--navy-light);
  outline-offset: 2px;
}
.ack[data-invalid="true"] label { border-color: #C0392B; }
.ack[data-invalid="true"] label::before { border-color: #C0392B; }

/* Payment notice */
.pay-note {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: var(--bg-tint);
  border-radius: var(--radius);
  padding: 20px 22px;
  margin-top: 18px;
}
.pay-note svg { flex-shrink: 0; color: var(--navy); margin-top: 2px; }
.pay-note p { font-size: .95rem; margin: 0; }

/* ---------- Order summary (sticky) ---------- */
.summary {
  position: sticky;
  top: 98px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: 26px 24px;
}
.summary h3 {
  font-size: .78rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--green-dark);
  margin-bottom: 16px;
}
.summary__row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 9px 0;
  font-size: .95rem;
  border-bottom: 1px dashed var(--line);
}
.summary__row span:first-child { color: var(--muted); }
.summary__row span:last-child { font-weight: 600; color: var(--ink); text-align: right; }
.summary__total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-top: 18px;
  margin-top: 8px;
}
.summary__total .lbl { font-weight: 700; color: var(--navy); }
.summary__total .amt {
  font-size: 2.1rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -.02em;
}
.summary__cadence {
  font-size: .87rem;
  color: var(--muted);
  text-align: right;
  margin: -2px 0 18px;
}
.summary__fine {
  font-size: .82rem;
  color: var(--muted);
  margin-top: 14px;
  text-align: center;
}

/* ---------- Confirmation ---------- */
.confirm {
  text-align: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: 56px 32px;
  max-width: 620px;
  margin: 0 auto;
}
.confirm__icon {
  width: 76px; height: 76px;
  border-radius: 50%;
  background: var(--green-light);
  color: var(--green-dark);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
}
.confirm__recap {
  text-align: left;
  background: var(--bg-soft);
  border-radius: var(--radius);
  padding: 20px 22px;
  margin: 26px 0;
}
.confirm__recap .summary__row:last-child { border-bottom: 0; }

/* ---------- FAQ ---------- */
.faq-list {
  border-top: 1px solid var(--line);
  margin-top: 8px;
}
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  text-align: left;
  background: none;
  border: 0;
  padding: 22px 4px;
  font: inherit;
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--navy);
  cursor: pointer;
}
.faq-q:hover { color: var(--green-dark); }
.faq-q .caret { flex-shrink: 0; transition: transform .2s ease; color: var(--green); }
.faq-q[aria-expanded="true"] .caret { transform: rotate(180deg); }
.faq-a {
  display: none;
  padding: 0 4px 24px;
  font-size: 1rem;
  max-width: 68ch;
}
.faq-a.open { display: block; }

.faq-group + .faq-group { margin-top: 48px; }
.faq-group__title {
  font-size: .8rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--green-dark);
  font-weight: 700;
  margin-bottom: 4px;
}

/* ---------- Page header (inner pages) ---------- */
.page-head {
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-dark) 100%);
  color: #fff;
  padding: 64px 0 56px;
}
.page-head h1 { color: #fff; font-size: clamp(1.9rem, 4vw, 2.75rem); }
.page-head p {
  color: rgba(255, 255, 255, .9);
  font-size: 1.1rem;
  max-width: 62ch;
  margin-bottom: 0;
}

/* ---------- Utilities ---------- */
.hidden { display: none !important; }
.center { text-align: center; }
.mt-lg { margin-top: 32px; }
.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;
}

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero__grid { grid-template-columns: 1fr; gap: 40px; }
  .hero h1 { max-width: none; }
  .hero__proof { max-width: 680px; }
}

@media (max-width: 940px) {
  .booking-layout { grid-template-columns: 1fr; gap: 28px; }
  .summary { position: static; }
  .split { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 860px) {
  .referral {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 32px 26px;
    gap: 18px;
    justify-items: center;
  }
  .referral--compact { text-align: center; }
}

@media (max-width: 760px) {
  body { font-size: 16px; }
  section { padding: 56px 0; }
  .hero { padding: 68px 0 60px; }
  /* Drop the tagline so the header stays tidy on phones */
  .brand__tag { display: none; }
  .brand__name { font-size: 1.18rem; }
  .included { flex-wrap: wrap; gap: 12px; }
  .included__price { width: 100%; }
  .nav { display: none; }
  .nav.open {
    display: flex;
    position: absolute;
    top: 74px; left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    background: #fff;
    border-bottom: 1px solid var(--line);
    padding: 16px 24px 22px;
    box-shadow: var(--shadow-md);
  }
  .nav.open a { padding: 10px 0; }
  .nav.open .btn { margin-top: 8px; justify-content: center; }
  .nav-toggle { display: block; }
  .form-card { padding: 4px 20px 24px; }
  .hero__cta .btn { flex: 1 1 100%; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; }
}

/* ---------- Print ---------- */
@media print {
  .site-header, .site-footer, .cta-band, .btn { display: none; }
}
