/* ===== TOKENS ===== */
:root {
  --bg:        #070b11;
  --bg-card:   rgba(17,26,38,.82);
  --navy:      #0d2440;
  --steel:     #6d92b8;
  --steel-dim: #46637f;
  --line:      rgba(140,170,200,.18);
  --line-soft: rgba(140,170,200,.10);
  --txt:       #f1f5f9;
  --txt-dim:   #c3cfdc;
  --txt-faint: #93a2b4;
  --accent:    #ffc233;
  --accent-2:  #ffd76b;
  --radius:    16px;
  --maxw:      1180px;
  --ease:      cubic-bezier(.2,.7,.2,1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-stopped { overflow: hidden; }

body {
  background: #ffffff;
  color: var(--txt);
  font-family: 'Inter', system-ui, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
h1, h2, h3, .stat__num, .logo-chip, .statement__line { font-family: 'Hanken Grotesk', 'Inter', sans-serif; letter-spacing: -.02em; }
.accent { color: var(--accent); }
a { color: inherit; text-decoration: none; }

/* ===== INTRO / LOGO REVEAL ===== */
.intro {
  position: fixed; inset: 0; z-index: 1000;
  display: grid; place-items: center;
  background: radial-gradient(120% 90% at 50% 40%, #0c1626, #05080d 70%);
}
.intro__inner { display: flex; flex-direction: column; align-items: center; gap: 20px; }
.intro__logo {
  width: min(440px, 72vw); height: auto;
  opacity: 0; transform: translateY(14px) scale(.94); filter: blur(10px);
}
.intro__line { width: 0; height: 3px; background: var(--accent); border-radius: 2px; }
.intro.play .intro__logo { animation: introLogo 1.05s var(--ease) .12s forwards; }
.intro.play .intro__line { animation: introLine .7s var(--ease) .95s forwards; }
@keyframes introLogo { to { opacity: 1; transform: none; filter: blur(0); } }
@keyframes introLine { to { width: min(440px, 72vw); } }
.intro.hide { animation: introOut .65s var(--ease) forwards; pointer-events: none; }
@keyframes introOut { to { opacity: 0; transform: translateY(-16px); visibility: hidden; } }
html.intro-lock, html.intro-lock body { overflow: hidden !important; height: 100%; }
@media (prefers-reduced-motion: reduce) {
  .intro__logo { opacity: 1; transform: none; filter: none; }
  .intro.play .intro__logo, .intro.play .intro__line { animation: none; }
  .intro__line { width: min(440px, 72vw); }
}

/* ===== FIXED ASPHALT BACKGROUND (two yellow stripes @ 85% over white) ===== */
.bg-asphalt {
  position: fixed; inset: 0; z-index: -2;
  background: url("assets/bg-stripes.jpg") center center / cover no-repeat;
  opacity: .85;
}
.bg-asphalt::after { /* even, darker scrim so light-grey text stays readable (stripes still show) */
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(7,11,17,.70), rgba(7,11,17,.76));
}

/* ===== NAV ===== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px clamp(20px, 5vw, 56px);
  transition: background .35s var(--ease), border-color .35s, padding .35s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(7,11,17,.7); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line); padding-top: 10px; padding-bottom: 10px;
}
.brand { display: flex; align-items: center; }
.brand__logo { height: 46px; width: auto; display: block; transition: height .35s var(--ease); }
.nav.scrolled .brand__logo { height: 38px; }
.nav__links { display: flex; align-items: center; gap: 4px; }
.nav__links a { padding: 9px 15px; border-radius: 9px; font-size: .94rem; font-weight: 500; color: var(--txt-dim); transition: color .2s, background .2s; }
.nav__links a:hover { color: var(--txt); background: var(--line-soft); }
.nav__phone { display: inline-flex; align-items: center; gap: 8px; font-weight: 700 !important; color: var(--txt) !important; margin-left: 6px; }
.nav__phone-svg { width: 15px; height: 15px; fill: var(--accent); filter: drop-shadow(0 0 5px rgba(255,194,51,.6)); }
.nav__cta { background: var(--accent) !important; color: #1a1303 !important; font-weight: 700 !important; margin-left: 8px; }
.nav__cta:hover { background: var(--accent-2) !important; transform: translateY(-1px); }
.mobile-menu__phone { color: var(--txt) !important; }
.nav__call { display: none; place-items: center; width: 42px; height: 42px; border-radius: 50%; background: rgba(255,194,51,.16); border: 1px solid rgba(255,194,51,.4); margin-left: auto; margin-right: 12px; flex-shrink: 0; }
.nav__call svg { width: 18px; height: 18px; fill: var(--accent); }
.nav__burger { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav__burger span { width: 24px; height: 2px; background: var(--txt); border-radius: 2px; transition: .3s var(--ease); }
.nav__burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger.open span:nth-child(2) { opacity: 0; }
.nav__burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-menu { position: fixed; inset: 0 0 auto 0; z-index: 90; background: rgba(7,11,17,.98); backdrop-filter: blur(12px); display: flex; flex-direction: column; gap: 4px; padding: 96px 24px 32px; transform: translateY(-110%); transition: transform .4s var(--ease); }
.mobile-menu.open { transform: translateY(0); }
.mobile-menu a { padding: 16px 12px; font-size: 1.3rem; font-weight: 500; border-bottom: 1px solid var(--line-soft); }
.mobile-menu__cta { color: var(--accent) !important; }

/* ===== BUTTONS ===== */
.btn { display: inline-flex; align-items: center; gap: 9px; padding: 14px 24px; border-radius: 11px; font-weight: 700; font-size: .98rem; cursor: pointer; border: 1px solid transparent; transition: all .25s var(--ease); font-family: inherit; }
.btn--primary { background: var(--accent); color: #1a1303; }
.btn--primary:hover { background: var(--accent-2); transform: translateY(-2px); box-shadow: 0 14px 34px -12px rgba(255,194,51,.55); }
.btn--ghost { background: rgba(255,255,255,.03); color: var(--txt); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--steel); }
.btn--block { width: 100%; justify-content: center; }
.btn__arrow { transition: transform .25s var(--ease); }
.btn:hover .btn__arrow { transform: translateX(4px); }

/* ===== SCROLLY VIDEO HERO ===== */
.scrolly { position: relative; height: 300vh; z-index: 1; }
.scrolly__sticky { position: sticky; top: 0; height: 100vh; overflow: hidden; background: #05080d; }
.scrolly__video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 32% center; }
.scrolly__canvas { display: none; position: absolute; inset: 0; width: 100%; height: 100%; }
@media (pointer: coarse) {
  .scrolly__video { display: none; }
  .scrolly__canvas { display: block; }
}
.scrolly__scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(5,8,13,.55) 0%, rgba(5,8,13,.05) 30%, rgba(5,8,13,.15) 60%, rgba(5,8,13,.85) 100%),
    radial-gradient(90% 70% at 50% 50%, transparent 40%, rgba(5,8,13,.5));
}
.scrolly__texts { position: absolute; inset: 0; display: grid; place-items: center; padding: 0 24px; }
.stext {
  grid-area: 1 / 1; text-align: center; max-width: 22ch;
  font-family: 'Hanken Grotesk', 'Inter', sans-serif;
  font-size: clamp(2rem, 6.2vw, 5.2rem); font-weight: 700; line-height: 1.06;
  letter-spacing: -.015em;
  color: #fff; text-shadow: 0 4px 40px rgba(0,0,0,.55);
  pointer-events: none;
}
/* first sentence always on a single line */
.stext--line1 { max-width: none; white-space: nowrap; font-size: clamp(1.5rem, 5.4vw, 4.8rem); }
/* keep every word intact — never split across two lines */
.stext .word { display: inline-block; white-space: nowrap; }
/* letters are revealed WITH the scroll; the letter at the writing edge
   glows in the accent colour, then settles to white as the next is written */
.stext .ch { display: inline-block; opacity: 0; color: #fff; transition: opacity .26s var(--ease), color .3s var(--ease); }
.stext .ch.on { opacity: 1; }
.stext .ch.cur { color: var(--accent); }
.stext .accent { color: var(--accent); }

/* lines 2 & 3 as clean glass boxes, one left, one right */
.stext--box {
  max-width: min(460px, 86vw);
  text-align: left;
  font-size: clamp(1.45rem, 3.2vw, 2.5rem);
  font-weight: 700; line-height: 1.12; letter-spacing: -.01em;
  padding: 30px 34px;
  background: rgba(9, 15, 24, .55);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(140, 170, 200, .22);
  border-radius: 20px;
  box-shadow: 0 34px 90px -34px rgba(0, 0, 0, .75);
  text-shadow: none;
  opacity: 0;
  transition: opacity .55s var(--ease), transform .7s var(--ease);
}
.stext--left  { justify-self: start; margin-left: clamp(20px, 7vw, 120px); border-left: 3px solid var(--accent); }
.stext--right { justify-self: end;   margin-right: clamp(20px, 7vw, 120px); border-right: 3px solid var(--accent); }
.stext--left  { transform: translateX(-46px); }
.stext--right { transform: translateX(46px); }
.stext--box.is-active { opacity: 1; transform: translateX(0); }

@media (max-width: 600px) {
  .stext--left, .stext--right { justify-self: center; margin: 0 16px; }
}

.scroll-cue { position: absolute; bottom: 34px; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 10px; color: var(--txt-dim); font-size: .8rem; letter-spacing: .12em; text-transform: uppercase; transition: opacity .4s; }
.scroll-cue__line { width: 2px; height: 40px; background: linear-gradient(var(--accent), transparent); border-radius: 2px; animation: cue 1.8s var(--ease) infinite; }
@keyframes cue { 0% { transform: scaleY(.3); transform-origin: top; opacity: 1; } 60%,100% { transform: scaleY(1); transform-origin: top; opacity: 0; } }

/* ===== SECTIONS ===== */
.section { position: relative; z-index: 1; max-width: var(--maxw); margin: 0 auto; padding: clamp(76px, 11vw, 130px) clamp(20px, 5vw, 56px); }
.section__head { max-width: 720px; margin-bottom: 52px; }
.kicker { display: inline-flex; align-items: center; gap: 10px; font-size: .8rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--accent); margin-bottom: 18px; }
.kicker__dash { width: 26px; height: 3px; background: var(--accent); border-radius: 2px; }
.section h2 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 700; line-height: 1.05; letter-spacing: -.03em; }
.section__sub { color: var(--txt-dim); font-size: 1.12rem; margin-top: 18px; max-width: 620px; line-height: 1.6; }

