/* =========================================================
   Anu Courier — Landing page styles
   Palette: City-Link inspired — light neutral base, courier green,
            orange secondary accent
   ========================================================= */

/* ---------- Tokens ---------- */
:root {
  --bg:        #FFFFFF;
  --bg-2:      #F1F1F0;
  --surface:   #FFFFFF;
  --surface-2: #F7F7F6;
  --line:      rgba(35, 31, 32, .10);
  --line-2:    rgba(35, 31, 32, .18);

  --text:  #231F20;
  --muted: #58595B;

  --accent:      #00A551;  /* courier green */
  --accent-soft: #007C3C;  /* darker green — for text on light surfaces */
  --accent-2:    #F38120;  /* orange secondary */
  --wa:          #25D366;

  --grad: linear-gradient(120deg, #00A551 0%, #00C05E 100%);

  --radius:    15px;
  --radius-sm: 10px;
  --radius-btn: 6px;

  --shadow:      0 18px 42px -20px rgba(35, 31, 32, .32);
  --shadow-lg:   0 30px 66px -28px rgba(35, 31, 32, .38);
  /* Cards sit on both white and grey sections — a resting lift keeps them
     legible on the white ones, where a border alone disappears. */
  --shadow-rest: 0 6px 20px -14px rgba(35, 31, 32, .45);

  --ease: cubic-bezier(.22, 1, .36, 1);

  --font-display: "Nunito", "Segoe UI", system-ui, sans-serif;
  --font-body:    "Nunito", "Segoe UI", system-ui, -apple-system, sans-serif;

  --header-h: 76px;
}

/* ---------- Reset ---------- */
* { margin: 0; padding: 0; box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 16px);
  -webkit-text-size-adjust: 100%;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body.nav-open { overflow: hidden; }

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; }
ul, ol { list-style: none; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.16;
  letter-spacing: -.01em;
}

::selection { background: var(--accent); color: #FFFFFF; }

:focus-visible {
  outline: 2px solid var(--accent-soft);
  outline-offset: 3px;
  border-radius: 6px;
}

/* ---------- Layout ---------- */
.container {
  width: min(1180px, 100% - 44px);
  margin-inline: auto;
}
.container.narrow { width: min(820px, 100% - 44px); }

.section { padding: clamp(72px, 10vw, 128px) 0; position: relative; }
.section-alt {
  background: var(--bg-2);
  border-block: 1px solid var(--line);
}

.section-head {
  text-align: center;
  max-width: 700px;
  margin: 0 auto clamp(44px, 6vw, 72px);
}
.section-head h2 { font-size: clamp(2rem, 4.6vw, 3.1rem); margin-bottom: 16px; }
.section-sub { color: var(--muted); font-size: clamp(1rem, 1.5vw, 1.1rem); }

.eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}

.gradient-text {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ---------- Buttons ---------- */
.btn {
  --btn-bg: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 24px;
  border: 1px solid transparent;
  border-radius: var(--radius-btn);
  background: var(--btn-bg);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .95rem;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease),
              background-color .3s var(--ease), border-color .3s var(--ease);
}
.btn svg { width: 18px; height: 18px; transition: transform .3s var(--ease); }
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--grad);
  color: #FFFFFF;
  box-shadow: 0 12px 32px -12px rgba(0, 165, 81, .8);
}
.btn-primary:hover { box-shadow: 0 18px 40px -12px rgba(0, 165, 81, .95); }
.btn-primary:hover svg { transform: translateX(3px); }

/* sheen sweep */
.btn-primary::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 -60%;
  width: 45%;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, .5), transparent);
  transform: skewX(-18deg);
  transition: left .65s var(--ease);
}
.btn-primary:hover::after { left: 115%; }

.btn-ghost {
  border-color: var(--line-2);
  background: #FFFFFF;
  color: var(--text);
}
.btn-ghost:hover {
  border-color: var(--wa);
  background: rgba(37, 211, 102, .12);
  color: #0E7A38;
}
.btn-ghost svg { color: var(--wa); }

.btn-lg { padding: 16px 30px; font-size: 1rem; }
.btn-block { width: 100%; }

/* ---------- Scroll progress ---------- */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 100%;
  transform: scaleX(0);
  transform-origin: 0 50%;
  background: var(--grad);
  z-index: 200;
  will-change: transform;
}

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  height: var(--header-h);
  display: flex;
  align-items: center;
  z-index: 120;
  transition: height .35s var(--ease), background-color .35s var(--ease),
              border-color .35s var(--ease), backdrop-filter .35s var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  height: 66px;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(16px) saturate(140%);
  border-bottom-color: var(--line);
  box-shadow: 0 6px 20px -14px rgba(35, 31, 32, .55);
}
.site-header.hidden { transform: translateY(-100%); transition: transform .4s var(--ease); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.logo { display: inline-flex; align-items: center; gap: 11px; }
.logo-mark {
  display: grid;
  place-items: center;
  width: 40px; height: 40px;
  border-radius: 12px;
  background: var(--grad);
  color: #FFFFFF;
  box-shadow: 0 10px 24px -10px rgba(0, 165, 81, .9);
  transition: transform .5s var(--ease);
}
.logo-mark svg { width: 21px; height: 21px; }
.logo:hover .logo-mark { transform: rotate(-10deg) scale(1.06); }
.logo-text { display: flex; flex-direction: column; line-height: 1.15; }
.logo-text strong { font-family: var(--font-display); font-size: 1.02rem; letter-spacing: -.01em; }
.logo-text small { font-size: .68rem; color: var(--muted); letter-spacing: .09em; text-transform: uppercase; }

.nav { display: flex; align-items: center; gap: 2px; flex: 0 0 auto; }
.nav > a:not(.nav-cta) {
  position: relative;
  padding: 9px 11px;
  white-space: nowrap;
  font-size: .93rem;
  color: var(--muted);
  border-radius: 8px;
  transition: color .25s var(--ease);
}
.nav > a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 14px; right: 14px; bottom: 3px;
  height: 2px;
  border-radius: 2px;
  background: var(--grad);
  transform: scaleX(0);
  transform-origin: 0 50%;
  transition: transform .35s var(--ease);
}
.nav > a:not(.nav-cta):hover,
.nav > a.active { color: var(--text); }

/* Between the burger breakpoint and ~1120px the full menu is a tight fit. */
@media (min-width: 861px) and (max-width: 1120px) {
  .nav > a:not(.nav-cta) { padding: 9px 8px; font-size: .87rem; }
  .nav-cta { padding: 10px 14px; font-size: .87rem; }
  .logo-text small { display: none; }
}
.nav > a:not(.nav-cta):hover::after,
.nav > a.active::after { transform: scaleX(1); }
.nav-cta { margin-left: 8px; padding: 11px 18px; white-space: nowrap; }

