/* ============================================================
 * RootRS Shipping Landing — page styles
 * Depends on design-tokens.css for CSS custom properties.
 * ============================================================ */

/* ---- GLOBAL ------------------------------------------------ */
html, body { margin: 0; padding: 0; background: var(--bg-app); color: var(--gray-70); }
html { scroll-behavior: smooth; }
body { letter-spacing: 0.02em; }
:where(#book, #pricing, #how, #why, #problem) { scroll-margin-top: 88px; }
* { box-sizing: border-box; }
img { max-width: 100%; display: block; }
.wrap { max-width: 1240px; margin: 0 auto; padding: 0 32px; }
::selection { background: var(--roots-primary); color: #fff; }

/* ---- REVEAL ANIMATIONS — IntersectionObserver-driven ------ */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .9s var(--ease-out), transform .9s var(--ease-out); }
.reveal.in   { opacity: 1; transform: translateY(0); }
.reveal-r    { opacity: 0; transform: translateX(28px); transition: opacity .9s var(--ease-out), transform .9s var(--ease-out); }
.reveal-r.in { opacity: 1; transform: translateX(0); }
.reveal-scale    { opacity: 0; transform: scale(.95); transition: opacity .9s var(--ease-out), transform .9s var(--ease-out); }
.reveal-scale.in { opacity: 1; transform: scale(1); }
.stagger > * { transition-delay: var(--d, 0ms); }

@keyframes float-slow {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}
@keyframes pulse-ring {
  0%   { transform: scale(1);   opacity: .6; }
  100% { transform: scale(1.6); opacity: 0;  }
}

/* ---- NAV --------------------------------------------------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255, 248, 248, 0.80); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(232, 232, 232, 0.5);
  transition: background .3s var(--ease-out), box-shadow .3s var(--ease-out);
}
.nav.scrolled { background: rgba(255, 248, 248, 0.94); box-shadow: 0 1px 0 rgba(0,0,0,.04), 0 8px 24px rgba(0,0,0,.04); }
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 0; gap: 32px;
}
.nav-logo img { height: 30px; width: auto; }
.nav-links {
  display: flex; align-items: center; gap: 32px;
  font-family: var(--font-primary); font-weight: 600; font-size: 14px;
  color: var(--gray-70);
}
.nav-links a { color: inherit; text-decoration: none; position: relative; padding: 6px 0; }
.nav-links a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 2px;
  background: var(--roots-primary); transform: scaleX(0); transform-origin: left;
  transition: transform .35s var(--ease-out);
}
.nav-links a:hover { color: var(--roots-primary); }
.nav-links a:hover::after { transform: scaleX(1); }

/* ---- Buttons ----------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 20px; border-radius: var(--r-pill);
  font-family: var(--font-primary); font-weight: 700; font-size: 14px;
  border: none; cursor: pointer; text-decoration: none;
  transition: transform .15s var(--ease-out), background .25s var(--ease-out), box-shadow .25s var(--ease-out), color .25s var(--ease-out);
  will-change: transform;
}
.btn-primary { background: var(--roots-primary); color: #fff; box-shadow: var(--shadow-brand-sm); }
.btn-primary:hover { background: var(--roots-deep); transform: translateY(-2px); box-shadow: var(--shadow-brand); }
.btn-primary:active { transform: scale(.97); }
.btn-mustard { background: var(--mustard-yellow); color: var(--gray-20-new); }
.btn-mustard:hover { background: #E69200; transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--roots-primary); border: 1.5px solid var(--roots-primary); }
.btn-ghost:hover { background: var(--red-10); transform: translateY(-2px); }
.btn-lg { padding: 16px 28px; font-size: 15px; }
.btn-xl { padding: 20px 32px; font-size: 16px; }
.btn .arrow { transition: transform .25s var(--ease-out); }
.btn:hover .arrow { transform: translateX(4px); }

/* Disabled state — used by the booking CTA until the form is valid */
.btn:disabled, .btn[aria-disabled="true"] {
  background: var(--gray-40); color: #fff; box-shadow: none;
  cursor: not-allowed; opacity: .65; pointer-events: none;
}
.btn:disabled .arrow, .btn[aria-disabled="true"] .arrow { transform: none; }

/* WhatsApp CTA */
.btn-whatsapp { background: #25D366; color: #fff; box-shadow: 0 4px 12px rgba(37,211,102,.30); }
.btn-whatsapp:hover { background: #1EBE5C; transform: translateY(-2px); box-shadow: 0 8px 22px rgba(37,211,102,.38); }
.btn-whatsapp:active { transform: scale(.97); }

/* ---- HERO -------------------------------------------------- */
.hero-band {
  position: relative; overflow: hidden;
  padding: 64px 0 110px;
}
.hero-bg-blob {
  position: absolute; top: -160px; right: -240px;
  width: 920px; height: 920px; border-radius: 50%;
  background: radial-gradient(circle at center, rgba(214,41,83,.22) 0%, rgba(153,30,59,.05) 50%, transparent 70%);
  z-index: 0; pointer-events: none;
  animation: float-slow 8s ease-in-out infinite;
}
.hero-bg-blob.two {
  top: 320px; left: -300px; right: auto;
  width: 520px; height: 520px;
  background: radial-gradient(circle at center, rgba(244,160,11,.14) 0%, transparent 60%);
  animation-delay: 2s;
}
.hero-grid {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 14px 8px 10px; border-radius: 999px;
  background: var(--red-10); color: var(--roots-primary);
  font-size: 12px; font-weight: 700; letter-spacing: 0.04em;
  margin-bottom: 24px;
}
.hero-eyebrow .pin {
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--roots-primary); color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
}
.hero-eyebrow .pulse {
  position: relative; width: 8px; height: 8px; border-radius: 50%;
  background: var(--green-30); display: inline-block; margin-right: 4px;
}
.hero-eyebrow .pulse::after {
  content: ""; position: absolute; inset: 0; border-radius: 50%;
  background: var(--green-30);
  animation: pulse-ring 1.6s var(--ease-out) infinite;
}

.hero-headline {
  font-family: var(--font-display); font-weight: 800;
  font-size: 62px; line-height: 1.04;
  letter-spacing: -0.025em;
  color: var(--gray-70); margin: 0 0 22px;
  text-wrap: balance;
}
.hero-headline em {
  font-style: normal; color: var(--roots-primary);
  display: inline-block;
}

.hero-sub {
  font-family: var(--font-subtle);
  font-weight: 500;
  font-size: 19px;
  line-height: 1.55;
  letter-spacing: 0em;
  color: var(--gray-60);
  max-width: 540px; margin: 0 0 28px;
}
.hero-tags {
  display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 32px;
}
.hero-tag {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 12px; border-radius: 999px;
  background: #fff; border: 1px solid var(--gray-30);
  font-size: 12px; font-weight: 700; color: var(--gray-70);
  letter-spacing: 0.02em;
}
.hero-tag i { color: var(--roots-primary); }

.hero-cta-row {
  display: flex; gap: 14px; align-items: center; flex-wrap: wrap;
}

.hero-trust {
  display: flex; align-items: center; gap: 16px; margin-top: 36px;
  font-size: 13px; color: var(--gray-60); font-weight: 500;
}
.hero-trust .avatars { display: flex; }
.hero-trust .avatars span {
  width: 32px; height: 32px; border-radius: 50%;
  border: 2px solid var(--bg-app);
  background: linear-gradient(135deg, #D62953, #991E3B);
  color: #fff; font-weight: 700; font-size: 11px;
  display: inline-flex; align-items: center; justify-content: center;
  margin-left: -10px;
}
.hero-trust .avatars span:first-child { margin-left: 0; }
.hero-trust .avatars span:nth-child(2) { background: linear-gradient(135deg,#F4A00B,#CC3000); }
.hero-trust .avatars span:nth-child(3) { background: linear-gradient(135deg,#7C0000,#3F1015); }
.hero-trust .avatars span:nth-child(4) { background: linear-gradient(135deg,#E67F97,#D62953); }
.hero-trust strong { color: var(--gray-70); font-weight: 700; }

/* HERO RIGHT — booking card */
.hero-card-shell {
  position: relative;
  border-radius: var(--r-2xl);
  background: var(--hero-gradient);
  padding: 26px;
  box-shadow: 0 30px 80px rgba(153,30,59,.28);
  overflow: hidden;
}
.hero-card-shell::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 80% 20%, rgba(255,255,255,.15), transparent 30%),
    radial-gradient(circle at 20% 90%, rgba(255,255,255,.10), transparent 35%);
  pointer-events: none;
}
.hero-card-shell-top {
  position: relative; z-index: 1;
  display: flex; justify-content: space-between; align-items: center;
  color: #fff; margin-bottom: 16px;
}
.hero-card-shell-top .eyebrow-light {
  font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; opacity: .95;
}
.hero-card-shell-top .badge {
  background: var(--mustard-yellow); color: var(--gray-20-new);
  padding: 6px 12px; border-radius: 999px; font-size: 11px; font-weight: 800;
  letter-spacing: 0.02em;
}
.hero-card {
  position: relative; z-index: 1;
  background: #fff; border-radius: var(--r-xl);
  padding: 26px; box-shadow: 0 10px 30px rgba(0,0,0,.12);
}
.hero-card h3 {
  font-family: var(--font-primary); font-weight: 800; font-size: 22px;
  color: var(--gray-70); margin: 0 0 4px; letter-spacing: -0.01em;
}
.hero-card .sub {
  font-size: 13px; color: var(--gray-50); margin: 0 0 18px;
  letter-spacing: 0.04em;
}

/* Branded checkbox row */
.check-row {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 14px 14px;
  border: 1px solid var(--gray-30); border-radius: var(--r-lg);
  background: var(--bg-elevated);
  cursor: pointer; user-select: none;
  margin-bottom: 16px;
  transition: border-color .25s var(--ease-out), background .25s var(--ease-out), box-shadow .25s var(--ease-out);
  position: relative;
}
.check-row:hover { border-color: var(--roots-primary); background: #fff; }
.check-row input { position: absolute; opacity: 0; pointer-events: none; }
.check-box {
  flex-shrink: 0; width: 20px; height: 20px; border-radius: 6px;
  border: 1.5px solid var(--gray-40); background: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  transition: background .2s var(--ease-out), border-color .2s var(--ease-out);
  margin-top: 1px;
}
.check-box svg { opacity: 0; transform: scale(.6); transition: opacity .2s var(--ease-out), transform .2s var(--ease-out); }
.check-row.on { border-color: var(--roots-primary); background: var(--red-10); box-shadow: 0 0 0 4px rgba(153,30,59,.08); }
.check-row.on .check-box { background: var(--roots-primary); border-color: var(--roots-primary); }
.check-row.on .check-box svg { opacity: 1; transform: scale(1); color: #fff; }
.check-text { display: flex; flex-direction: column; gap: 2px; }
.check-text strong {
  font-family: var(--font-primary); font-weight: 700; font-size: 14px;
  color: var(--gray-70); letter-spacing: 0.005em;
}
.check-text .hint {
  font-size: 12px; color: var(--gray-50); letter-spacing: 0.02em; line-height: 1.4;
}

.field { margin-bottom: 14px; }
.field label {
  display: block; font-size: 11px; font-weight: 700;
  color: var(--gray-50); text-transform: uppercase; letter-spacing: 0.06em;
  margin-bottom: 6px;
}
.field input, .field textarea, .field select {
  width: 100%; padding: 12px 14px;
  border: 1px solid var(--gray-30); border-radius: var(--r-lg);
  font-family: var(--font-primary); font-size: 14px; color: var(--gray-70);
  background: var(--bg-elevated); outline: none;
  transition: border-color .25s var(--ease-out), background .25s var(--ease-out), box-shadow .25s var(--ease-out);
}
.field input:focus, .field textarea:focus, .field select:focus {
  border-color: var(--roots-primary); background: #fff;
  box-shadow: 0 0 0 4px rgba(153,30,59,.10);
}
.field input.invalid, .field textarea.invalid {
  border-color: var(--action-red); box-shadow: 0 0 0 4px rgba(175,0,0,.08);
}
.field-error {
  display: none; margin-top: 6px; font-size: 11px; font-weight: 600;
  color: var(--action-red); letter-spacing: 0.02em;
}
.field.show-error .field-error { display: block; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-cta {
  width: 100%; justify-content: center; padding: 16px;
  margin-top: 4px;
}
.form-footer {
  text-align: center; font-size: 11px; color: var(--gray-50); margin-top: 12px;
}
.form-footer strong { color: var(--roots-primary); font-weight: 700; }
.hero-mini-watermark {
  position: absolute; bottom: -30px; right: -30px;
  font-family: var(--font-display); font-weight: 900; font-size: 200px;
  color: rgba(255,255,255,.05); line-height: 1; pointer-events: none;
  z-index: 0;
}

/* ---- SECTION PRIMITIVES ------------------------------------ */
.section { padding: 100px 0; }
.section-tight { padding: 64px 0; }
.section-head { text-align: center; max-width: 780px; margin: 0 auto 56px; }
.section-head .eyebrow {
  display: inline-block;
  color: var(--roots-primary);
  font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.18em;
  margin-bottom: 14px;
}
.section-head h2 {
  font-family: var(--font-display); font-weight: 800;
  font-size: 48px; line-height: 1.08; letter-spacing: -0.02em;
  color: var(--gray-70); margin: 0 0 16px;
  text-wrap: balance;
}
.section-head h2 em { font-style: normal; color: var(--roots-primary); }
.section-head p {
  font-family: var(--font-subtle);
  font-weight: 500;
  font-size: 18px;
  line-height: 1.55;
  letter-spacing: 0em;
  color: var(--gray-50);
  margin: 0; text-wrap: pretty;
}

/* ---- PROBLEM ----------------------------------------------- */
.problem { background: #fff; border-top: 1px solid var(--gray-30); border-bottom: 1px solid var(--gray-30); }
.problem-lede {
  text-align: center; max-width: 740px; margin: 0 auto 48px;
}
.problem-lede .kicker {
  font-family: var(--font-script); font-size: 36px;
  color: var(--roots-light); transform: rotate(-2deg); display: inline-block;
  margin-bottom: 4px;
}
.problem-lede h2 {
  font-family: var(--font-display); font-weight: 800;
  font-size: 42px; line-height: 1.1; letter-spacing: -0.02em;
  color: var(--gray-70); margin: 0;
  text-wrap: balance;
}

.pain-grid {
  display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 20px;
  margin-bottom: 24px;
}
.pain-card {
  background: var(--bg-app); border: 1px solid var(--gray-30);
  border-radius: var(--r-xl); padding: 28px 26px;
  position: relative; transition: transform .25s var(--ease-out), box-shadow .25s var(--ease-out), border-color .25s var(--ease-out);
}
.pain-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-brand); border-color: transparent; }
.pain-card .icon-circle {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--red-10); color: var(--roots-primary);
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.pain-card .label {
  font-size: 14px; font-weight: 600; color: var(--gray-60); line-height: 1.55;
}
.pain-card.featured {
  grid-row: span 1;
  background: var(--gray-20-new); color: #fff; border-color: transparent;
  overflow: hidden;
}
.pain-card.featured .label { color: rgba(255,255,255,.7); }
.pain-card.featured .icon-circle { background: rgba(255,255,255,.08); color: #FFD9A0; }
.calc-row {
  display: flex; align-items: baseline; gap: 14px;
  font-family: var(--font-display); font-weight: 800;
  letter-spacing: -0.025em; margin-bottom: 16px;
}
.calc-row .quoted { font-size: 38px; color: var(--gray-50); text-decoration: line-through; }
.calc-row .real   { font-size: 56px; color: #FFD9A0; }
.calc-row .arrow  { color: rgba(255,255,255,.4); font-size: 22px; }
.calc-meta {
  display: flex; gap: 16px; font-size: 11px; font-weight: 700;
  color: rgba(255,255,255,.55); text-transform: uppercase; letter-spacing: 0.1em;
  margin-bottom: 10px;
}
.pain-card.featured h4 {
  font-family: var(--font-primary); font-weight: 700; font-size: 17px;
  color: #fff; margin: 0 0 6px;
}
.pain-stat {
  display: flex; align-items: baseline; gap: 10px; margin-bottom: 14px;
}
.pain-stat .num {
  font-family: var(--font-display); font-weight: 800; font-size: 56px;
  color: var(--action-red); letter-spacing: -0.03em; line-height: 1;
}
.pain-stat .unit { font-size: 14px; font-weight: 700; color: var(--gray-60); }

.pain-summary {
  text-align: center;
  font-family: var(--font-display); font-weight: 700;
  font-size: 24px; color: var(--gray-60); margin-top: 56px;
  font-style: italic;
  letter-spacing: -0.01em;
}
.pain-summary em {
  font-style: normal; color: var(--roots-primary);
}

/* ---- SOLUTION (intro band before pricing) ------------------ */
.solution-intro {
  background: var(--bg-app); padding: 90px 0 40px;
  text-align: center;
}
.solution-intro .eyebrow {
  color: var(--roots-primary); font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.18em; margin-bottom: 14px;
  display: inline-block;
}
.solution-intro h2 {
  font-family: var(--font-display); font-weight: 800;
  font-size: 64px; line-height: 1.05; letter-spacing: -0.03em;
  color: var(--gray-70); margin: 0 0 20px;
  text-wrap: balance;
}
.solution-intro h2 em { font-style: normal; color: var(--roots-primary); }
.solution-intro p {
  font-family: var(--font-subtle);
  font-weight: 500;
  font-size: 19px;
  color: var(--gray-50); margin: 0 auto; max-width: 640px;
  line-height: 1.55;
  letter-spacing: 0em;
}
.solution-promise {
  display: inline-flex; gap: 20px; margin-top: 28px;
  background: #fff; border: 1px solid var(--gray-30); border-radius: 999px;
  padding: 10px 18px; box-shadow: var(--shadow-ambient-sm);
  font-size: 13px; font-weight: 700; color: var(--gray-70);
  flex-wrap: wrap; justify-content: center;
}
.solution-promise span { display: inline-flex; align-items: center; gap: 6px; }
.solution-promise span i { color: var(--green-30); }

/* ---- PRICING ----------------------------------------------- */
.solution { background: var(--bg-app); padding-bottom: 100px; }
.pricing-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  max-width: 1080px; margin: 56px auto 0;
}
.price-card {
  background: #fff; border-radius: var(--r-2xl);
  border: 1px solid var(--gray-30);
  padding: 32px 28px 28px;
  position: relative; overflow: hidden;
  transition: transform .25s var(--ease-out), box-shadow .25s var(--ease-out), border-color .25s var(--ease-out);
}
.price-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-brand); border-color: transparent; }
.price-card.featured {
  background: linear-gradient(180deg,#FFEFF3 0%,#FFFFFF 65%);
  border: 2px solid var(--roots-primary);
  box-shadow: var(--shadow-brand);
  transform: translateY(-8px);
}
.price-card.featured:hover { transform: translateY(-14px); }
.featured-tag {
  position: absolute; top: 20px; right: 20px;
  background: var(--mustard-yellow); color: var(--gray-20-new);
  padding: 5px 12px; border-radius: 999px;
  font-size: 10px; font-weight: 800; letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Box visuals */
.box-stage {
  width: 100%; height: 110px; position: relative;
  display: flex; align-items: center; justify-content: flex-start;
  margin-bottom: 16px;
}
.price-card:hover .box-iso { transform: translateY(-4px) rotate(-2deg); }
.box-iso {
  transition: transform .35s var(--ease-out);
}

.price-name {
  font-family: var(--font-primary); font-weight: 800; font-size: 24px;
  color: var(--gray-70); margin: 0 0 4px; letter-spacing: -0.01em;
}
.price-weight {
  font-size: 13px; color: var(--gray-50); font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em;
  margin-bottom: 18px;
}
.price-amount {
  display: flex; align-items: baseline; gap: 12px;
  margin-bottom: 6px;
}
.price-amount .now {
  font-family: var(--font-display); font-weight: 800;
  font-size: 56px; color: var(--gray-70);
  letter-spacing: -0.03em; line-height: 1;
}
.price-amount .was {
  font-family: var(--font-primary); font-weight: 600;
  font-size: 20px; color: var(--gray-40); text-decoration: line-through;
}
.price-save {
  display: inline-block;
  font-size: 11px; font-weight: 700; color: var(--green-30);
  background: var(--green-10); padding: 3px 10px; border-radius: 999px;
  margin-bottom: 22px; letter-spacing: 0.04em; text-transform: uppercase;
}
.price-perks {
  list-style: none; padding: 0; margin: 0 0 24px;
  display: flex; flex-direction: column; gap: 10px;
}
.price-perks li {
  display: flex; align-items: flex-start; gap: 8px;
  font-size: 14px; color: var(--gray-60); font-weight: 500;
}
.price-perks li i { color: var(--green-30); flex-shrink: 0; margin-top: 2px; }
.price-cta { width: 100%; justify-content: center; }

.pricing-disclaimer {
  text-align: center; margin-top: 32px;
  font-size: 13px; color: var(--gray-50); font-weight: 600;
}
.pricing-disclaimer .dot {
  display: inline-block; width: 6px; height: 6px; border-radius: 50%;
  background: var(--mustard-yellow); margin: 0 10px; vertical-align: middle;
}

/* ---- HOW IT WORKS — animated step rail --------------------- */
.how { background: #fff; }
.steps {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
  position: relative;
}
.step {
  position: relative; z-index: 1;
  background: var(--bg-app); border-radius: var(--r-xl);
  padding: 28px 24px 26px; border: 1px solid var(--gray-30);
  transition: transform .25s var(--ease-out), box-shadow .25s var(--ease-out), border-color .25s var(--ease-out);
}
.step:hover { transform: translateY(-3px); box-shadow: var(--shadow-brand); border-color: transparent; }
.step-num {
  width: 44px; height: 44px; border-radius: 50%;
  background: #fff; color: var(--roots-primary);
  border: 2px solid var(--roots-primary);
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 800; font-size: 18px;
  margin-bottom: 18px;
  box-shadow: var(--shadow-brand-sm);
}
.step:hover .step-num { background: var(--roots-primary); color: #fff; }
.step h4 {
  font-family: var(--font-primary); font-weight: 800; font-size: 18px;
  color: var(--gray-70); margin: 0 0 8px;
}
.step p {
  font-size: 14px; color: var(--gray-60); margin: 0; line-height: 1.55;
}
.step .step-icon {
  position: absolute; top: 26px; right: 24px;
  color: var(--gray-40); transition: color .25s var(--ease-out);
}
.step:hover .step-icon { color: var(--roots-primary); }
.steps::before {
  content: ""; position: absolute; top: 46px; left: 12.5%; right: 12.5%;
  height: 2px; background: repeating-linear-gradient(90deg, var(--gray-30) 0 6px, transparent 6px 14px);
  z-index: 0;
}

/* ---- WHY FIXED BEATS CALCULATED ---------------------------- */
.why {
  background: var(--gray-20-new); color: #fff;
  position: relative; overflow: hidden;
}
.why::before {
  content: ""; position: absolute; top: -200px; left: -200px;
  width: 700px; height: 700px; border-radius: 50%;
  background: radial-gradient(circle, rgba(153,30,59,.45), transparent 70%);
  pointer-events: none;
}
.why::after {
  content: ""; position: absolute; bottom: -200px; right: -200px;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(244,160,11,.20), transparent 70%);
  pointer-events: none;
}
.why .section-head h2, .why .section-head p { color: #fff; }
.why .section-head p { color: rgba(255,255,255,.7); }
.why .section-head .eyebrow { color: #FFD9A0; }
.why .section-head h2 em { color: #FFD9A0; }

.why-grid {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px;
}
.why-card {
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.10);
  border-radius: var(--r-xl); padding: 24px;
  backdrop-filter: blur(8px);
  transition: transform .25s var(--ease-out), background .25s var(--ease-out), border-color .25s var(--ease-out);
}
.why-card:hover { background: rgba(255,255,255,.07); border-color: rgba(255,217,160,.4); transform: translateY(-3px); }
.why-card .why-icon {
  width: 44px; height: 44px; border-radius: var(--r-md);
  background: linear-gradient(135deg,#D62953,#991E3B);
  display: inline-flex; align-items: center; justify-content: center; color: #fff;
  margin-bottom: 16px;
}
.why-card .no {
  font-family: var(--font-display); font-weight: 800; font-size: 13px;
  color: #FFD9A0; letter-spacing: 0.12em; text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 6px;
  margin-bottom: 6px;
}
.why-card .no::before {
  content: ""; width: 16px; height: 16px; border-radius: 50%;
  background: rgba(255,217,160,.18);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23FFD9A0' stroke-width='3' stroke-linecap='round'%3E%3Cline x1='6' y1='6' x2='18' y2='18'/%3E%3Cline x1='6' y1='18' x2='18' y2='6'/%3E%3C/svg%3E");
  background-size: 10px; background-position: center; background-repeat: no-repeat;
}
.why-card h4 {
  font-family: var(--font-primary); font-weight: 700; font-size: 17px;
  color: #fff; margin: 0 0 6px; line-height: 1.25;
}
.why-card p {
  font-size: 13px; color: rgba(255,255,255,.65); margin: 0; line-height: 1.55;
}

/* ---- CLOSING ----------------------------------------------- */
.closing {
  position: relative; overflow: hidden;
  background: var(--bg-app); padding: 120px 0 96px; text-align: center;
}
.closing::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(circle at 50% 0%, rgba(214,41,83,.10), transparent 60%);
}
.closing-strip {
  position: relative; z-index: 1;
  display: inline-flex; gap: 28px; padding: 14px 24px;
  border-radius: 999px; background: #fff;
  border: 1px solid var(--gray-30); box-shadow: var(--shadow-ambient);
  font-family: var(--font-primary); font-weight: 800; font-size: 13px;
  color: var(--gray-70); letter-spacing: 0.08em; text-transform: uppercase;
  margin-bottom: 32px;
  flex-wrap: wrap; justify-content: center;
}
.closing-strip span { display: inline-flex; align-items: center; gap: 8px; }
.closing-strip span i { color: var(--roots-primary); }
.closing-strip .div {
  width: 1px; height: 14px; background: var(--gray-30); align-self: center;
}
.closing h2 {
  position: relative; z-index: 1;
  font-family: var(--font-display); font-weight: 800;
  font-size: 72px; line-height: 1.04; letter-spacing: -0.035em;
  color: var(--gray-70); margin: 0 auto 22px; max-width: 900px;
  text-wrap: balance;
}
.closing h2 em {
  font-style: normal;
  background: linear-gradient(180deg,#D62953 0%,#991E3B 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.closing p {
  position: relative; z-index: 1;
  font-family: var(--font-subtle);
  font-weight: 500;
  font-size: 19px;
  color: var(--gray-50); max-width: 640px; margin: 0 auto 36px;
  line-height: 1.55;
  letter-spacing: 0em;
}
.closing .cta-row {
  position: relative; z-index: 1;
  display: inline-flex; align-items: center; gap: 14px; flex-wrap: wrap;
  justify-content: center;
}
.closing .stamp {
  position: relative; z-index: 1;
  margin-top: 72px;
  display: flex; justify-content: center; align-items: center; gap: 14px;
  font-family: var(--font-primary); font-weight: 700; font-size: 13px;
  color: var(--gray-50); letter-spacing: 0.18em; text-transform: uppercase;
}
.closing .stamp::before, .closing .stamp::after {
  content: ""; width: 48px; height: 1px; background: var(--gray-40);
}

/* ---- FOOTER ------------------------------------------------ */
.footer {
  background: var(--gray-20-new); color: rgba(255,255,255,.7);
  padding: 56px 0 32px;
  font-size: 13px;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px;
  margin-bottom: 40px;
}
.footer-brand img { height: 28px; margin-bottom: 16px; opacity: .95; }
.footer-brand p {
  font-size: 13px; line-height: 1.6; max-width: 320px;
  color: rgba(255,255,255,.55);
}
.footer-col h5 {
  font-family: var(--font-primary); font-weight: 700; font-size: 12px;
  color: #fff; letter-spacing: 0.12em; text-transform: uppercase;
  margin: 0 0 14px;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-col a { color: rgba(255,255,255,.65); text-decoration: none; transition: color .2s var(--ease-out); }
.footer-col a:hover { color: #FFD9A0; }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 24px; border-top: 1px solid rgba(255,255,255,.10);
  font-size: 12px; color: rgba(255,255,255,.45);
  flex-wrap: wrap; gap: 12px;
}
.footer-bottom .stamp-text { color: rgba(255,255,255,.7); font-weight: 600; }

/* ============================================================
 * SUCCESS PAGE
 * ============================================================ */
.success-page {
  position: relative; min-height: 100vh;
  background: var(--bg-app); overflow: hidden;
}
.success-page::before {
  content: ""; position: absolute; top: -240px; right: -240px;
  width: 800px; height: 800px; border-radius: 50%;
  background: radial-gradient(circle at center, rgba(214,41,83,.18) 0%, rgba(153,30,59,.04) 50%, transparent 70%);
  pointer-events: none;
}
.success-page::after {
  content: ""; position: absolute; bottom: -220px; left: -220px;
  width: 560px; height: 560px; border-radius: 50%;
  background: radial-gradient(circle at center, rgba(244,160,11,.16) 0%, transparent 60%);
  pointer-events: none;
}
.success-shell {
  position: relative; z-index: 1;
  min-height: 100vh;
  display: flex; flex-direction: column;
}
.success-topbar {
  display: flex; justify-content: space-between; align-items: center;
  padding: 22px 32px;
  max-width: 1240px; width: 100%; margin: 0 auto;
}
.success-topbar img { height: 28px; }
.success-back {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; border: 1px solid var(--gray-30);
  color: var(--gray-70); font-family: var(--font-primary);
  font-weight: 700; font-size: 13px; letter-spacing: 0.02em;
  padding: 10px 16px; border-radius: 999px;
  cursor: pointer; text-decoration: none;
  transition: border-color .25s var(--ease-out), color .25s var(--ease-out), background .25s var(--ease-out);
}
.success-back:hover { border-color: var(--roots-primary); color: var(--roots-primary); background: #fff; }

.success-body {
  flex: 1;
  display: flex; align-items: center; justify-content: center;
  padding: 40px 32px 72px;
}
.success-inner {
  max-width: 720px; width: 100%; text-align: center;
  transition: opacity .6s var(--ease-out) .15s, transform .6s var(--ease-out) .15s;
}
/* Hidden-then-animate only when JS is available, so a no-JS visitor still sees the confirmation */
html.js .success-inner { transform: translateY(20px); opacity: 0; }
html.js .success-inner.in { opacity: 1; transform: translateY(0); }

.success-tick {
  position: relative;
  width: 96px; height: 96px; border-radius: 50%;
  background: var(--green-10);
  margin: 0 auto 22px;
  display: flex; align-items: center; justify-content: center;
  color: var(--green-30);
}
.success-tick::before {
  content: ""; position: absolute; inset: -10px; border-radius: 50%;
  border: 1.5px dashed rgba(47,133,50,.30);
}
.success-tick svg { width: 44px; height: 44px; }

/* Personalised greeting — brand eyebrow (Montserrat, uppercase, maroon) */
.success-kicker[hidden] { display: none; }
.success-kicker {
  display: block;
  font-family: var(--font-primary); font-weight: 700;
  font-size: 13px; line-height: 1.4; color: var(--roots-primary);
  text-transform: uppercase; letter-spacing: 0.16em;
  margin: 0 0 12px;
}
.success-inner h1 {
  font-family: var(--font-display); font-weight: 800;
  font-size: 64px; line-height: 1.04; letter-spacing: -0.03em;
  color: var(--gray-70); margin: 0 0 16px;
  text-wrap: balance;
}
.success-inner h1 em {
  font-style: normal;
  background: linear-gradient(180deg,#D62953 0%,#991E3B 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.success-inner .lede {
  font-family: var(--font-subtle); font-weight: 500;
  font-size: 19px; line-height: 1.55; color: var(--gray-60);
  max-width: 540px; margin: 0 auto 36px;
  letter-spacing: 0.02em;
}
.success-card {
  background: #fff; border: 1px solid var(--gray-30);
  border-radius: var(--r-2xl); padding: 28px 28px 24px;
  box-shadow: var(--shadow-ambient);
  text-align: left;
  max-width: 560px; margin: 0 auto 32px;
}
.success-card h4 {
  font-family: var(--font-primary); font-weight: 800; font-size: 13px;
  color: var(--gray-50); margin: 0 0 16px;
  text-transform: uppercase; letter-spacing: 0.14em;
}
.success-steps { display: flex; flex-direction: column; gap: 18px; }
.success-step {
  display: flex; align-items: flex-start; gap: 14px;
}
.success-step .num {
  flex-shrink: 0; width: 28px; height: 28px; border-radius: 50%;
  background: var(--red-10); color: var(--roots-primary);
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 800; font-size: 13px;
}
.success-step .text strong {
  display: block; font-family: var(--font-primary); font-weight: 700;
  font-size: 15px; color: var(--gray-70); margin-bottom: 2px;
  letter-spacing: 0.005em;
}
.success-step .text span {
  font-size: 13px; color: var(--gray-50); line-height: 1.5;
  letter-spacing: 0.02em;
}
.success-stamp {
  display: flex; justify-content: center; align-items: center; gap: 14px;
  font-family: var(--font-primary); font-weight: 700; font-size: 12px;
  color: var(--gray-50); letter-spacing: 0.18em; text-transform: uppercase;
  margin-top: 12px;
}
.success-stamp::before, .success-stamp::after {
  content: ""; width: 40px; height: 1px; background: var(--gray-40);
}

/* ---- RESPONSIVE -------------------------------------------- */
@media (max-width: 1080px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-headline { font-size: 46px; }
  .pricing-grid, .pain-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .steps::before { display: none; }
  .closing h2 { font-size: 52px; }
  .solution-intro h2 { font-size: 44px; }
  .nav-links { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .wrap { padding: 0 20px; }
  .section { padding: 64px 0; }
  .hero-band { padding: 40px 0 72px; }
  .hero-headline { font-size: 38px; }
  .why-grid { grid-template-columns: 1fr; }
  .closing h2 { font-size: 40px; }
  .solution-intro h2 { font-size: 36px; }
  .pain-summary { font-size: 18px; }
  .field-row { grid-template-columns: 1fr; }
  .section-head h2 { font-size: 34px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .success-topbar { padding: 18px 20px; }
  .success-body { padding: 24px 20px 56px; }
  .success-inner h1 { font-size: 42px; }
  .success-tick { width: 80px; height: 80px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal, .reveal-r, .reveal-scale { opacity: 1; transform: none; }
  .hero-bg-blob, .hero-bg-blob.two, .hero-eyebrow .pulse::after { animation: none; }
  html.js .success-inner,
  .success-inner { transition: none; opacity: 1; transform: none; }
}

/* ============================================================
 * SHOP N SHIP — additional components
 * (form promo, special-offer band, positive "why" index chip,
 *  closing share line, selected price-card state)
 * ============================================================ */

/* ---- Static promo note inside the booking card ------------- */
.form-promo {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 14px;
  border: 1px solid rgba(153,30,59,.18); border-radius: var(--r-lg);
  background: var(--red-10);
  margin-bottom: 16px;
}
.form-promo .promo-icon {
  flex-shrink: 0; width: 30px; height: 30px; border-radius: 8px;
  background: var(--roots-primary); color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
}
.form-promo .check-text { display: flex; flex-direction: column; gap: 2px; }
.form-promo .check-text strong {
  font-family: var(--font-primary); font-weight: 700; font-size: 14px;
  color: var(--gray-70); letter-spacing: 0.005em;
}
.form-promo .check-text .hint {
  font-size: 12px; color: var(--gray-50); letter-spacing: 0.02em; line-height: 1.4;
}

/* ---- Positive "Why RootRS" index chip (replaces the No.0x) - */
.why-card .idx {
  font-family: var(--font-display); font-weight: 800; font-size: 13px;
  color: #FFD9A0; letter-spacing: 0.12em;
  display: inline-flex; align-items: center; gap: 7px;
  margin-bottom: 6px;
}
.why-card .idx::before {
  content: ""; width: 16px; height: 16px; border-radius: 50%;
  background: rgba(255,217,160,.18);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23FFD9A0' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: 10px; background-position: center; background-repeat: no-repeat;
}

/* ---- Selected price card state (set when a card is chosen) - */
.price-card.is-selected {
  border-color: var(--roots-primary);
  box-shadow: var(--shadow-brand);
}
.price-card.is-selected::after {
  content: "Selected"; position: absolute; top: 20px; left: 20px;
  background: var(--green-30); color: #fff;
  padding: 4px 10px; border-radius: 999px;
  font-size: 10px; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase;
}
.price-card.featured.is-selected::after { left: auto; right: 20px; top: 48px; }

/* ---- SPECIAL OFFER BAND ------------------------------------ */
.offer { background: var(--bg-app); padding: 64px 0; }
.offer-band {
  position: relative; overflow: hidden;
  background: var(--hero-gradient);
  border-radius: var(--r-2xl);
  box-shadow: 0 30px 80px rgba(153,30,59,.26);
  padding: 48px 56px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 40px; flex-wrap: wrap;
}
.offer-band::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image:
    radial-gradient(circle at 88% 12%, rgba(255,255,255,.16), transparent 32%),
    radial-gradient(circle at 12% 92%, rgba(255,255,255,.10), transparent 38%);
}
.offer-band .offer-copy { position: relative; z-index: 1; max-width: 640px; }
.offer-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--mustard-yellow); color: var(--gray-20-new);
  padding: 6px 14px; border-radius: 999px;
  font-size: 11px; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase;
  margin-bottom: 16px;
}
.offer-band h3 {
  font-family: var(--font-display); font-weight: 800;
  font-size: 42px; line-height: 1.05; letter-spacing: -0.025em;
  color: #fff; margin: 0;
  text-wrap: balance;
}
.offer-band h3 em { font-style: normal; color: #FFD9A0; }
.offer-band .offer-sub {
  font-family: var(--font-subtle); font-weight: 500; font-size: 16px;
  color: rgba(255,255,255,.85); margin: 12px 0 0; line-height: 1.5;
}
.offer-band .offer-cta { position: relative; z-index: 1; flex-shrink: 0; }
.offer-mini-watermark {
  position: absolute; bottom: -44px; right: 24px;
  font-family: var(--font-display); font-weight: 900; font-size: 180px;
  color: rgba(255,255,255,.06); line-height: 1; pointer-events: none; z-index: 0;
}
.btn-light { background: #fff; color: var(--roots-primary); box-shadow: 0 8px 22px rgba(0,0,0,.18); }
.btn-light:hover { background: #FFF3F5; transform: translateY(-2px); }

/* ---- Closing secondary share line -------------------------- */
.closing .share-line {
  position: relative; z-index: 1;
  font-family: var(--font-subtle); font-weight: 500; font-size: 15px;
  color: var(--gray-50); max-width: 560px; margin: 20px auto 0;
  line-height: 1.55;
}

/* ---- Offer-band responsive --------------------------------- */
@media (max-width: 1080px) {
  .offer-band { flex-direction: column; align-items: flex-start; gap: 24px; padding: 40px; }
  .offer-band h3 { font-size: 32px; }
  .offer-band .offer-cta { width: 100%; justify-content: center; }
}
@media (max-width: 640px) {
  .offer-band h3 { font-size: 28px; }
  .offer-mini-watermark { font-size: 120px; bottom: -26px; }
}