/* ===== VALUE PROP + STATS ===== */
.vp { position: relative; isolation: isolate; border-radius: 0; }
.vp::before {
  content: ''; position: absolute; top: 0; bottom: 0; left: 50%; transform: translateX(-50%);
  width: 100vw; z-index: -1;
  background:
    linear-gradient(180deg, rgba(7,11,17,.60), rgba(7,11,17,.82)),
    url("assets/winter.jpg") center center / cover no-repeat;
}
.vp__inner { max-width: 880px; }
.vp__title { font-size: clamp(1.8rem, 4vw, 3rem); font-weight: 700; line-height: 1.1; letter-spacing: -.03em; }
.vp__lead { color: var(--txt-dim); font-size: clamp(1.05rem, 1.6vw, 1.25rem); line-height: 1.65; margin-top: 22px; max-width: 720px; }
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; margin-top: 56px; border-top: 1px solid var(--line); }
.stat { padding: 28px 22px 4px; border-right: 1px solid var(--line-soft); }
.stat:last-child { border-right: 0; }
.stat__num { display: block; font-size: clamp(1.5rem, 2.6vw, 2.1rem); font-weight: 700; color: var(--accent); letter-spacing: -.02em; line-height: 1.1; }
.stat__label { display: block; margin-top: 8px; color: var(--txt-dim); font-size: .92rem; }