/* burger */
.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  border: 1px solid var(--line-2);
  border-radius: 12px;
  background: rgba(35, 31, 32, .04);
  cursor: pointer;
  position: relative;
}
.nav-toggle span {
  position: absolute;
  left: 12px;
  width: 20px; height: 2px;
  border-radius: 2px;
  background: var(--text);
  transition: transform .35s var(--ease), opacity .25s var(--ease);
}
.nav-toggle span:nth-child(1) { top: 15px; }
.nav-toggle span:nth-child(2) { top: 21px; }
.nav-toggle span:nth-child(3) { top: 27px; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; transform: scaleX(.4); }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.nav-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(35, 31, 32, .45);
  backdrop-filter: blur(4px);
  z-index: 110;
  opacity: 0;
  transition: opacity .35s var(--ease);
}
.nav-backdrop.show { opacity: 1; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: calc(var(--header-h) + 56px) 0 90px;
  overflow: hidden;
}

.hero-bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }

.grid-lines {
  position: absolute;
  inset: -20% -10%;
  background-image:
    linear-gradient(rgba(35, 31, 32, .05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(35, 31, 32, .05) 1px, transparent 1px);
  background-size: 62px 62px;
  mask-image: radial-gradient(ellipse 75% 60% at 50% 40%, #000 20%, transparent 78%);
  -webkit-mask-image: radial-gradient(ellipse 75% 60% at 50% 40%, #000 20%, transparent 78%);
  animation: gridDrift 26s linear infinite;
}
@keyframes gridDrift {
  to { background-position: 62px 62px, 62px 62px; }
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: .55;
  will-change: transform;
}
.orb-1 { width: 480px; height: 480px; top: -110px; right: -80px;  background: #00A551; opacity: .16; animation: floaty 14s ease-in-out infinite; }
.orb-2 { width: 400px; height: 400px; bottom: -140px; left: -90px; background: #F38120; opacity: .12; animation: floaty 18s ease-in-out infinite reverse; }
.orb-3 { width: 300px; height: 300px; top: 42%; left: 45%;         background: #7ED9A6; opacity: .22; animation: floaty 22s ease-in-out infinite; }

@keyframes floaty {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50%      { transform: translate(24px, -34px) scale(1.08); }
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  gap: clamp(32px, 5vw, 72px);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 16px 8px 12px;
  border: 1px solid var(--line-2);
  border-radius: 999px;
  background: rgba(35, 31, 32, .04);
  backdrop-filter: blur(8px);
  font-size: .82rem;
  color: #3A3536;
  margin-bottom: 26px;
}
/* Highlighted "free pickup all over India" badge */
.badge-hot {
  gap: 11px;
  padding-right: 12px;
  border-color: rgba(0, 165, 81, .5);
  background: rgba(0, 165, 81, .13);
  color: var(--accent-soft);
  transition: transform .3s var(--ease), background-color .3s var(--ease), border-color .3s var(--ease);
}
.badge-hot strong {
  font-family: var(--font-display);
  font-size: .84rem;
  font-weight: 700;
  letter-spacing: .04em;
  color: #006838;
}
.badge-hot::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  border: 1px solid var(--accent);
  opacity: .55;
  animation: badgeRing 2.6s ease-out infinite;
  pointer-events: none;
}
@keyframes badgeRing {
  0%   { transform: scale(1);    opacity: .5; }
  100% { transform: scale(1.14); opacity: 0; }
}
.badge-hot { position: relative; }
.badge-hot:hover {
  transform: translateY(-2px);
  background: rgba(0, 165, 81, .2);
  border-color: var(--accent);
}
.badge-arrow { transition: transform .3s var(--ease); }
.badge-hot:hover .badge-arrow { transform: translateX(4px); }

.pulse-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent);
  position: relative;
  flex: none;
}
.pulse-dot::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--accent);
  animation: pulseRing 2s ease-out infinite;
}
@keyframes pulseRing {
  0%   { transform: scale(1);   opacity: .9; }
  100% { transform: scale(3.4); opacity: 0; }
}

.hero-title {
  font-size: clamp(2.5rem, 6.2vw, 4.4rem);
  font-weight: 800;
  margin-bottom: 22px;
}
.hero-title .line { display: block; overflow: hidden; }
.hero-title .word {
  display: inline-block;
  transform: translateY(110%);
  opacity: 0;
  animation: wordUp .95s var(--ease) forwards;
}
@keyframes wordUp {
  to { transform: translateY(0); opacity: 1; }
}
/* stagger each word */
.hero-title .line:nth-child(1) .word:nth-child(1) { animation-delay: .10s; }
.hero-title .line:nth-child(1) .word:nth-child(2) { animation-delay: .17s; }
.hero-title .line:nth-child(1) .word:nth-child(3) { animation-delay: .24s; }
.hero-title .line:nth-child(2) .word:nth-child(1) { animation-delay: .32s; }
.hero-title .line:nth-child(2) .word:nth-child(2) { animation-delay: .39s; }
.hero-title .line:nth-child(3) .word:nth-child(1) { animation-delay: .47s; }

.hero-sub {
  color: var(--muted);
  font-size: clamp(1rem, 1.6vw, 1.18rem);
  max-width: 540px;
  margin-bottom: 34px;
}
.hero-sub strong { color: var(--text); font-weight: 600; }

.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 36px; }

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 26px;
  font-size: .89rem;
  color: var(--muted);
}
.hero-trust li { display: flex; align-items: center; gap: 8px; }
.hero-trust svg { width: 15px; height: 15px; color: var(--accent); flex: none; }

/* ---------- Hero visual: tracking card ---------- */
.hero-visual { position: relative; }

