/* ═══════════════════════════════════════════════════════════════
   VELO Courier — Main Stylesheet v3
   Light theme default · Gold-forward branding · Contained layout
   Mobile-first responsive
═══════════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;0,700;1,300;1,400;1,600&family=DM+Mono:wght@300;400;500&family=Jost:wght@300;400;500;600&display=swap');

/* ══════════════════════════
   CSS VARIABLES
══════════════════════════ */
:root {
  --max-w:     1200px;
  --pad-x:     clamp(20px, 5vw, 80px);
  --transition: background 0.35s, color 0.35s, border-color 0.35s, box-shadow 0.35s;
}

[data-theme="light"] {
  --bg:         #F7F4EE;
  --bg2:        #EEE9DC;
  --surface:    #FDFCF8;
  --surface2:   #F5F1E8;
  --surface3:   #EDE8DA;
  --ink:        #07070F;
  --ink2:       #13121F;
  --border:     rgba(0,0,0,0.08);
  --border2:    rgba(0,0,0,0.15);
  --text:       #0D0C18;
  --text2:      #2A2940;
  --muted:      #7A7892;
  --muted2:     #B0AEC4;
  --gold:       #B8882A;
  --gold-lt:    #D4A83C;
  --gold-bg:    rgba(184,136,42,0.08);
  --gold-bg2:   rgba(184,136,42,0.14);
  --gold-bdr:   rgba(184,136,42,0.28);
  --coral:      #C94030;
  --coral-bg:   rgba(201,64,48,0.08);
  --mint:       #1A7A60;
  --mint-bg:    rgba(26,122,96,0.08);
  --blue:       #2563EB;
  --blue-bg:    rgba(37,99,235,0.08);
  --shadow:     0 2px 12px rgba(0,0,0,0.07);
  --shadow-md:  0 6px 28px rgba(0,0,0,0.10);
  --shadow-lg:  0 16px 60px rgba(0,0,0,0.13);
  --ticker-bg:  #07070F;
  --ticker-fg:  #F7F4EE;
}

[data-theme="dark"] {
  --bg:         #07070F;
  --bg2:        #0D0D1C;
  --surface:    #0D0D1C;
  --surface2:   #121228;
  --surface3:   #181836;
  --ink:        #07070F;
  --ink2:       #13121F;
  --border:     rgba(255,255,255,0.07);
  --border2:    rgba(255,255,255,0.14);
  --text:       #F0EFE8;
  --text2:      #C8C7D8;
  --muted:      #6B6B8A;
  --muted2:     #3D3D58;
  --gold:       #E8C55A;
  --gold-lt:    #F0D070;
  --gold-bg:    rgba(232,197,90,0.09);
  --gold-bg2:   rgba(232,197,90,0.16);
  --gold-bdr:   rgba(232,197,90,0.26);
  --coral:      #FF6B4A;
  --coral-bg:   rgba(255,107,74,0.1);
  --mint:       #4AFFD4;
  --mint-bg:    rgba(74,255,212,0.08);
  --blue:       #60A5FA;
  --blue-bg:    rgba(96,165,250,0.08);
  --shadow:     0 2px 12px rgba(0,0,0,0.35);
  --shadow-md:  0 6px 28px rgba(0,0,0,0.45);
  --shadow-lg:  0 16px 60px rgba(0,0,0,0.6);
  --ticker-bg:  #E8C55A;
  --ticker-fg:  #07070F;
}

/* ══════════════════════════
   RESET & BASE
══════════════════════════ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  overflow-x: hidden;
  transition: var(--transition);
  cursor: none;
}
body::after {
  content: ''; position: fixed; inset: 0; pointer-events: none; z-index: 999;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.022'/%3E%3C/svg%3E");
}

/* ══════════════════════════
   CONTAINER
══════════════════════════ */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}

/* ══════════════════════════
   CUSTOM CURSOR
══════════════════════════ */
.cursor {
  position: fixed; width: 9px; height: 9px;
  background: var(--gold); border-radius: 50%;
  pointer-events: none; z-index: 9999;
  transform: translate(-50%,-50%);
  transition: width .2s, height .2s;
  mix-blend-mode: multiply;
}
[data-theme="dark"] .cursor { mix-blend-mode: difference; }
.cursor-ring {
  position: fixed; width: 34px; height: 34px;
  border: 1.5px solid var(--gold-bdr); border-radius: 50%;
  pointer-events: none; z-index: 9998;
  transform: translate(-50%,-50%);
  transition: width .25s, height .25s;
}
.cursor.hover, .cursor-ring.hover { width: 16px; height: 16px; }
.cursor-ring.hover { width: 48px; height: 48px; }

/* ══════════════════════════
   TYPOGRAPHY
══════════════════════════ */
h1, h2, h3, h4 { font-family: 'Cormorant Garamond', serif; font-weight: 600; line-height: 1.08; }
a { color: var(--gold); text-decoration: none; transition: opacity .2s; }
a:hover { opacity: 0.78; }
p { line-height: 1.75; }
strong { font-weight: 600; }

/* ══════════════════════════
   NAVIGATION
══════════════════════════ */
.nav {
  position: sticky; top: 0; z-index: 800;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  height: 70px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px; font-weight: 700;
  letter-spacing: 0.20em; color: var(--text);
  text-decoration: none;
  display: flex; align-items: center; gap: 8px;
  flex-shrink: 0;
}
.nav-logo-dot {
  width: 7px; height: 7px;
  background: var(--gold); border-radius: 50%;
  animation: blink 2.4s infinite; flex-shrink: 0;
}
@keyframes blink { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.5;transform:scale(1.6)} }

.nav-links {
  display: flex; gap: 30px; list-style: none;
  align-items: center;
}
.nav-links a {
  color: var(--muted);
  font-size: 12.5px; letter-spacing: 0.07em; font-weight: 400;
  text-decoration: none; transition: color .22s;
  position: relative; padding-bottom: 2px;
}
.nav-links a::after {
  content: ''; position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width .3s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--text); opacity: 1; }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.nav-right { display: flex; align-items: center; gap: 12px; }

/* Theme Toggle */
.theme-toggle {
  width: 46px; height: 25px;
  background: var(--surface3); border: 1px solid var(--border2);
  border-radius: 100px; position: relative; cursor: none;
  transition: background .35s; flex-shrink: 0;
}
.theme-toggle-knob {
  position: absolute; top: 3px; left: 3px;
  width: 17px; height: 17px; border-radius: 50%;
  background: var(--gold);
  transition: transform .32s cubic-bezier(.4,0,.2,1);
  display: flex; align-items: center; justify-content: center; font-size: 9px;
}
[data-theme="dark"] .theme-toggle-knob { transform: translateX(21px); }