/* ===== SERVICES WALL ===== */
.logos { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.logo-chip {
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 16px;
  padding: 36px 18px; min-height: 150px; text-align: center;
  background: var(--bg-card); border: 1px solid var(--line); border-radius: 14px;
  backdrop-filter: blur(6px); transition: all .35s var(--ease);
}
.logo-chip__ico { color: var(--steel); transition: color .3s; }
.logo-chip__ico svg { width: 46px; height: auto; }
.logo-chip__ico svg circle { fill: currentColor; }
.logo-chip span:not(.logo-chip__ico) { font-size: clamp(1rem, 1.4vw, 1.25rem); font-weight: 700; color: var(--txt); letter-spacing: .01em; line-height: 1.3; }
.logo-chip:hover { border-color: rgba(255,194,51,.45); transform: translateY(-5px); }
.logo-chip:hover .logo-chip__ico { color: var(--accent); }

/* ===== CAPABILITIES — stacking cards on scroll ===== */
.capa { display: flex; flex-direction: column; gap: 26px; }
.capa__card {
  position: sticky; top: calc(104px + var(--i, 0) * 26px);
  display: flex; align-items: center; gap: 44px;
  min-height: 40vh; padding: clamp(30px, 4vw, 54px);
  background: var(--bg-card); border: 1px solid var(--line); border-radius: 22px;
  backdrop-filter: blur(12px); overflow: hidden;
  box-shadow: 0 44px 100px -50px rgba(0, 0, 0, .9);
  transition: border-color .35s var(--ease);
}
.capa__card:hover { border-color: rgba(255, 194, 51, .45); }
.capa__card::after { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 3px; background: var(--accent); transform: scaleY(0); transform-origin: top; transition: transform .45s var(--ease); }
.capa__card:hover::after { transform: scaleY(1); }
.capa__truck { color: var(--steel); flex-shrink: 0; transition: color .3s; }
.capa__truck svg { width: clamp(112px, 16vw, 172px); height: auto; }
.capa__truck svg circle { fill: currentColor; }
.capa__card:hover .capa__truck { color: var(--accent); }
.capa__body { flex: 1; }
.capa__card h3 { font-size: clamp(1.6rem, 3vw, 2.3rem); margin-bottom: 12px; font-weight: 700; letter-spacing: -.02em; }
.capa__card p { color: var(--txt-dim); font-size: 1.08rem; max-width: 540px; line-height: 1.6; }
.capa__card--feature { background: linear-gradient(150deg, rgba(255, 194, 51, .12), var(--bg-card) 55%); border-color: rgba(255, 194, 51, .34); }
.capa__card--feature .capa__truck { color: var(--accent); }
.capa__badge { position: absolute; top: 26px; right: 28px; font-size: .72rem; font-weight: 700; color: #1a1303; background: var(--accent); padding: 5px 12px; border-radius: 100px; }

/* ===== TRUST ROW ===== */
.trust { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px 40px; margin-top: 28px; padding-top: 34px; border-top: 1px solid var(--line); }
.trust__item { display: flex; gap: 14px; align-items: center; }
.trust__ico { flex-shrink: 0; display: grid; place-items: center; width: 42px; height: 42px; border-radius: 11px; background: rgba(255,194,51,.12); color: var(--accent); }
.trust__ico svg { width: 22px; height: 22px; }
.trust__ico svg circle { fill: currentColor; }
.trust__item strong { display: block; font-weight: 700; font-size: 1.02rem; margin-bottom: 4px; }
.trust__item span { color: var(--txt-dim); font-size: .9rem; line-height: 1.5; }

/* ===== STATEMENT (card) ===== */
.statement { text-align: center; }
.statement__card {
  position: relative; max-width: 980px; margin: 0 auto; text-align: center; overflow: hidden;
  border: 1px solid var(--line); border-radius: 26px;
  padding: clamp(48px, 7vw, 100px) clamp(26px, 5vw, 64px);
  background:
    linear-gradient(180deg, rgba(7,11,17,.64), rgba(7,11,17,.80)),
    url("assets/statement.jpg") center center / cover no-repeat;
}
.statement__line { font-size: clamp(1.9rem, 5vw, 3.8rem); font-weight: 700; line-height: 1.08; letter-spacing: -.03em; }
.statement__line--dim { color: var(--txt-dim); }
.statement__btn { margin-top: 44px; }

/* ===== DEKNING / REACH ===== */
.reach__top { display: grid; grid-template-columns: 1.1fr .9fr; gap: 40px; align-items: end; margin-bottom: 8px; }
.reach__lead { color: var(--txt-dim); font-size: 1.12rem; line-height: 1.65; max-width: 460px; }
.reach h2 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 700; line-height: 1.05; letter-spacing: -.03em; }

.reach__list { margin: 48px 0 28px; border-top: 1px solid var(--line); }
.region {
  display: grid; grid-template-columns: auto 1fr; align-items: baseline; gap: 24px;
  padding: 24px 6px; border-bottom: 1px solid var(--line-soft);
  transition: padding-left .35s var(--ease), background .35s var(--ease);
}
.region:hover { padding-left: 18px; background: linear-gradient(90deg, rgba(255,194,51,.06), transparent 60%); }
.region__no { font-size: .85rem; font-weight: 600; color: var(--txt-faint); font-variant-numeric: tabular-nums; }
.region__name { font-size: clamp(1.4rem, 3vw, 2.2rem); font-weight: 600; letter-spacing: -.02em; transition: color .3s; }
.region:hover .region__name { color: var(--accent); }

.reach__base {
  display: flex; align-items: center; gap: 18px; flex-wrap: wrap;
  padding: 22px 26px; border: 1px solid var(--line); border-radius: 16px;
  background: var(--bg-card); backdrop-filter: blur(6px);
  transition: border-color .3s var(--ease), transform .3s var(--ease);
}
.reach__base:hover { border-color: rgba(255,194,51,.45); transform: translateY(-2px); }
.reach__base-pin { width: 12px; height: 12px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 5px rgba(255,194,51,.18); flex-shrink: 0; }
.reach__base-text { display: flex; flex-direction: column; }
.reach__base-label { font-size: .76rem; text-transform: uppercase; letter-spacing: .14em; color: var(--txt-faint); }
.reach__base-addr { font-size: 1.15rem; font-weight: 600; color: var(--txt); margin-top: 2px; }
.reach__base-go { margin-left: auto; color: var(--accent); font-weight: 600; font-size: .95rem; }

/* ===== CTA ===== */
.cta__box {
  position: relative; max-width: 760px; margin: 0 auto; text-align: center;
  border: 1px solid var(--line); border-radius: 26px; padding: clamp(40px, 6vw, 68px); overflow: hidden;
  background:
    linear-gradient(180deg, rgba(7, 11, 17, .42), rgba(7, 11, 17, .62)),
    url("assets/highway.jpg") center / cover no-repeat;
}
.cta__glow { position: absolute; top: -40%; left: 50%; transform: translateX(-50%); width: 500px; height: 400px; background: radial-gradient(circle, rgba(255,194,51,.2), transparent 65%); pointer-events: none; }
.cta__box > * { position: relative; }
.cta__box .kicker { justify-content: center; }
.cta__box p { color: var(--txt-dim); font-size: 1.1rem; margin-top: 16px; max-width: 480px; margin-left: auto; margin-right: auto; }
.cta__form { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin: 36px 0 28px; text-align: left; }
.field { position: relative; }
.field--full { grid-column: 1 / -1; }
.field input, .field textarea { width: 100%; background: rgba(5,8,13,.6); border: 1px solid var(--line); border-radius: 11px; padding: 18px 16px 8px; color: var(--txt); font-family: inherit; font-size: 1rem; resize: vertical; transition: border-color .25s; }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--accent); }
.field label { position: absolute; left: 16px; top: 15px; color: var(--txt-faint); font-size: 1rem; pointer-events: none; transition: all .2s var(--ease); }
.field input:focus + label, .field input:not(:placeholder-shown) + label,
.field textarea:focus + label, .field textarea:not(:placeholder-shown) + label { top: 7px; font-size: .72rem; color: var(--accent); }
.field--select select {
  width: 100%; background: rgba(5,8,13,.6); border: 1px solid var(--line); border-radius: 11px;
  padding: 16px 44px 16px 16px; color: var(--txt); font-family: inherit; font-size: 1rem;
  cursor: pointer; appearance: none; -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236d92b8' stroke-width='2.4' stroke-linecap='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 16px center; background-size: 18px;
  transition: border-color .25s;
}
.field--select select:focus { outline: none; border-color: var(--accent); }
.field--select select:required:invalid { color: var(--txt-faint); }
.field--select option { color: #11161f; }
.form-note { color: var(--accent); font-weight: 600; margin-top: 6px; grid-column: 1 / -1; }
.cta__direct { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.cta__direct-item { flex: 1; min-width: 200px; padding: 16px 20px; border: 1px solid var(--line); border-radius: 13px; background: rgba(5,8,13,.5); text-align: left; transition: border-color .25s, transform .25s; }
.cta__direct-item:hover { border-color: rgba(255,194,51,.45); transform: translateY(-2px); }
.cta__direct-label { display: block; font-size: .76rem; color: var(--txt-faint); text-transform: uppercase; letter-spacing: .1em; }
.cta__direct-value { display: block; font-size: 1.1rem; font-weight: 700; color: var(--txt); margin-top: 4px; }

/* ===== FOOTER ===== */
.footer { position: relative; z-index: 1; border-top: 1px solid var(--line); padding: 54px clamp(20px, 5vw, 56px) 36px; background: rgba(5,8,13,.55); backdrop-filter: blur(6px); }
.footer__top { max-width: var(--maxw); margin: 0 auto 30px; display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.footer .brand__logo { height: 50px; }
.footer__tag { color: var(--txt); font-size: 1.05rem; font-weight: 700; }
.footer__bottom { max-width: var(--maxw); margin: 0 auto; padding-top: 22px; border-top: 1px solid var(--line-soft); display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; color: var(--txt-faint); font-size: .88rem; }
.footer__credit a { color: var(--steel); border-bottom: 1px solid transparent; transition: color .2s, border-color .2s; }
.footer__credit a:hover { color: var(--accent); border-color: var(--accent); }

/* ===== REVEAL ===== */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.capa .reveal:nth-child(2) { transition-delay: .08s; }
.capa .reveal:nth-child(3) { transition-delay: .16s; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .stext .ch { opacity: 1; transform: none; filter: none; transition: none; }
  .scroll-cue__line, .pin--hub { animation: none; }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 940px) {
  .nav__links { display: none; }
  .nav__call { display: inline-grid; }
  .nav__burger { display: flex; }
  .capa__card { flex-direction: column; align-items: flex-start; gap: 20px; min-height: auto; top: calc(80px + var(--i, 0) * 14px); }
  .capa__truck svg { width: 104px; }
  .logos { grid-template-columns: repeat(2, 1fr); }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .stat { border-right: 0; }
  .stat:nth-child(odd) { border-right: 1px solid var(--line-soft); }
  .stat:nth-child(1), .stat:nth-child(2) { border-bottom: 1px solid var(--line-soft); }
  .reach__top { grid-template-columns: 1fr; gap: 22px; align-items: start; }
  .reach__lead { max-width: 560px; }
  .trust { grid-template-columns: repeat(2, 1fr); gap: 22px; }
}

@media (max-width: 600px) {
  /* nav / logo */
  .brand__logo { height: 34px; }
  .nav.scrolled .brand__logo { height: 30px; }

  /* hero text fits every phone, words never clipped */
  .scrolly__texts { padding: 0 16px; }
  .stext--line1 { font-size: clamp(1.3rem, 6vw, 2.2rem); }
  .stext--box { font-size: clamp(1.2rem, 5vw, 1.7rem); padding: 22px 24px; max-width: 90vw; }
  .stext--left, .stext--right { justify-self: center; margin-left: auto; margin-right: auto; }

  /* sections */
  .logos { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .logo-chip { aspect-ratio: 1 / 1; min-height: 0; padding: 16px 12px; gap: 10px; }
  .logo-chip__ico svg { width: 38px; }
  .logo-chip span:not(.logo-chip__ico) { font-size: .95rem; }
  .stats { grid-template-columns: 1fr; }
  .stat { border-right: 0 !important; border-bottom: 1px solid var(--line-soft); padding: 20px 4px; }
  .stat:last-child { border-bottom: 0; }
  .capa__badge { position: static; display: inline-block; margin-bottom: 14px; }
  .cta__form { grid-template-columns: 1fr; }
  .cta__direct { flex-direction: column; gap: 10px; }
  .cta__direct-item { min-width: 0; width: 100%; padding: 13px 16px; }
  .cta__direct-label { font-size: .68rem; }
  .cta__direct-value { font-size: .95rem; }
  .footer__top, .footer__bottom { flex-direction: column; align-items: flex-start; }
  .reach__base { flex-wrap: wrap; }
  .reach__base-go { margin-left: 0; width: 100%; }
  .statement__line { font-size: clamp(1.6rem, 7vw, 2.3rem); }
  .trust { grid-template-columns: 1fr; gap: 18px; }
}