.track-card {
  position: relative;
  padding: 24px;
  border: 1px solid var(--line-2);
  border-radius: 24px;
  background: linear-gradient(160deg, #FFFFFF, #FAFAF9);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(12px);
  transform-style: preserve-3d;
  transition: transform .4s var(--ease);
  animation: cardIn 1s var(--ease) .45s both;
}
@keyframes cardIn {
  from { opacity: 0; transform: translateY(40px) scale(.96); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

.track-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 20px;
}
.chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 5px 12px;
  border-radius: 999px;
  background: rgba(37, 211, 102, .14);
  color: #006838;
  font-size: .74rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.chip::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #00A551;
  animation: blink 1.6s ease-in-out infinite;
}
@keyframes blink { 50% { opacity: .25; } }
.awb { font-size: .78rem; color: var(--muted); font-variant-numeric: tabular-nums; }

.route { position: relative; margin-bottom: 22px; }
.route-svg { width: 100%; height: auto; overflow: visible; }
.route-path-bg { stroke: rgba(35, 31, 32, .18); }
.route-path {
  stroke: url(#none);
  stroke: var(--accent);
  stroke-linecap: round;
  stroke-dasharray: 320;
  stroke-dashoffset: 320;
  filter: drop-shadow(0 0 6px rgba(0, 165, 81, .6));
  animation: drawRoute 3.4s var(--ease) 1s infinite;
}
@keyframes drawRoute {
  0%       { stroke-dashoffset: 320; }
  55%, 100%{ stroke-dashoffset: 0; }
}
.route-dot { fill: var(--accent); }
.route-dot.end { fill: #231F20; }

.plane {
  position: absolute;
  top: 0; left: 0;
  width: 26px; height: 26px;
  color: #231F20;
  offset-path: path("M18 68 C 90 6, 210 6, 282 68");
  offset-rotate: auto 90deg;
  animation: flyRoute 3.4s var(--ease) 1s infinite;
  filter: drop-shadow(0 2px 8px rgba(0, 165, 81, .9));
}
@keyframes flyRoute {
  0%        { offset-distance: 0%;   opacity: 0; }
  8%        { opacity: 1; }
  55%       { offset-distance: 100%; opacity: 1; }
  62%, 100% { offset-distance: 100%; opacity: 0; }
}
/* fallback for browsers without offset-path */
@supports not (offset-path: path("M0 0 L1 1")) {
  .plane { display: none; }
}

.route-labels {
  display: flex;
  justify-content: space-between;
  margin-top: 4px;
  font-size: .8rem;
}
.route-labels strong { display: block; font-family: var(--font-display); font-size: .9rem; }
.route-labels span { color: var(--muted); font-size: .75rem; }
.ta-right { text-align: right; }

.track-steps {
  display: grid;
  gap: 12px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}
.tstep {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: .87rem;
  color: var(--muted);
}
.tstep i {
  width: 10px; height: 10px;
  border-radius: 50%;
  border: 2px solid var(--line-2);
  flex: none;
}
.tstep.done { color: #58595B; }
.tstep.done i { background: var(--wa); border-color: var(--wa); }
.tstep.active { color: var(--text); font-weight: 600; }
.tstep.active i {
  background: var(--accent);
  border-color: var(--accent);
  box-shadow: 0 0 0 0 rgba(0, 165, 81, .6);
  animation: stepPulse 1.8s ease-out infinite;
}
@keyframes stepPulse {
  70%  { box-shadow: 0 0 0 10px rgba(0, 165, 81, 0); }
  100% { box-shadow: 0 0 0 0 rgba(0, 165, 81, 0); }
}

.float-badge {
  position: absolute;
  display: flex;
  flex-direction: column;
  padding: 12px 18px;
  border: 1px solid var(--line-2);
  border-radius: 14px;
  background: rgba(255, 255, 255, .96);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow);
  animation: bob 5s ease-in-out infinite;
}
.float-badge strong { font-family: var(--font-display); font-size: 1.2rem; }
.float-badge span { font-size: .72rem; color: var(--muted); }
.fb-1 { top: -56px; left: -24px; }
.fb-2 { bottom: -26px; right: -20px; animation-delay: -2.5s; }
@keyframes bob {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-12px); }
}

.scroll-cue {
  position: absolute;
  bottom: 26px;
  left: 50%;
  transform: translateX(-50%);
  width: 24px; height: 38px;
  border: 2px solid var(--line-2);
  border-radius: 14px;
  z-index: 1;
}
.scroll-cue span {
  position: absolute;
  top: 7px; left: 50%;
  width: 4px; height: 7px;
  margin-left: -2px;
  border-radius: 2px;
  background: var(--accent);
  animation: cue 1.9s ease-in-out infinite;
}
@keyframes cue {
  0%      { transform: translateY(0);    opacity: 0; }
  30%     { opacity: 1; }
  70%     { transform: translateY(13px); opacity: 0; }
  100%    { opacity: 0; }
}

/* ---------- Marquee ---------- */
.marquee {
  padding: 20px 0;
  border-block: 1px solid var(--line);
  background: var(--bg-2);
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}
.marquee-track { display: flex; width: max-content; animation: scrollX 34s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-group { display: flex; gap: 44px; padding-right: 44px; }
.marquee-group span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: .95rem;
  font-weight: 600;
  color: #848484;
  white-space: nowrap;
  transition: color .25s var(--ease);
}
.marquee-group span:hover { color: var(--text); }
@keyframes scrollX { to { transform: translateX(-50%); } }

/* ---------- Cards / services ---------- */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 22px;
}

.card {
  position: relative;
  padding: 30px 26px 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(165deg, #FFFFFF, #F7F7F6);
  box-shadow: var(--shadow-rest);
  overflow: hidden;
  transition: transform .4s var(--ease), border-color .4s var(--ease), box-shadow .4s var(--ease);
}
.card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(340px circle at var(--mx, 50%) var(--my, 0%), rgba(0, 165, 81, .16), transparent 62%);
  opacity: 0;
  transition: opacity .4s var(--ease);
  pointer-events: none;
}
.card::after {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 2px;
  background: var(--grad);
  transform: scaleX(0);
  transform-origin: 0 50%;
  transition: transform .5s var(--ease);
}
.card:hover {
  transform: translateY(-8px);
  border-color: rgba(0, 165, 81, .38);
  box-shadow: var(--shadow);
}
.card:hover::before { opacity: 1; }
.card:hover::after  { transform: scaleX(1); }

.card-icon {
  display: grid;
  place-items: center;
  width: 54px; height: 54px;
  margin-bottom: 20px;
  border: 1px solid var(--line-2);
  border-radius: 15px;
  background: rgba(0, 165, 81, .1);
  color: var(--accent);
  transition: transform .45s var(--ease), background-color .45s var(--ease), color .45s var(--ease);
}
.card-icon svg { width: 25px; height: 25px; }
.card:hover .card-icon {
  transform: translateY(-3px) rotate(-6deg) scale(1.06);
  background: var(--grad);
  color: #FFFFFF;
}

.card h3 { font-size: 1.22rem; margin-bottom: 10px; }
.card p  { color: var(--muted); font-size: .94rem; margin-bottom: 16px; }
.card-meta {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 999px;
  background: rgba(35, 31, 32, .05);
  border: 1px solid var(--line);
  font-size: .74rem;
  color: #58595B;
  letter-spacing: .03em;
}