/* Hamburger */
.nav-hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 8px; z-index: 900;
}
.nav-hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--text); transition: transform .3s, opacity .3s;
}
.nav-hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ══════════════════════════
   BUTTONS
══════════════════════════ */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'DM Mono', monospace;
  font-size: 10.5px; letter-spacing: 0.13em; text-transform: uppercase;
  border: none; padding: 13px 26px; cursor: none; text-decoration: none;
  transition: background .25s, transform .2s, color .25s, border-color .25s;
  flex-shrink: 0; white-space: nowrap;
}
.btn-primary { background: var(--text); color: var(--surface); }
.btn-primary:hover { background: var(--gold); color: #fff; transform: translateY(-1px); opacity: 1; }
.btn-gold { background: var(--gold); color: #fff; }
.btn-gold:hover { background: var(--gold-lt); opacity: 1; }
.btn-outline {
  background: transparent;
  border: 1.5px solid var(--gold-bdr);
  color: var(--gold);
}
.btn-outline:hover { border-color: var(--gold); background: var(--gold-bg); opacity: 1; }
.btn-ghost {
  background: transparent;
  border: 1.5px solid var(--border2);
  color: var(--muted);
}
.btn-ghost:hover { border-color: var(--gold); color: var(--text); opacity: 1; }
.btn-sm { padding: 9px 18px; font-size: 9.5px; }
.btn-lg { padding: 16px 36px; font-size: 11px; }
.btn-danger { background: var(--coral); color: #fff; }
.btn-danger:hover { opacity: 0.88; }

/* ══════════════════════════
   SECTION SCAFFOLD
══════════════════════════ */
.section { padding: 96px 0; }
.section-sm { padding: 56px 0; }
.section-lg { padding: 128px 0; }

/* Eyebrow label */
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: 'DM Mono', monospace; font-size: 10px;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 14px;
}
.eyebrow::before { content: ''; width: 22px; height: 1px; background: var(--gold); }

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 4.5vw, 62px);
  font-weight: 300; line-height: 1.06;
  margin-bottom: 20px;
}
.section-title em { font-style: italic; color: var(--gold); }
.section-title strong { font-weight: 700; }

.section-sub {
  font-size: 15.5px; color: var(--muted);
  line-height: 1.75; max-width: 540px;
}

/* INK SECTIONS (dark-bg bands) */
.section-ink {
  background: var(--ink);
  color: #fff;
  padding: 96px 0;
}
.section-ink .eyebrow { color: rgba(232,197,90,0.7); }
.section-ink .eyebrow::before { background: rgba(232,197,90,0.5); }
.section-ink .section-title { color: #fff; }
.section-ink .section-title em { color: #E8C55A; }
.section-ink .section-sub { color: rgba(255,255,255,0.5); }

/* Gold tint band */
.section-gold-tint { background: var(--gold-bg); padding: 96px 0; }

/* ══════════════════════════
   TICKER
══════════════════════════ */
.ticker {
  background: var(--ticker-bg); padding: 12px 0;
  overflow: hidden; transition: background .35s;
}
.ticker-track { display: flex; gap: 56px; white-space: nowrap; animation: tickRoll 32s linear infinite; }
@keyframes tickRoll { from{transform:translateX(0)} to{transform:translateX(-50%)} }
.ticker-item {
  font-family: 'DM Mono', monospace; font-size: 10px;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--ticker-fg); display: flex; align-items: center; gap: 16px;
  flex-shrink: 0; transition: color .35s;
}
.ticker-gem { opacity: .3; font-size: 7px; }

/* ══════════════════════════
   HERO — HOMEPAGE
══════════════════════════ */
.hero {
  background: var(--ink);
  position: relative; overflow: hidden;
  padding: 100px 0 80px;
}
/* Ambient glow */
.hero::before {
  content: '';
  position: absolute; top: -100px; right: -80px;
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(184,136,42,.13) 0%, transparent 65%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute; bottom: -60px; left: 10%;
  width: 300px; height: 300px; border-radius: 50%;
  background: radial-gradient(circle, rgba(184,136,42,.07) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative; z-index: 2;
}

/* ── HERO LEFT ── */
.hero-left {}

.hero-tag {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: 'DM Mono', monospace; font-size: 10px;
  letter-spacing: 0.26em; text-transform: uppercase;
  color: rgba(184,136,42,.8);
  margin-bottom: 28px;
  animation: heroRise .6s .1s both;
}
.hero-tag-line { width: 24px; height: 1px; background: rgba(184,136,42,.6); }

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(52px, 6.5vw, 96px);
  font-weight: 300; line-height: 0.93;
  letter-spacing: -0.01em;
  color: #fff;
  margin-bottom: 28px;
  animation: heroRise .7s .2s both;
}
.hero-title em { font-style: italic; color: #E8C55A; display: block; }
.hero-title strong { font-weight: 700; display: block; }

.hero-sub {
  font-size: 16px; line-height: 1.75;
  color: rgba(255,255,255,.48);
  max-width: 420px; margin-bottom: 44px;
  animation: heroRise .6s .35s both;
}

.hero-btns {
  display: flex; gap: 14px; align-items: center; flex-wrap: wrap;
  animation: heroRise .6s .45s both;
}

.hero-stats {
  display: flex; gap: 0;
  margin-top: 60px; padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,.08);
  animation: heroRise .6s .55s both;
}
.h-stat { padding-right: 36px; margin-right: 36px; border-right: 1px solid rgba(255,255,255,.08); }
.h-stat:last-child { border-right: none; margin-right: 0; padding-right: 0; }
.h-stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 38px; font-weight: 600;
  color: #E8C55A; line-height: 1;
}
.h-stat-lbl {
  font-family: 'DM Mono', monospace;
  font-size: 9.5px; letter-spacing: 0.17em; text-transform: uppercase;
  color: rgba(255,255,255,.3); margin-top: 5px;
}

@keyframes heroRise { from{opacity:0;transform:translateY(18px)} to{opacity:1;transform:translateY(0)} }

/* ── HERO RIGHT — TRACK CARD ── */
.hero-right {
  display: flex; align-items: center; justify-content: center;
  animation: heroSlide .8s .3s both;
}
@keyframes heroSlide { from{opacity:0;transform:translateX(32px)} to{opacity:1;transform:translateX(0)} }

