/* ============================================================
 * Shipping Landing Page — styles
 * Depends on: design-tokens.css
 * ============================================================ */

/* ---- Reset & base --------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; background: var(--bg-app); color: var(--gray-70); }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-primary);
  font-size: var(--fs-body-1);
  line-height: var(--lh-body-1);
  letter-spacing: 0.02em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; display: block; }
::selection { background: var(--roots-primary); color: #fff; }

/* ---- Sticky-nav scroll-margin offsets ------------------- */
:where(#book, #pricing, #how, #why, #problem) { scroll-margin-top: 88px; }

/* ---- Layout container ----------------------------------- */
.wrap { max-width: 1240px; margin: 0 auto; padding: 0 32px; }

/* ============================================================
 * 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
 * ============================================================ */
.shipping-nav {
  position: fixed; top: 0; left: 0; right: 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);
}
.shipping-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; justify-content: 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;
  position: relative;
}
/* Arrow icon floats absolutely so the label text stays truly centred */
.btn .arrow {
  position: absolute;
  right: 20px;
  top: 50%; transform: translateY(-50%);
  transition: transform .25s var(--ease-out);
}
.btn-lg  .arrow { right: 28px; }
.btn-xl  .arrow { right: 32px; }
.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-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:hover .arrow { transform: translateY(-50%) translateX(4px); }

/* ============================================================
 * HERO
 * ============================================================ */
.hero {
  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: 1fr; 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 .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.6;
  letter-spacing: 0.015em;
  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 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 ----------------------------------- */
.check-row {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 14px; border: 1px solid var(--gray-30); border-radius: var(--r-lg);
  background: var(--bg-elevated); cursor: pointer; user-select: none;
  margin-bottom: 16px; position: relative;
  transition: border-color .25s var(--ease-out), background .25s var(--ease-out), box-shadow .25s var(--ease-out);
}
.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; }

/* ---- Form fields ---------------------------------------- */
.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-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-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.6; letter-spacing: 0.015em;
  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: 1fr; max-width: 620px; margin: 0 auto; }
.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 {
  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; justify-content: space-between; 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
 * ============================================================ */
.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.6; letter-spacing: 0.015em;
}
.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);
}
.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-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
 * ============================================================ */
.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 { 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;
}
.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.6; letter-spacing: 0.015em;
}
.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);
}
.footer-bottom .stamp-text { color: rgba(255,255,255,.7); font-weight: 600; }

/* ============================================================
 * 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) {
  .section                { padding: 64px 0; }
  .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; }
}
@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-r, .reveal-scale { opacity: 1; transform: none; }
  .hero-bg-blob, .hero-bg-blob.two,
  .hero-eyebrow .pulse::after       { animation: none; }
}


/* ============================================================
 * BOOKING CONFIRMATION OVERLAY
 * ============================================================ */

/* ----- Overlay container -------------------------------- */
#bookingConfirmOverlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  flex-direction: column;
  background: #fff8f8;
  overflow-y: auto;
  /* Radial blob accents matching the landing page gradient */
  background-image:
    radial-gradient(ellipse 60% 50% at 15% 90%, rgba(230,127,151,0.35) 0%, transparent 70%),
    radial-gradient(ellipse 50% 45% at 85% 10%, rgba(215,100,130,0.25) 0%, transparent 70%);
}

/* ----- Overlay nav -------------------------------------- */
.confirm-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 32px;
  flex-shrink: 0;
}

.confirm-back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-60, #3f3f3f);
  text-decoration: none;
  letter-spacing: 0.01em;
}
.confirm-back-link:hover { color: var(--roots-primary, #991e3b); }

/* ----- Overlay body ------------------------------------- */
.confirm-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px 24px 60px;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  width: 100%;
}

/* ----- Green check circle ------------------------------- */
.confirm-check-wrap {
  margin-bottom: 28px;
}

.confirm-check-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 2px dashed rgba(47,133,50,0.4);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(47,133,50,0.06);
}