/* ---------- All-India pickup ---------- */
.pickup-section {
  position: relative;
  overflow: hidden;
  background: var(--bg-2);
  border-block: 1px solid var(--line);
  padding-bottom: 0;
}
.pickup-glow {
  position: absolute;
  width: 760px; height: 760px;
  top: -22%; right: -16%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 165, 81, .22), transparent 66%);
  filter: blur(50px);
  pointer-events: none;
  animation: floaty 16s ease-in-out infinite;
}

.pickup-grid {
  position: relative;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(30px, 5vw, 64px);
  align-items: center;
  padding-bottom: clamp(60px, 8vw, 96px);
}
.pickup-copy h2 { font-size: clamp(2rem, 4.6vw, 3.1rem); margin-bottom: 14px; }
.pickup-copy .section-sub { margin-bottom: 30px; }

.pill-hot {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 7px 16px 7px 12px;
  margin-bottom: 20px;
  border-radius: 999px;
  border: 1px solid rgba(0, 165, 81, .4);
  background: rgba(0, 165, 81, .12);
  color: var(--accent-soft);
  font-family: var(--font-display);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.pickup-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 32px;
}
.pstat {
  padding: 18px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: #FFFFFF;
  box-shadow: var(--shadow-rest);
  text-align: center;
  transition: transform .35s var(--ease), border-color .35s var(--ease);
}
.pstat:hover { transform: translateY(-5px); border-color: rgba(0, 165, 81, .4); }
.pstat strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  font-weight: 800;
  line-height: 1;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-variant-numeric: tabular-nums;
}
.pstat strong small { font-size: .5em; margin-left: 2px; }
.pstat span { font-size: .74rem; color: var(--muted); }

/* --- the dotted map --- */
.pickup-map { position: relative; }
.pickup-map svg { width: 100%; height: auto; max-height: 560px; overflow: visible; }

.map-dot {
  fill: rgba(35, 31, 32, .16);
  opacity: 0;
  animation: dotIn .6s var(--ease) forwards;
}
@keyframes dotIn {
  from { opacity: 0; transform: scale(.2); }
  to   { opacity: 1; transform: scale(1); }
}

.map-route {
  fill: none;
  stroke: var(--accent);
  stroke-width: 1.4;
  stroke-opacity: .5;
  stroke-linecap: round;
  stroke-dasharray: 100;
  stroke-dashoffset: 100;
  animation: routeIn 1.3s var(--ease) forwards;
}
@keyframes routeIn { to { stroke-dashoffset: 0; } }

/* Trucks running the routes out of the hub */
.map-truck { filter: drop-shadow(0 0 6px rgba(243, 129, 32, .85)); }
.truck-body  { fill: #F38120; }
.truck-cab   { fill: var(--accent); }
.truck-wheel { fill: #231F20; stroke: #F38120; stroke-width: 1; }

.pin-ring { fill: none; stroke: var(--accent-2); stroke-width: 1.6; }
.pin-dot  { fill: var(--accent-2); filter: drop-shadow(0 0 6px rgba(243, 129, 32, .85)); }

.hub-halo { fill: none; stroke: var(--accent); stroke-width: 2; }
.hub-dot  { fill: var(--accent); filter: drop-shadow(0 0 12px rgba(0, 165, 81, 1)); }

.map-label {
  font-family: var(--font-body);
  font-size: 13px;
  fill: #58595B;
  paint-order: stroke;
  stroke: rgba(241, 241, 240, .92);
  stroke-width: 3px;
}
.hub-label {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  fill: var(--accent-soft);
}

/* --- scroll-driven delivery lane --- */
.lane {
  position: relative;
  padding: 34px 0 44px;
  border-top: 1px solid var(--line);
  background: #FFFFFF;
  overflow: hidden;   /* clips the exhaust trail at the section edge */
}
.lane-caption {
  text-align: center;
  font-size: .78rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 46px;
}

.lane-rail { position: relative; }

.lane-track {
  position: absolute;
  left: 0; right: 0; top: 5px;
  height: 3px;
  border-radius: 3px;
  background: repeating-linear-gradient(90deg,
    rgba(35, 31, 32, .18) 0 14px, transparent 14px 30px);
}
.lane-fill {
  display: block;
  height: 100%;
  width: 0;
  border-radius: 3px;
  background: var(--grad);
  box-shadow: 0 0 16px rgba(0, 165, 81, .75);
}

.lane-truck {
  position: absolute;
  top: -22px;
  left: 0;
  width: 54px;
  color: var(--accent);
  filter: drop-shadow(0 4px 14px rgba(0, 165, 81, .7));
  will-change: transform;
}
/* Exhaust puff trailing the cab */
.truck-puff {
  position: absolute;
  right: 100%; top: 42%;
  width: 26px; height: 6px;
  margin-right: 2px;
  border-radius: 999px;
  background: linear-gradient(270deg, rgba(0, 165, 81, .55), transparent);
  animation: puff 1.1s ease-out infinite;
}
@keyframes puff {
  0%   { opacity: .7; transform: scaleX(.5); }
  100% { opacity: 0;  transform: scaleX(1.5) translateX(-8px); }
}

.lane-stops {
  position: relative;
  display: flex;
  justify-content: space-between;
}
.lane-stops li {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  flex: 1;
}
.lane-stops li:first-child { align-items: flex-start; }
.lane-stops li:last-child  { align-items: flex-end; }

.stop-dot {
  width: 13px; height: 13px;
  border-radius: 50%;
  background: var(--bg-2);
  border: 2px solid var(--line-2);
  transition: background-color .4s var(--ease), border-color .4s var(--ease),
              box-shadow .4s var(--ease), transform .4s var(--ease);
}
.lane-stops em {
  font-family: var(--font-display);
  font-size: .82rem;
  font-style: normal;
  color: var(--muted);
  white-space: nowrap;
  transition: color .4s var(--ease);
}
.lane-stops li.passed .stop-dot {
  background: var(--accent);
  border-color: var(--accent);
  box-shadow: 0 0 16px rgba(0, 165, 81, .9);
  transform: scale(1.18);
}
.lane-stops li.passed em { color: var(--text); }

.stop-hub .stop-dot { width: 17px; height: 17px; }
.stop-hub em { color: #3A3536; font-weight: 600; }
.stop-hub.passed .stop-dot { box-shadow: 0 0 22px rgba(0, 165, 81, 1); }

/* ---------- Why us ---------- */
.why-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(36px, 6vw, 80px);
  align-items: center;
}
.why-copy .section-sub { margin-bottom: 34px; }
.why-copy h2 { font-size: clamp(1.9rem, 3.9vw, 2.8rem); margin-bottom: 16px; }

.feature-list { display: grid; gap: 22px; }
.feature-list li { display: flex; gap: 16px; }
.feature-ico {
  display: grid;
  place-items: center;
  width: 42px; height: 42px;
  flex: none;
  border-radius: 12px;
  background: rgba(0, 165, 81, .12);
  border: 1px solid rgba(0, 165, 81, .26);
  color: var(--accent);
  font-size: 1.05rem;
  transition: transform .35s var(--ease);
}
.feature-list li:hover .feature-ico { transform: scale(1.08) rotate(-8deg); }
.feature-list strong { font-family: var(--font-display); font-size: 1.02rem; }
.feature-list p { color: var(--muted); font-size: .92rem; }

.stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.stat {
  padding: 30px 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(165deg, #FFFFFF, #F7F7F6);
  box-shadow: var(--shadow-rest);
  text-align: center;
  transition: transform .4s var(--ease), border-color .4s var(--ease);
}
.stat:hover { transform: translateY(-6px); border-color: rgba(0, 165, 81, .35); }
.stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.7rem);
  font-weight: 800;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-variant-numeric: tabular-nums;
}
.stat span { font-size: .85rem; color: var(--muted); }
.stat:nth-child(2), .stat:nth-child(3) { transform: translateY(18px); }
.stat:nth-child(2):hover, .stat:nth-child(3):hover { transform: translateY(12px); }

/* ---------- Timeline ---------- */
.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
  padding-top: 46px;
}
.timeline-line {
  position: absolute;
  top: 0; left: 6%; right: 6%;
  height: 2px;
  background: var(--line-2);
  border-radius: 2px;
}
/* Width is painted every frame by the scroll-progress loop — a CSS transition
   on top of that would fight the easing and lag behind the truck. */