.hero-card {
  width: 100%; max-width: 440px;
  background: #FDFCF8;
  box-shadow: 0 2px 4px rgba(0,0,0,.2), 0 20px 60px rgba(0,0,0,.35);
  position: relative; overflow: hidden;
}
.hero-card::before {
  content: ''; position: absolute;
  top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(to right, var(--gold), rgba(184,136,42,.3));
}
.hc-head {
  padding: 20px 26px 18px;
  border-bottom: 1px solid rgba(0,0,0,.07);
  display: flex; align-items: center; justify-content: space-between;
  background: #FDFCF8;
}
.hc-title {
  font-family: 'DM Mono', monospace; font-size: 9.5px;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: #7A7892;
}
.hc-live {
  display: flex; align-items: center; gap: 6px;
  font-family: 'DM Mono', monospace; font-size: 9px;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: #1A7A60;
}
.hc-live-dot {
  width: 6px; height: 6px; background: #1A7A60;
  border-radius: 50%; animation: blink 1.4s infinite;
}
.hc-body { padding: 24px 26px; background: #FDFCF8; }
.hc-form {
  display: flex; border: 1.5px solid rgba(0,0,0,.14); overflow: hidden;
  transition: border-color .25s; margin-bottom: 20px;
}
.hc-form:focus-within { border-color: #B8882A; }
.hc-input {
  flex: 1; background: #F5F2E8; border: none; outline: none;
  padding: 14px 18px;
  font-family: 'DM Mono', monospace; font-size: 12px;
  letter-spacing: 0.10em; color: #0D0C18;
}
.hc-input::placeholder { color: #B0AEC4; }
.hc-btn {
  background: #07070F; color: #F7F4EE;
  border: none; padding: 0 22px;
  cursor: none; font-size: 18px;
  transition: background .25s;
  display: flex; align-items: center;
}
.hc-btn:hover { background: #B8882A; }
.hc-hint {
  font-family: 'DM Mono', monospace; font-size: 9px;
  color: #B0AEC4; letter-spacing: 0.1em; text-align: center;
  margin-top: 16px; line-height: 1.7;
}
.hc-foot {
  padding: 14px 26px;
  border-top: 1px solid rgba(0,0,0,.07);
  display: flex; justify-content: space-between; align-items: center;
  font-family: 'DM Mono', monospace; font-size: 9px;
  letter-spacing: 0.10em; text-transform: uppercase;
  color: #B0AEC4; background: #F5F2E8;
}
.hc-foot a { color: #B8882A; font-size: 9px; letter-spacing: 0.10em; }

/* ══════════════════════════
   SERVICES GRID
══════════════════════════ */
.svc-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  border: 1px solid var(--border);
  margin-top: 56px;
}
.svc-card {
  padding: 40px 36px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative; overflow: hidden;
  cursor: none; transition: background .25s, border-color .35s;
}
.svc-card:nth-child(3n) { border-right: none; }
.svc-card:nth-child(n+4) { border-bottom: none; }
.svc-card:hover { background: var(--surface2); }
.svc-card::after {
  content: ''; position: absolute;
  bottom: 0; left: 0; width: 0; height: 2px;
  background: var(--gold);
  transition: width .45s;
}
.svc-card:hover::after { width: 100%; }
/* Gold left accent on hover */
.svc-card::before {
  content: ''; position: absolute;
  top: 0; left: 0; bottom: 0; width: 0;
  background: var(--gold);
  transition: width .25s;
}
.svc-card:hover::before { width: 2.5px; }

.svc-num {
  font-family: 'DM Mono', monospace; font-size: 9.5px;
  letter-spacing: 0.22em; color: var(--muted2); margin-bottom: 18px;
}
.svc-icon { font-size: 26px; margin-bottom: 18px; display: block; transition: transform .3s; }
.svc-card:hover .svc-icon { transform: scale(1.12) rotate(4deg); }
.svc-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px; font-weight: 600; margin-bottom: 10px;
}
.svc-desc { font-size: 13.5px; line-height: 1.7; color: var(--muted); margin-bottom: 22px; }
.svc-price {
  font-family: 'DM Mono', monospace; font-size: 10.5px;
  color: var(--gold); letter-spacing: 0.06em;
}

/* ══════════════════════════
   STATS BAND (ink bg)
══════════════════════════ */
.stats-band {
  background: var(--ink); padding: 64px 0;
}
.stats-grid {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 0;
}
.stat-cell {
  padding: 32px 36px;
  border-right: 1px solid rgba(255,255,255,.07);
  position: relative;
}
.stat-cell:last-child { border-right: none; }
.stat-cell::before {
  content: '';
  position: absolute; top: 0; left: 36px; right: 36px; height: 2px;
  background: linear-gradient(to right, var(--gold), rgba(184,136,42,.15));
}
.sc-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 52px; font-weight: 700;
  color: #E8C55A; line-height: 1;
}
.sc-lbl {
  font-family: 'DM Mono', monospace; font-size: 9.5px;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(255,255,255,.32); margin-top: 8px;
}
.sc-sub { font-size: 13px; color: rgba(255,255,255,.45); margin-top: 6px; line-height: 1.5; }

/* ══════════════════════════
   HOW IT WORKS
══════════════════════════ */
.steps-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 0; margin-top: 64px;
  border: 1px solid var(--border);
}
.step-card {
  padding: 44px 40px;
  border-right: 1px solid var(--border);
  position: relative;
}
.step-card:last-child { border-right: none; }
.step-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: transparent;
  transition: background .3s;
}
.step-card:hover::before {
  background: linear-gradient(to right, var(--gold), rgba(184,136,42,.1));
}
.step-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 64px; font-weight: 700; line-height: 1;
  color: var(--gold-bdr); /* very faint */
  margin-bottom: 20px; display: block;
}
.step-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px; font-weight: 600;
  margin-bottom: 12px;
}
.step-desc { font-size: 14px; line-height: 1.75; color: var(--muted); }

/* Arrow connector */
.step-card:not(:last-child)::after {
  content: '→';
  position: absolute; right: -12px; top: 50%;
  transform: translateY(-50%);
  font-family: 'DM Mono', monospace; font-size: 16px;
  color: var(--gold-bdr); z-index: 1;
}

