/* ==========================================================================
   Couriers Franchise — courier franchise site
   Palette: signal amber on deep navy (courier / last-mile logistics feel)
   ========================================================================== */

:root {
  /* Brand */
  --amber:        #FFC300;
  --amber-600:    #F5B301;
  --amber-300:    #FFD84D;
  --amber-soft:   #FFF6D9;

  --navy:         #0B1020;
  --navy-700:     #131B33;
  --navy-600:     #1B2544;
  --navy-500:     #27335A;

  /* Neutrals */
  --ink:          #10162A;
  --body:         #4A5468;
  --muted:        #7A849A;
  --line:         #E4E8F0;
  --surface:      #FFFFFF;
  --surface-2:    #F6F8FC;
  --surface-3:    #EEF2F9;

  --ok:           #12A55B;
  --warn:         #E5484D;

  /* Type */
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-head: 'Sora', var(--font-body);

  /* Layout */
  --wrap: 1200px;
  --gap: clamp(1.25rem, 3vw, 2rem);
  --radius: 18px;
  --radius-sm: 12px;
  --radius-lg: 28px;

  /* Elevation */
  --shadow-sm: 0 2px 8px rgba(11, 16, 32, .06);
  --shadow:    0 12px 32px rgba(11, 16, 32, .10);
  --shadow-lg: 0 28px 64px rgba(11, 16, 32, .16);
  --shadow-amber: 0 14px 34px rgba(245, 179, 1, .32);

  --ease: cubic-bezier(.22, 1, .36, 1);
  --header-h: 76px;
}

/* --------------------------------------------------------------------------
   Reset & base
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

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

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--body);
  background: var(--surface);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body.is-locked { overflow: hidden; }

h1, h2, h3, h4, h5 {
  font-family: var(--font-head);
  color: var(--ink);
  line-height: 1.18;
  margin: 0 0 .6em;
  letter-spacing: -.02em;
  font-weight: 700;
}

h1 { font-size: clamp(2.1rem, 1.35rem + 3.1vw, 3.75rem); font-weight: 800; }
h2 { font-size: clamp(1.65rem, 1.15rem + 2.1vw, 2.7rem); font-weight: 800; }
h3 { font-size: clamp(1.15rem, 1rem + .7vw, 1.5rem); }
h4 { font-size: 1.075rem; }

p { margin: 0 0 1.1rem; }
p:last-child { margin-bottom: 0; }

a { color: var(--navy-600); text-decoration: none; transition: color .25s var(--ease); }
a:hover { color: var(--amber-600); }

img, svg { max-width: 100%; }
ul, ol { margin: 0 0 1.1rem; padding-left: 1.15rem; }
li { margin-bottom: .45rem; }

strong { color: var(--ink); font-weight: 700; }
/* On dark surfaces the default ink colour is nearly invisible — lift it to white.
   More specific rules (e.g. .hero__trust strong) still win where colour is intended. */
.hero strong, .section--dark strong, .frame strong, .hero-card strong, .page-hero strong {
  color: #fff;
}

:focus-visible {
  outline: 3px solid var(--amber);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 999;
  background: var(--navy); color: #fff; padding: .8rem 1.2rem; border-radius: 0 0 10px 0;
}
.skip-link:focus { left: 0; color: #fff; }

.wrap {
  width: min(100% - 2.5rem, var(--wrap));
  margin-inline: auto;
}

.section { padding: clamp(3.5rem, 7vw, 6.5rem) 0; }
.section--tight { padding: clamp(2.5rem, 5vw, 4rem) 0; }
.section--alt { background: var(--surface-2); }
.section--dark { background: var(--navy); color: #B9C2D6; }
.section--dark h2, .section--dark h3, .section--dark h4 { color: #fff; }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* --------------------------------------------------------------------------
   Section heading block
   -------------------------------------------------------------------------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .74rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase;
  color: var(--navy-600);
  background: var(--amber-soft);
  border: 1px solid rgba(245, 179, 1, .35);
  padding: .42rem .9rem; border-radius: 999px;
  margin-bottom: 1.1rem;
}
.eyebrow::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--amber-600);
  box-shadow: 0 0 0 0 rgba(245, 179, 1, .6);
  animation: pulse-dot 2.4s infinite;
}
.section--dark .eyebrow {
  color: var(--amber); background: rgba(255, 195, 0, .1); border-color: rgba(255, 195, 0, .25);
}

@keyframes pulse-dot {
  0%   { box-shadow: 0 0 0 0 rgba(245, 179, 1, .65); }
  70%  { box-shadow: 0 0 0 9px rgba(245, 179, 1, 0); }
  100% { box-shadow: 0 0 0 0 rgba(245, 179, 1, 0); }
}

.section-head { max-width: 720px; margin-bottom: clamp(2rem, 4vw, 3.25rem); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head p { font-size: 1.06rem; }

.lead { font-size: clamp(1.02rem, .98rem + .3vw, 1.2rem); color: var(--body); }

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */
.btn {
  --btn-bg: var(--amber);
  --btn-fg: var(--navy);
  position: relative;
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  font-family: var(--font-body);
  font-weight: 700; font-size: .95rem; line-height: 1;
  padding: 1rem 1.7rem;
  border: 0; border-radius: 999px;
  background: var(--btn-bg); color: var(--btn-fg);
  cursor: pointer; overflow: hidden; isolation: isolate;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), background .3s var(--ease);
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; flex: none; transition: transform .3s var(--ease); }
.btn::before {
  content: ''; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(120deg, transparent 20%, rgba(255,255,255,.55) 50%, transparent 80%);
  transform: translateX(-120%);
}
.btn:hover::before { animation: sheen .85s var(--ease); }
@keyframes sheen { to { transform: translateX(120%); } }

