/* ============================================================
   LASALU DROP — brand design system
   Aubergine #4F074C · Pink #E23A7C · Blue accent · clean & professional
   ============================================================ */

:root{
  /* brand */
  --plum:        #4F074C;
  --plum-700:    #3C0639;
  --plum-900:    #220420;
  --pink:        #E23A7C;
  --pink-600:    #CE2E6E;
  --pink-soft:   #FCEBF2;
  --blue:        #2C5FA8;
  --blue-soft:   #EAF1FB;

  /* neutrals */
  --ink:         #1C0A1B;   /* headings */
  --body:        #574A59;   /* paragraphs */
  --muted:       #8A7C8C;
  --bg:          #FFFFFF;
  --bg-soft:     #FBF7FB;
  --bg-lilac:    #F5EDF4;
  --line:        rgba(79,7,76,.12);
  --line-2:      rgba(79,7,76,.20);
  --white:       #FFFFFF;

  --maxw: 1320px;
  --pad: clamp(20px, 5vw, 64px);

  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 22px;
  --r-pill: 100px;

  --f-head: "Plus Jakarta Sans", system-ui, sans-serif;
  --f-body: "Inter", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;

  --shadow-sm: 0 4px 14px -6px rgba(79,7,76,.18);
  --shadow-md: 0 18px 40px -18px rgba(79,7,76,.30);
  --shadow-pink: 0 14px 30px -10px rgba(226,58,124,.45);

  --ease: cubic-bezier(.22,.61,.36,1);
  --ease-out: cubic-bezier(.16,1,.3,1);
}

*,*::before,*::after{ box-sizing:border-box; margin:0; padding:0; }
html{ scroll-behavior:smooth; scroll-padding-top:92px; -webkit-text-size-adjust:100%; }
@media (prefers-reduced-motion: reduce){ html{ scroll-behavior:auto; } }