/* ══════════════════════════
   FEATURE STRIP (2-col)
══════════════════════════ */
.feature-2col {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
.feature-list { list-style: none; margin-top: 36px; }
.feature-list li {
  padding: 16px 0; border-bottom: 1px solid var(--border);
  display: flex; align-items: flex-start; gap: 14px;
  font-size: 15px; color: var(--text2); line-height: 1.55;
  transition: padding-left .25s;
  cursor: default;
}
.feature-list li:last-child { border-bottom: none; }
.feature-list li:hover { padding-left: 8px; }
.fl-dot {
  width: 6px; height: 6px; background: var(--gold);
  border-radius: 50%; flex-shrink: 0; margin-top: 8px;
}

/* Map / visual panel */
.map-panel {
  position: relative; height: 460px;
  background: var(--surface2);
  border: 1px solid var(--border);
  overflow: hidden;
}
.map-panel svg { width: 100%; height: 100%; opacity: .45; }
.map-dot {
  position: absolute;
  width: 8px; height: 8px; border-radius: 50%;
  transform: translate(-50%, -50%);
}
.map-dot::after {
  content: ''; position: absolute; inset: -3px;
  border-radius: 50%; border: 1.5px solid currentColor;
  opacity: .35; animation: ping 2.2s infinite;
}
@keyframes ping { 0%{transform:scale(1);opacity:.4} 100%{transform:scale(2.2);opacity:0} }
.map-stats {
  position: absolute; bottom: 0; left: 0; right: 0;
  display: flex; gap: 1px; background: var(--border);
}
.map-stat {
  flex: 1; background: var(--surface); padding: 12px 16px;
  transition: background .35s;
}
.ms-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px; font-weight: 600; color: var(--gold); line-height: 1;
}
.ms-lbl {
  font-family: 'DM Mono', monospace; font-size: 8.5px;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--muted); margin-top: 3px;
}

/* ══════════════════════════
   TESTIMONIALS
══════════════════════════ */
.testi-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 20px; margin-top: 56px;
}
.testi-card {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 32px 28px;
  position: relative;
  transition: box-shadow .25s, border-color .35s;
}
.testi-card:hover { box-shadow: var(--shadow-md); }
.testi-card::before {
  content: ''; position: absolute;
  top: 0; left: 0; bottom: 0; width: 2.5px;
  background: var(--gold); opacity: .45;
}
.testi-card:hover::before { opacity: 1; }
.testi-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 17px; line-height: 1.65;
  color: var(--text2); margin-bottom: 24px;
  font-style: italic;
}
.testi-stars {
  color: var(--gold); font-size: 11px; letter-spacing: 2px;
  margin-bottom: 16px;
}
.testi-name { font-size: 13px; font-weight: 600; }
.testi-role {
  font-family: 'DM Mono', monospace; font-size: 9px;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--muted); margin-top: 2px;
}

/* ══════════════════════════
   CTA SECTION
══════════════════════════ */
.cta-section {
  background: var(--ink); padding: 120px 0;
  text-align: center; position: relative; overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute; top: -120px; left: 50%;
  transform: translateX(-50%);
  width: 700px; height: 700px; border-radius: 50%;
  background: radial-gradient(circle, rgba(184,136,42,.09) 0%, transparent 60%);
  pointer-events: none;
}
.cta-eyebrow {
  font-family: 'DM Mono', monospace; font-size: 10px;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: rgba(184,136,42,.65); margin-bottom: 16px;
  display: block;
}
.cta-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(48px,6vw,88px);
  font-weight: 300; line-height: 1.0; color: #fff;
  margin-bottom: 24px;
}
.cta-title em { font-style: italic; color: #E8C55A; }
.cta-sub {
  font-size: 16px; color: rgba(255,255,255,.45);
  max-width: 480px; margin: 0 auto 48px; line-height: 1.75;
}
.cta-btns { display: flex; gap: 16px; justify-content: center; align-items: center; flex-wrap: wrap; }

/* ══════════════════════════
   PAGE HERO (inner pages)
══════════════════════════ */
.page-hero {
  background: var(--ink);
  padding: 80px 0 72px;
  position: relative; overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute; right: -60px; top: -60px;
  width: 380px; height: 380px; border-radius: 50%;
  background: radial-gradient(circle, rgba(184,136,42,.1) 0%, transparent 65%);
  pointer-events: none;
}
.page-hero-inner {
  max-width: var(--max-w); margin: 0 auto;
  padding: 0 var(--pad-x);
  position: relative; z-index: 2;
}
.page-hero-eyebrow {
  font-family: 'DM Mono', monospace; font-size: 10px;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: rgba(184,136,42,.65);
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 16px;
}
.page-hero-eyebrow::before { content: ''; width: 20px; height: 1px; background: rgba(184,136,42,.5); }
.page-hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(44px,5.5vw,80px);
  font-weight: 300; line-height: 1.0;
  color: #fff; margin-bottom: 18px;
}
.page-hero-title em { font-style: italic; color: #E8C55A; }
.page-hero-title strong { font-weight: 700; }
.page-hero-sub {
  font-size: 16px; color: rgba(255,255,255,.45);
  max-width: 540px; line-height: 1.75;
}

/* Gold bar under page hero */
.page-hero-bar {
  background: var(--gold);
  height: 4px;
}

/* Breadcrumb */
.breadcrumb {
  background: var(--surface2); border-bottom: 1px solid var(--border);
  padding: 0; transition: var(--transition);
}
.breadcrumb-inner {
  max-width: var(--max-w); margin: 0 auto;
  padding: 12px var(--pad-x);
  display: flex; align-items: center; gap: 8px;
  font-family: 'DM Mono', monospace; font-size: 9.5px;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--muted);
}
.breadcrumb-inner a { color: var(--muted); transition: color .2s; }
.breadcrumb-inner a:hover { color: var(--gold); opacity: 1; }
.bc-sep { opacity: .4; }
.bc-cur { color: var(--text); }

/* ══════════════════════════
   ABOUT PAGE
══════════════════════════ */
.about-story {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
.about-story-visual {
  position: relative; height: 500px;
  background: var(--surface2); border: 1px solid var(--border);
  overflow: hidden;
}
.about-story-visual::before {
  content: 'VELO';
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%) rotate(-15deg);
  font-family: 'Cormorant Garamond', serif;
  font-size: 120px; font-weight: 700;
  letter-spacing: .3em; color: var(--gold-bdr);
  pointer-events: none; user-select: none;
}
.asv-accent {
  position: absolute; top: 36px; left: 36px; right: 36px; bottom: 36px;
  border: 1px solid var(--gold-bdr);
}
.asv-year {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: var(--ink); padding: 20px 28px;
  display: flex; justify-content: space-between; align-items: center;
}
.asv-year-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px; font-weight: 700; color: #E8C55A; line-height: 1;
}
.asv-year-lbl {
  font-family: 'DM Mono', monospace; font-size: 9px;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(255,255,255,.38);
}