.timeline-line i {
  display: block;
  height: 100%;
  width: 0;
  border-radius: 2px;
  background: var(--grad);
  box-shadow: 0 0 14px rgba(0, 165, 81, .7);
}

.timeline-truck {
  position: absolute;
  left: 0; top: 50%;
  width: 46px;
  margin-top: -15px;
  margin-left: -23px;
  color: var(--accent);
  opacity: 0;
  filter: drop-shadow(0 4px 14px rgba(0, 165, 81, .75));
  transition: opacity .35s var(--ease);
  will-change: transform;
}

.tl-item {
  position: relative;
  padding: 26px 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(165deg, #FFFFFF, #F7F7F6);
  box-shadow: var(--shadow-rest);
  transition: transform .4s var(--ease), border-color .4s var(--ease);
}
.tl-item::before {
  content: "";
  position: absolute;
  top: -47px; left: 50%;
  width: 13px; height: 13px;
  margin-left: -6.5px;
  border-radius: 50%;
  background: var(--bg);
  border: 2px solid var(--line-2);
  transition: background-color .4s var(--ease), border-color .4s var(--ease), box-shadow .4s var(--ease);
}
/* Lights up as the truck reaches this step. */
.tl-item.reached::before {
  background: var(--accent);
  border-color: var(--accent);
  box-shadow: 0 0 14px rgba(0, 165, 81, .9);
  transform: scale(1.25);
}
.tl-item:hover { transform: translateY(-6px); border-color: rgba(0, 165, 81, .35); }
.tl-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2.1rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 12px;
  background: linear-gradient(180deg, rgba(35, 31, 32, .30), rgba(35, 31, 32, .07));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  transition: background .4s var(--ease);
}
.tl-item:hover .tl-num { background: var(--grad); -webkit-background-clip: text; background-clip: text; }
.tl-item h3 { font-size: 1.08rem; margin-bottom: 8px; }
.tl-item p  { color: var(--muted); font-size: .9rem; }

/* ---------- Regions ---------- */
.regions {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}
.region {
  padding: 26px 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(165deg, #FFFFFF, #F7F7F6);
  box-shadow: var(--shadow-rest);
  transition: transform .4s var(--ease), border-color .4s var(--ease), box-shadow .4s var(--ease);
}
.region:hover {
  transform: translateY(-6px);
  border-color: rgba(243, 129, 32, .35);
  box-shadow: 0 22px 50px -26px rgba(243, 129, 32, .5);
}
.region h3 { font-size: 1.1rem; margin-bottom: 14px; }
.flags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 14px; }
.flags span {
  padding: 5px 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(35, 31, 32, .04);
  font-size: .8rem;
  color: #403C3B;
  transition: transform .3s var(--ease), border-color .3s var(--ease);
}
.flags span:hover { transform: translateY(-2px); border-color: var(--line-2); }
.region-note { font-size: .82rem; color: var(--accent); font-weight: 500; }

/* ---------- Calculators ---------- */
.calc-section { position: relative; overflow: hidden; }
.calc-glow {
  position: absolute;
  width: 640px; height: 640px;
  top: 4%; left: -14%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(243, 129, 32, .16), transparent 68%);
  filter: blur(40px);
  pointer-events: none;
}

.calc {
  position: relative;
  border: 1px solid var(--line-2);
  border-radius: 24px;
  background: linear-gradient(165deg, #FFFFFF, #FAFAF9);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.calc-tabs {
  position: relative;
  display: flex;
  gap: 4px;
  padding: 8px;
  border-bottom: 1px solid var(--line);
  background: #F1F1F0;
}
.calc-tab {
  position: relative;
  z-index: 1;
  flex: 1;
  padding: 13px 18px;
  border: 0;
  border-radius: 12px;
  background: transparent;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .93rem;
  color: var(--muted);
  cursor: pointer;
  transition: color .3s var(--ease);
}
.calc-tab:hover { color: var(--text); }
.calc-tab.active { color: #FFFFFF; }
.calc-indicator {
  position: absolute;
  top: 8px; left: 8px;
  height: calc(100% - 16px);
  border-radius: 12px;
  background: var(--grad);
  box-shadow: 0 8px 22px -10px rgba(0, 165, 81, .9);
  transition: transform .45s var(--ease), width .45s var(--ease);
}

.calc-panel { padding: clamp(22px, 3.5vw, 34px); }
.calc-panel[hidden] { display: none; }
.calc-panel.active { animation: panelIn .45s var(--ease); }
@keyframes panelIn {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: none; }
}

.calc-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: clamp(20px, 3vw, 34px);
  align-items: start;
}
.calc-inputs { display: grid; gap: 16px; }
.dim-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.calc-hint { font-size: .85rem; color: var(--muted); }