body{
  font-family:var(--f-body);
  background:var(--bg);
  color:var(--body);
  line-height:1.7;
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
  overflow-x:hidden;
}
img,svg{ display:block; max-width:100%; }
a{ color:inherit; text-decoration:none; }
ul,ol{ list-style:none; }
::selection{ background:var(--pink); color:#fff; }

.container{ width:100%; max-width:var(--maxw); margin-inline:auto; padding-inline:var(--pad); }
.skip{ position:absolute; left:-999px; top:0; background:var(--plum); color:#fff; padding:.6em 1em; border-radius:0 0 8px 0; z-index:999; }
.skip:focus{ left:0; }

/* ---------- type ---------- */
.h2{
  font-family:var(--f-head); font-weight:800; color:var(--ink);
  font-size:clamp(1.9rem, 1.2rem + 2.6vw, 3.15rem);
  line-height:1.08; letter-spacing:-.025em;
}
.grad{
  background:linear-gradient(100deg,var(--pink),var(--plum) 70%);
  -webkit-background-clip:text; background-clip:text; color:transparent;
}
.kicker{
  font-family:var(--f-head); font-weight:700; font-size:.78rem;
  letter-spacing:.14em; text-transform:uppercase; color:var(--pink);
  display:inline-flex; align-items:center; gap:.6em; margin-bottom:1rem;
}
.kicker--light{ color:#fff; opacity:.92; }
.kicker--center{ justify-content:center; }

.section{ padding:clamp(4.5rem, 8vw, 7.5rem) 0; }
.soft{ background:var(--bg-soft); }
.shead{ max-width:60ch; margin-bottom:clamp(2.4rem,5vw,3.6rem); }
.shead .h2{ margin-top:.2rem; }
.shead__sub{ margin-top:1.1rem; color:var(--body); font-size:1.05rem; max-width:54ch; }

/* ---------- buttons ---------- */
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:.55em;
  font-family:var(--f-head); font-weight:700; font-size:.95rem;
  padding:.85em 1.4em; border-radius:var(--r-pill); cursor:pointer;
  border:1.5px solid transparent; white-space:nowrap;
  transition:transform .35s var(--ease-out), background .3s var(--ease), color .3s, box-shadow .35s, border-color .3s;
}
.btn svg{ transition:transform .35s var(--ease-out); }
.btn:hover svg{ transform:translateX(3px); }
.btn--sm{ padding:.62em 1.1em; font-size:.88rem; }
.btn--lg{ padding:1.02em 1.7em; font-size:1.02rem; }
.btn--pink{ background:var(--pink); color:#fff; box-shadow:var(--shadow-pink); }
.btn--pink:hover{ background:var(--pink-600); transform:translateY(-2px); }
.btn--plum{ background:var(--plum); color:#fff; box-shadow:var(--shadow-md); }
.btn--plum:hover{ background:var(--plum-700); transform:translateY(-2px); }
.btn--white{ background:#fff; color:var(--plum); }
.btn--white:hover{ transform:translateY(-2px); box-shadow:0 16px 34px -14px rgba(0,0,0,.4); }
.btn--outline{ border-color:var(--line-2); color:var(--ink); background:#fff; }
.btn--outline:hover{ border-color:var(--plum); color:var(--plum); }
.btn--glass{ border-color:rgba(255,255,255,.28); color:#fff; background:rgba(255,255,255,.06); }
.btn--glass:hover{ background:rgba(255,255,255,.14); border-color:rgba(255,255,255,.5); }

/* ============================================================
   NAV
   ============================================================ */
.nav{ position:fixed; top:0; left:0; right:0; z-index:600; transition:background .4s var(--ease), box-shadow .4s, border-color .4s; border-bottom:1px solid transparent; }
.nav.is-scrolled{ background:rgba(255,255,255,.85); backdrop-filter:blur(14px) saturate(140%); border-bottom-color:var(--line); }
.nav__bar{ display:flex; align-items:center; justify-content:space-between; gap:1.5rem; height:74px; }
.brand{ display:flex; align-items:center; gap:.6rem; }
.brand__icon{ width:36px; height:36px; object-fit:contain; }
.brand__name{ font-family:var(--f-head); font-weight:800; font-size:1.2rem; color:var(--plum); letter-spacing:-.01em; }
.brand__drop{ color:var(--pink); }
/* full logo: white over the dark top, full colour once the nav turns white */
.brand__full{ height:40px; width:auto; display:block; }
.brand__full--color{ display:none; }
.nav.is-scrolled .brand__full--white{ display:none; }
.nav.is-scrolled .brand__full--color{ display:block; }
.nav__links{ display:flex; gap:1.5rem; margin-inline:auto; }
.nav__links a{ font-family:var(--f-head); font-weight:600; font-size:.92rem; color:var(--ink); opacity:.78; position:relative; padding:.3em 0; transition:opacity .3s; }
.nav__links a::after{ content:""; position:absolute; left:0; bottom:-2px; width:0; height:2px; background:var(--pink); border-radius:2px; transition:width .35s var(--ease-out); }
.nav__links a:hover{ opacity:1; }
.nav__links a:hover::after{ width:100%; }
.nav__links a[aria-current="page"]{ color:var(--plum); opacity:1; }
.nav__links a[aria-current="page"]::after{ width:100%; background:var(--plum); }
.mobilemenu a[aria-current="page"]{ color:var(--pink); }
.nav__actions{ display:flex; align-items:center; gap:.8rem; }
.burger{ display:none; flex-direction:column; gap:5px; width:42px; height:42px; align-items:center; justify-content:center; background:none; border:1px solid var(--line-2); border-radius:11px; cursor:pointer; }
.burger span{ width:18px; height:2px; background:var(--plum); border-radius:2px; transition:transform .35s var(--ease), opacity .25s; }
.nav.is-open .burger span:first-child{ transform:translateY(3.5px) rotate(45deg); }
.nav.is-open .burger span:last-child{ transform:translateY(-3.5px) rotate(-45deg); }

/* --- scroll-aware nav theme ---
   At the top the nav is transparent over the dark hero/pagehead -> light text.
   Once scrolled it gains a white background -> dark text. */
.nav .brand__name{ color:#fff; }
.nav .brand__drop{ color:#FF8FB6; }
.nav .brand__icon{ background:#fff; border-radius:9px; padding:3px; box-shadow:0 2px 10px rgba(0,0,0,.18); }
.nav__links a{ color:#fff; opacity:.86; }
.nav__links a[aria-current="page"]{ color:#fff; opacity:1; }
.nav__links a[aria-current="page"]::after,
.nav__links a:hover::after{ background:#FF8FB6; }
.burger{ border-color:rgba(255,255,255,.42); }
.burger span{ background:#fff; }

.nav.is-scrolled .brand__name{ color:var(--plum); }
.nav.is-scrolled .brand__drop{ color:var(--pink); }
.nav.is-scrolled .brand__icon{ background:transparent; box-shadow:none; padding:0; }
.nav.is-scrolled .nav__links a{ color:var(--ink); opacity:.78; }
.nav.is-scrolled .nav__links a[aria-current="page"]{ color:var(--plum); opacity:1; }
.nav.is-scrolled .nav__links a[aria-current="page"]::after,
.nav.is-scrolled .nav__links a:hover::after{ background:var(--pink); }
.nav.is-scrolled .burger{ border-color:var(--line-2); }
.nav.is-scrolled .burger span{ background:var(--plum); }

.mobilemenu{ position:fixed; inset:0; z-index:590; background:rgba(255,255,255,.98); backdrop-filter:blur(10px); display:grid; place-items:center; opacity:0; visibility:hidden; transition:opacity .4s var(--ease), visibility .4s; }
.mobilemenu.is-open{ opacity:1; visibility:visible; }
.mobilemenu nav{ display:flex; flex-direction:column; gap:1.3rem; text-align:center; }
.mobilemenu nav a{ font-family:var(--f-head); font-weight:700; font-size:1.6rem; color:var(--plum); }
.mobilemenu nav a.btn{ font-size:1rem; color:#fff; margin-top:.6rem; }

/* ============================================================
   HERO
   ============================================================ */
.hero{
  position:relative; overflow:hidden; color:#fff;
  background:
    radial-gradient(120% 90% at 85% 0%, rgba(226,58,124,.28), transparent 55%),
    linear-gradient(160deg, #5A0A56 0%, var(--plum) 42%, var(--plum-900) 100%);
  padding:calc(74px + clamp(3rem,7vw,6rem)) 0 clamp(4rem,8vw,7rem);
}
.hero__bg{ position:absolute; inset:0; z-index:0; pointer-events:none; }
.hero__blob{ position:absolute; border-radius:50%; filter:blur(70px); opacity:.5; }
.hero__blob--1{ width:42vw; height:42vw; left:-10vw; bottom:-14vw; background:radial-gradient(circle, rgba(226,58,124,.55), transparent 65%); }
.hero__blob--2{ width:34vw; height:34vw; right:-8vw; top:-10vw; background:radial-gradient(circle, rgba(44,95,168,.45), transparent 65%); }
.hero__grid{ position:absolute; inset:0; opacity:.5;
  background-image:linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size:46px 46px; -webkit-mask-image:radial-gradient(80% 70% at 30% 40%, #000, transparent 80%); mask-image:radial-gradient(80% 70% at 30% 40%, #000, transparent 80%);
}
.hero__inner{ position:relative; z-index:2; display:grid; grid-template-columns:1.05fr .95fr; gap:clamp(2rem,5vw,4rem); align-items:center; }
.pill{ display:inline-flex; align-items:center; gap:.6em; font-family:var(--f-head); font-weight:600; font-size:.82rem; padding:.5em 1em; border:1px solid rgba(255,255,255,.22); border-radius:var(--r-pill); background:rgba(255,255,255,.06); color:rgba(255,255,255,.92); }
.pill__dot{ width:7px; height:7px; border-radius:50%; background:var(--pink); box-shadow:0 0 12px var(--pink); }
.hero__title{ font-family:var(--f-head); font-weight:800; font-size:clamp(2.5rem, 1.4rem + 4.4vw, 4.6rem); line-height:1.04; letter-spacing:-.035em; margin-top:1.4rem; }
.hero__title .grad{ background:linear-gradient(100deg,#FF8FB6,#fff); -webkit-background-clip:text; background-clip:text; color:transparent; }
.hero__lede{ margin-top:1.4rem; max-width:46ch; font-size:clamp(1rem,.94rem + .4vw,1.18rem); color:rgba(255,255,255,.82); }
.hero__lede strong{ color:#fff; font-weight:600; }
.hero__cta{ margin-top:2.1rem; display:flex; flex-wrap:wrap; gap:.9rem; }
.hero__trust{ margin-top:2rem; display:flex; flex-wrap:wrap; gap:1.4rem; }
.hero__trust li{ display:flex; align-items:center; gap:.5em; font-size:.9rem; color:rgba(255,255,255,.85); font-weight:500; }
.hero__trust svg{ color:#7ee0a8; }

.hero__visual{ position:relative; }
.globe{ position:relative; width:100%; max-width:520px; margin-inline:auto; aspect-ratio:1/1; border-radius:50%; overflow:hidden;
  background:transparent;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.07);
  animation:globefloat 7s ease-in-out infinite; }
@keyframes globefloat{ 0%,100%{ transform:translateY(0); } 50%{ transform:translateY(-10px); } }
.globe__map{ position:absolute; top:0; bottom:0; left:0; z-index:0; display:flex; width:max-content; height:100%; opacity:.92;
  animation:globespin 48s linear infinite; }
.globe__map img{ height:100%; width:auto; display:block; }
@keyframes globespin{ from{ transform:translateX(0); } to{ transform:translateX(-50%); } }
.holo-grid{ filter:none; }
/* shipping routes — anchored to Nigeria on the map, scroll in sync with it */
.globe__routes{ position:absolute; top:0; bottom:0; left:0; z-index:1; display:flex; width:max-content; height:100%; pointer-events:none;
  animation:globespin 48s linear infinite; }
.globe__routes .routesvg{ height:100%; width:auto; display:block; }
.rline{ fill:none; stroke:#FF9CC4; stroke-width:13; stroke-linecap:round; stroke-dasharray:16 64; opacity:.92;
  filter:drop-shadow(0 0 6px rgba(255,120,170,.6)); animation:routeFlow 2.4s linear infinite; }
@keyframes routeFlow{ to{ stroke-dashoffset:-80; } }
.rdot{ fill:#FFD0E4; }
.rcore{ fill:#fff; }
.rpulse{ fill:rgba(226,58,124,.5); animation:rPulse 2.6s ease-out infinite; }
@keyframes rPulse{ 0%{ r:34; opacity:.7; } 100%{ r:160; opacity:0; } }
.rlabel{ font-family:var(--f-head); font-weight:800; fill:#fff; font-size:104px; text-anchor:middle; letter-spacing:4px; filter:drop-shadow(0 3px 8px rgba(0,0,0,.95)); }
.rlabel--o{ fill:#FFE3EF; }
.globe__shade{ position:absolute; inset:0; z-index:2; border-radius:50%; pointer-events:none;
  background:radial-gradient(circle at 38% 30%, rgba(255,255,255,.06) 0%, transparent 42%); }
.globe__scan{ position:absolute; inset:0; z-index:4; border-radius:50%; pointer-events:none; opacity:.3; mix-blend-mode:overlay;
  background:repeating-linear-gradient(0deg, rgba(255,255,255,.06) 0 1px, transparent 1px 4px);
  animation:holoscan 6s linear infinite; }
@keyframes holoscan{ from{ background-position:0 0; } to{ background-position:0 24px; } }
.flight{ position:absolute; inset:0; z-index:3; width:100%; height:100%; }

/* ============================================================
   STATS
   ============================================================ */
.stats{ background:var(--plum-900); }
.stats__grid{ display:grid; grid-template-columns:repeat(4,1fr); }
.stat{ padding:clamp(2.6rem,5vw,4rem) clamp(1.2rem,2.5vw,2.2rem); color:#fff; }
.stat:not(:last-child){ border-right:1px solid rgba(255,255,255,.12); }
.stat__n{ font-family:var(--f-head); font-weight:800; font-size:clamp(2rem,1.3rem + 2.4vw,3.2rem); line-height:1; letter-spacing:-.03em; display:flex; align-items:baseline; }
.stat__n>span:first-child{ color:#FF8FB6; }
.stat p{ margin-top:.95rem; font-size:.92rem; line-height:1.5; color:rgba(255,255,255,.72); }

/* ============================================================
   HOW IT WORKS — steps
   ============================================================ */
.steps{ display:grid; grid-template-columns:repeat(5,1fr); gap:1.1rem; position:relative; }
.steps::before{ content:""; position:absolute; top:64px; left:8%; right:8%; height:2px; background:repeating-linear-gradient(90deg,var(--line-2) 0 8px, transparent 8px 16px); z-index:0; }
.step{ position:relative; z-index:1; }
.step__n{ font-family:var(--f-head); font-weight:800; font-size:.85rem; color:var(--pink); letter-spacing:.08em; }
.step__ic{ width:56px; height:56px; border-radius:16px; background:var(--white); border:1px solid var(--line); box-shadow:var(--shadow-sm); display:grid; place-items:center; color:var(--plum); margin:.7rem 0 1.1rem; will-change:transform; }
.step__ic::before{ content:""; width:26px; height:26px; background:currentColor; -webkit-mask:center/contain no-repeat; mask:center/contain no-repeat; }
/* a pulse of attention travels icon-by-icon along the process, like a walkthrough */
.step__ic{ animation:stepSwell 3s ease-in-out infinite; }
@keyframes stepSwell{
  0%,58%,100%{ transform:scale(1); box-shadow:var(--shadow-sm); border-color:var(--line); color:var(--plum); }
  15%{ transform:scale(1.18); box-shadow:0 16px 30px -10px rgba(226,58,124,.5); border-color:rgba(226,58,124,.55); color:var(--pink); }
}
.steps .step:nth-child(1) .step__ic{ animation-delay:0s; }
.steps .step:nth-child(2) .step__ic{ animation-delay:.3s; }
.steps .step:nth-child(3) .step__ic{ animation-delay:.6s; }
.steps .step:nth-child(4) .step__ic{ animation-delay:.9s; }
.steps .step:nth-child(5) .step__ic{ animation-delay:1.2s; }
.step h3{ font-family:var(--f-head); font-weight:700; font-size:1.12rem; color:var(--ink); line-height:1.2; margin-bottom:.45rem; }
.step p{ font-size:.92rem; }

/* icon masks (shared) */
[data-ic="bike"]::before{ -webkit-mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='5.5' cy='17.5' r='3.5'/%3E%3Ccircle cx='18.5' cy='17.5' r='3.5'/%3E%3Cpath d='M5.5 17.5 9 9h5l4 8.5M9 9l3 8.5M9 6h4'/%3E%3C/svg%3E"); mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='5.5' cy='17.5' r='3.5'/%3E%3Ccircle cx='18.5' cy='17.5' r='3.5'/%3E%3Cpath d='M5.5 17.5 9 9h5l4 8.5M9 9l3 8.5M9 6h4'/%3E%3C/svg%3E"); }
[data-ic="scale"]::before{ -webkit-mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='4' width='18' height='16' rx='2'/%3E%3Cpath d='M8 4v3h8V4M12 11v5M9 16h6'/%3E%3C/svg%3E"); mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='4' width='18' height='16' rx='2'/%3E%3Cpath d='M8 4v3h8V4M12 11v5M9 16h6'/%3E%3C/svg%3E"); }
[data-ic="box"]::before{ -webkit-mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M21 8 12 3 3 8l9 5 9-5zM3 8v8l9 5 9-5V8M12 13v8'/%3E%3C/svg%3E"); mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M21 8 12 3 3 8l9 5 9-5zM3 8v8l9 5 9-5V8M12 13v8'/%3E%3C/svg%3E"); }
[data-ic="plane"]::before{ -webkit-mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M2 16.5 11 14l4.5-9.5a1.6 1.6 0 0 1 2.9 0L21 9l-4 2 1 6-2 1-3-4-4 1.5z'/%3E%3C/svg%3E"); mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M2 16.5 11 14l4.5-9.5a1.6 1.6 0 0 1 2.9 0L21 9l-4 2 1 6-2 1-3-4-4 1.5z'/%3E%3C/svg%3E"); }
[data-ic="home"]::before{ -webkit-mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 11l9-8 9 8M5 9.5V21h14V9.5M9.5 21v-6h5v6'/%3E%3C/svg%3E"); mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 11l9-8 9 8M5 9.5V21h14V9.5M9.5 21v-6h5v6'/%3E%3C/svg%3E"); }
[data-ic="door"]::before{ -webkit-mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 21h16M6 21V4a1 1 0 0 1 1-1h8a1 1 0 0 1 1 1v17M13 12h.01'/%3E%3C/svg%3E"); mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 21h16M6 21V4a1 1 0 0 1 1-1h8a1 1 0 0 1 1 1v17M13 12h.01'/%3E%3C/svg%3E"); }
[data-ic="globe"]::before{ -webkit-mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='9'/%3E%3Cpath d='M3 12h18M12 3a14 14 0 0 1 0 18M12 3a14 14 0 0 0 0 18'/%3E%3C/svg%3E"); mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='9'/%3E%3Cpath d='M3 12h18M12 3a14 14 0 0 1 0 18M12 3a14 14 0 0 0 0 18'/%3E%3C/svg%3E"); }
[data-ic="shield"]::before{ -webkit-mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 3 5 6v6c0 4 3 7 7 9 4-2 7-5 7-9V6z'/%3E%3Cpath d='m9 12 2 2 4-4'/%3E%3C/svg%3E"); mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 3 5 6v6c0 4 3 7 7 9 4-2 7-5 7-9V6z'/%3E%3Cpath d='m9 12 2 2 4-4'/%3E%3C/svg%3E"); }
[data-ic="heart"]::before{ -webkit-mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 20s-7-4.5-9.5-9A4.5 4.5 0 0 1 12 6a4.5 4.5 0 0 1 9.5 5c-2.5 4.5-9.5 9-9.5 9z'/%3E%3C/svg%3E"); mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 20s-7-4.5-9.5-9A4.5 4.5 0 0 1 12 6a4.5 4.5 0 0 1 9.5 5c-2.5 4.5-9.5 9-9.5 9z'/%3E%3C/svg%3E"); }
[data-ic="truck"]::before{ -webkit-mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M2 6h11v9H2z'/%3E%3Cpath d='M13 9h4l4 3v3h-8z'/%3E%3Ccircle cx='6' cy='17.5' r='1.8'/%3E%3Ccircle cx='17' cy='17.5' r='1.8'/%3E%3C/svg%3E"); mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M2 6h11v9H2z'/%3E%3Cpath d='M13 9h4l4 3v3h-8z'/%3E%3Ccircle cx='6' cy='17.5' r='1.8'/%3E%3Ccircle cx='17' cy='17.5' r='1.8'/%3E%3C/svg%3E"); }
[data-ic="car"]::before{ -webkit-mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 16V13l1.8-5h10.4L19 13v3'/%3E%3Cpath d='M3 13h18'/%3E%3Ccircle cx='8' cy='16.5' r='1.6'/%3E%3Ccircle cx='16' cy='16.5' r='1.6'/%3E%3C/svg%3E"); mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 16V13l1.8-5h10.4L19 13v3'/%3E%3Cpath d='M3 13h18'/%3E%3Ccircle cx='8' cy='16.5' r='1.6'/%3E%3Ccircle cx='16' cy='16.5' r='1.6'/%3E%3C/svg%3E"); }
[data-ic="doc"]::before{ -webkit-mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 3h8l4 4v14H6z'/%3E%3Cpath d='M14 3v4h4'/%3E%3Cpath d='M9 12h6M9 16h6M9 8h2'/%3E%3C/svg%3E"); mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 3h8l4 4v14H6z'/%3E%3Cpath d='M14 3v4h4'/%3E%3Cpath d='M9 12h6M9 16h6M9 8h2'/%3E%3C/svg%3E"); }
[data-ic="warehouse"]::before{ -webkit-mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 21V9l9-4 9 4v12'/%3E%3Cpath d='M3 21h18'/%3E%3Cpath d='M8 21v-6h8v6'/%3E%3Cpath d='M8 12h8'/%3E%3C/svg%3E"); mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 21V9l9-4 9 4v12'/%3E%3Cpath d='M3 21h18'/%3E%3Cpath d='M8 21v-6h8v6'/%3E%3Cpath d='M8 12h8'/%3E%3C/svg%3E"); }
[data-ic="errand"]::before{ -webkit-mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 8h12l-1 12H7z'/%3E%3Cpath d='M9 8V6.5a3 3 0 0 1 6 0V8'/%3E%3C/svg%3E"); mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 8h12l-1 12H7z'/%3E%3Cpath d='M9 8V6.5a3 3 0 0 1 6 0V8'/%3E%3C/svg%3E"); }

/* ============================================================
   SHIP cards
   ============================================================ */
.ship__cols{ display:grid; grid-template-columns:1fr 1fr; gap:1.4rem; }
.card{ background:#fff; border:1px solid var(--line); border-radius:var(--r-lg); padding:clamp(1.6rem,3vw,2.2rem); box-shadow:var(--shadow-sm); }
.card--yes{ border-color:rgba(44,95,168,.22); }
.card--no{ border-color:rgba(226,58,124,.18); }
.card__tag{ display:inline-flex; font-family:var(--f-head); font-weight:700; font-size:.78rem; letter-spacing:.08em; text-transform:uppercase; padding:.45em 1em; border-radius:var(--r-pill); margin-bottom:1.3rem; }
.tag--yes{ color:var(--blue); background:var(--blue-soft); }
.tag--no{ color:var(--pink); background:var(--pink-soft); }
.ticks li, .crosses li{ position:relative; padding:.7em 0 .7em 2rem; border-bottom:1px solid var(--line); font-size:.96rem; }
.ticks li:last-child, .crosses li:last-child{ border-bottom:none; }
.ticks li b, .crosses li b{ color:var(--ink); font-weight:700; }
.ticks li::before, .crosses li::before{ content:""; position:absolute; left:0; top:.95em; width:18px; height:18px; background-size:contain; background-repeat:no-repeat; }
.ticks li::before{ background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232C5FA8' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E"); }
.crosses li::before{ background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23E23A7C' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M18 6 6 18M6 6l12 12'/%3E%3C/svg%3E"); }

/* ============================================================
   PRICING table
   ============================================================ */
.table{ border:1px solid var(--line); border-radius:var(--r-lg); overflow:hidden; box-shadow:var(--shadow-sm); background:#fff; }
.trow{ display:grid; grid-template-columns:1.8fr 1fr 1fr .9fr; align-items:center; gap:1rem; padding:1.1rem clamp(1.1rem,2.5vw,1.8rem); border-bottom:1px solid var(--line); transition:background .3s var(--ease); }
.trow:last-child{ border-bottom:none; }
.trow--head{ background:var(--bg-lilac); font-family:var(--f-head); font-weight:700; font-size:.76rem; letter-spacing:.08em; text-transform:uppercase; color:var(--muted); }
.trow:not(.trow--head):hover{ background:var(--pink-soft); }
.t-dest{ font-family:var(--f-head); font-weight:700; color:var(--ink); font-size:1.02rem; }
.t-rate{ font-family:var(--f-head); font-weight:800; color:var(--plum); font-size:1.05rem; }
.t-min{ color:var(--body); }
.t-sub{ display:block; margin-top:2px; font-family:var(--f-body); font-weight:600; font-size:.74rem; letter-spacing:0; color:var(--muted); }
.t-free{ justify-self:start; font-family:var(--f-head); font-weight:700; font-size:.72rem; letter-spacing:.06em; color:var(--blue); background:var(--blue-soft); padding:.4em .8em; border-radius:var(--r-pill); }
.trow--note{ background:var(--bg-soft); }
.trow--note .t-dest{ color:var(--pink); }
/* cargo-only table: 3 columns, header stays visible on mobile */
.table--cargo .trow{ grid-template-columns:1.7fr 1fr 1fr 1fr .8fr; }
.table--cargo .trow--head{ display:grid; }
.table--cargo .t-rate2{ font-family:var(--f-head); font-weight:700; color:var(--body); font-size:1rem; }
/* cargo table on phones: each destination becomes a clean labelled card */
@media (max-width:620px){
  .table--cargo .trow--head{ display:none !important; }
  .table--cargo .trow:not(.trow--head){ display:block; padding:1.2rem 1.4rem; }
  .table--cargo .t-dest{ display:block; font-size:1.14rem; margin-bottom:.7rem; }
  .table--cargo .t-rate, .table--cargo .t-rate2, .table--cargo .t-free{
    display:flex; justify-content:space-between; align-items:center; gap:1rem;
    padding:.55rem 0; border-top:1px solid var(--line); }
  .table--cargo .t-rate::before, .table--cargo .t-rate2::before, .table--cargo .t-free::before{
    content:attr(data-label); font-family:var(--f-head); font-weight:600; font-size:.82rem;
    letter-spacing:.02em; color:var(--muted); text-transform:none; }
  .table--cargo .t-rate{ font-size:1.1rem; }
  .table--cargo .t-rate2{ font-size:1rem; color:var(--body); }
  /* drop the desktop pill — on mobile it's just another labelled row */
  .table--cargo .t-free{ justify-self:initial; background:none; padding:.55rem 0;
    border-radius:0; letter-spacing:0; font-size:.92rem; color:var(--blue); }
  .table--cargo .t-free::before{ color:var(--muted); }
}
.pricing__foot{ margin-top:1.2rem; font-size:.88rem; color:var(--muted); max-width:66ch; }

/* ============================================================
   QUOTE CALCULATOR (embedded tool)
   ============================================================ */
.quote{
  --mode-color:#E23A7C; --mode-light:#fcebf2;
  --qsurface:#fff; --qbg:#f6eef5; --qborder:rgba(79,7,76,.14);
  --qtext:var(--ink); --qmuted:var(--muted);
  --danger:#c0392b; --danger-bg:#fdf0ef; --warn:#b9770e; --warn-bg:#fff8ec; --success:#1f9d57;
  --wa:#25D366; --wa-dark:#128C7E;
  max-width:560px; margin-inline:auto; font-family:var(--f-body); color:var(--qtext); }
.quote *{ box-sizing:border-box; }
.quote .qcard{ background:var(--qsurface); border-radius:20px; padding:clamp(20px,4vw,32px); border:1px solid var(--qborder); box-shadow:0 2px 0 var(--qborder), 0 18px 44px -20px rgba(79,7,76,.28); }
.quote .card-header{ display:flex; align-items:center; justify-content:space-between; gap:10px; margin-bottom:24px; padding-bottom:18px; border-bottom:1px solid var(--qborder); flex-wrap:wrap; }
.quote .section-title{ font-family:var(--f-head); font-size:13px; font-weight:800; letter-spacing:.06em; text-transform:uppercase; color:var(--mode-color); }
.quote .version-pill{ display:inline-block; background:var(--mode-light); color:var(--mode-color); font-size:10px; font-weight:700; padding:4px 10px; border-radius:20px; letter-spacing:.06em; text-transform:uppercase; }
.quote .reset-btn{ background:none; border:1px solid var(--qborder); color:var(--qmuted); font-family:var(--f-body); font-size:12px; font-weight:600; padding:6px 14px; border-radius:20px; cursor:pointer; transition:all .2s; }
.quote .reset-btn:hover{ background:var(--qbg); color:var(--qtext); }
.quote .mode-toggle{ display:grid; grid-template-columns:1fr 1fr 1fr; gap:0; background:var(--qbg); border-radius:12px; padding:4px; margin-bottom:22px; border:1px solid var(--qborder); }
.quote .mode-tab{ padding:10px 6px; border:none; background:none; font-family:var(--f-body); font-size:12px; font-weight:600; color:var(--qmuted); border-radius:9px; cursor:pointer; transition:all .25s; display:flex; align-items:center; justify-content:center; gap:6px; line-height:1.2; }
.quote .mode-tab .tab-icon{ font-size:17px; }
.quote .mode-tab .tab-label{ text-align:left; }
.quote .mode-tab .tab-sub{ display:block; font-size:10px; font-weight:400; opacity:.7; }
.quote .mode-tab.active{ background:var(--mode-color); color:#fff; box-shadow:0 4px 12px -4px rgba(0,0,0,.4); }
.quote .field-group{ margin-bottom:18px; }
.quote .field-label{ display:block; font-size:11px; font-weight:700; text-transform:uppercase; letter-spacing:.08em; color:var(--qmuted); margin-bottom:8px; }
.quote .field-input, .quote .state-select{ width:100%; padding:13px 16px; border:1.5px solid var(--qborder); border-radius:10px; font-family:var(--f-body); font-size:15px; color:var(--qtext); background:var(--qsurface); outline:none; transition:border-color .2s, box-shadow .2s; -webkit-appearance:none; appearance:none; }
.quote .field-input:focus, .quote .state-select:focus{ border-color:var(--mode-color); box-shadow:0 0 0 3px var(--mode-light); }
.quote .two-col{ display:grid; grid-template-columns:minmax(0,1fr) minmax(0,1fr); gap:14px; }
.quote .two-col > .field-group{ min-width:0; }
.quote .weight-display, .quote .value-wrap{ display:flex; align-items:center; min-width:0; border:1.5px solid var(--qborder); border-radius:10px; overflow:hidden; transition:border-color .2s, box-shadow .2s; }
.quote .weight-display:focus-within, .quote .value-wrap:focus-within{ border-color:var(--mode-color); box-shadow:0 0 0 3px var(--mode-light); }
.quote .weight-input, .quote .value-input{ flex:1; padding:13px 16px; border:none; font-family:var(--f-body); font-size:15px; color:var(--qtext); background:transparent; outline:none; min-width:0; }
.quote .weight-unit{ padding:13px 14px 13px 0; font-size:13px; font-weight:700; color:var(--qmuted); }
.quote input[type=number]{ -moz-appearance:textfield; appearance:textfield; }
.quote input[type=number]::-webkit-outer-spin-button,
.quote input[type=number]::-webkit-inner-spin-button{ -webkit-appearance:none; margin:0; }
.quote .currency-badge{ padding:0 14px; font-size:14px; font-weight:800; color:var(--mode-color); background:var(--mode-light); align-self:stretch; display:flex; align-items:center; border-right:1.5px solid var(--qborder); }
.quote .country-wrap{ position:relative; }
.quote .country-wrap::before{ content:'🌍'; position:absolute; left:14px; top:50%; transform:translateY(-50%); font-size:15px; pointer-events:none; z-index:1; }
.quote .country-input{ padding-left:40px !important; }
.quote .state-select{ cursor:pointer; background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath fill='%238A7C8C' d='M6 8L0 0h12z'/%3E%3C/svg%3E"); background-repeat:no-repeat; background-position:right 14px center; }
.quote .context-note{ display:none; border-radius:10px; padding:12px 16px; font-size:12px; font-weight:500; margin-bottom:18px; line-height:1.6; border-left:3px solid; }
.quote .note-cargo{ background:#f1e6f0; color:#4F074C; border-left-color:#4F074C; }
.quote .note-waybill{ background:#e9f0fa; color:#2C5FA8; border-left-color:#2C5FA8; }
.quote .alert{ display:none; padding:12px 16px; border-radius:10px; font-size:13px; font-weight:500; margin-top:16px; line-height:1.5; border-left:3px solid; }
.quote .alert-danger{ background:var(--danger-bg); color:var(--danger); border-left-color:var(--danger); }
.quote .alert-warn{ background:var(--warn-bg); color:var(--warn); border-left-color:var(--warn); }
.quote .calc-btn{ width:100%; padding:16px; background:var(--mode-color); color:#fff; border:none; border-radius:12px; font-family:var(--f-head); font-size:16px; font-weight:800; cursor:pointer; margin-top:22px; transition:filter .2s, transform .1s; }
.quote .calc-btn:hover{ filter:brightness(1.08); }
.quote .calc-btn:active{ transform:scale(.99); }
.quote .result-section{ display:none; margin-top:24px; border-top:1px solid var(--qborder); padding-top:24px; }
.quote .result-meta{ font-size:12px; font-weight:700; letter-spacing:.12em; text-transform:uppercase; color:var(--qmuted); margin-bottom:4px; }
.quote .result-destination{ font-family:var(--f-head); font-size:20px; font-weight:800; color:var(--qtext); margin-bottom:18px; }
.quote .price-card{ background:var(--mode-light); border-radius:14px; padding:28px 24px; text-align:center; margin-bottom:16px; border:1px solid rgba(0,0,0,.05); }
.quote .price-label{ font-size:11px; font-weight:700; letter-spacing:.16em; text-transform:uppercase; color:var(--mode-color); opacity:.75; margin-bottom:8px; }
.quote .price-amount{ font-family:var(--f-head); font-size:46px; font-weight:800; color:var(--mode-color); letter-spacing:-.03em; line-height:1; }
.quote .price-note{ font-size:11px; color:var(--qmuted); margin-top:10px; line-height:1.5; }
.quote .etd-badge{ display:flex; align-items:center; gap:8px; background:var(--qbg); border:1px solid var(--qborder); border-radius:8px; padding:10px 14px; font-size:12px; color:var(--qmuted); margin-bottom:20px; }
.quote .etd-badge strong{ color:var(--qtext); }
.quote .divider{ display:flex; align-items:center; gap:12px; margin:20px 0; color:var(--qmuted); font-size:11px; font-weight:700; letter-spacing:.08em; text-transform:uppercase; }
.quote .divider::before, .quote .divider::after{ content:''; flex:1; height:1px; background:var(--qborder); }
.quote .action-row{ display:grid; grid-template-columns:1fr 1fr; gap:10px; }
.quote .btn-wa{ padding:14px; background:var(--wa); color:#fff; border:none; border-radius:10px; font-family:var(--f-body); font-size:14px; font-weight:700; cursor:pointer; transition:all .2s; display:flex; align-items:center; justify-content:center; gap:6px; }
.quote .btn-wa:hover{ background:var(--wa-dark); transform:translateY(-1px); }
.quote .btn-copy{ padding:14px; background:var(--qsurface); color:var(--qtext); border:1.5px solid var(--qborder); border-radius:10px; font-family:var(--f-body); font-size:14px; font-weight:700; cursor:pointer; transition:all .2s; display:flex; align-items:center; justify-content:center; gap:6px; }
.quote .btn-copy:hover{ background:var(--qbg); }
.quote .btn-copy.copied{ background:var(--success); color:#fff; border-color:var(--success); }
@media (max-width:480px){ .quote .mode-tab{ flex-direction:column; gap:2px; } .quote .action-row{ grid-template-columns:1fr; } }

/* ============================================================
   TRACK
   ============================================================ */
.track__grid{ display:grid; grid-template-columns:1.05fr .95fr; gap:clamp(2rem,5vw,4.5rem); align-items:center; }
.track__copy .h2{ margin:.2rem 0 0; }
.track__copy .shead__sub{ margin:1.2rem 0 1.8rem; }
.track__pipe{ background:#fff; border:1px solid var(--line); border-radius:var(--r-lg); padding:1.6rem 1.8rem; box-shadow:var(--shadow-sm); }
.pipe li{ display:flex; align-items:center; gap:1rem; padding:.55rem 0; position:relative; color:var(--body); font-size:.95rem; }
.pipe li i{ width:14px; height:14px; border-radius:50%; border:2px solid var(--line-2); background:#fff; flex:0 0 auto; position:relative; z-index:1; transition:border-color .4s, background .4s, box-shadow .4s; }
.pipe li:not(:last-child) i::after{ content:""; position:absolute; top:14px; left:50%; transform:translateX(-50%); width:2px; height:calc(.55rem * 2 + 0.95rem); background:var(--line); }
.pipe li.is-lit{ color:var(--ink); font-weight:500; }
.pipe li.is-lit i{ border-color:var(--pink); background:var(--pink); box-shadow:0 0 0 4px var(--pink-soft); }
.pipe .done.is-lit span{ color:var(--plum); font-weight:700; }

/* ============================================================
   WHY — features
   ============================================================ */
.why__grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:1.2rem; }
.feature{ background:#fff; border:1px solid var(--line); border-radius:var(--r-lg); padding:1.8rem 1.5rem; box-shadow:var(--shadow-sm); transition:transform .4s var(--ease-out), box-shadow .4s, border-color .4s; }
.feature:hover{ transform:translateY(-5px); box-shadow:var(--shadow-md); border-color:rgba(226,58,124,.3); }
.feature__ic{ width:50px; height:50px; border-radius:14px; background:linear-gradient(140deg,var(--pink-soft),var(--bg-lilac)); display:grid; place-items:center; color:var(--plum); margin-bottom:1.1rem; }
.feature__ic::before{ content:""; width:24px; height:24px; background:currentColor; -webkit-mask:center/contain no-repeat; mask:center/contain no-repeat; }
.feature h3{ font-family:var(--f-head); font-weight:700; font-size:1.12rem; color:var(--ink); line-height:1.2; margin-bottom:.5rem; }
.feature p{ font-size:.92rem; }

/* ============================================================
   DIASPORA band
   ============================================================ */
.band{ background:linear-gradient(120deg,var(--plum),var(--pink)); color:#fff; text-align:center; padding:clamp(4rem,8vw,6.5rem) 0; }
.band__inner{ max-width:60ch; margin-inline:auto; }
.band__title{ font-family:var(--f-head); font-weight:800; font-size:clamp(2rem,1.3rem + 3vw,3.4rem); line-height:1.05; letter-spacing:-.03em; }
.band__lede{ margin:1.2rem auto 2rem; font-size:1.1rem; color:rgba(255,255,255,.9); max-width:50ch; }
.band__lede em{ font-style:normal; font-weight:700; color:#fff; }

/* ============================================================
   FINAL CTA
   ============================================================ */
.cta{ padding:clamp(4.5rem,9vw,8rem) 0; text-align:center; }
.cta__inner{ max-width:60ch; margin-inline:auto; }
.cta__title{ font-family:var(--f-head); font-weight:800; font-size:clamp(2.2rem,1.4rem + 3.6vw,4rem); line-height:1.04; letter-spacing:-.03em; color:var(--ink); }
.cta__sub{ margin:1.3rem auto 2.2rem; color:var(--body); font-size:1.1rem; }
.cta__row{ display:flex; gap:.9rem; justify-content:center; flex-wrap:wrap; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer{ background:var(--plum-900); color:rgba(255,255,255,.72); padding-top:clamp(3rem,6vw,4.5rem); }
.footer__grid{ display:grid; grid-template-columns:1.6fr 1fr 1fr 1fr; gap:2rem; padding-bottom:3rem; }
.footer__logo{ display:inline-grid; place-items:center; width:60px; height:60px; background:#fff; border-radius:16px; margin-bottom:1.1rem; }
.footer__logo img{ width:44px; height:44px; object-fit:contain; }
.footer__tag{ font-family:var(--f-head); font-weight:600; font-size:1.05rem; line-height:1.4; color:#fff; max-width:30ch; }
.footer__motto{ margin-top:1rem; font-family:var(--f-head); font-weight:800; font-size:.82rem; letter-spacing:.16em; text-transform:uppercase; color:var(--pink); }
.footer__col h4{ font-family:var(--f-head); font-weight:700; font-size:.76rem; letter-spacing:.12em; text-transform:uppercase; color:rgba(255,255,255,.55); margin-bottom:1rem; }
.footer__col a, .footer__addr{ display:block; font-size:.94rem; padding:.32em 0; color:rgba(255,255,255,.75); transition:color .3s; }
.footer__col a:hover{ color:#fff; }
.footer__addr{ color:rgba(255,255,255,.5); }
.footer__base{ display:flex; justify-content:space-between; gap:1rem; flex-wrap:wrap; padding:1.5rem 0; border-top:1px solid rgba(255,255,255,.12); font-size:.82rem; color:rgba(255,255,255,.5); }
.footer__owner{ padding:0 0 1.6rem; text-align:center; font-size:.78rem; letter-spacing:.02em; color:rgba(255,255,255,.42); }
.footer__owner strong{ color:rgba(255,255,255,.7); font-family:var(--f-head); font-weight:700; }

/* ============================================================
   REVEAL  — content is ALWAYS visible; the entrance is a pure
   enhancement that can never trap content hidden (e.g. in a
   throttled/background tab where animations are paused).
   ============================================================ */
.reveal{ opacity:1; }
@media (prefers-reduced-motion: no-preference){
  html.is-anim .reveal.is-pending{ opacity:0; transform:translateY(22px); }
  html.is-anim .reveal.in{ opacity:1; transform:none; transition:opacity .7s var(--ease-out), transform .7s var(--ease-out); }
}

/* ============================================================
   PARTNERS / POWERED-BY strip
   ============================================================ */
.partners{ border-bottom:1px solid var(--line); background:#fff; padding:1.6rem 0; overflow:hidden; }
.partners__label{ text-align:center; font-family:var(--f-head); font-weight:700; font-size:.72rem; letter-spacing:.14em; text-transform:uppercase; color:var(--muted); margin-bottom:1.1rem; }
.partners__track{ display:flex; gap:2.6rem; align-items:center; width:max-content; animation:scrollx 26s linear infinite; }
.partners:hover .partners__track{ animation-play-state:paused; }
.partners__track span{ font-family:var(--f-head); font-weight:800; font-size:1.25rem; color:var(--plum); opacity:.5; white-space:nowrap; letter-spacing:-.01em; transition:opacity .3s; }
.partners__track span:hover{ opacity:1; }
/* businesses we serve — clean brand chips on one scrolling line (compact) */
.partners--clients{ background:var(--bg-soft); padding:1.5rem 0; }
.partners--clients .partners__track{ width:max-content; animation:scrollx 45s linear infinite; flex-wrap:nowrap; gap:.8rem; }
.partners--clients .partners__track span{ opacity:1; font-size:.92rem; font-weight:700; letter-spacing:0; color:var(--plum);
  background:#fff; border:1px solid var(--line); border-radius:var(--r-pill); padding:.55em 1.15em; box-shadow:var(--shadow-sm);
  transition:transform .3s var(--ease-out), box-shadow .3s, border-color .3s, color .3s; }
.partners--clients .partners__track span:hover{ transform:translateY(-3px); box-shadow:var(--shadow-md); border-color:rgba(226,58,124,.4); color:var(--pink); }
@keyframes scrollx{ to{ transform:translateX(-50%); } }

/* ============================================================
   BIKE BAND — animated dispatch rider
   ============================================================ */
.bikeband{ position:relative; overflow:hidden; background:linear-gradient(180deg,#fff 0%, var(--bg-soft) 100%); padding:clamp(3rem,6vw,4.5rem) 0 0; }
.bikeband__head{ text-align:center; max-width:50ch; margin:0 auto; }
.bikeband__head h2{ font-family:var(--f-head); font-weight:800; color:var(--ink); font-size:clamp(1.5rem,1.1rem+1.6vw,2.2rem); letter-spacing:-.02em; line-height:1.12; }
.bikeband__head p{ margin-top:.6rem; color:var(--body); }
.bikeband__road{ position:relative; height:300px; margin-top:1.5rem; }
.skyline{ position:absolute; bottom:62px; left:-2%; right:-2%; width:104%; height:68px; opacity:.32; color:var(--plum); animation:cityDrift 26s ease-in-out infinite alternate; }
@keyframes cityDrift{ from{ transform:translateX(-1.4%); } to{ transform:translateX(1.4%); } }
.road{ position:absolute; bottom:60px; left:0; right:0; height:5px; background:var(--plum); opacity:.16; border-radius:4px; }
.road::after{ content:""; position:absolute; top:1px; left:0; right:0; height:3px; background:repeating-linear-gradient(90deg, var(--pink) 0 28px, transparent 28px 64px); opacity:.55; animation:dash 1s linear infinite; }
@keyframes dash{ to{ background-position:64px 0; } }
/* rider drives past once when the section scrolls into view (triggered in main.js) */
.rider{ position:absolute; bottom:50px; left:0; width:clamp(150px,18vw,230px); transform:translateX(40vw); z-index:2; will-change:transform; }
.rider__bob{ animation:bob .9s ease-in-out infinite alternate; }
.rider img{ width:100%; height:auto; display:block; filter:drop-shadow(0 12px 10px rgba(79,7,76,.22)); }
@keyframes bob{ from{ transform:translateY(0); } to{ transform:translateY(-4px); } }
.bikeband.armed .rider{ transform:translateX(120vw); }
.bikeband.armed.driving .rider{ animation:drivePast 8s cubic-bezier(.18,.7,.35,1) forwards; }
@keyframes drivePast{ from{ transform:translateX(105vw); } to{ transform:translateX(-45vw); } }

/* "LASALU DROP" settles into place in the rider's wake (staggered right->left, delays set in JS) */
/* full logo settles into the rider's wake as it passes */
.bikelogo{ position:absolute; left:50%; top:46%; transform:translate(-50%,-50%); z-index:1; width:clamp(130px, 24vw, 320px); height:auto; pointer-events:none; }
.bikeband.armed .bikelogo{ opacity:0; filter:blur(10px); transform:translate(-50%,-50%) translateY(-12px) scale(.95); }
.bikeband.armed.driving .bikelogo{ opacity:1; filter:blur(0); transform:translate(-50%,-50%);
  transition:opacity 1s var(--ease-out) 2.9s, filter 1s var(--ease-out) 2.9s, transform 1.1s cubic-bezier(.2,.8,.3,1) 2.9s; }

/* ============================================================
   PLANE BAND — branded aircraft flies across the sky
   (mirrors the bike band; triggered once on scroll-in via main.js)
   ============================================================ */
.planeband{ position:relative; overflow:hidden; background:linear-gradient(180deg,#fff 0%, var(--bg-soft) 100%); padding:clamp(3rem,6vw,4.5rem) 0 0; }
.planeband__head{ text-align:center; max-width:52ch; margin:0 auto; }
.planeband__head h2{ font-family:var(--f-head); font-weight:800; color:var(--ink); font-size:clamp(1.5rem,1.1rem+1.6vw,2.2rem); letter-spacing:-.02em; line-height:1.12; }
.planeband__head p{ margin-top:.6rem; color:var(--body); }
.planeband__sky{ position:relative; height:300px; margin-top:1.5rem; }
.cloudstrip{ position:absolute; bottom:30px; left:-3%; right:-3%; width:106%; height:120px; opacity:.20; color:var(--plum); animation:cloudDrift 30s ease-in-out infinite alternate; }
@keyframes cloudDrift{ from{ transform:translateX(-1.6%); } to{ transform:translateX(1.6%); } }
.flier{ position:absolute; top:36%; left:0; width:clamp(190px,26vw,340px); transform:translateX(55vw); z-index:2; will-change:transform; }
.flier__bob{ animation:fly-bob 3.6s ease-in-out infinite alternate; }
.flier img{ width:100%; height:auto; display:block; transform:scaleX(-1); filter:drop-shadow(0 20px 22px rgba(79,7,76,.22)); }
@keyframes fly-bob{ from{ transform:translateY(0); } to{ transform:translateY(-12px); } }
.planeband.armed .flier{ transform:translateX(-30vw); }
.planeband.armed.driving .flier{ animation:flyPast 4.2s cubic-bezier(.18,.62,.4,1) forwards; }
@keyframes flyPast{ from{ transform:translateX(-30vw); } to{ transform:translateX(115vw); } }
/* full logo settles into the plane's wake as it passes */
.planelogo{ position:absolute; left:50%; top:44%; transform:translate(-50%,-50%); z-index:1; width:clamp(130px,24vw,320px); height:auto; pointer-events:none; }
.planeband.armed .planelogo{ opacity:0; filter:blur(10px); transform:translate(-50%,-50%) translateY(-12px) scale(.95); }
.planeband.armed.driving .planelogo{ opacity:1; filter:blur(0); transform:translate(-50%,-50%);
  transition:opacity 1s var(--ease-out) 3.2s, filter 1s var(--ease-out) 3.2s, transform 1.1s cubic-bezier(.2,.8,.3,1) 3.2s; }

/* ============================================================
   HERO INTRO FLYOVER — plays once on page load (home page only)
   Plane sweeps left->right up top; bike rides right->left lower down.
   ============================================================ */
.flyover{ position:absolute; inset:0; overflow:hidden; pointer-events:none; z-index:6; }

/* ----- hero "wipe reveal": a white clone of the hero is revealed in a band that
   sweeps across in sync with the plane, so the plane appears to paint a white
   version of the page behind it, then it settles back to purple ----- */
/* a glassy WATER BUBBLE floats across the hero with the plane: a frosted lens that
   brightens the scene behind it, with a specular highlight, rim light and a soft wobble */
/* a WHITE "second page" sits over the purple hero, but is masked to a circular
   window that follows the cursor — so the bubble reveals the white page underneath */
@property --ax{ syntax:'<length>'; inherits:true; initial-value:0px; }
@property --ay{ syntax:'<length>'; inherits:true; initial-value:0px; }
@property --bx{ syntax:'<length>'; inherits:true; initial-value:0px; }
@property --by{ syntax:'<length>'; inherits:true; initial-value:0px; }
.hero--ghost{ position:absolute; inset:0; z-index:4; pointer-events:none; color:#000;
  background:#fff url("../img/rider-hover.jpg") right center / 60% auto no-repeat;
  opacity:0; transition:opacity .4s ease; --mx:-600px; --my:-600px;
  -webkit-mask:
    radial-gradient(circle 80px at var(--mx) var(--my), #000 0 60%, transparent 100%),
    radial-gradient(circle 54px at calc(var(--mx) + var(--ax)) calc(var(--my) + var(--ay)), #000 0 58%, transparent 100%),
    radial-gradient(circle 52px at calc(var(--mx) - var(--ay)) calc(var(--my) + var(--ax)), #000 0 58%, transparent 100%),
    radial-gradient(circle 50px at calc(var(--mx) + var(--by)) calc(var(--my) - var(--bx)), #000 0 58%, transparent 100%),
    radial-gradient(circle 48px at calc(var(--mx) - var(--bx)) calc(var(--my) - var(--by)), #000 0 58%, transparent 100%);
  -webkit-mask-repeat:no-repeat;
  mask:
    radial-gradient(circle 80px at var(--mx) var(--my), #000 0 60%, transparent 100%),
    radial-gradient(circle 54px at calc(var(--mx) + var(--ax)) calc(var(--my) + var(--ay)), #000 0 58%, transparent 100%),
    radial-gradient(circle 52px at calc(var(--mx) - var(--ay)) calc(var(--my) + var(--ax)), #000 0 58%, transparent 100%),
    radial-gradient(circle 50px at calc(var(--mx) + var(--by)) calc(var(--my) - var(--bx)), #000 0 58%, transparent 100%),
    radial-gradient(circle 48px at calc(var(--mx) - var(--bx)) calc(var(--my) - var(--by)), #000 0 58%, transparent 100%);
  mask-repeat:no-repeat;
  animation:gooWobble 4.5s ease-in-out infinite; }
.hero--ghost.is-on{ opacity:1; }
.hero--ghost .hero__visual{ visibility:hidden; }   /* drop the globe — the big rider photo is the back now */
/* mobile: the back reveal is just the rider photo (no cloned text), filling the area */
@media (max-width:760px){
  .hero--ghost .hero__copy{ display:none; }
  .hero--ghost{ background-size:145% auto; background-position:center 38%; }
}
/* the satellite blobs orbit & wobble so the cluster gels together like water molecules */
@keyframes gooWobble{
  0%,100%{ --ax:48px; --ay:-26px; --bx:-42px; --by:30px; }
  25%{ --ax:26px; --ay:50px; --bx:-24px; --by:-46px; }
  50%{ --ax:-46px; --ay:28px; --bx:40px; --by:44px; }
  75%{ --ax:-24px; --ay:-48px; --bx:46px; --by:-26px; }
}
.hero--ghost *{ animation:none !important; }          /* freeze the clone (cheap, static white page) */
.hero--ghost .hero__bg, .hero--ghost .flyover{ display:none; }
.hero--ghost .reveal{ opacity:1 !important; transform:none !important; }
.hero--ghost .hero__title,
.hero--ghost .hero__lede,
.hero--ghost .hero__lede strong,
.hero--ghost .hero__trust,
.hero--ghost .hero__trust li,
.hero--ghost .pill{ color:#000; }
.hero--ghost .grad{ background:none; color:#000; -webkit-text-fill-color:#000; }
.hero--ghost .pill{ background:#f0f0f0; border-color:rgba(0,0,0,.12); }
.hero--ghost .btn--glass{ color:var(--plum); border-color:rgba(79,7,76,.32); background:rgba(79,7,76,.05); }
.hero--ghost .btn--pink{ background:var(--plum); border-color:var(--plum); color:#fff; }
.hero--ghost .hero__trust svg{ color:var(--plum); }
.hero--ghost .pill__dot{ background:var(--plum); box-shadow:0 0 12px rgba(79,7,76,.5); }
/* glassy rim + highlight that frames the lens window (the "water bubble") */
.hero--bubble{ position:absolute; top:0; left:0; width:240px; aspect-ratio:1; z-index:5; pointer-events:none;
  transform:translate(-50%,-50%); opacity:0; transition:opacity .4s ease; border-radius:50%; will-change:left,top;
  background:
    radial-gradient(circle at 40% 32%, rgba(255,255,255,.6), transparent 22%),
    radial-gradient(circle at 60% 56%, rgba(255,255,255,.32), transparent 16%),
    radial-gradient(circle at 50% 76%, rgba(190,225,255,.3), transparent 26%);
  filter:blur(2px); }
.hero--bubble.is-on{ opacity:1; }
.flyover img{ width:100%; height:auto; display:block; filter:drop-shadow(0 0 5px rgba(255,255,255,.95)) drop-shadow(0 0 16px rgba(255,255,255,.6)) drop-shadow(0 0 34px rgba(255,255,255,.4)); }
.flyover__plane{ position:absolute; top:6%; left:0; width:clamp(170px,18vw,270px); will-change:transform; transform:translateX(-50vw); animation:heroFlyR 3.8s cubic-bezier(.4,.2,.5,1) .2s both; }
.flyover__plane img{ transform:scaleX(-1); }            /* face right (image faces left by default) */
.flyover__bike{ position:absolute; top:60%; left:0; width:clamp(120px,13vw,174px); will-change:transform; transform:translateX(120vw); animation:heroRideL 5.6s cubic-bezier(.30,.18,.5,1) .7s both; }
.flyover__bob{ display:block; }
.flyover__bob--air{ animation:fly-bob 2.6s ease-in-out infinite alternate; }
.flyover__bob--road{ animation:bob .9s ease-in-out infinite alternate; }
@keyframes heroFlyR{ from{ transform:translateX(-50vw); } to{ transform:translateX(122vw); } }
@keyframes heroRideL{ from{ transform:translateX(120vw); } to{ transform:translateX(-50vw); } }

/* ============================================================
   FLYBY — plane sweeps right->left across a section on scroll-in
   ============================================================ */
.flyby{ position:relative; overflow:hidden; }
.flyby__layer{ position:absolute; inset:0; overflow:hidden; pointer-events:none; z-index:4; }
.flyby__plane{ position:absolute; top:5%; left:0; width:clamp(160px,17vw,250px); transform:translateX(102vw); will-change:transform; }
.flyby__plane img{ width:100%; height:auto; display:block; filter:drop-shadow(0 16px 20px rgba(79,7,76,.22)); }
.flyby__bob{ display:block; animation:fly-bob 2.6s ease-in-out infinite alternate; }
.flyby.armed .flyby__plane{ transform:translateX(102vw); }
.flyby.armed.driving .flyby__plane{ animation:flybyLeft 4.4s cubic-bezier(.32,.5,.42,1) forwards; }
@keyframes flybyLeft{ from{ transform:translateX(102vw); } to{ transform:translateX(-58vw); } }

/* ============================================================
   TRUCK BAND — branded truck hauls right->left on the road
   (mirrors the bike band; reuses .skyline + .road)
   ============================================================ */
.truckband{ position:relative; overflow:hidden; background:linear-gradient(180deg,#fff 0%, var(--bg-soft) 100%); padding:clamp(3rem,6vw,4.5rem) 0 0; }
.truckband__head{ text-align:center; max-width:52ch; margin:0 auto; }
.truckband__head h2{ font-family:var(--f-head); font-weight:800; color:var(--ink); font-size:clamp(1.5rem,1.1rem+1.6vw,2.2rem); letter-spacing:-.02em; line-height:1.12; }
.truckband__head p{ margin-top:.6rem; color:var(--body); }
/* heading reveals first; the truck rolls through after it (sequence set below) */
.truckband.armed .truckband__head{ opacity:0; transform:translateY(16px); }
.truckband.armed.driving .truckband__head{ opacity:1; transform:translateY(0); transition:opacity .7s var(--ease-out), transform .8s cubic-bezier(.2,.8,.3,1); }
.truckband__road{ position:relative; height:320px; margin-top:1.5rem; }
.truck{ position:absolute; bottom:50px; left:0; width:clamp(220px,30vw,420px); transform:translateX(-30vw); z-index:2; will-change:transform; }
.truck__bob{ display:block; animation:truck-bob 1.4s ease-in-out infinite; }
.truck img{ width:100%; height:auto; display:block; filter:drop-shadow(0 16px 14px rgba(79,7,76,.26)); }
@keyframes truck-bob{ 0%,100%{ transform:translateY(0); } 50%{ transform:translateY(-2px); } }
.truckband.armed .truck{ transform:translateX(-30vw); }
.truckband.armed.driving .truck{ animation:truckPast 5.4s cubic-bezier(.2,.6,.35,1) 1.1s forwards; }
@keyframes truckPast{ from{ transform:translateX(-30vw); } to{ transform:translateX(115vw); } }

/* ============================================================
   PREMIUM POLISH — subtle, site-wide micro-interactions
   ============================================================ */
/* button: a soft light sheen sweeps across on hover, plus a tactile press */
.btn{ position:relative; overflow:hidden; }
.btn::after{ content:""; position:absolute; top:0; left:-130%; width:55%; height:100%; background:linear-gradient(100deg, transparent, rgba(255,255,255,.38), transparent); transform:skewX(-18deg); pointer-events:none; }
.btn:hover::after{ animation:btnSheen .85s var(--ease-out); }
@keyframes btnSheen{ from{ left:-130%; } to{ left:150%; } }
.btn:active{ transform:translateY(1px) scale(.985); }

/* images gently zoom within their frame on hover */
.media__img img{ transition:transform .8s var(--ease-out); }
.media__img:hover img{ transform:scale(1.05); }
.poster img{ transition:transform .8s var(--ease-out); }
.poster:hover img{ transform:scale(1.05); }

/* card lift parity + icon pop */
.feature:hover{ transform:translateY(-5px); box-shadow:var(--shadow-md); border-color:rgba(226,58,124,.3); }
.tcard{ transition:transform .4s var(--ease-out), box-shadow .4s, border-color .4s; }
.tcard:hover{ transform:translateY(-5px); box-shadow:var(--shadow-md); border-color:rgba(226,58,124,.25); }
.svc__ic,.feature__ic{ transition:transform .45s var(--ease-out); }
.svc:hover .svc__ic,.feature:hover .feature__ic{ transform:scale(1.08) rotate(-3deg); }

/* the "live" pill dot breathes */
.pill__dot{ animation:dotPulse 2.4s ease-in-out infinite; }
@keyframes dotPulse{ 0%,100%{ box-shadow:0 0 0 0 rgba(226,58,124,.55); } 70%{ box-shadow:0 0 0 8px rgba(226,58,124,0); } 100%{ box-shadow:0 0 0 0 rgba(226,58,124,0); } }

/* gradient headings drift slowly for a living, premium feel */
.grad{ background-size:220% auto; animation:gradDrift 8s ease-in-out infinite alternate; }
@keyframes gradDrift{ from{ background-position:0% center; } to{ background-position:100% center; } }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.tgrid{ display:grid; grid-template-columns:repeat(3,1fr); gap:1.3rem; }
.tcard{ background:#fff; border:1px solid var(--line); border-radius:var(--r-lg); padding:1.8rem; box-shadow:var(--shadow-sm); display:flex; flex-direction:column; }
.tcard__stars{ color:var(--pink); letter-spacing:.15em; font-size:.95rem; margin-bottom:1rem; }
.tcard__quote{ font-size:1.02rem; color:var(--ink); line-height:1.6; }
.tcard__who{ display:flex; align-items:center; gap:.8rem; margin-top:1.5rem; padding-top:1.2rem; border-top:1px solid var(--line); }
.tcard__avatar{ width:42px; height:42px; border-radius:50%; flex:0 0 auto; display:grid; place-items:center; font-family:var(--f-head); font-weight:800; color:#fff; background:linear-gradient(140deg,var(--pink),var(--plum)); }
.tcard__name{ font-family:var(--f-head); font-weight:700; color:var(--ink); font-size:.95rem; }
.tcard__role{ font-size:.82rem; color:var(--muted); }

/* ============================================================
   FAQ  (native <details>, no JS)
   ============================================================ */
.faq{ max-width:780px; margin-inline:auto; }
.faq__item{ border:1px solid var(--line); border-radius:var(--r-md); background:#fff; margin-bottom:.8rem; overflow:hidden; transition:border-color .3s, box-shadow .3s; }
.faq__item[open]{ border-color:rgba(226,58,124,.35); box-shadow:var(--shadow-sm); }
.faq__item summary{ list-style:none; cursor:pointer; padding:1.15rem 1.4rem; display:flex; align-items:center; justify-content:space-between; gap:1rem; font-family:var(--f-head); font-weight:700; color:var(--ink); font-size:1.02rem; }
.faq__item summary::-webkit-details-marker{ display:none; }
.faq__item summary::after{ content:""; width:22px; height:22px; flex:0 0 auto; background:var(--pink-soft); border-radius:50%; position:relative; transition:background .3s; background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23E23A7C' stroke-width='3' stroke-linecap='round'%3E%3Cpath d='M12 5v14M5 12h14'/%3E%3C/svg%3E"); background-size:14px; background-repeat:no-repeat; background-position:center; transition:transform .35s var(--ease); }
.faq__item[open] summary::after{ transform:rotate(135deg); }
.faq__item .faq__a{ padding:0 1.4rem 1.25rem; color:var(--body); font-size:.96rem; line-height:1.65; }

/* ============================================================
   TRACK input
   ============================================================ */
.trackform{ display:flex; gap:.6rem; margin:0 0 1.6rem; max-width:420px; }
.trackform input{ flex:1; min-width:0; font-family:var(--f-body); font-size:.96rem; padding:.85em 1.1em; border:1.5px solid var(--line-2); border-radius:var(--r-pill); background:#fff; color:var(--ink); outline:none; transition:border-color .3s, box-shadow .3s; }
.trackform input::placeholder{ color:var(--muted); }
.trackform input:focus{ border-color:var(--pink); box-shadow:0 0 0 4px var(--pink-soft); }
.trackform button{ flex:0 0 auto; }

/* anchored segment sections clear the fixed nav when jumped to */
.seg{ scroll-margin-top: 88px; }
.pickme__grid .svc{ cursor:pointer; }

/* ============================================================
   PAGE HEADER (inner pages)
   ============================================================ */
.pagehead{
  position:relative; overflow:hidden; color:#fff; text-align:center;
  background:
    radial-gradient(120% 120% at 80% 0%, rgba(226,58,124,.30), transparent 55%),
    linear-gradient(160deg, #5A0A56 0%, var(--plum) 45%, var(--plum-900) 100%);
  padding:calc(74px + clamp(2.6rem,6vw,4.5rem)) 0 clamp(2.6rem,6vw,4.5rem);
}
.pagehead::after{ content:""; position:absolute; inset:0; opacity:.5; pointer-events:none;
  background-image:linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size:46px 46px; -webkit-mask-image:radial-gradient(70% 80% at 50% 30%, #000, transparent 80%); mask-image:radial-gradient(70% 80% at 50% 30%, #000, transparent 80%); }
.pagehead__inner{ position:relative; z-index:1; max-width:62ch; margin-inline:auto; }
.pagehead .crumb{ font-family:var(--f-head); font-weight:600; font-size:.8rem; letter-spacing:.04em; color:rgba(255,255,255,.7); margin-bottom:.9rem; }
.pagehead .crumb a{ color:rgba(255,255,255,.7); }
.pagehead .crumb a:hover{ color:#fff; }
.pagehead h1{ font-family:var(--f-head); font-weight:800; font-size:clamp(2.1rem,1.4rem+3vw,3.6rem); line-height:1.06; letter-spacing:-.03em; }
.pagehead h1 .grad{ background:linear-gradient(100deg,#FF8FB6,#fff); -webkit-background-clip:text; background-clip:text; color:transparent; }
.pagehead p{ margin:1.1rem auto 0; max-width:54ch; color:rgba(255,255,255,.82); font-size:1.08rem; }

/* ============================================================
   SERVICES teaser (home)
   ============================================================ */
.svc__grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:1.3rem; }
.svc{ display:block; background:#fff; border:1px solid var(--line); border-radius:var(--r-lg); padding:1.9rem 1.7rem; box-shadow:var(--shadow-sm); transition:transform .4s var(--ease-out), box-shadow .4s, border-color .4s; }
.svc:hover{ transform:translateY(-5px); box-shadow:var(--shadow-md); border-color:rgba(226,58,124,.3); }
.svc__ic{ width:50px; height:50px; border-radius:14px; background:linear-gradient(140deg,var(--pink-soft),var(--bg-lilac)); display:grid; place-items:center; color:var(--plum); margin-bottom:1.1rem; }
.svc__ic::before{ content:""; width:24px; height:24px; background:currentColor; -webkit-mask:center/contain no-repeat; mask:center/contain no-repeat; }
.svc h3{ font-family:var(--f-head); font-weight:700; font-size:1.18rem; color:var(--ink); margin-bottom:.5rem; }
.svc p{ font-size:.93rem; }
.svc__more{ display:inline-flex; align-items:center; gap:.4em; margin-top:1rem; font-family:var(--f-head); font-weight:700; font-size:.88rem; color:var(--pink); }
.svc:hover .svc__more svg{ transform:translateX(3px); }
.svc__more svg{ transition:transform .35s var(--ease-out); }

/* "Our services" — international shipping featured as the core, the rest around it */
.svc--core{ grid-column:1 / -1; display:flex; gap:1.5rem; align-items:flex-start; background:linear-gradient(150deg,#fff 0%, var(--bg-lilac) 100%); border-color:rgba(226,58,124,.32); }
.svc--core .svc__ic{ flex:0 0 auto; width:58px; height:58px; background:linear-gradient(140deg,var(--pink),var(--plum)); color:#fff; margin-bottom:0; }
.svc--core .svc__ic::before{ width:28px; height:28px; }
.svc--core__body{ min-width:0; }
.svc--core h3{ font-size:1.32rem; }
.svc--core p{ font-size:.98rem; max-width:62ch; }
.svc__tag{ display:inline-block; font-family:var(--f-head); font-weight:700; font-size:.68rem; letter-spacing:.1em; text-transform:uppercase; color:var(--pink); background:var(--pink-soft); padding:.28rem .65rem; border-radius:999px; margin-bottom:.7rem; }
@media (max-width:640px){ .svc--core{ flex-direction:column; gap:1rem; } }

/* ============================================================
   CONTACT
   ============================================================ */
.contactgrid{ display:grid; grid-template-columns:1fr 1fr; gap:1.5rem; align-items:start; }
.contact-card{ background:#fff; border:1px solid var(--line); border-radius:var(--r-lg); padding:clamp(1.6rem,3vw,2.2rem); box-shadow:var(--shadow-sm); }
.contact-list{ display:flex; flex-direction:column; gap:1.2rem; }
.contact-row{ display:flex; gap:1rem; align-items:flex-start; }
.contact-row__ic{ width:44px; height:44px; flex:0 0 auto; border-radius:12px; background:var(--pink-soft); display:grid; place-items:center; color:var(--plum); }
.contact-row__ic::before{ content:""; width:22px; height:22px; background:currentColor; -webkit-mask:center/contain no-repeat; mask:center/contain no-repeat; }
.contact-row h4{ font-family:var(--f-head); font-weight:700; color:var(--ink); font-size:1rem; margin-bottom:.15rem; }
.contact-row a, .contact-row p{ color:var(--body); font-size:.95rem; }
.contact-row a:hover{ color:var(--pink); }
.field{ display:flex; flex-direction:column; gap:.4rem; margin-bottom:1rem; }
.field label{ font-family:var(--f-head); font-weight:600; font-size:.84rem; color:var(--ink); }
.field input, .field textarea{ font-family:var(--f-body); font-size:.96rem; padding:.8em 1em; border:1.5px solid var(--line-2); border-radius:12px; background:#fff; color:var(--ink); outline:none; width:100%; transition:border-color .3s, box-shadow .3s; }
.field textarea{ resize:vertical; min-height:120px; }
.field input:focus, .field textarea:focus{ border-color:var(--pink); box-shadow:0 0 0 4px var(--pink-soft); }

/* ============================================================
   MEDIA band (image + text)
   ============================================================ */
.media{ display:grid; grid-template-columns:1fr 1fr; gap:clamp(2rem,5vw,4.5rem); align-items:center; }
.media--rev .media__img{ order:2; }
.media__img{ position:relative; border-radius:var(--r-lg); overflow:hidden; box-shadow:var(--shadow-md); aspect-ratio:4/3; background:var(--bg-lilac); }
.media__img img{ width:100%; height:100%; object-fit:cover; display:block; }
.media__img figcaption{ position:absolute; left:14px; bottom:14px; right:14px; color:#fff; font-family:var(--f-head); font-weight:600; font-size:.9rem; text-shadow:0 2px 12px rgba(0,0,0,.6); }
.media__text .h2{ margin:.3rem 0 0; }
.media__text p{ margin-top:1.1rem; color:var(--body); font-size:1.06rem; }
.media__text .btn{ margin-top:1.6rem; }

/* team figure — contained, cropped to a clean banner so it never dominates */
.figure{ position:relative; max-width:920px; margin:1.5rem auto 0; border-radius:var(--r-lg); overflow:hidden; box-shadow:var(--shadow-md); aspect-ratio:16/9; }
.figure img{ width:100%; height:100%; object-fit:cover; object-position:center 32%; display:block; }
.figure::after{ content:""; position:absolute; inset:0; pointer-events:none; box-shadow:inset 0 0 0 1px rgba(255,255,255,.12); border-radius:inherit; }
.figure figcaption{ position:absolute; left:0; right:0; bottom:0; padding:1.4rem 1.2rem .9rem; text-align:center; color:#fff; font-family:var(--f-head); font-weight:600; font-size:.92rem; background:linear-gradient(transparent, rgba(34,4,32,.72)); }

/* ============================================================
   PHOTO GALLERY
   ============================================================ */
.gallery{ display:grid; grid-template-columns:repeat(3,1fr); gap:1rem; }
.gphoto{ position:relative; border-radius:var(--r-lg); overflow:hidden; box-shadow:var(--shadow-sm); aspect-ratio:1/1; background:var(--bg-lilac); }
.gphoto img{ width:100%; height:100%; object-fit:cover; display:block; transition:transform .6s var(--ease-out); }
.gphoto:hover img{ transform:scale(1.06); }
.gphoto figcaption{ position:absolute; left:0; right:0; bottom:0; padding:1.5rem 1.1rem .9rem; color:#fff; font-family:var(--f-head); font-weight:600; font-size:.92rem; background:linear-gradient(transparent, rgba(34,4,32,.8)); }

/* ============================================================
   PROSE (story / long-form text)
   ============================================================ */
.prose p{ color:var(--body); font-size:1.08rem; line-height:1.78; margin-bottom:1.15rem; }
.prose p:last-child{ margin-bottom:0; }
.prose strong{ color:var(--ink); font-weight:700; }

/* ============================================================
   LEADERSHIP cards
   ============================================================ */
.leaders{ display:grid; grid-template-columns:repeat(4,1fr); gap:1.4rem; }
.leader{ background:#fff; border:1px solid var(--line); border-radius:var(--r-lg); overflow:hidden; box-shadow:var(--shadow-sm); transition:transform .4s var(--ease-out), box-shadow .4s; }
.leader:hover{ transform:translateY(-5px); box-shadow:var(--shadow-md); }
.leader__img{ aspect-ratio:4/5; background:var(--bg-lilac); }
.leader__img img{ width:100%; height:100%; object-fit:cover; object-position:center 20%; display:block; }
.leader__body{ padding:1.3rem 1.4rem 1.5rem; }
.leader__name{ font-family:var(--f-head); font-weight:800; color:var(--ink); font-size:1.16rem; }
.leader__role{ color:var(--pink); font-weight:700; font-size:.84rem; letter-spacing:.04em; text-transform:uppercase; margin-top:.25rem; }
.leader__bio{ color:var(--body); font-size:.92rem; margin-top:.7rem; }

/* team members — circular brand avatars (face cut out, sitting in a brand-colour circle) */
.team__grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:1.6rem; }
.tmate{ text-align:center; }
.tmate__av{ width:clamp(132px,15vw,186px); aspect-ratio:1; margin:0 auto 1rem; border-radius:50%; box-shadow:0 16px 34px -14px rgba(79,7,76,.55); transition:transform .45s var(--ease-out), box-shadow .45s; }
.tmate__av img{ width:100%; height:100%; object-fit:contain; display:block; }
.tmate:hover .tmate__av{ transform:translateY(-6px) scale(1.03); box-shadow:0 28px 46px -16px rgba(79,7,76,.6); }
.tmate__name{ font-family:var(--f-head); font-weight:800; color:var(--ink); font-size:1.12rem; }
.tmate__role{ color:var(--pink); font-weight:700; font-size:.8rem; letter-spacing:.05em; text-transform:uppercase; margin-top:.25rem; }
@media (max-width:760px){ .team__grid{ grid-template-columns:repeat(2,1fr); } }
@media (max-width:430px){ .team__grid{ grid-template-columns:1fr; } }

/* ============================================================
   POSTER strip (campaigns / recruitment flyers)
   ============================================================ */
.posters{ display:flex; flex-wrap:wrap; justify-content:center; align-items:flex-start; gap:1.3rem; padding:.4rem 0; }
.poster{ flex:0 0 auto; height:clamp(240px,26vw,330px); border-radius:var(--r-md); overflow:hidden; box-shadow:var(--shadow-md); border:1px solid var(--line); transition:transform .4s var(--ease-out), box-shadow .4s; }
.poster:hover{ transform:translateY(-5px); box-shadow:0 26px 50px -22px rgba(79,7,76,.45); }
.poster img{ height:100%; width:auto; display:block; }
.posters--center{ justify-content:center; }

/* cinematic band — brand video as an ambient, futuristic-luxury backdrop */
.cineband{ position:relative; isolation:isolate; overflow:hidden; color:#fff; text-align:center;
  padding:clamp(5rem,12vw,9rem) 0; background:var(--plum-900); }
.cineband__bg{ position:absolute; inset:0; z-index:-1; }
.cineband__vid{ position:absolute; inset:0; width:100%; height:100%; object-fit:cover; opacity:.5; }
.cineband__vid--glow{ mix-blend-mode:screen; opacity:.35; filter:blur(2px) saturate(1.25); }
.cineband__overlay{ position:absolute; inset:0; background:
  radial-gradient(120% 90% at 50% 28%, rgba(226,58,124,.28), transparent 60%),
  linear-gradient(180deg, rgba(28,4,26,.78), rgba(28,4,26,.55) 50%, rgba(28,4,26,.9)); }
.cineband__scan{ position:absolute; inset:0; opacity:.22; mix-blend-mode:overlay;
  background:repeating-linear-gradient(0deg, rgba(255,255,255,.06) 0 1px, transparent 1px 4px); animation:holoscan 6s linear infinite; }
.cineband__inner{ position:relative; max-width:60ch; margin-inline:auto; }
.cineband__title{ font-family:var(--f-head); font-weight:800; font-size:clamp(2rem,1.3rem+3vw,3.6rem); line-height:1.05; letter-spacing:-.03em; text-shadow:0 6px 34px rgba(0,0,0,.55); }
.cineband__motto{ margin:1.1rem 0 2rem; font-family:var(--f-head); font-weight:800; letter-spacing:.22em; text-transform:uppercase; font-size:.82rem; color:#FFD7E7; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width:1020px){
  .hero__inner{ grid-template-columns:1fr; }
  .hero__visual{ order:0; max-width:420px; margin-inline:auto; }
  .steps{ grid-template-columns:repeat(2,1fr); gap:1.6rem 1.2rem; }
  .steps::before{ display:none; }
  .why__grid{ grid-template-columns:repeat(2,1fr); }
}
@media (max-width:860px){
  .nav__links{ display:none; }
  .burger{ display:flex; }
  .track__grid{ grid-template-columns:1fr; }
  .ship__cols{ grid-template-columns:1fr; }
  .stats__grid{ grid-template-columns:1fr 1fr; }
  .stat:nth-child(2){ border-right:none; }
  .stat:nth-child(-n+2){ border-bottom:1px solid rgba(255,255,255,.12); }
  .footer__grid{ grid-template-columns:1fr 1fr; }
  .trow{ grid-template-columns:1.4fr 1fr; }
  .trow--head, .trow .t-min{ display:none; }
  .trow .t-rate{ justify-self:end; }
  .trow .t-free{ grid-column:2; justify-self:end; }
}
@media (max-width:1020px){
  .svc__grid{ grid-template-columns:repeat(2,1fr); }
}
@media (max-width:1020px){
  .gallery{ grid-template-columns:repeat(2,1fr); }
  .leaders{ grid-template-columns:1fr 1fr; }
}
@media (max-width:860px){
  .tgrid{ grid-template-columns:repeat(2,1fr); }
  .contactgrid{ grid-template-columns:1fr; }
  .media{ grid-template-columns:1fr; }
  .media--rev .media__img{ order:0; }
}
@media (max-width:560px){
  .gallery{ grid-template-columns:1fr; }
  .leaders{ grid-template-columns:1fr; }
}
@media (max-width:520px){
  .steps{ grid-template-columns:1fr; }
  .why__grid{ grid-template-columns:1fr; }
  .stats__grid{ grid-template-columns:1fr 1fr; }
  /* one column, everything centered for a tidy stacked footer */
  .footer__grid{ grid-template-columns:1fr; text-align:center; gap:2.4rem; }
  .footer__brand{ display:flex; flex-direction:column; align-items:center; }
  .footer__tag{ max-width:34ch; }
  .footer__col a, .footer__addr{ text-align:center; }
  .trackform{ flex-direction:column; }
  .trackform button{ width:100%; }
}

@media (prefers-reduced-motion: reduce){
  .reveal{ opacity:1 !important; transform:none !important; }
  *{ animation-duration:.001ms !important; transition-duration:.001ms !important; }
  .rider{ animation:none !important; transform:translateX(38vw) !important; }
  .flier{ animation:none !important; transform:translateX(34vw) !important; }
  .flyover{ display:none !important; }
  .partners__track{ animation:none !important; }
}

/* ============================================================
   RESPONSIVE — polish across every screen size
   ============================================================ */
/* never allow accidental sideways scroll */
html, body{ overflow-x:hidden; }

/* very large screens: widen the canvas so it doesn't get lost in whitespace */
@media (min-width:1600px){ :root{ --maxw:1480px; } .globe{ max-width:580px; } }
@media (min-width:2040px){ :root{ --maxw:1640px; } .globe{ max-width:620px; } }

/* collapse the nav a touch earlier so links never crowd the logo */
@media (max-width:980px){ .nav__links{ display:none; } .burger{ display:flex; } }

/* lone 3rd gallery photo (2-col layouts): center it instead of sitting bottom-left */
@media (max-width:1020px){
  .gallery > *:nth-child(3):last-child{ grid-column:1 / -1; justify-self:center; width:calc(50% - .5rem); }
}
/* tablets & large phones */
@media (max-width:760px){
  .leaders, .gallery{ grid-template-columns:repeat(2,1fr); }
  /* campaign posters: stack full-width & centered (no uneven row) */
  .posters{ flex-direction:column; align-items:center; }
  .poster{ height:auto; width:100%; max-width:400px; }
  .poster img{ height:auto; width:100%; }
  /* footer credits centered */
  .footer__base{ flex-direction:column; align-items:center; text-align:center; gap:.5rem; }
}

/* phones & large phones: vehicles drive all the way ACROSS, on a loop, so you
   always catch a full drive-past while the band is on screen (they start fully
   off-screen with no delay, so they're never left sitting there "waiting") */
@media (max-width:760px){
  /* truck faces right → keeps hauling left→right across the road */
  .truckband.armed .truck{ transform:translateX(-60vw); }
  .truckband.armed.driving .truck{ animation:truckPastM 4s linear 0s infinite; }
  @keyframes truckPastM{ from{ transform:translateX(-60vw); } to{ transform:translateX(135vw); } }

  /* rider faces left → keeps riding right→left across the road */
  .bikeband.armed .rider{ transform:translateX(125vw); }
  .bikeband.armed.driving .rider{ animation:drivePastM 3.6s linear 0s infinite; }
  @keyframes drivePastM{ from{ transform:translateX(125vw); } to{ transform:translateX(-60vw); } }

  /* plane faces right → keeps flying left→right across the sky */
  .planeband.armed .flier{ transform:translateX(-50vw); }
  .planeband.armed.driving .flier{ animation:flyPastM 5.5s linear 0s infinite; }
  @keyframes flyPastM{ from{ transform:translateX(-50vw); } to{ transform:translateX(130vw); } }
}

/* phones */
@media (max-width:600px){
  .svc__grid{ grid-template-columns:1fr; }
  .tgrid{ grid-template-columns:1fr; }
  /* shorter vehicle bands so they don't eat the screen */
  .bikeband__road, .planeband__sky, .truckband__road{ height:210px; }
  .bikelogo, .planelogo{ width:clamp(120px,46vw,200px); }
  .hero__visual{ max-width:340px; }
  /* trust list: all centered, stacked — clean & premium */
  .hero__trust{ flex-direction:column; align-items:center; gap:.7rem; margin-top:1.6rem; }
  .hero__trust li{ font-size:.95rem; justify-content:center; }
}

@media (max-width:480px){
  .quote .two-col{ grid-template-columns:1fr; }      /* stacked calculator fields */
  .hero__cta, .cta__row{ flex-wrap:wrap; }
  .hero__cta .btn, .cta__row .btn{ width:100%; justify-content:center; }  /* full-width CTAs */
  .pagehead h1{ overflow-wrap:break-word; }
}