.values-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 20px; margin-top: 56px;
}
.value-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-top: 2.5px solid var(--gold);
  padding: 36px 32px;
  transition: box-shadow .25s;
}
.value-card:hover { box-shadow: var(--shadow-md); }
.value-icon { font-size: 28px; margin-bottom: 16px; display: block; }
.value-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px; font-weight: 600; margin-bottom: 10px;
}
.value-desc { font-size: 14px; line-height: 1.7; color: var(--muted); }

.team-grid {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 20px; margin-top: 56px;
}
.team-card {
  background: var(--surface); border: 1px solid var(--border);
  padding: 28px 24px; text-align: center;
  transition: border-color .25s;
}
.team-card:hover { border-color: var(--gold-bdr); }
.team-avatar {
  width: 72px; height: 72px; border-radius: 50%;
  background: var(--surface2);
  border: 2px solid var(--gold-bdr);
  margin: 0 auto 16px;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px; font-weight: 700; color: var(--gold);
}
.team-name { font-size: 15px; font-weight: 600; margin-bottom: 4px; }
.team-role {
  font-family: 'DM Mono', monospace; font-size: 9px;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted);
}

/* ══════════════════════════
   SERVICES PAGE
══════════════════════════ */
.service-detail {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 56px; align-items: start;
  padding: 56px 0;
  border-bottom: 1px solid var(--border);
}
.service-detail:first-child { padding-top: 0; }
.service-detail:last-child { border-bottom: none; }
.service-detail.reverse { direction: rtl; }
.service-detail.reverse > * { direction: ltr; }

.sd-num {
  font-family: 'DM Mono', monospace; font-size: 10px;
  letter-spacing: 0.26em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 12px;
}
.sd-icon { font-size: 40px; margin-bottom: 16px; display: block; }
.sd-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px; font-weight: 600; margin-bottom: 16px;
}
.sd-desc { font-size: 15px; line-height: 1.8; color: var(--muted); margin-bottom: 28px; }
.sd-features { list-style: none; margin-bottom: 28px; }
.sd-features li {
  padding: 9px 0; border-bottom: 1px solid var(--border);
  display: flex; gap: 12px; font-size: 14px; color: var(--text2);
}
.sd-features li:last-child { border-bottom: none; }
.sd-features li::before {
  content: '✓'; color: var(--gold); font-size: 12px;
  font-family: 'DM Mono', monospace; flex-shrink: 0; margin-top: 1px;
}
.sd-price-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--gold-bg); border: 1px solid var(--gold-bdr);
  padding: 8px 16px;
  font-family: 'DM Mono', monospace; font-size: 11px;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold);
}
.sd-visual {
  background: var(--surface2); border: 1px solid var(--border);
  min-height: 300px; display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.sd-visual-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 160px; font-weight: 700;
  color: var(--gold-bdr); line-height: 1;
  user-select: none;
}
.sd-visual-tag {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: var(--ink); padding: 16px 24px;
  font-family: 'DM Mono', monospace; font-size: 9.5px;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(255,255,255,.4);
}

/* Pricing cards */
.pricing-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 20px; margin-top: 56px;
}
.price-card {
  background: var(--surface); border: 1px solid var(--border);
  padding: 36px 32px; position: relative;
  transition: box-shadow .25s;
}
.price-card.featured {
  background: var(--ink); border-color: var(--gold-bdr);
  color: #fff;
}
.price-card:hover { box-shadow: var(--shadow-md); }
.pc-badge {
  position: absolute; top: -1px; right: 28px;
  background: var(--gold); color: var(--ink);
  font-family: 'DM Mono', monospace; font-size: 8px;
  letter-spacing: 0.16em; text-transform: uppercase;
  padding: 5px 12px;
}
.pc-icon { font-size: 28px; margin-bottom: 20px; display: block; }
.pc-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px; font-weight: 600; margin-bottom: 8px;
}
.price-card.featured .pc-name { color: #fff; }
.pc-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 42px; font-weight: 700;
  color: var(--gold); line-height: 1;
  margin-bottom: 4px;
}
.pc-price-sub {
  font-family: 'DM Mono', monospace; font-size: 9px;
  letter-spacing: 0.12em; color: var(--muted); margin-bottom: 24px;
}
.price-card.featured .pc-price-sub { color: rgba(255,255,255,.4); }
.pc-list { list-style: none; margin-bottom: 28px; }
.pc-list li {
  padding: 8px 0; border-bottom: 1px solid var(--border);
  font-size: 13.5px; display: flex; gap: 10px; color: var(--text2);
}
.price-card.featured .pc-list li { border-color: rgba(255,255,255,.07); color: rgba(255,255,255,.6); }
.pc-list li:last-child { border-bottom: none; }
.pc-list li::before { content: '✓'; color: var(--gold); font-family: 'DM Mono', monospace; flex-shrink: 0; }

/* ══════════════════════════
   CONTACT PAGE
══════════════════════════ */
.contact-grid {
  display: grid; grid-template-columns: 1fr 420px;
  gap: 56px; align-items: start;
}
.contact-form-wrap {
  background: var(--surface); border: 1px solid var(--border);
  padding: 40px 36px;
}
.contact-form-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 30px; font-weight: 600; margin-bottom: 8px;
}
.contact-form-sub {
  font-size: 14px; color: var(--muted); margin-bottom: 32px; line-height: 1.65;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 20px; }
.form-label {
  display: block; font-family: 'DM Mono', monospace; font-size: 9px;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted);
  margin-bottom: 7px;
}
.form-input,
.form-select,
.form-textarea {
  width: 100%; background: var(--bg2); border: 1.5px solid var(--border2);
  outline: none; padding: 13px 16px;
  font-family: 'Jost', sans-serif; font-size: 14px;
  color: var(--text); transition: border-color .25s, background .35s;
  appearance: none;
}
.form-input::placeholder,
.form-textarea::placeholder { color: var(--muted2); }
.form-input:focus,
.form-select:focus,
.form-textarea:focus { border-color: var(--gold); background: var(--surface); }
.form-textarea { resize: vertical; min-height: 130px; line-height: 1.65; }
.form-submit {
  width: 100%;
  font-family: 'DM Mono', monospace; font-size: 10.5px;
  letter-spacing: 0.14em; text-transform: uppercase;
  background: var(--ink); color: var(--surface);
  border: none; padding: 16px 32px; cursor: none;
  transition: background .25s;
  display: flex; align-items: center; justify-content: center; gap: 10px;
}
.form-submit:hover { background: var(--gold); }