.formula {
  padding: 14px 16px;
  border: 1px dashed var(--line-2);
  border-radius: var(--radius-sm);
  background: #F7F7F6;
  text-align: center;
}
.formula code {
  font-family: ui-monospace, "SFMono-Regular", Consolas, monospace;
  font-size: .84rem;
  color: var(--accent-2);
}

.calc-result {
  padding: 26px 24px;
  border: 1px solid rgba(0, 165, 81, .28);
  border-radius: var(--radius);
  background:
    radial-gradient(420px circle at 80% 0%, rgba(0, 165, 81, .16), transparent 62%),
    #FFFFFF;
}
.result-label {
  display: block;
  font-size: .76rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}
.result-amount {
  display: flex;
  align-items: baseline;
  gap: 3px;
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.4vw, 3rem);
  font-weight: 800;
  line-height: 1;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-variant-numeric: tabular-nums;
}
.result-amount .rupee { font-size: .55em; font-weight: 700; }
.result-amount .unit { margin-left: 4px; }
.result-range { font-size: .85rem; color: var(--muted); margin: 10px 0 20px; }
.result-range strong { color: #3A3536; font-weight: 600; }

.result-rows { display: grid; gap: 1px; margin-bottom: 20px; }
.result-rows > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  font-size: .88rem;
}
.result-rows > div:last-child { border-bottom: 0; }
.result-rows span { color: var(--muted); }
.result-rows strong { font-family: var(--font-display); font-weight: 600; font-variant-numeric: tabular-nums; }
.result-rows .highlight strong { color: var(--accent); }