.btn--primary { box-shadow: var(--shadow-amber); }
.btn--primary:hover {
  background: var(--amber-300); color: var(--navy);
  transform: translateY(-3px);
  box-shadow: 0 20px 42px rgba(245, 179, 1, .42);
}
.btn--primary:hover svg { transform: translateX(4px); }

.btn--dark { --btn-bg: var(--navy); --btn-fg: #fff; box-shadow: var(--shadow); }
.btn--dark:hover { background: var(--navy-600); color: #fff; transform: translateY(-3px); }

.btn--ghost {
  --btn-bg: transparent; --btn-fg: var(--navy);
  border: 2px solid rgba(11, 16, 32, .16);
  padding: calc(1rem - 2px) calc(1.7rem - 2px);
}
.btn--ghost:hover { border-color: var(--navy); color: var(--navy); transform: translateY(-3px); }
/* Every dark surface, not just .section--dark — the hero and inner page heroes
   use their own classes and would otherwise render dark text on a dark ground. */
.section--dark .btn--ghost, .cta-strip .btn--ghost,
.hero .btn--ghost, .page-hero .btn--ghost, .frame .btn--ghost {
  --btn-fg: #fff; border-color: rgba(255,255,255,.3);
}
.section--dark .btn--ghost:hover, .cta-strip .btn--ghost:hover,
.hero .btn--ghost:hover, .page-hero .btn--ghost:hover, .frame .btn--ghost:hover {
  border-color: var(--amber); color: var(--amber);
}

.btn--sm  { padding: .72rem 1.25rem; font-size: .875rem; }
.btn--lg  { padding: 1.15rem 2.1rem; font-size: 1.02rem; }
.btn--block { width: 100%; }

.btn-row { display: flex; flex-wrap: wrap; gap: .85rem; }

/* --------------------------------------------------------------------------
   Scroll progress + topbar + header
   -------------------------------------------------------------------------- */
.scroll-progress {
  position: fixed; inset: 0 0 auto; height: 3px; z-index: 120;
  background: transparent; pointer-events: none;
}
.scroll-progress span {
  display: block; height: 100%; width: 0;
  background: linear-gradient(90deg, var(--amber-600), var(--amber-300));
  box-shadow: 0 0 12px rgba(245,179,1,.8);
}

.topbar {
  background: var(--navy);
  color: #A9B3CA;
  font-size: .82rem;
}
.topbar__inner { display: flex; align-items: center; gap: 1.5rem; min-height: 42px; flex-wrap: wrap; }
.topbar__spacer { flex: 1; }
.topbar__item { display: inline-flex; align-items: center; gap: .45rem; color: #A9B3CA; }
.topbar__item svg { width: 15px; height: 15px; fill: var(--amber); }
a.topbar__item:hover { color: #fff; }

.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.86);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: box-shadow .3s var(--ease), border-color .3s var(--ease), background .3s var(--ease);
}
.site-header.is-stuck {
  box-shadow: 0 8px 30px rgba(11,16,32,.08);
  border-bottom-color: var(--line);
}
.site-header__inner {
  display: flex; align-items: center; gap: 1.25rem;
  min-height: var(--header-h);
}
.site-header__actions { display: flex; align-items: center; gap: .6rem; margin-left: auto; }

.brand { display: inline-flex; align-items: center; gap: .7rem; flex: none; }
.brand__mark {
  display: grid; place-items: center;
  width: 44px; height: 44px; border-radius: 13px;
  background: linear-gradient(140deg, var(--amber), var(--amber-600));
  box-shadow: var(--shadow-amber);
  transition: transform .45s var(--ease);
}
.brand:hover .brand__mark { transform: rotate(-8deg) scale(1.06); }
.brand__mark svg { width: 27px; height: 27px; fill: var(--navy); }
.brand__text { display: flex; flex-direction: column; line-height: 1.15; }
.brand__text strong {
  font-family: var(--font-head); font-size: 1.14rem; font-weight: 800;
  color: var(--ink); letter-spacing: -.02em;
}
.brand__text small { font-size: .68rem; color: var(--muted); letter-spacing: .03em; }

.nav { margin-left: auto; }
.nav__list { display: flex; align-items: center; gap: .35rem; list-style: none; margin: 0; padding: 0; }
.nav__list > li { margin: 0; }
.nav__list a {
  position: relative; display: block;
  padding: .6rem .95rem; border-radius: 10px;
  font-weight: 600; font-size: .93rem; color: var(--ink);
  white-space: nowrap;   /* never let a two-word label wrap onto a second line */
}
.nav__list a::after {
  content: ''; position: absolute; left: 50%; bottom: .34rem;
  width: 0; height: 2px; border-radius: 2px; background: var(--amber-600);
  transform: translateX(-50%);
  transition: width .32s var(--ease);
}
.nav__list a:hover::after,
.nav__list a[aria-current="page"]::after { width: 22px; }
.nav__list a[aria-current="page"] { color: var(--navy); }
.nav__cta-mobile { display: none; }

.burger {
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  width: 44px; height: 44px; padding: 0 11px;
  background: var(--surface-2); border: 1px solid var(--line); border-radius: 12px;
  cursor: pointer;
}
.burger span {
  display: block; height: 2px; width: 100%; border-radius: 2px; background: var(--ink);
  transition: transform .32s var(--ease), opacity .2s linear;
}
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* --------------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------------- */
.hero {
  position: relative; overflow: hidden;
  background: radial-gradient(1100px 620px at 78% -8%, var(--navy-600) 0%, var(--navy) 58%);
  color: #C3CCE0;
  padding: clamp(3.5rem, 7vw, 6rem) 0 clamp(4rem, 8vw, 7rem);
}
.hero::after {
  content: ''; position: absolute; inset: auto 0 -1px 0; height: 90px;
  background: linear-gradient(to bottom, transparent, var(--surface));
  pointer-events: none;
}
.hero__grid {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1.08fr .92fr; gap: clamp(2rem, 5vw, 4rem); align-items: center;
}
.hero h1 { color: #fff; }
.hero h1 .hl {
  position: relative; color: var(--amber); white-space: nowrap;
}
.hero h1 .hl::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: .06em; height: .22em;
  background: rgba(255,195,0,.22); border-radius: 4px; z-index: -1;
  transform: scaleX(0); transform-origin: left;
  animation: underline-in 1s var(--ease) .7s forwards;
}
@keyframes underline-in { to { transform: scaleX(1); } }

.hero__sub { font-size: clamp(1rem, .95rem + .35vw, 1.16rem); max-width: 56ch; margin-bottom: 1.9rem; }

.hero__points { list-style: none; padding: 0; margin: 0 0 2rem; display: grid; gap: .6rem; }
.hero__points li { display: flex; align-items: flex-start; gap: .65rem; margin: 0; color: #D3DAE9; }
.hero__points svg { width: 20px; height: 20px; flex: none; margin-top: .18rem; fill: var(--amber); }

.hero__trust {
  display: flex; flex-wrap: wrap; gap: 1.4rem 2.2rem; margin-top: 2.4rem;
  padding-top: 1.8rem; border-top: 1px solid rgba(255,255,255,.1);
}
.hero__trust div strong {
  display: block; font-family: var(--font-head); font-size: 1.85rem; color: var(--amber); line-height: 1;
}
.hero__trust div span { font-size: .82rem; color: #96A1B8; }

/* Animated hero panel */
.hero__panel { position: relative; }
.hero-card {
  position: relative; z-index: 2;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-lg);
  padding: 1.6rem;
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-lg);
}
.hero-card__head { display: flex; align-items: center; gap: .7rem; margin-bottom: 1.2rem; }
.hero-card__dot { width: 10px; height: 10px; border-radius: 50%; background: var(--ok); animation: pulse-dot 2s infinite; }
.hero-card__head p { margin: 0; font-size: .82rem; color: #96A1B8; }
.hero-card__head strong { color: #fff; font-size: .95rem; display: block; }

.track { display: grid; gap: 0; }
.track__step {
  display: grid; grid-template-columns: 34px 1fr; gap: .9rem; align-items: start;
  padding-bottom: 1.1rem;
}
.track__step:last-child { padding-bottom: 0; }
.track__icon {
  position: relative; display: grid; place-items: center;
  width: 34px; height: 34px; border-radius: 50%;
  background: rgba(255,195,0,.12); border: 1px solid rgba(255,195,0,.3);
}
.track__icon svg { width: 17px; height: 17px; fill: var(--amber); }
.track__step:not(:last-child) .track__icon::after {
  content: ''; position: absolute; top: 36px; left: 50%; width: 2px; height: calc(100% + 12px);
  transform: translateX(-50%);
  background: linear-gradient(to bottom, rgba(255,195,0,.45), rgba(255,195,0,.05));
}
.track__step.is-done .track__icon { background: var(--amber); border-color: var(--amber); }
.track__step.is-done .track__icon svg { fill: var(--navy); }
.track__body strong { display: block; color: #fff; font-size: .93rem; font-weight: 700; }
.track__body span { font-size: .8rem; color: #8E99B1; }

.hero-badge {
  position: absolute; z-index: 3;
  display: flex; align-items: center; gap: .6rem;
  background: #fff; color: var(--ink);
  padding: .7rem 1rem; border-radius: 14px;
  box-shadow: var(--shadow-lg);
  font-size: .8rem; font-weight: 700;
  animation: float-y 4.5s ease-in-out infinite;
}
.hero-badge svg { width: 22px; height: 22px; fill: var(--amber-600); }
.hero-badge small { display: block; font-weight: 500; color: var(--muted); font-size: .72rem; }
.hero-badge--tl { top: -18px; left: -22px; animation-delay: .4s; }
.hero-badge--br { bottom: -22px; right: -14px; animation-delay: 1.6s; }

@keyframes float-y {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-11px); }
}

/* Moving parcel background */
.hero__bg { position: absolute; inset: 0; z-index: 1; opacity: .5; pointer-events: none; }
.hero__bg span {
  position: absolute; display: block;
  width: 46px; height: 46px; border-radius: 10px;
  border: 1px solid rgba(255,195,0,.16);
  animation: drift 22s linear infinite;
}
.hero__bg span:nth-child(1) { left: 6%;  top: 22%; animation-duration: 26s; }
.hero__bg span:nth-child(2) { left: 32%; top: 68%; width: 28px; height: 28px; animation-duration: 19s; animation-delay: -6s; }
.hero__bg span:nth-child(3) { left: 58%; top: 12%; width: 62px; height: 62px; animation-duration: 31s; animation-delay: -12s; }
.hero__bg span:nth-child(4) { left: 84%; top: 58%; width: 36px; height: 36px; animation-duration: 24s; animation-delay: -3s; }
.hero__bg span:nth-child(5) { left: 46%; top: 88%; width: 22px; height: 22px; animation-duration: 17s; animation-delay: -9s; }

@keyframes drift {
  0%   { transform: translate3d(0,0,0) rotate(0deg); }
  50%  { transform: translate3d(38px,-46px,0) rotate(180deg); }
  100% { transform: translate3d(0,0,0) rotate(360deg); }
}

/* --------------------------------------------------------------------------
   Marquee (partner strip)
   -------------------------------------------------------------------------- */
.marquee {
  overflow: hidden; padding: 1.6rem 0;
  border-block: 1px solid var(--line); background: var(--surface);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee__track { display: flex; gap: 3.5rem; width: max-content; animation: marquee 32s linear infinite; }
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__item {
  display: inline-flex; align-items: center; gap: .6rem;
  font-family: var(--font-head); font-weight: 700; font-size: 1.02rem;
  color: var(--muted); white-space: nowrap;
}
.marquee__item svg { width: 20px; height: 20px; fill: var(--amber-600); }
@keyframes marquee { to { transform: translateX(-50%); } }

/* --------------------------------------------------------------------------
   Cards & grids
   -------------------------------------------------------------------------- */
.grid { display: grid; gap: clamp(1rem, 2.2vw, 1.6rem); }
/* Grid items default to min-width:auto, so a wide child (e.g. a scrollable
   table with a min-width) would stretch the track and overflow the page.
   min-width:0 lets the item shrink and the inner overflow-x:auto do its job. */
.grid > *, .split > * { min-width: 0; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

.card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.8rem;
  overflow: hidden;
  transition: transform .42s var(--ease), box-shadow .42s var(--ease), border-color .42s var(--ease);
}
.card::before {
  content: ''; position: absolute; inset: 0 0 auto; height: 3px;
  background: linear-gradient(90deg, var(--amber), var(--amber-600));
  transform: scaleX(0); transform-origin: left;
  transition: transform .45s var(--ease);
}
.card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: transparent; }
.card:hover::before { transform: scaleX(1); }
.card h3 { margin-bottom: .55rem; }
.card p { font-size: .95rem; }
.card--flat:hover { transform: none; }

.card__icon {
  display: grid; place-items: center;
  width: 54px; height: 54px; border-radius: 15px; margin-bottom: 1.15rem;
  background: var(--amber-soft); color: var(--navy);
  transition: transform .45s var(--ease), background .45s var(--ease);
}
.card__icon svg { width: 26px; height: 26px; fill: var(--navy); }
.card:hover .card__icon { transform: rotate(-7deg) scale(1.08); background: var(--amber); }

.card__num {
  font-family: var(--font-head); font-size: .78rem; font-weight: 800;
  letter-spacing: .12em; color: var(--amber-600); display: block; margin-bottom: .5rem;
}

/* Numbered process steps */
.steps { counter-reset: step; }
.step { position: relative; padding-left: 4.6rem; }
.step::before {
  counter-increment: step; content: counter(step, decimal-leading-zero);
  position: absolute; left: 0; top: -.15rem;
  font-family: var(--font-head); font-size: 2.1rem; font-weight: 800;
  color: transparent; -webkit-text-stroke: 1.5px rgba(245,179,1,.55);
  transition: color .4s var(--ease);
}
.step:hover::before { color: var(--amber); }

/* Feature list with ticks */
.ticks { list-style: none; padding: 0; margin: 0; display: grid; gap: .7rem; }
.ticks li { display: flex; align-items: flex-start; gap: .7rem; margin: 0; font-size: .95rem; }
.ticks li::before {
  content: ''; flex: none; width: 21px; height: 21px; margin-top: .16rem; border-radius: 50%;
  background: var(--amber-soft) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230B1020' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E") center / 12px no-repeat;
}
.ticks--dark li { color: #B9C2D6; }
.ticks--dark li::before { background-color: rgba(255,195,0,.16); }

.crosses { list-style: none; padding: 0; margin: 0; display: grid; gap: .7rem; }
.crosses li { display: flex; align-items: flex-start; gap: .7rem; margin: 0; font-size: .95rem; }
.crosses li::before {
  content: ''; flex: none; width: 21px; height: 21px; margin-top: .16rem; border-radius: 50%;
  background: #FDECEC url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23E5484D' stroke-width='3.2' stroke-linecap='round'%3E%3Cpath d='M18 6 6 18M6 6l12 12'/%3E%3C/svg%3E") center / 11px no-repeat;
}

/* --------------------------------------------------------------------------
   Stats counters
   -------------------------------------------------------------------------- */
.stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px;
  background: var(--line); border: 1px solid var(--line);
  border-radius: var(--radius); overflow: hidden;
}
.stat { background: var(--surface); padding: 2rem 1.4rem; text-align: center; transition: background .35s var(--ease); }
.stat:hover { background: var(--amber-soft); }
.stat__num {
  font-family: var(--font-head); font-weight: 800; line-height: 1;
  font-size: clamp(1.9rem, 1.4rem + 1.6vw, 2.9rem);
  color: var(--ink); display: block; margin-bottom: .4rem;
}
.stat__label { font-size: .86rem; color: var(--muted); font-weight: 600; }
.section--dark .stats { background: rgba(255,255,255,.09); border-color: rgba(255,255,255,.12); }
.section--dark .stat { background: var(--navy); }
.section--dark .stat:hover { background: var(--navy-700); }
.section--dark .stat__num { color: var(--amber); }

/* --------------------------------------------------------------------------
   Split / media rows
   -------------------------------------------------------------------------- */
.split {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4.5rem); align-items: center;
}
.split--reverse .split__media { order: 2; }

.frame {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  background: linear-gradient(150deg, var(--navy-600), var(--navy));
  padding: 2.2rem; color: #C3CCE0;
  box-shadow: var(--shadow-lg);
}
.frame::before {
  content: ''; position: absolute; width: 260px; height: 260px; right: -90px; top: -90px;
  background: radial-gradient(circle, rgba(255,195,0,.22), transparent 68%);
}
.frame h3 { color: #fff; }

/* Coverage / map style tiles */
.tiles { display: grid; grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); gap: .6rem; }
.tile {
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-sm); padding: .75rem .9rem;
  font-size: .84rem; font-weight: 600; color: #D3DAE9;
  transition: background .3s var(--ease), transform .3s var(--ease), color .3s var(--ease);
}
.tile:hover { background: var(--amber); color: var(--navy); transform: translateY(-3px); }

/* --------------------------------------------------------------------------
   Business model cards (pricing style)
   -------------------------------------------------------------------------- */
.model {
  position: relative; display: flex; flex-direction: column;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 2rem;
  transition: transform .45s var(--ease), box-shadow .45s var(--ease), border-color .45s var(--ease);
}
.model:hover { transform: translateY(-10px); box-shadow: var(--shadow-lg); }
.model--featured {
  border-color: var(--amber); box-shadow: var(--shadow-amber);
  background: linear-gradient(180deg, #FFFDF5, #fff 42%);
}
.model__flag {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--navy); color: var(--amber);
  font-size: .68rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase;
  padding: .42rem 1rem; border-radius: 999px; white-space: nowrap;
}
.model__head { padding-bottom: 1.2rem; border-bottom: 1px dashed var(--line); margin-bottom: 1.35rem; }
.model__price {
  font-family: var(--font-head); font-size: 2rem; font-weight: 800; color: var(--ink);
  line-height: 1.1; display: block; margin: .5rem 0 .15rem;
}
.model__price small { font-size: .82rem; font-weight: 600; color: var(--muted); }
.model__meta { font-size: .84rem; color: var(--muted); }
.model .btn { margin-top: auto; }
.model .ticks { margin-bottom: 1.6rem; }

.spec {
  display: grid; grid-template-columns: auto 1fr; gap: .5rem 1rem;
  font-size: .88rem; padding: 1rem 0; margin-bottom: 1.4rem;
  border-block: 1px solid var(--line);
}
.spec dt { color: var(--muted); font-weight: 600; margin: 0; }
.spec dd { margin: 0; color: var(--ink); font-weight: 700; text-align: right; }

/* --------------------------------------------------------------------------
   Comparison table
   -------------------------------------------------------------------------- */
.table-wrap {
  overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius);
  background: var(--surface); box-shadow: var(--shadow-sm);
}
table.cmp { width: 100%; border-collapse: collapse; min-width: 720px; font-size: .93rem; }
table.cmp th, table.cmp td { padding: 1rem 1.15rem; text-align: left; border-bottom: 1px solid var(--line); }
table.cmp thead th {
  background: var(--navy); color: #fff; font-family: var(--font-head);
  font-size: .82rem; letter-spacing: .05em; text-transform: uppercase; white-space: nowrap;
}
table.cmp tbody tr { transition: background .25s var(--ease); }
table.cmp tbody tr:hover { background: var(--amber-soft); }
table.cmp tbody th { font-weight: 700; color: var(--ink); }
table.cmp td strong { color: var(--navy); }

/* --------------------------------------------------------------------------
   Timeline (about page)
   -------------------------------------------------------------------------- */
.timeline { position: relative; padding-left: 2.6rem; }
.timeline::before {
  content: ''; position: absolute; left: 9px; top: .5rem; bottom: .5rem; width: 2px;
  background: linear-gradient(to bottom, var(--amber), rgba(245,179,1,.12));
}
.timeline__item { position: relative; padding-bottom: 2.1rem; }
.timeline__item:last-child { padding-bottom: 0; }
.timeline__item::before {
  content: ''; position: absolute; left: -2.6rem; top: .35rem;
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--surface); border: 3px solid var(--amber);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.timeline__item:hover::before { transform: scale(1.22); box-shadow: 0 0 0 6px rgba(245,179,1,.18); }
.timeline__year {
  font-family: var(--font-head); font-weight: 800; font-size: .82rem;
  letter-spacing: .1em; color: var(--amber-600); text-transform: uppercase;
}
.timeline__item h3 { font-size: 1.15rem; margin: .2rem 0 .4rem; }

/* --------------------------------------------------------------------------
   Testimonials
   -------------------------------------------------------------------------- */
.quote {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 1.9rem;
  display: flex; flex-direction: column; gap: 1.1rem;
  transition: transform .42s var(--ease), box-shadow .42s var(--ease);
}
.quote:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.quote__stars { display: flex; gap: .15rem; }
.quote__stars svg { width: 17px; height: 17px; fill: var(--amber-600); }
.quote p { font-size: .97rem; color: var(--body); font-style: italic; }
.quote__who { display: flex; align-items: center; gap: .8rem; margin-top: auto; }
.avatar {
  display: grid; place-items: center; width: 46px; height: 46px; border-radius: 50%;
  background: linear-gradient(140deg, var(--amber), var(--amber-600));
  font-family: var(--font-head); font-weight: 800; color: var(--navy); font-size: 1.02rem;
  flex: none;
}
.quote__who strong { display: block; font-size: .93rem; color: var(--ink); }
.quote__who span { font-size: .8rem; color: var(--muted); }

/* --------------------------------------------------------------------------
   FAQ accordion
   -------------------------------------------------------------------------- */
.faq { display: grid; gap: .8rem; max-width: 860px; margin-inline: auto; }
.faq__item {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius-sm); overflow: hidden;
  transition: border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.faq__item.is-open { border-color: var(--amber); box-shadow: var(--shadow-sm); }
.faq__q {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1.15rem 1.3rem; background: none; border: 0; cursor: pointer;
  font-family: var(--font-head); font-weight: 700; font-size: 1rem; color: var(--ink);
  text-align: left; line-height: 1.4;
}
.faq__icon { width: 20px; height: 20px; flex: none; color: var(--amber-600); transition: transform .35s var(--ease); }
.faq__item.is-open .faq__icon { transform: rotate(135deg); }
.faq__a { padding: 0 1.3rem; }
.faq__a p { padding-bottom: 1.25rem; font-size: .95rem; margin: 0; }

/* --------------------------------------------------------------------------
   Forms
   -------------------------------------------------------------------------- */
.form-card {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: clamp(1.5rem, 3vw, 2.5rem);
  box-shadow: var(--shadow);
}
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.1rem; }
.field { display: flex; flex-direction: column; gap: .42rem; }
.field--full { grid-column: 1 / -1; }
.field label { font-size: .85rem; font-weight: 700; color: var(--ink); }
.field label .req { color: var(--warn); }
.field input, .field select, .field textarea {
  font-family: var(--font-body); font-size: .95rem; color: var(--ink);
  padding: .88rem 1rem; border: 1.5px solid var(--line); border-radius: var(--radius-sm);
  background: var(--surface-2);
  transition: border-color .25s var(--ease), background .25s var(--ease), box-shadow .25s var(--ease);
  width: 100%;
}
.field textarea { resize: vertical; min-height: 130px; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--amber); background: var(--surface);
  box-shadow: 0 0 0 4px rgba(255,195,0,.16);
}
.field input::placeholder, .field textarea::placeholder { color: #A6AFC2; }
.field .hint { font-size: .78rem; color: var(--muted); }
.field.has-error input, .field.has-error select, .field.has-error textarea { border-color: var(--warn); }
.field .err { font-size: .78rem; color: var(--warn); font-weight: 600; }

.check { display: flex; align-items: flex-start; gap: .65rem; font-size: .86rem; }
.check input { width: 18px; height: 18px; margin-top: .18rem; flex: none; accent-color: var(--amber-600); padding: 0; }

.alert {
  display: flex; gap: .8rem; align-items: flex-start;
  padding: 1.05rem 1.2rem; border-radius: var(--radius-sm); margin-bottom: 1.5rem;
  font-size: .92rem; animation: pop-in .45s var(--ease);
}
.alert svg { width: 21px; height: 21px; flex: none; margin-top: .1rem; }
.alert--ok   { background: #E9F8F0; color: #0B6B3C; border: 1px solid #B7E6CD; }
.alert--ok svg { fill: var(--ok); }
.alert--err  { background: #FDECEC; color: #9B1C21; border: 1px solid #F6C9CA; }
.alert--err svg { fill: var(--warn); }
.alert strong { color: inherit; display: block; margin-bottom: .12rem; }

@keyframes pop-in {
  from { opacity: 0; transform: translateY(-8px) scale(.98); }
  to   { opacity: 1; transform: none; }
}

.honey { position: absolute !important; left: -9999px; opacity: 0; height: 0; }

/* --------------------------------------------------------------------------
   Contact info cards + map
   -------------------------------------------------------------------------- */
.info-card {
  display: flex; gap: 1rem; align-items: flex-start;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 1.5rem;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.info-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.info-card__icon {
  display: grid; place-items: center; flex: none;
  width: 48px; height: 48px; border-radius: 14px; background: var(--amber-soft);
}
.info-card__icon svg { width: 22px; height: 22px; fill: var(--navy); }
.info-card h3 { font-size: 1rem; margin-bottom: .3rem; }
.info-card p, .info-card a { font-size: .92rem; margin: 0; color: var(--body); }
.info-card a:hover { color: var(--amber-600); }

.map-embed {
  border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line);
  box-shadow: var(--shadow-sm); line-height: 0; background: var(--surface-3);
}
.map-embed iframe { width: 100%; height: 420px; border: 0; display: block; }

/* --------------------------------------------------------------------------
   Page hero (inner pages)
   -------------------------------------------------------------------------- */
.page-hero {
  position: relative; overflow: hidden;
  background: radial-gradient(900px 420px at 82% 0%, var(--navy-600), var(--navy) 62%);
  color: #B9C2D6;
  padding: clamp(3rem, 6vw, 5rem) 0 clamp(3.5rem, 6vw, 5rem);
  text-align: center;
}
.page-hero h1 { color: #fff; margin-bottom: .7rem; }
.page-hero p { max-width: 68ch; margin-inline: auto; font-size: 1.05rem; }
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(circle at 50% 0%, #000, transparent 72%);
  -webkit-mask-image: radial-gradient(circle at 50% 0%, #000, transparent 72%);
}
.page-hero > * { position: relative; z-index: 1; }

.crumbs {
  display: flex; flex-wrap: wrap; justify-content: center; gap: .45rem;
  list-style: none; padding: 0; margin: 0 0 1.2rem; font-size: .82rem;
}
.crumbs li { margin: 0; color: #8E99B1; display: flex; align-items: center; gap: .45rem; }
.crumbs li + li::before { content: '/'; color: #4E5A76; }
.crumbs a { color: #A9B3CA; }
.crumbs a:hover { color: var(--amber); }
.crumbs [aria-current] { color: var(--amber); font-weight: 600; }

/* --------------------------------------------------------------------------
   CTA strip + footer
   -------------------------------------------------------------------------- */
.cta-strip {
  position: relative; overflow: hidden;
  background: linear-gradient(120deg, var(--amber-600), var(--amber) 55%, var(--amber-300));
  padding: clamp(2.6rem, 5vw, 4rem) 0;
}
.cta-strip::before {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60'%3E%3Cpath d='M0 30h60M30 0v60' stroke='%230B1020' stroke-opacity='.05' stroke-width='1'/%3E%3C/svg%3E");
}
.cta-strip__inner {
  position: relative; display: flex; align-items: center; justify-content: space-between;
  gap: 2rem; flex-wrap: wrap;
}
.cta-strip h2 { color: var(--navy); margin-bottom: .4rem; max-width: 20ch; }
.cta-strip p { color: rgba(11,16,32,.78); max-width: 58ch; font-size: .97rem; }
.cta-strip__actions { display: flex; gap: .8rem; flex-wrap: wrap; }
.cta-strip .btn--primary { background: var(--navy); color: #fff; box-shadow: 0 14px 32px rgba(11,16,32,.28); }
.cta-strip .btn--primary:hover { background: var(--navy-600); color: #fff; }
.cta-strip .btn--ghost { --btn-fg: var(--navy); border-color: rgba(11,16,32,.28); }
.cta-strip .btn--ghost:hover { border-color: var(--navy); color: var(--navy); }

.site-footer { background: var(--navy); color: #96A1B8; padding: clamp(3rem, 5vw, 4.5rem) 0 1.5rem; font-size: .92rem; }
.site-footer__grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
  gap: clamp(1.6rem, 4vw, 3rem);
  padding-bottom: 2.5rem;
}
.site-footer h3 {
  color: #fff; font-size: .95rem; margin-bottom: 1.1rem;
  position: relative; padding-bottom: .7rem;
}
.site-footer h3::after {
  content: ''; position: absolute; left: 0; bottom: 0; width: 30px; height: 2px;
  background: var(--amber); border-radius: 2px;
}
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: .55rem; }
.site-footer a { color: #96A1B8; }
.site-footer a:hover { color: var(--amber); padding-left: 3px; }
.site-footer .brand--footer { margin-bottom: 1.1rem; }
.site-footer .brand--footer .brand__text strong { color: #fff; }
.site-footer__contact li { display: flex; gap: .7rem; align-items: flex-start; }
.site-footer__contact svg { width: 17px; height: 17px; flex: none; margin-top: .28rem; fill: var(--amber); }

.social { display: flex; gap: .55rem; margin-top: 1.3rem; }
.social a {
  display: grid; place-items: center; width: 38px; height: 38px; border-radius: 11px;
  background: rgba(255,255,255,.07); transition: background .3s var(--ease), transform .3s var(--ease);
}
.social a:hover { background: var(--amber); transform: translateY(-3px); padding-left: 0; }
.social svg { width: 17px; height: 17px; fill: #96A1B8; transition: fill .3s var(--ease); }
.social a:hover svg { fill: var(--navy); }

.site-footer__legal { border-top: 1px solid rgba(255,255,255,.09); padding-top: 1.5rem; }
.disclaimer { font-size: .78rem; line-height: 1.65; color: #6D778E; margin-bottom: 1.2rem; }
.disclaimer strong { color: #96A1B8; }
.site-footer__bottom {
  display: flex; justify-content: space-between; align-items: center; gap: 1rem; flex-wrap: wrap;
  font-size: .82rem;
}
.site-footer__bottom ul { display: flex; gap: 1.2rem; }
.site-footer__bottom li { margin: 0; }

/* --------------------------------------------------------------------------
   Floating actions
   -------------------------------------------------------------------------- */
.whatsapp-float {
  position: fixed; left: 20px; bottom: 20px; z-index: 90;
  display: inline-flex; align-items: center; gap: .5rem;
  background: #25D366; color: #fff; font-weight: 700; font-size: .88rem;
  padding: .8rem 1.15rem; border-radius: 999px;
  box-shadow: 0 12px 28px rgba(37, 211, 102, .42);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.whatsapp-float:hover { transform: translateY(-4px) scale(1.03); color: #fff; }
.whatsapp-float svg { width: 21px; height: 21px; fill: #fff; }
.whatsapp-float::after {
  content: ''; position: absolute; inset: 0; border-radius: 999px;
  border: 2px solid rgba(37, 211, 102, .6);
  animation: ripple 2.6s ease-out infinite;
}
@keyframes ripple {
  0%   { transform: scale(1); opacity: .7; }
  100% { transform: scale(1.28); opacity: 0; }
}

.to-top {
  position: fixed; right: 20px; bottom: 20px; z-index: 90;
  display: grid; place-items: center; width: 46px; height: 46px;
  border: 0; border-radius: 14px; cursor: pointer;
  background: var(--navy); color: #fff;
  box-shadow: var(--shadow);
  opacity: 0; visibility: hidden; transform: translateY(14px);
  transition: opacity .35s var(--ease), transform .35s var(--ease), visibility .35s;
}
.to-top.is-visible { opacity: 1; visibility: visible; transform: none; }
.to-top:hover { background: var(--amber); color: var(--navy); }
.to-top svg { width: 20px; height: 20px; }

/* --------------------------------------------------------------------------
   Scroll reveal
   -------------------------------------------------------------------------- */
/* Scoped to .js (set by an inline script in the head) so that with JavaScript
   disabled or broken, every section renders normally instead of staying invisible. */
.js [data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .75s var(--ease), transform .75s var(--ease);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}
.js [data-reveal].is-in { opacity: 1; transform: none; }
.js [data-reveal="left"]  { transform: translateX(-32px); }
.js [data-reveal="right"] { transform: translateX(32px); }
.js [data-reveal="zoom"]  { transform: scale(.94); }

/* --------------------------------------------------------------------------
   Responsive
   -------------------------------------------------------------------------- */
@media (max-width: 1080px) {
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .site-footer__grid { grid-template-columns: 1fr 1fr; }
  .hero__grid { grid-template-columns: 1fr; }
  .hero__panel { max-width: 520px; }
  .hero-badge--tl { left: 0; }
}

/* Drawer starts at 1024px: below this the logo, five nav items and the CTA
   button no longer fit comfortably on one row. */
@media (max-width: 1024px) {
  /* backdrop-filter makes the header a containing block for position:fixed
     descendants, which would clip the drawer to the header's height. Drop the
     glass effect here — the drawer needs to anchor to the viewport. */
  .site-header {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: var(--surface);
    /* The drawer lives inside the header, so the header's stacking context caps
       its z-index. Lift the header above the backdrop (104) or the dim overlay
       would paint over the open menu. */
    z-index: 106;
  }

  .nav {
    position: fixed; inset: 0 0 0 auto; width: min(86vw, 340px);
    background: var(--surface); box-shadow: -18px 0 46px rgba(11,16,32,.18);
    padding: calc(var(--header-h) + 1.5rem) 1.5rem 2rem;
    transform: translateX(100%);
    transition: transform .42s var(--ease);
    overflow-y: auto; z-index: 105;
  }
  .nav.is-open { transform: none; }
  .nav__list { flex-direction: column; align-items: stretch; gap: .2rem; }
  .nav__list a { padding: .95rem .6rem; border-radius: 12px; font-size: 1.02rem; }
  .nav__list a:hover { background: var(--surface-2); }
  .nav__list a::after { display: none; }
  .nav__list a[aria-current="page"] { background: var(--amber-soft); }
  .nav__cta-mobile { display: block; margin-top: 1rem; }
  .burger { display: flex; }
  .site-header__actions .btn { display: none; }
  .nav-backdrop {
    position: fixed; inset: 0; background: rgba(11,16,32,.5); z-index: 104;
    opacity: 0; transition: opacity .35s var(--ease);
  }
  .nav-backdrop.is-on { opacity: 1; }
}

/* Content layout collapses later than the nav does — three-column card rows and
   two-column forms still read well on a tablet. */
@media (max-width: 900px) {
  .grid--3, .grid--2 { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; }
  .split--reverse .split__media { order: 0; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .form-grid { grid-template-columns: 1fr; }
  .cta-strip__inner { flex-direction: column; align-items: flex-start; }
  .topbar__item:nth-child(1) { display: none; }
}

@media (max-width: 640px) {
  /* Long button labels must wrap rather than push the page wider than the screen. */
  .btn { white-space: normal; max-width: 100%; text-align: center; line-height: 1.3; }
  .btn--lg { padding: 1rem 1.5rem; font-size: .96rem; }

  .grid--4 { grid-template-columns: 1fr; }
  .site-footer__grid { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr; }
  .hero__trust { gap: 1.2rem; }
  .hero__trust div { min-width: 44%; }
  .step { padding-left: 0; padding-top: 2.6rem; }
  .step::before { top: 0; }
  /* Floating badges overlap the tracker card once the panel narrows — the card
     carries the visual interest on its own at this size. */
  .hero-badge { display: none; }
  .whatsapp-float span { display: none; }
  .whatsapp-float { padding: .85rem; }
  .brand__text small { display: none; }
  .site-footer__bottom { flex-direction: column; align-items: flex-start; }
  .topbar__inner { justify-content: center; gap: .9rem; }
  .topbar__spacer { display: none; }
}

/* --------------------------------------------------------------------------
   Motion & print preferences
   -------------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }
  [data-reveal] { opacity: 1 !important; transform: none !important; }
}

@media print {
  .site-header, .topbar, .cta-strip, .whatsapp-float, .to-top, .scroll-progress, .site-footer { display: none; }
  body { color: #000; }
}