.contact-info { display: flex; flex-direction: column; gap: 20px; }
.contact-info-card {
  background: var(--surface); border: 1px solid var(--border);
  border-left: 3px solid var(--gold);
  padding: 24px 24px 24px 22px;
}
.cic-label {
  font-family: 'DM Mono', monospace; font-size: 9px;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 8px;
}
.cic-value { font-size: 14px; color: var(--text); line-height: 1.65; }
.cic-sub { font-size: 12.5px; color: var(--muted); margin-top: 3px; }

.office-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 20px; margin-top: 56px;
}
.office-card {
  background: var(--surface); border: 1px solid var(--border);
  padding: 28px 24px; position: relative;
  transition: border-color .25s;
}
.office-card:hover { border-color: var(--gold-bdr); }
.office-card::before {
  content: ''; position: absolute;
  top: 0; left: 0; right: 0; height: 2.5px;
  background: var(--gold); opacity: 0;
  transition: opacity .25s;
}
.office-card:hover::before { opacity: 1; }
.office-city {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px; font-weight: 600; margin-bottom: 6px;
}
.office-type {
  font-family: 'DM Mono', monospace; font-size: 8.5px;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 14px;
}
.office-addr { font-size: 13.5px; color: var(--muted); line-height: 1.65; }

/* FAQ */
.faq-list { margin-top: 56px; }
.faq-item {
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.faq-q {
  padding: 22px 0; display: flex; align-items: center;
  justify-content: space-between; gap: 20px;
  cursor: none; transition: color .2s;
  font-size: 16px; font-weight: 500;
}
.faq-q:hover { color: var(--gold); }
.faq-icon {
  font-family: 'DM Mono', monospace; font-size: 18px;
  color: var(--gold); flex-shrink: 0;
  transition: transform .3s;
  line-height: 1;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height .35s ease, padding .35s;
  font-size: 14.5px; color: var(--muted); line-height: 1.8;
  padding: 0;
}
.faq-item.open .faq-a { max-height: 300px; padding-bottom: 20px; }

/* ══════════════════════════
   TRACKING PAGE
══════════════════════════ */
.track-hero {
  padding: 36px 0 32px;
  background: var(--surface2); border-bottom: 1px solid var(--border);
  transition: var(--transition);
}
.track-hero-inner {
  max-width: var(--max-w); margin: 0 auto;
  padding: 0 var(--pad-x);
  display: flex; align-items: flex-start;
  justify-content: space-between; gap: 40px;
}
.track-id-row { display: flex; align-items: center; gap: 14px; margin-bottom: 12px; }
.track-pkg-id {
  font-family: 'DM Mono', monospace; font-size: 14.5px;
  font-weight: 500; letter-spacing: 0.12em; color: var(--gold);
}
.track-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(26px,3.5vw,44px); font-weight: 600;
  line-height: 1.1; margin-bottom: 8px;
}
.track-subheading { font-size: 15px; color: var(--muted); line-height: 1.6; }

/* Progress stages */
.progress-bar { margin-top: 28px; display: flex; align-items: flex-start; }
.stage { flex: 1; display: flex; flex-direction: column; align-items: center; position: relative; }
.stage:not(:last-child)::after {
  content: ''; position: absolute;
  top: 13px; left: 50%; right: -50%; height: 2px; z-index: 0;
}
.stage.done:not(:last-child)::after { background: var(--gold); }
.stage.active:not(:last-child)::after { background: linear-gradient(to right, var(--gold), var(--border2)); }
.stage.pending:not(:last-child)::after { background: var(--border2); }
.stage-dot {
  width: 27px; height: 27px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; z-index: 1; position: relative;
  border: 2px solid var(--border2); background: var(--surface);
  transition: all .3s;
}
.stage.done .stage-dot { background: var(--gold); border-color: var(--gold); color: var(--surface); }
.stage.active .stage-dot { background: var(--surface); border-color: var(--gold); box-shadow: 0 0 0 4px var(--gold-bg2); }
.stage.pending .stage-dot { background: var(--surface2); border-color: var(--border2); color: var(--muted2); }
.stage-label {
  font-family: 'DM Mono', monospace; font-size: 8.5px;
  letter-spacing: 0.10em; text-transform: uppercase;
  color: var(--muted); margin-top: 8px; text-align: center;
}
.stage.done .stage-label, .stage.active .stage-label { color: var(--text); }

/* ETA card */
.eta-card {
  background: var(--surface); border: 1px solid var(--border);
  padding: 24px 28px; min-width: 240px;
  box-shadow: var(--shadow); flex-shrink: 0;
  transition: var(--transition);
}
.eta-lbl {
  font-family: 'DM Mono', monospace; font-size: 9px;
  letter-spacing: 0.20em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 8px;
}
.eta-date {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px; font-weight: 600; line-height: 1;
}
.eta-time { font-family: 'DM Mono', monospace; font-size: 12.5px; color: var(--gold); margin-top: 5px; }
.eta-divider { height: 1px; background: var(--border); margin: 14px 0; }
.eta-meta { display: flex; gap: 20px; }
.eta-meta-label {
  font-family: 'DM Mono', monospace; font-size: 9px;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted);
}
.eta-meta-val { font-size: 13px; font-weight: 500; margin-top: 2px; }

/* Track body layout */
.track-body {
  display: grid; grid-template-columns: 1fr 340px;
  gap: 24px; padding: 28px var(--pad-x) 60px;
  max-width: var(--max-w); margin: 0 auto;
}