/* ----- Heading ------------------------------------------ */
.confirm-heading {
  font-family: var(--font-primary, 'Montserrat', sans-serif);
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  font-weight: 800;
  color: var(--roots-primary, #991e3b);
  margin: 0 0 20px;
  line-height: 1.1;
}

/* ----- Sub copy ----------------------------------------- */
.confirm-sub {
  font-size: clamp(15px, 2.2vw, 18px);
  color: var(--gray-60, #3f3f3f);
  max-width: 500px;
  line-height: 1.6;
  margin: 0 0 40px;
}
.confirm-sub strong {
  font-weight: 700;
}

/* ----- "What happens next" card ------------------------- */
.confirm-card {
  width: 100%;
  max-width: 500px;
  background: #fff;
  border: 1px solid var(--gray-30, #e8e8e8);
  border-radius: 16px;
  padding: 28px 28px 24px;
  text-align: left;
  box-shadow: 0 2px 16px rgba(0,0,0,0.05);
}

.confirm-card-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray-50, #707070);
  margin: 0 0 20px;
}

/* ----- Steps list --------------------------------------- */
.confirm-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.confirm-step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.confirm-step-num {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--red-10, #fef0f0);
  color: var(--roots-primary, #991e3b);
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
  border: 1.5px solid rgba(153,30,59,0.25);
}

.confirm-step-body {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.confirm-step-body strong {
  font-size: 15px;
  font-weight: 700;
  color: var(--gray-70, #242729);
}

.confirm-step-body span {
  font-size: 13.5px;
  color: var(--gray-50, #707070);
  line-height: 1.5;
}

/* ----- Overlay footer ----------------------------------- */
.confirm-footer {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 20px 24px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--gray-40, #ccc);
  text-transform: uppercase;
}

.confirm-footer-rule {
  flex: 1;
  max-width: 80px;
  height: 1px;
  background: var(--gray-30, #e8e8e8);
  display: block;
}

/* ----- Responsive tweaks -------------------------------- */
@media (max-width: 480px) {
  .confirm-nav { padding: 16px 20px; }
  .confirm-body { padding: 32px 16px 48px; }
  .confirm-card { padding: 20px 16px 16px; }
  .confirm-heading { margin-bottom: 16px; }
}

/* ============================================================
 * SUCCESS PAGE  (page-success.php)
 * ============================================================ */

/* Page layout */
.shipping-success-page { min-height: 100vh; display: flex; flex-direction: column; }

.success-page-wrap {
  position: relative; overflow: hidden; flex: 1;
  display: flex; align-items: center; justify-content: center;
  padding: 80px 0 110px;
}

/* Background blobs */
.success-bg-blob {
  position: absolute; border-radius: 50%; pointer-events: none; z-index: 0;
}
.success-bg-blob:first-child {
  top: -120px; right: -200px; width: 700px; height: 700px;
  background: radial-gradient(circle at center, rgba(214,41,83,.18) 0%, rgba(153,30,59,.04) 50%, transparent 70%);
  animation: float-slow 10s ease-in-out infinite;
}
.success-bg-blob.two {
  bottom: -100px; left: -150px; width: 450px; height: 450px;
  background: radial-gradient(circle at center, rgba(244,160,11,.13) 0%, transparent 65%);
  animation: float-slow 13s ease-in-out infinite reverse;
}

/* Inner content container */
.success-inner {
  position: relative; z-index: 1;
  max-width: 600px; width: 100%; margin: 0 auto;
  display: flex; flex-direction: column; align-items: center;
  text-align: center; padding: 0 32px;
}

/* Animated SVG checkmark */
.success-check-wrap { margin-bottom: 32px; }
.success-check-svg {
  width: 96px; height: 96px;
  filter: drop-shadow(0 8px 28px rgba(47,133,50,.22));
}

/* Circle draws from 0 → full circumference */
.s-circle {
  stroke: #2F8532; stroke-width: 2; fill: rgba(47,133,50,.07);
  stroke-dasharray: 220; stroke-dashoffset: 220;
  transform-origin: 40px 40px; transform: rotate(-90deg);
  transition: stroke-dashoffset 0.85s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.s-circle.drawn { stroke-dashoffset: 0; }

/* Tick draws after circle */
.s-tick {
  stroke: #2F8532; stroke-width: 3.5;
  stroke-linecap: round; stroke-linejoin: round;
  stroke-dasharray: 60; stroke-dashoffset: 60;
  transition: stroke-dashoffset 0.45s cubic-bezier(0.22, 0.61, 0.36, 1) 0.65s;
}
.s-tick.drawn { stroke-dashoffset: 0; }

/* Heading */
.success-heading {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(3rem, 8vw, 5.5rem);
  letter-spacing: -0.03em; line-height: 1.05;
  color: var(--roots-primary); margin: 0 0 18px;
}

/* Sub text */
.success-sub {
  font-family: var(--font-subtle); font-weight: 500;
  font-size: clamp(15px, 2.5vw, 18px);
  color: var(--gray-60); line-height: 1.65;
  max-width: 480px; margin: 0 0 36px; letter-spacing: 0.01em;
}
.success-sub strong { color: var(--gray-70); font-weight: 700; }

/* India → USA route indicator */
.success-route {
  display: inline-flex; align-items: center; gap: 14px;
  padding: 10px 24px; background: #fff;
  border: 1px solid var(--gray-30); border-radius: 999px;
  font-size: 14px; font-weight: 700; color: var(--gray-70);
  box-shadow: var(--shadow-ambient-sm); margin-bottom: 40px;
  letter-spacing: 0.02em;
}
.route-track {
  position: relative; width: 80px; height: 2px;
  background: linear-gradient(90deg, var(--gray-40) 0%, var(--roots-primary) 100%);
  border-radius: 2px; overflow: visible;
}
.route-plane {
  position: absolute; top: 50%; transform: translateY(-50%);
  font-size: 14px; line-height: 1;
  animation: fly-across 3.2s ease-in-out infinite;
}
@keyframes fly-across {
  0%   { left: 0%; opacity: 0; }
  12%  { opacity: 1; }
  88%  { opacity: 1; }
  100% { left: 88%; opacity: 0; }
}

/* What happens next card */
.success-card {
  width: 100%; background: #fff;
  border: 1px solid var(--gray-30); border-radius: var(--r-2xl);
  padding: 32px 32px 28px; text-align: left;
  box-shadow: var(--shadow-ambient); margin-bottom: 36px;
}
.success-card-eyebrow {
  font-family: var(--font-primary); font-size: 11px; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--gray-50); margin: 0 0 24px;
}

/* Steps list */
.success-steps {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-direction: column; gap: 22px;
}
.success-step { display: flex; gap: 16px; align-items: flex-start; }
.success-step-num {
  flex-shrink: 0; width: 28px; height: 28px; border-radius: 50%;
  background: var(--red-10); color: var(--roots-primary);
  font-size: 13px; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  border: 1.5px solid rgba(153,30,59,.2); margin-top: 1px;
}
.success-step-body { display: flex; flex-direction: column; gap: 4px; }
.success-step-body strong { font-size: 15px; font-weight: 700; color: var(--gray-70); }
.success-step-body span  { font-size: 13.5px; color: var(--gray-50); line-height: 1.55; }

/* CTA row */
.success-cta-row {
  display: flex; gap: 12px; align-items: center;
  flex-wrap: wrap; justify-content: center; margin-bottom: 48px;
}

/* Stamp */
.success-stamp {
  display: flex; align-items: center; gap: 14px;
  font-family: var(--font-primary); font-weight: 700;
  font-size: 13px; color: var(--gray-40);
  letter-spacing: 0.18em; text-transform: uppercase;
}
.success-stamp::before,
.success-stamp::after { content: ""; width: 40px; height: 1px; background: var(--gray-30); }

/* Responsive */
@media (max-width: 640px) {
  .success-page-wrap { padding: 56px 0 80px; align-items: flex-start; }
  .success-inner { padding: 0 20px; }
  .success-card  { padding: 24px 20px 20px; }
  .success-cta-row { flex-direction: column; width: 100%; }
  .success-cta-row .btn { width: 100%; justify-content: center; }
  .success-route { font-size: 12px; padding: 8px 16px; gap: 10px; }
  .route-track { width: 56px; }
}

/* Nav button arrow fix */
.shipping-nav .btn .arrow {
  position: relative;
  top: auto;
  transform: none;
  right: auto;
  margin-left: 6px;
  display: inline-block;
  vertical-align: middle;
}

/* ============================================================
 * MOBILE OPTIMISATION (responsive fixes)
 * ============================================================ */
/* Safety net: stop decorative blobs from creating sideways scroll.
   `clip` (not hidden) keeps the sticky nav working. */
.shipping-landing-page { overflow-x: clip; }

@media (max-width: 640px) {
  .wrap { padding: 0 20px; }

  /* NAV — logo + compact button stay on one row, no bleed */
  .nav-inner               { gap: 12px; padding: 12px 0; }
  .nav-logo img            { height: 26px; }
  .shipping-nav .btn-primary { padding: 10px 16px; font-size: 13px; }
  .shipping-nav .btn .arrow  { display: none; }

  /* HERO */
  .hero                    { padding: 40px 0 72px; }
  .hero-headline           { font-size: 40px; }
  .hero-sub                { font-size: 17px; }
  .hero-tag                { margin-bottom: 0; }
  .hero-cta-row            { flex-direction: column; align-items: stretch; gap: 12px; }
  .hero-cta-row .btn       { width: 100%; }
  .hero-cta-row .btn .arrow{ display: none; }
  .hero-trust              { flex-direction: column; align-items: flex-start; gap: 12px; margin-top: 28px; }

  /* SECTION HEADINGS — stop one-word-per-line stacking */
  .section-head h2         { font-size: 32px; }
  .section-head p          { font-size: 16px; }

  /* SOLUTION PROMISE — wrap into tidy rows, each chip on one line */
  .solution-promise        { display: flex; flex-wrap: wrap; justify-content: center;
                             gap: 8px 16px; padding: 12px 16px; border-radius: 20px; }
  .solution-promise span   { white-space: nowrap; }

  /* HOW IT WORKS — single full-width column (was cramped 2-col) */
  .steps                   { grid-template-columns: 1fr; gap: 14px; }
  .step                    { padding: 20px 22px; }
  .step .step-icon         { top: 20px; right: 20px; }

  /* CLOSING STRIP — wrap so "Fixed Price" is never cut off */
  .closing-strip           { flex-wrap: wrap; justify-content: center;
                             gap: 10px 18px; padding: 12px 18px; font-size: 12px; }
  .closing-strip .div      { display: none; }
  .closing h2              { font-size: 34px; }
  .closing p               { font-size: 16px; }

  /* FORM — keep the selected box value fully visible */
  .field select            { font-size: 14px; }
}

@media (max-width: 380px) {
  .hero-headline           { font-size: 34px; }
  .section-head h2         { font-size: 28px; }
  .closing h2              { font-size: 30px; }
}

/* ============================================================
 * TESTIMONIALS
 * ============================================================ */
.testimonials { background: linear-gradient(180deg, #fff 0%, #fff8f8 100%); }
.testi-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 8px;
}
.testi-card {
  display: flex; flex-direction: column; gap: 16px; text-align: left;
  background: #fff; border: 1px solid var(--gray-30); border-radius: var(--r-2xl);
  padding: 28px 26px; box-shadow: var(--shadow-ambient);
  transition: transform .25s var(--ease-out), box-shadow .25s var(--ease-out);
}
.testi-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-ambient), 0 18px 40px rgba(153,30,59,.08); }
.testi-stars { color: #E8A20B; letter-spacing: 3px; font-size: 15px; line-height: 1; }
.testi-quote {
  margin: 0; font-family: var(--font-subtle); font-weight: 500;
  font-size: 16px; line-height: 1.66; color: var(--gray-70); letter-spacing: 0.01em;
}
.testi-person { display: flex; align-items: center; gap: 12px; margin-top: auto; padding-top: 4px; }
.testi-avatar {
  width: 52px; height: 52px; border-radius: 50%; object-fit: cover;
  border: 2px solid var(--red-10); flex-shrink: 0;
}
.testi-meta { display: flex; flex-direction: column; line-height: 1.3; }
.testi-meta strong { font-family: var(--font-primary); font-weight: 700; font-size: 15px; color: var(--gray-70); }
.testi-meta span { font-size: 13px; color: var(--gray-50); }

@media (max-width: 860px) {
  .testi-grid { grid-template-columns: 1fr; max-width: 520px; margin-left: auto; margin-right: auto; }
}

/* ============================================================
 * HERO single-column (form moved out) + BOOK section at end
 * ============================================================ */
.hero-left { max-width: 840px; }

.book-section {
  position: relative; overflow: hidden; padding: 76px 0 96px;
  background: linear-gradient(180deg, #fff8f8 0%, #fdeef1 100%);
  border-top: 1px solid rgba(232,232,232,0.6);
}
.book-section .hero-right { max-width: 560px; margin: 0 auto; }
.book-section .section-head { margin-bottom: 28px; }

/* ============================================================
 * FIXED NAV OFFSET + SECTION CTAs + SHELL-LESS BOTTOM FORM
 * ============================================================ */
:root { --nav-h: 76px; }
.shipping-landing-page { padding-top: var(--nav-h); }
section[id] { scroll-margin-top: calc(var(--nav-h) + 16px); }

.section-cta { text-align: center; margin-top: 44px; }

.book-section .hero-right { max-width: 640px; }
.book-section .hero-card  { border: 1px solid var(--gray-30); box-shadow: 0 18px 50px rgba(153,30,59,.10); }

@media (max-width: 640px) {
  :root { --nav-h: 68px; }
  .section-cta { margin-top: 32px; }
}