.calc-result .btn { margin-bottom: 12px; }
.calc-result .btn svg { width: 18px; height: 18px; }
.calc-disclaimer { font-size: .76rem; color: #848484; line-height: 1.5; }

.weight-bars { display: grid; gap: 12px; margin-bottom: 20px; }
.wbar { display: grid; grid-template-columns: 86px 1fr; align-items: center; gap: 12px; }
.wbar-label { font-size: .8rem; color: var(--muted); }
.wbar-track {
  height: 8px;
  border-radius: 999px;
  background: rgba(35, 31, 32, .09);
  overflow: hidden;
}
.wbar-track i {
  display: block;
  height: 100%;
  width: 0;
  border-radius: 999px;
  background: var(--grad);
  transition: width .6s var(--ease);
}
.wbar-track i.alt { background: linear-gradient(120deg, #F38120, #FBB040); }

/* ---------- Owner card ---------- */
.owner-card {
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 28px);
  padding: clamp(22px, 3vw, 30px);
  margin-bottom: 26px;
  border: 1px solid var(--line-2);
  border-radius: var(--radius);
  background:
    radial-gradient(500px circle at 0% 0%, rgba(0, 165, 81, .14), transparent 60%),
    linear-gradient(165deg, #FFFFFF, #EFEFEE);
}
.owner-avatar {
  display: grid;
  place-items: center;
  width: 68px; height: 68px;
  flex: none;
  border-radius: 50%;
  background: var(--grad);
  color: #FFFFFF;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: .02em;
  box-shadow: 0 14px 30px -12px rgba(0, 165, 81, .9);
}
.owner-info { flex: 1; min-width: 0; }
.owner-info strong { display: block; font-family: var(--font-display); font-size: 1.15rem; }
.owner-role { display: block; font-size: .82rem; color: var(--accent); margin-bottom: 8px; }
.owner-info p { color: var(--muted); font-size: .92rem; font-style: italic; }
.owner-card .btn { flex: none; }

.footer-owner { margin-top: 10px !important; font-size: .88rem; }
.footer-owner strong { color: var(--text); font-weight: 600; }

/* ---------- Quote ---------- */
.quote-section { position: relative; overflow: hidden; }
.quote-glow {
  position: absolute;
  width: 620px; height: 620px;
  top: -30%; right: -10%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 165, 81, .2), transparent 68%);
  filter: blur(40px);
  pointer-events: none;
}
.quote-grid {
  position: relative;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(36px, 5vw, 70px);
  align-items: center;
}
.quote-copy h2 { font-size: clamp(1.9rem, 4vw, 2.9rem); margin-bottom: 16px; }
.quote-points { margin-top: 26px; display: grid; gap: 12px; }
.quote-points li {
  position: relative;
  padding-left: 28px;
  color: #403C3B;
  font-size: .95rem;
}
.quote-points li::before {
  content: "✓";
  position: absolute;
  left: 0; top: 0;
  width: 19px; height: 19px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(0, 165, 81, .16);
  color: var(--accent);
  font-size: .7rem;
  font-weight: 700;
}

.quote-form {
  display: grid;
  gap: 16px;
  padding: clamp(24px, 3.5vw, 36px);
  border: 1px solid var(--line-2);
  border-radius: 24px;
  background: linear-gradient(165deg, #FFFFFF, #FAFAF9);
  box-shadow: var(--shadow-lg);
}
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.field { position: relative; }
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 20px 16px 9px;
  border: 1px solid var(--line-2);
  border-radius: var(--radius-sm);
  background: #FFFFFF;
  font-size: .95rem;
  transition: border-color .3s var(--ease), box-shadow .3s var(--ease), background-color .3s var(--ease);
}
.field textarea { padding-top: 24px; resize: vertical; min-height: 92px; }
.field select { appearance: none; padding-top: 22px; cursor: pointer; }
.field select option { background: #FFFFFF; color: var(--text); }

.field::after {
  /* select caret */
  content: "";
  pointer-events: none;
}
.field:has(select)::after {
  position: absolute;
  right: 16px; top: 50%;
  width: 8px; height: 8px;
  margin-top: -6px;
  border-right: 2px solid var(--muted);
  border-bottom: 2px solid var(--muted);
  transform: rotate(45deg);
}

.field label {
  position: absolute;
  left: 17px; top: 15px;
  font-size: .95rem;
  color: var(--muted);
  pointer-events: none;
  transition: transform .25s var(--ease), font-size .25s var(--ease), color .25s var(--ease);
  transform-origin: 0 0;
}
.field input:focus + label,
.field textarea:focus + label,
.field input:not(:placeholder-shown) + label,
.field textarea:not(:placeholder-shown) + label,
.field label.static-label {
  transform: translateY(-9px) scale(.78);
  color: var(--accent);
}
.field label.static-label { color: var(--muted); }

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: #FFFFFF;
  box-shadow: 0 0 0 4px rgba(0, 165, 81, .13);
}
.field.invalid input,
.field.invalid select,
.field.invalid textarea {
  border-color: #D64545;
  box-shadow: 0 0 0 4px rgba(214, 69, 69, .14);
  animation: shake .4s var(--ease);
}
@keyframes shake {
  25% { transform: translateX(-5px); }
  50% { transform: translateX(5px); }
  75% { transform: translateX(-3px); }
}

.quote-form .btn svg { width: 19px; height: 19px; }
.form-note {
  text-align: center;
  font-size: .82rem;
  color: var(--muted);
  transition: color .25s var(--ease);
}
.form-note.error { color: #C0392B; }
.form-note.success { color: #0E7A38; }

/* ---------- FAQ ---------- */
.faq-list { display: grid; gap: 12px; }
.faq {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--surface);
  box-shadow: var(--shadow-rest);
  overflow: hidden;
  transition: border-color .3s var(--ease), background-color .3s var(--ease);
}
.faq[open] { border-color: rgba(0, 165, 81, .35); background: var(--surface-2); }
.faq summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 19px 22px;
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  list-style: none;
  transition: color .25s var(--ease);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary:hover { color: var(--accent-soft); }
.faq-ico {
  position: relative;
  width: 20px; height: 20px;
  flex: none;
  border-radius: 50%;
  border: 1px solid var(--line-2);
  transition: transform .35s var(--ease), background-color .35s var(--ease), border-color .35s var(--ease);
}
.faq-ico::before, .faq-ico::after {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  background: var(--accent);
  border-radius: 1px;
  transform: translate(-50%, -50%);
  transition: transform .35s var(--ease), opacity .35s var(--ease);
}
.faq-ico::before { width: 9px; height: 1.6px; }
.faq-ico::after  { width: 1.6px; height: 9px; }
.faq[open] .faq-ico { background: var(--accent); border-color: var(--accent); transform: rotate(180deg); }
.faq[open] .faq-ico::before { background: #FFFFFF; }
.faq[open] .faq-ico::after  { opacity: 0; transform: translate(-50%, -50%) scaleY(0); }

.faq-body { padding: 0 22px 20px; color: var(--muted); font-size: .94rem; }
.faq[open] .faq-body { animation: faqIn .38s var(--ease); }
@keyframes faqIn {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-bottom: 56px;
}
.contact-card {
  display: block;
  padding: 30px 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(165deg, #FFFFFF, #F7F7F6);
  box-shadow: var(--shadow-rest);
  transition: transform .4s var(--ease), border-color .4s var(--ease), box-shadow .4s var(--ease);
}
.contact-card:hover {
  transform: translateY(-7px);
  border-color: rgba(0, 165, 81, .4);
  box-shadow: var(--shadow);
}
.contact-ico {
  display: grid;
  place-items: center;
  width: 48px; height: 48px;
  margin-bottom: 18px;
  border-radius: 14px;
  background: rgba(0, 165, 81, .12);
  color: var(--accent);
  transition: transform .4s var(--ease), background-color .4s var(--ease), color .4s var(--ease);
}
.contact-ico svg { width: 22px; height: 22px; }
.contact-card:hover .contact-ico { background: var(--grad); color: #FFFFFF; transform: scale(1.07); }
.contact-card h3 { font-size: 1rem; color: var(--muted); font-weight: 600; margin-bottom: 6px; }
.contact-value { font-family: var(--font-display); font-size: 1.08rem; font-weight: 600; margin-bottom: 14px; }
.contact-link { font-size: .87rem; color: var(--accent); transition: letter-spacing .3s var(--ease); }
.contact-card:hover .contact-link { letter-spacing: .03em; }

.cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  padding: clamp(28px, 4vw, 44px);
  border: 1px solid transparent;
  border-radius: var(--radius);
  /* City-Link signature: a solid green band closing the page */
  background:
    radial-gradient(600px circle at 15% 20%, rgba(255, 255, 255, .16), transparent 60%),
    var(--grad);
  box-shadow: var(--shadow);
  color: #FFFFFF;
}
.cta-band h3 { font-size: clamp(1.3rem, 2.6vw, 1.8rem); margin-bottom: 6px; color: #FFFFFF; }
.cta-band p { color: rgba(255, 255, 255, .88); font-size: .95rem; }
.cta-band .btn-primary {
  background: #FFFFFF;
  color: var(--accent-soft);
  box-shadow: 0 12px 28px -14px rgba(35, 31, 32, .6);
}

/* ---------- Footer ---------- */
.site-footer {
  padding: 66px 0 26px;
  border-top: 1px solid var(--line);
  background: var(--bg-2);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.7fr 1fr 1fr 1.3fr;
  gap: 40px;
  padding-bottom: 44px;
}
.footer-brand p { color: var(--muted); font-size: .9rem; margin-top: 16px; max-width: 320px; }
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-col h4 {
  font-size: .78rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 6px;
}
.footer-col a {
  color: var(--muted);
  font-size: .9rem;
  width: fit-content;
  transition: color .25s var(--ease), transform .25s var(--ease);
}
.footer-col a:hover { color: var(--accent); transform: translateX(4px); }
.footer-addr { color: var(--muted); font-size: .9rem; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  color: #848484;
  font-size: .85rem;
}

/* ---------- Floating actions ---------- */
.wa-float {
  position: fixed;
  right: 22px; bottom: 22px;
  z-index: 130;
  display: grid;
  place-items: center;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: var(--wa);
  color: #fff;
  box-shadow: 0 14px 34px -10px rgba(37, 211, 102, .8);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.wa-float svg { width: 30px; height: 30px; }
.wa-float::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid var(--wa);
  animation: waRing 2.4s ease-out infinite;
}
@keyframes waRing {
  0%   { transform: scale(1);   opacity: .8; }
  100% { transform: scale(1.7); opacity: 0; }
}
.wa-float:hover { transform: scale(1.08) translateY(-3px); }
.wa-tip {
  position: absolute;
  right: 72px;
  padding: 8px 14px;
  border-radius: 10px;
  background: var(--surface-2);
  border: 1px solid var(--line-2);
  color: var(--text);
  font-size: .82rem;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(8px);
  pointer-events: none;
  transition: opacity .3s var(--ease), transform .3s var(--ease);
}
.wa-float:hover .wa-tip { opacity: 1; transform: translateX(0); }

.to-top {
  position: fixed;
  right: 26px; bottom: 92px;
  z-index: 129;
  display: grid;
  place-items: center;
  width: 44px; height: 44px;
  border: 1px solid var(--line-2);
  border-radius: 50%;
  background: rgba(255, 255, 255, .94);
  backdrop-filter: blur(8px);
  color: var(--text);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity .35s var(--ease), transform .35s var(--ease), visibility .35s,
              border-color .3s var(--ease), color .3s var(--ease);
}
.to-top svg { width: 19px; height: 19px; }
.to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.to-top:hover { border-color: var(--accent); color: var(--accent); }

/* ---------- Scroll reveal ----------
   Scoped to .js so the page degrades to fully visible without JavaScript. */
.js [data-reveal] {
  opacity: 0;
  transform: translateY(38px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
  will-change: opacity, transform;
}
.js [data-reveal].is-visible { opacity: 1; transform: none; }

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-copy { max-width: 640px; margin-inline: auto; }
  .hero-sub { margin-inline: auto; }
  .hero-actions, .hero-trust { justify-content: center; }
  .hero-visual { max-width: 470px; margin: 26px auto 0; }
  .why-grid, .quote-grid, .calc-grid { grid-template-columns: 1fr; }
  .pickup-grid { grid-template-columns: 1fr; text-align: center; }
  .pickup-copy .section-sub { margin-inline: auto; }
  .pickup-map { max-width: 460px; margin-inline: auto; }
  .timeline { grid-template-columns: repeat(2, 1fr); row-gap: 46px; }
  .timeline-line { display: none; }
  .tl-item::before { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 34px; }
}

@media (max-width: 860px) {
  .nav-toggle { display: block; }

  /* backdrop-filter turns the header into the containing block for fixed
     descendants, which clips the drawer below to the header box once the page
     is scrolled. The scrolled background is near-opaque anyway. */
  .site-header.scrolled {
    backdrop-filter: none;
    background: rgba(255, 255, 255, .97);
  }

  .nav {
    position: fixed;
    inset: 0 0 0 auto;
    width: min(330px, 84vw);
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    gap: 6px;
    padding: 90px 26px 40px;
    background: linear-gradient(180deg, var(--surface), var(--bg));
    border-left: 1px solid var(--line-2);
    box-shadow: -30px 0 70px -30px rgba(35, 31, 32, .28);
    transform: translateX(100%);
    transition: transform .45s var(--ease);
    z-index: 115;
  }
  .nav.open { transform: translateX(0); }
  .nav > a:not(.nav-cta) {
    padding: 14px 12px;
    font-size: 1.05rem;
    font-family: var(--font-display);
    border-bottom: 1px solid var(--line);
    border-radius: 0;
    opacity: 0;
    transform: translateX(24px);
  }
  .nav.open > a { animation: navIn .5s var(--ease) forwards; }
  .nav.open > a:nth-child(1) { animation-delay: .06s; }
  .nav.open > a:nth-child(2) { animation-delay: .12s; }
  .nav.open > a:nth-child(3) { animation-delay: .18s; }
  .nav.open > a:nth-child(4) { animation-delay: .24s; }
  .nav.open > a:nth-child(5) { animation-delay: .30s; }
  .nav.open > a:nth-child(6) { animation-delay: .36s; }
  .nav.open > a:nth-child(7) { animation-delay: .42s; }
  .nav.open > a:nth-child(8) { animation-delay: .48s; }
  @keyframes navIn { to { opacity: 1; transform: translateX(0); } }
  .nav > a:not(.nav-cta)::after { display: none; }
  .nav-cta { margin: 20px 0 0; opacity: 0; transform: translateX(24px); }
}

@media (max-width: 640px) {
  :root { --header-h: 66px; }

  .container, .container.narrow { width: min(100%, 100% - 32px); }

  .hero { min-height: auto; padding: calc(var(--header-h) + 42px) 0 66px; }
  .hero-title { font-size: clamp(2.1rem, 9vw, 2.9rem); }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { width: 100%; }
  .hero-trust { gap: 10px 18px; font-size: .84rem; }
  .scroll-cue { display: none; }

  .track-card { padding: 20px 18px; }
  .float-badge { padding: 10px 14px; }
  .fb-1 { top: -50px; left: -6px; }
  .fb-2 { bottom: -18px; right: -6px; }
  .float-badge strong { font-size: 1.05rem; }

  .stats { gap: 12px; }
  .stat { padding: 22px 14px; }
  .stat:nth-child(2), .stat:nth-child(3) { transform: none; }
  .stat:nth-child(2):hover, .stat:nth-child(3):hover { transform: translateY(-6px); }

  .timeline { grid-template-columns: 1fr; row-gap: 16px; padding-top: 0; }
  .field-row { grid-template-columns: 1fr; }

  .calc-tabs { flex-direction: column; }
  .calc-tab { padding: 12px 14px; font-size: .88rem; }
  .calc-indicator { display: none; }
  .calc-tab.active { background: var(--grad); box-shadow: 0 8px 22px -10px rgba(0, 165, 81, .9); }
  .dim-row { grid-template-columns: 1fr 1fr; }
  .dim-row .field:last-child { grid-column: 1 / -1; }
  .calc-result { padding: 22px 18px; }
  .wbar { grid-template-columns: 74px 1fr; }

  .owner-card { flex-direction: column; align-items: flex-start; text-align: left; }
  .owner-card .btn { width: 100%; }

  .badge-hot { padding: 7px 12px 7px 10px; }
  .badge-hot strong { font-size: .76rem; }
  .pickup-stats { gap: 8px; }
  .pstat { padding: 14px 8px; }
  .pstat span { font-size: .68rem; }
  .pickup-copy .btn { width: 100%; }
  /* City labels get illegible at phone widths — the pins still tell the story. */
  .map-labels { display: none; }
  .hub-label { font-size: 19px; }

  .lane { padding: 26px 0 32px; }
  .lane-caption { margin-bottom: 38px; font-size: .7rem; }
  .lane-truck { width: 40px; top: -18px; }
  .lane-stops em { font-size: .68rem; }
  /* Middle labels would collide at this width; the dots keep the rhythm. */
  .lane-stops li:not(:first-child):not(:last-child):not(.stop-hub) em { display: none; }

  .cta-band { flex-direction: column; align-items: flex-start; text-align: left; }
  .cta-band .btn { width: 100%; }

  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .wa-float { right: 16px; bottom: 16px; width: 54px; height: 54px; }
  .wa-tip { display: none; }
  .to-top { right: 20px; bottom: 82px; width: 40px; height: 40px; }

  .marquee-group { gap: 28px; padding-right: 28px; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .js [data-reveal] { opacity: 1; transform: none; }
  .hero-title .word { opacity: 1; transform: none; }
  .marquee-track { animation: none; }
  .map-dot { opacity: 1; }
  .map-route { stroke-dashoffset: 0; }
  .truck-puff { display: none; }
  .tl-item::before { transform: none; }
}