/* Timeline */
.panel {
  background: var(--surface); border: 1px solid var(--border);
  overflow: hidden; transition: var(--transition);
}
.panel-head {
  padding: 20px 26px; border-bottom: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
}
.panel-title { font-family: 'Cormorant Garamond', serif; font-size: 20px; font-weight: 600; }
.panel-subtitle {
  font-family: 'DM Mono', monospace; font-size: 9px;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--muted); margin-top: 2px;
}
.timeline { padding: 0 26px 26px; }
.tl-date-group { margin-top: 26px; }
.tl-date-label {
  font-family: 'DM Mono', monospace; font-size: 9px;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--muted); padding: 7px 0;
  border-bottom: 1px solid var(--border); margin-bottom: 4px;
}
.tl-event {
  display: flex; gap: 18px; padding: 13px 0;
  border-left: 2px solid var(--border);
  margin-left: 16px; position: relative;
  transition: border-color .35s;
}
.tl-event:last-child { border-left-color: transparent; }
.tl-event.ev-done { border-left-color: var(--gold-bdr); }
.tl-event.ev-active { border-left-color: var(--gold); }
.tl-icon {
  width: 30px; height: 30px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; flex-shrink: 0;
  margin-left: -16px; border: 2px solid var(--surface);
  box-shadow: 0 0 0 1px var(--border);
}
.tl-icon.done { background: var(--gold); color: var(--surface); }
.tl-icon.active { background: var(--gold-bg2); color: var(--gold); border-color: var(--gold); }
.tl-body { flex: 1; padding-top: 2px; }
.tl-title { font-size: 14px; font-weight: 500; color: var(--text); margin-bottom: 3px; }
.tl-desc { font-size: 13px; color: var(--muted); line-height: 1.5; margin-bottom: 6px; }
.tl-meta {
  display: flex; align-items: center; gap: 10px;
  font-family: 'DM Mono', monospace; font-size: 9.5px;
  color: var(--muted2); flex-wrap: wrap;
}
.tl-tag { padding: 2px 8px; font-size: 9px; letter-spacing: 0.08em; text-transform: uppercase; }
.tag-air    { background: var(--blue-bg);    color: var(--blue); }
.tag-ground { background: var(--mint-bg);   color: var(--mint); }
.tag-customs { background: var(--gold-bg);  color: var(--gold); }
.tag-system  { background: var(--surface3); color: var(--muted); }

/* Track sidebar */
.track-sidebar { display: flex; flex-direction: column; gap: 18px; }
.detail-rows {}
.detail-row {
  display: flex; justify-content: space-between; align-items: flex-start;
  padding: 12px 22px; border-bottom: 1px solid var(--border);
}
.detail-row:last-child { border-bottom: none; }
.dr-lbl {
  font-family: 'DM Mono', monospace; font-size: 9px;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted);
}
.dr-val { font-size: 13px; font-weight: 500; text-align: right; max-width: 55%; }
.dr-gold { color: var(--gold); }
.dr-mint  { color: var(--mint); }
.addr-section { padding: 14px 22px; border-bottom: 1px solid var(--border); }
.addr-section:last-child { border-bottom: none; }
.addr-type {
  font-family: 'DM Mono', monospace; font-size: 9px;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 5px;
}
.addr-name { font-size: 14px; font-weight: 500; margin-bottom: 3px; }
.addr-line { font-size: 13px; color: var(--muted); line-height: 1.55; }
.notify-card {
  background: var(--surface); border: 1px solid var(--border);
  border-top: 2px solid var(--gold);
  padding: 22px; transition: var(--transition);
}
.notify-title { font-size: 14px; font-weight: 600; margin-bottom: 6px; }
.notify-sub { font-size: 13px; color: var(--muted); line-height: 1.55; margin-bottom: 14px; }
.notify-input {
  width: 100%; background: var(--bg2); border: 1px solid var(--border2);
  outline: none; padding: 11px 14px;
  font-family: 'DM Mono', monospace; font-size: 11px;
  letter-spacing: 0.08em; color: var(--text);
  margin-bottom: 8px; transition: border-color .25s, background .35s;
}
.notify-input:focus { border-color: var(--gold); }
.notify-btn {
  width: 100%; font-family: 'DM Mono', monospace;
  font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--surface); background: var(--text); border: none;
  padding: 13px; cursor: none; transition: background .25s;
}
.notify-btn:hover { background: var(--gold); }

/* Track search page */
.track-search-wrap {
  padding: 80px var(--pad-x);
  max-width: 740px; margin: 0 auto; text-align: center;
}
.track-search-form {
  display: flex; border: 1.5px solid var(--border2);
  overflow: hidden; transition: border-color .25s;
  max-width: 520px; margin: 0 auto;
}
.track-search-form:focus-within { border-color: var(--gold); }
.track-search-input {
  flex: 1; background: var(--surface2); border: none; outline: none;
  padding: 16px 20px;
  font-family: 'DM Mono', monospace; font-size: 13px;
  letter-spacing: 0.10em; color: var(--text);
  transition: background .35s;
}
.track-search-input::placeholder { color: var(--muted2); }
.track-search-btn {
  background: var(--text); color: var(--surface);
  border: none; padding: 0 28px;
  cursor: none; font-size: 20px;
  transition: background .25s;
  display: flex; align-items: center;
}
.track-search-btn:hover { background: var(--gold); }

/* ══════════════════════════
   BADGE SYSTEM
══════════════════════════ */
.badge {
  display: inline-flex; align-items: center; gap: 5px;
  font-family: 'DM Mono', monospace; font-size: 9px;
  letter-spacing: 0.09em; text-transform: uppercase;
  padding: 4px 10px;
}
.badge::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: currentColor; flex-shrink: 0; }
.badge-pending          { background: var(--gold-bg);   color: var(--gold);  border: 1px solid var(--gold-bdr); }
.badge-collected        { background: var(--blue-bg);   color: var(--blue); }
.badge-in_transit       { background: var(--gold-bg);   color: var(--gold);  border: 1px solid var(--gold-bdr); }
.badge-customs          { background: rgba(234,179,8,.1); color: #b45309; }
.badge-out_for_delivery { background: var(--blue-bg);   color: var(--blue); }
.badge-delivered        { background: var(--mint-bg);   color: var(--mint); }
.badge-failed           { background: var(--coral-bg);  color: var(--coral); }
.badge-returned         { background: rgba(107,114,128,.1); color: #6b7280; }

/* ══════════════════════════
   FLASH MESSAGES
══════════════════════════ */
.flash { padding: 13px 18px; font-size: 14px; border-left: 3.5px solid; margin-bottom: 16px; }
.flash-success { background: var(--mint-bg); border-color: var(--mint); color: var(--mint); }
.flash-error   { background: var(--coral-bg); border-color: var(--coral); color: var(--coral); }
.flash-info    { background: var(--gold-bg); border-color: var(--gold); color: var(--gold); }
.flash-warning { background: rgba(234,179,8,.08); border-color: #ca8a04; color: #ca8a04; }

/* ══════════════════════════
   FOOTER
══════════════════════════ */
.footer {
  background: var(--ink); color: rgba(255,255,255,.6);
  transition: var(--transition);
}
.footer-inner {
  max-width: var(--max-w); margin: 0 auto;
  padding: 72px var(--pad-x) 36px;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 56px; margin-bottom: 52px;
}
.footer-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px; font-weight: 700;
  letter-spacing: 0.18em; color: #E8C55A;
  margin-bottom: 12px;
}
.footer-tagline { font-size: 14px; line-height: 1.75; max-width: 260px; color: rgba(255,255,255,.38); }
.footer-social { display: flex; gap: 12px; margin-top: 20px; }
.footer-social a {
  width: 32px; height: 32px;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; color: rgba(255,255,255,.5);
  transition: border-color .2s, color .2s;
}
.footer-social a:hover { border-color: var(--gold); color: #E8C55A; opacity: 1; }
.fc-title {
  font-family: 'DM Mono', monospace; font-size: 9.5px;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(255,255,255,.35); margin-bottom: 20px;
}
.fc-links { list-style: none; }
.fc-links li { margin-bottom: 10px; }
.fc-links a {
  font-size: 14px; color: rgba(255,255,255,.45);
  transition: color .2s;
}
.fc-links a:hover { color: #E8C55A; opacity: 1; }
.footer-divider { height: 1px; background: rgba(255,255,255,.07); margin-bottom: 28px; }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px;
  font-family: 'DM Mono', monospace; font-size: 9.5px;
  letter-spacing: 0.10em; text-transform: uppercase;
  color: rgba(255,255,255,.22);
}
.footer-bottom a { color: rgba(255,255,255,.3); }
.footer-bottom a:hover { color: rgba(232,197,90,.7); opacity: 1; }

/* ══════════════════════════
   UTILITIES
══════════════════════════ */
.text-gold  { color: var(--gold); }
.text-muted { color: var(--muted); }
.text-mint  { color: var(--mint); }
.text-coral { color: var(--coral); }
.mono   { font-family: 'DM Mono', monospace; letter-spacing: 0.08em; }
.serif  { font-family: 'Cormorant Garamond', serif; }
.text-center { text-align: center; }
::-webkit-scrollbar { width: 3px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--gold); }

/* ══════════════════════════
   RESPONSIVE — TABLET
══════════════════════════ */
@media (max-width: 1024px) {
  .hero-inner { gap: 40px; }
  .feature-2col { gap: 48px; }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .stat-cell:nth-child(2) { border-right: none; }
  .team-grid { grid-template-columns: repeat(2,1fr); }
  .pricing-grid { grid-template-columns: 1fr 1fr; }
  .service-detail { gap: 36px; }
}

/* ══════════════════════════
   RESPONSIVE — MOBILE
══════════════════════════ */
@media (max-width: 768px) {
  /* NAV */
  .nav-inner { height: 62px; }
  .nav-hamburger { display: flex; }
  .nav-links {
    display: none; flex-direction: column; gap: 0;
    position: absolute; top: 62px; left: 0; right: 0;
    background: var(--surface); border-bottom: 1px solid var(--border);
    z-index: 800; padding: 8px 0;
  }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links a { display: block; padding: 13px var(--pad-x); border-bottom: 1px solid var(--border); }
  .nav-links a::after { display: none; }
  .nav-right .btn-ghost { display: none; }

  /* HERO */
  .hero { padding: 60px 0 52px; }
  .hero-inner { grid-template-columns: 1fr; gap: 36px; }
  .hero-title { font-size: clamp(42px, 10vw, 68px); }
  .hero-stats { flex-wrap: wrap; gap: 18px; }
  .h-stat { padding-right: 18px; margin-right: 18px; }
  .hero-btns { flex-wrap: wrap; }
  .hero-card { max-width: 100%; }

  /* SECTIONS */
  .section { padding: 60px 0; }
  .section-lg { padding: 72px 0; }
  .stats-band { padding: 48px 0; }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .stat-cell { border-right: none; border-bottom: 1px solid rgba(255,255,255,.07); }
  .stat-cell:nth-last-child(-n+2) { border-bottom: none; }

  /* GRIDS */
  .svc-grid { grid-template-columns: 1fr; }
  .svc-card { border-right: none !important; }
  .svc-card:nth-child(n) { border-bottom: 1px solid var(--border) !important; }
  .svc-card:last-child { border-bottom: none !important; }

  .steps-grid { grid-template-columns: 1fr; }
  .step-card { border-right: none; }
  .step-card:not(:last-child)::after { display: none; }
  .step-card:not(:last-child) { border-bottom: 1px solid var(--border); }

  .testi-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(2,1fr); }
  .pricing-grid { grid-template-columns: 1fr; }
  .office-grid { grid-template-columns: 1fr; }

  /* FEATURE 2COL */
  .feature-2col { grid-template-columns: 1fr; gap: 36px; }
  .map-panel { height: 300px; }

  /* ABOUT */
  .about-story { grid-template-columns: 1fr; gap: 36px; }
  .about-story-visual { height: 280px; }

  /* SERVICES */
  .service-detail { grid-template-columns: 1fr; gap: 28px; }
  .service-detail.reverse { direction: ltr; }

  /* CONTACT */
  .contact-grid { grid-template-columns: 1fr; }

  /* PAGE HERO */
  .page-hero { padding: 56px 0 48px; }
  .page-hero-title { font-size: clamp(36px,9vw,60px); }

  /* TRACK */
  .track-hero-inner { flex-direction: column; gap: 20px; }
  .eta-card { min-width: auto; width: 100%; }
  .track-body { grid-template-columns: 1fr; padding: 20px var(--pad-x) 48px; }
  .progress-bar { gap: 0; }
  .stage-label { font-size: 8px; }
  .track-search-wrap { padding: 60px var(--pad-x); }

  /* FOOTER */
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }

  /* CTA */
  .cta-section { padding: 72px 0; }
  .cta-btns { flex-direction: column; align-items: center; }
}

@media (max-width: 480px) {
  .nav-logo { font-size: 23px; }
  .hero-title { font-size: clamp(38px, 11vw, 54px); }
  .team-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr; }
  .stat-cell { border-bottom: 1px solid rgba(255,255,255,.07); border-right: none; }
  .h-stat { border-right: none; padding-right: 0; margin-right: 0; }
  .hero-stats { flex-direction: column; gap: 16px; }
}
