/* ============================================================
   GOFLOW V2 — DESIGN SYSTEM
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Brand */
  --blue:        #0B8AD1;
  --blue-dark:   #0769A8;
  --blue-light:  #38BDF8;
  --blue-dim:    #E0F2FE;
  --ink:         #0A1628;
  --ink-mid:     #1E3A5F;
  --ink-soft:    #334E68;

  /* Neutrals */
  --text:        #0F172A;
  --text-2:      #475569;
  --text-3:      #94A3B8;
  --border:      #E2E8F0;
  --border-2:    #CBD5E1;
  --surface:     #F8FAFC;
  --surface-2:   #F1F5F9;
  --white:       #FFFFFF;

  /* Status */
  --green:       #10B981;
  --green-dim:   #D1FAE5;
  --amber:       #F59E0B;
  --amber-dim:   #FEF3C7;
  --red:         #EF4444;
  --red-dim:     #FEE2E2;

  /* Gradients */
  --grad:        linear-gradient(135deg, #0B8AD1 0%, #0EA5E9 100%);
  --grad-dark:   linear-gradient(135deg, #0A1628 0%, #0B3D6B 100%);
  --grad-soft:   linear-gradient(135deg, #E0F2FE 0%, #F0F9FF 100%);

  /* Shadows */
  --shadow-sm:   0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.04);
  --shadow:      0 4px 16px rgba(0,0,0,0.08), 0 2px 6px rgba(0,0,0,0.04);
  --shadow-md:   0 8px 32px rgba(0,0,0,0.10), 0 4px 12px rgba(0,0,0,0.06);
  --shadow-lg:   0 20px 60px rgba(0,0,0,0.12), 0 8px 24px rgba(0,0,0,0.08);
  --shadow-blue: 0 8px 32px rgba(11,138,209,0.25);

  /* Radii */
  --r-sm:  8px;
  --r:     12px;
  --r-md:  16px;
  --r-lg:  24px;
  --r-xl:  32px;

  /* Spacing scale */
  --sp-1: 4px;  --sp-2: 8px;  --sp-3: 12px;  --sp-4: 16px;
  --sp-5: 20px; --sp-6: 24px; --sp-8: 32px;  --sp-10: 40px;
  --sp-12: 48px; --sp-16: 64px; --sp-20: 80px; --sp-24: 96px;

  /* Type */
  --font: 'Inter', system-ui, -apple-system, sans-serif;
}

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
button { font-family: var(--font); cursor: pointer; }
a { text-decoration: none; }
ul { list-style: none; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--sp-6);
}

.container--narrow { max-width: 800px; margin: 0 auto; padding: 0 var(--sp-6); }

/* Gradient text utility */
.g-text {
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Section spacing */
.section { padding: var(--sp-24) 0; }
.section--sm { padding: var(--sp-16) 0; }
.section--lg { padding: 120px 0; }

/* Section label */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  padding: 5px 14px;
  border-radius: 100px;
  background: var(--blue-dim);
  color: var(--blue-dark);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: var(--sp-4);
}

.eyebrow--dark {
  background: rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.9);
}

/* Section heading block */
.section-head { margin-bottom: var(--sp-12); }
.section-head--center { text-align: center; }
.section-head--center .section-head__sub { margin: 0 auto; }

.section-head__h { font-size: clamp(28px, 3.5vw, 40px); font-weight: 800; line-height: 1.2; letter-spacing: -0.02em; margin-bottom: var(--sp-3); }
.section-head__sub { font-size: 17px; color: var(--text-2); max-width: 520px; line-height: 1.7; }
.section-head__h--light { color: var(--white); }
.section-head__sub--light { color: rgba(255,255,255,0.75); }

/* Divider */
.divider { height: 1px; background: var(--border); }

/* ============================================================
   BUTTONS
   ============================================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  padding: 13px 28px;
  border-radius: var(--r);
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  border: none;
  transition: all 0.18s ease;
  white-space: nowrap;
}

.btn--primary {
  background: var(--grad);
  color: var(--white);
  box-shadow: var(--shadow-blue);
}
.btn--primary:hover { opacity: 0.92; transform: translateY(-1px); box-shadow: 0 12px 40px rgba(11,138,209,0.35); }

.btn--white {
  background: var(--white);
  color: var(--blue-dark);
  box-shadow: var(--shadow-md);
}
.btn--white:hover { transform: translateY(-1px); box-shadow: var(--shadow-lg); }

.btn--ghost {
  background: rgba(255,255,255,0.10);
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.35);
  backdrop-filter: blur(8px);
}
.btn--ghost:hover { background: rgba(255,255,255,0.18); border-color: rgba(255,255,255,0.6); }

.btn--outline {
  background: transparent;
  color: var(--blue);
  border: 1.5px solid var(--border-2);
}
.btn--outline:hover { border-color: var(--blue); background: var(--blue-dim); }

.btn--lg { padding: 16px 36px; font-size: 16px; border-radius: var(--r-md); }
.btn--sm { padding: 9px 18px; font-size: 13px; border-radius: var(--r-sm); }
.btn--full { width: 100%; }

/* ============================================================
   NAVBAR
   ============================================================ */

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  transition: background 0.3s, box-shadow 0.3s;
}
.nav.scrolled {
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--border), 0 4px 24px rgba(0,0,0,0.06);
}
.nav__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--sp-6);
  height: 68px;
  display: flex;
  align-items: center;
  gap: var(--sp-8);
}

/* Logo */
.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
  flex-shrink: 0;
  transition: color 0.3s;
}
.nav.scrolled .nav__logo { color: var(--text); }
.nav__logo img { width: 32px; height: 32px; object-fit: contain; }

/* Desktop links */
.nav__links {
  display: flex;
  align-items: center;
  gap: var(--sp-8);
}
.nav__links > a {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  transition: color 0.2s;
}
.nav__links > a:hover { color: var(--white); }
.nav.scrolled .nav__links > a { color: var(--text-2); }
.nav.scrolled .nav__links > a:hover { color: var(--blue); }

/* Desktop track bar */
.nav__track {
  display: flex;
  align-items: center;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: var(--r-sm);
  overflow: hidden;
  transition: all 0.3s;
}
.nav.scrolled .nav__track { background: var(--surface); border-color: var(--border); }
.nav__track input {
  padding: 8px 14px;
  background: transparent;
  border: none;
  font-size: 13px;
  font-family: var(--font);
  outline: none;
  color: var(--white);
  width: 170px;
}
.nav__track input::placeholder { color: rgba(255,255,255,0.45); }
.nav.scrolled .nav__track input { color: var(--text); }
.nav.scrolled .nav__track input::placeholder { color: var(--text-3); }
.nav__track-btn {
  padding: 8px 14px;
  background: rgba(255,255,255,0.08);
  border: none;
  border-left: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.9);
  font-size: 13px;
  font-weight: 600;
  font-family: var(--font);
  transition: background 0.2s;
}
.nav__track-btn:hover { background: rgba(255,255,255,0.18); }
.nav.scrolled .nav__track-btn { border-left-color: var(--border); color: var(--blue); background: transparent; }
.nav.scrolled .nav__track-btn:hover { background: var(--blue-dim); }

/* Desktop CTA */
.nav__cta {
  padding: 9px 20px;
  background: var(--white);
  color: var(--blue-dark);
  border: none;
  border-radius: var(--r-sm);
  font-size: 14px;
  font-weight: 700;
  transition: all 0.2s;
  flex-shrink: 0;
}
.nav__cta:hover { transform: translateY(-1px); box-shadow: var(--shadow-md); }
.nav.scrolled .nav__cta { background: var(--grad); color: var(--white); }

/* Desktop nav links */
.nav__desktop-links {
  display: flex;
  align-items: center;
  gap: var(--sp-6);
  flex: 1;
  justify-content: center;
}
.nav__desktop-links a {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  transition: color 0.2s;
  white-space: nowrap;
}
.nav__desktop-links a:hover { color: var(--white); }
.nav.scrolled .nav__desktop-links a { color: var(--text-2); }
.nav.scrolled .nav__desktop-links a:hover { color: var(--blue); }

/* Highlight the Get a Quote link */
.nav__desktop-links a[href="/quote"] {
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--r-sm);
  padding: 5px 12px;
  color: rgba(255,255,255,0.9);
  font-weight: 600;
}
.nav.scrolled .nav__desktop-links a[href="/quote"] {
  background: var(--blue-dim);
  border-color: rgba(11,138,209,0.3);
  color: var(--blue-dark);
}

/* Desktop actions wrapper */
.nav__desktop-actions {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  margin-left: auto;
}

/* Hamburger toggle */
.nav__toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--r-sm);
  margin-left: auto;
  flex-direction: column;
  gap: 5px;
  transition: background 0.2s, border-color 0.2s;
}
.nav.scrolled .nav__toggle {
  background: var(--surface);
  border-color: var(--border);
}
.nav__toggle-bar {
  display: block;
  width: 18px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: opacity 0.2s;
}
.nav.scrolled .nav__toggle-bar { background: var(--text); }

@media (max-width: 1024px) { .nav__track { display: none; } }

/* ---- Mobile drawer (lives outside <nav>) ---- */
.nav__links {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #0A1628;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  gap: 0;
  z-index: 1100;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.4,0,0.2,1);
  visibility: hidden;
  pointer-events: none;
  display: flex;
}
.nav__links.open {
  transform: translateX(0);
  visibility: visible;
  pointer-events: all;
}

.nav__drawer-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1099;
  background: rgba(0,0,0,0.5);
}
.nav__drawer-backdrop.open { display: block; }

/* Drawer header */
.nav__drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--sp-5);
  height: 68px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  flex-shrink: 0;
}
.nav__drawer-logo { color: var(--white) !important; font-size: 17px; }
.nav__drawer-close {
  width: 40px; height: 40px;
  border-radius: var(--r-sm);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.7);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
}
.nav__drawer-close:hover { background: rgba(255,255,255,0.14); color: var(--white); }

/* Action buttons */
.nav__drawer-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-3);
  padding: var(--sp-5);
  flex-shrink: 0;
}
.nav__drawer-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  padding: 14px var(--sp-3);
  border-radius: var(--r);
  font-size: 14px;
  font-weight: 700;
  font-family: var(--font);
  border: none;
  transition: opacity 0.2s;
}
.nav__drawer-btn--primary  { background: var(--grad); color: var(--white); box-shadow: var(--shadow-blue); }
.nav__drawer-btn--secondary { background: rgba(255,255,255,0.08); color: var(--white); border: 1px solid rgba(255,255,255,0.15); }

/* Separator */
.nav__drawer-sep {
  height: 1px;
  background: rgba(255,255,255,0.07);
  margin: 0 var(--sp-5);
  flex-shrink: 0;
}

/* Nav list */
.nav__drawer-nav {
  display: flex;
  flex-direction: column;
  padding: var(--sp-3) 0;
  flex: 1;
}
.nav__drawer-link {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  padding: 16px var(--sp-5);
  color: rgba(255,255,255,0.85);
  font-size: 16px;
  font-weight: 500;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: background 0.15s;
}
.nav__drawer-link:last-child { border-bottom: none; }
.nav__drawer-link:active { background: rgba(255,255,255,0.06); }
.nav__drawer-link-icon { font-size: 18px; flex-shrink: 0; width: 28px; text-align: center; }
.nav__drawer-link span:nth-child(2) { flex: 1; }
.nav__drawer-link-arrow { color: rgba(255,255,255,0.25); flex-shrink: 0; }

/* WhatsApp footer */
.nav__drawer-footer {
  padding: var(--sp-5);
  border-top: 1px solid rgba(255,255,255,0.07);
  flex-shrink: 0;
}
.nav__drawer-wa {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-3);
  padding: 14px;
  background: rgba(37,211,102,0.1);
  border: 1px solid rgba(37,211,102,0.25);
  border-radius: var(--r);
  color: #4ADE80;
  font-size: 15px;
  font-weight: 600;
  transition: background 0.2s;
}
.nav__drawer-wa:active { background: rgba(37,211,102,0.18); }

/* On desktop hide the whole drawer and backdrop */
@media (min-width: 769px) {
  .nav__links,
  .nav__drawer-backdrop { display: none !important; }
  .nav__toggle           { display: none !important; }
  .nav__desktop-actions  { display: flex !important; }
  .nav__desktop-links    { display: flex !important; }
}

/* On mobile hide desktop actions and links, show toggle */
@media (max-width: 768px) {
  .nav__desktop-actions { display: none !important; }
  .nav__desktop-links   { display: none !important; }
  .nav__toggle          { display: flex; z-index: 901; }
}

/* ============================================================
   HERO
   ============================================================ */

.hero {
  min-height: 100vh;
  background: var(--grad-dark);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding-top: 68px;
}

/* Subtle grid texture */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}

/* Glow orbs */
.hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.hero__orb--1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(11,138,209,0.35) 0%, transparent 70%);
  top: -100px; left: -100px;
}
.hero__orb--2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(14,165,233,0.2) 0%, transparent 70%);
  bottom: 0; right: 10%;
}

.hero__body {
  flex: 1;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 2;
  padding: var(--sp-20) 0 var(--sp-16);
}

.hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-16);
  align-items: center;
}

/* Left col */
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  padding: 6px 14px;
  background: rgba(16,185,129,0.15);
  border: 1px solid rgba(16,185,129,0.3);
  border-radius: 100px;
  color: #6EE7B7;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-bottom: var(--sp-5);
}
.hero__badge-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--green);
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%,100% { box-shadow: 0 0 0 0 rgba(16,185,129,0.6); }
  50%      { box-shadow: 0 0 0 5px rgba(16,185,129,0); }
}

.hero__h1 {
  font-size: clamp(38px, 4.5vw, 60px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--white);
  margin-bottom: var(--sp-5);
}

.hero__sub {
  font-size: 18px;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  max-width: 460px;
  margin-bottom: var(--sp-8);
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  flex-wrap: wrap;
  margin-bottom: var(--sp-10);
}

.btn--xl { padding: 18px 40px; font-size: 17px; border-radius: var(--r-md); font-weight: 700; }

.hero__trust {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  flex-wrap: wrap;
}
.hero__trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
}
.hero__trust-num {
  font-size: 16px;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}
.hero__trust-lbl {
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  font-weight: 500;
}
.hero__trust-sep {
  width: 1px;
  height: 20px;
  background: rgba(255,255,255,0.12);
}

/* Right col — tracking visual */
.hero__visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero__dash {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--r-xl);
  padding: var(--sp-5);
  backdrop-filter: blur(12px);
  width: 100%;
  max-width: 440px;
  box-shadow: 0 32px 80px rgba(0,0,0,0.4);
}

/* Dash header bar */
.dash__topbar {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  margin-bottom: var(--sp-4);
  padding-bottom: var(--sp-4);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.dash__dots { display: flex; gap: 6px; }
.dash__dot { width: 10px; height: 10px; border-radius: 50%; }
.dash__dot--r { background: #FF5F57; }
.dash__dot--y { background: #FFBD2E; }
.dash__dot--g { background: #28CA41; }
.dash__title {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.4);
  margin-left: var(--sp-2);
  letter-spacing: 0.04em;
}
.dash__live {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 600;
  color: var(--green);
}
.dash__live-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--green);
  animation: pulse-dot 1.5s infinite;
}

/* Tracking hero block */
.dash__track-hero {
  margin-bottom: var(--sp-4);
}
.dash__track-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--sp-4);
  padding: var(--sp-3) var(--sp-4);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--r);
}
.dash__track-code {
  font-size: 15px;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  margin-bottom: 3px;
}
.dash__track-route {
  font-size: 11px;
  color: rgba(255,255,255,0.4);
}

/* Step timeline */
.dash__track-steps { display: flex; flex-direction: column; gap: 0; padding: 0 var(--sp-2); }
.dash__step {
  display: flex;
  gap: var(--sp-3);
  padding: var(--sp-2) 0;
  position: relative;
}
.dash__step:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 9px; top: 28px;
  width: 2px;
  height: calc(100% - 8px);
  background: rgba(255,255,255,0.08);
}
.dash__step--done::after { background: rgba(11,138,209,0.4); }
.dash__step-dot {
  width: 20px; height: 20px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.04);
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 9px;
  position: relative; z-index: 1;
}
.dash__step--done .dash__step-dot {
  background: var(--blue);
  border-color: var(--blue);
  color: white;
}
.dash__step--active .dash__step-dot {
  background: transparent;
  border-color: var(--blue-light);
  box-shadow: 0 0 0 4px rgba(56,189,248,0.15);
}
.dash__step-title { font-size: 12px; font-weight: 600; color: rgba(255,255,255,0.85); }
.dash__step-time  { font-size: 10px; color: rgba(255,255,255,0.35); margin-top: 1px; }

/* WhatsApp preview */
.dash__wa-preview {
  background: rgba(37,211,102,0.07);
  border: 1px solid rgba(37,211,102,0.2);
  border-radius: var(--r);
  padding: var(--sp-3) var(--sp-4);
}
.dash__wa-header {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  margin-bottom: var(--sp-2);
}
.dash__wa-icon { font-size: 13px; }
.dash__wa-label {
  font-size: 10px;
  font-weight: 700;
  color: rgba(37,211,102,0.8);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.dash__wa-bubble {
  font-size: 12px;
  color: rgba(255,255,255,0.6);
  line-height: 1.5;
}

/* Badge reuse */
.dash__order-badge {
  font-size: 10px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 100px;
  flex-shrink: 0;
}
.dash__order-badge--transit { background: rgba(11,138,209,0.25); color: #7DD3FC; }
.dash__order-badge--done    { background: rgba(16,185,129,0.2);  color: #6EE7B7; }
.dash__order-badge--pending { background: rgba(245,158,11,0.2);  color: #FCD34D; }

/* Floating chips */
.hero__chip {
  position: absolute;
  background: var(--white);
  border-radius: var(--r);
  padding: var(--sp-3) var(--sp-4);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: 12px;
  font-weight: 600;
  color: var(--text);
  z-index: 3;
  border: 1px solid var(--border);
  max-width: 220px;
  line-height: 1.4;
  animation: chip-float 4s ease-in-out infinite;
}
.hero__chip--1 { top: 12px; right: -16px; animation-delay: 0s; }
.hero__chip--2 { bottom: -48px; left: -16px; animation-delay: 2s; font-style: italic; }
.hero__chip-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--green);
  flex-shrink: 0;
  animation: pulse-dot 2s infinite;
}
.hero__chip-icon { font-size: 14px; flex-shrink: 0; }
@keyframes chip-float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-5px); }
}

/* Ticker */
.hero__ticker {
  position: relative;
  z-index: 2;
  background: rgba(255,255,255,0.04);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 10px 0;
}
.hero__ticker-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--sp-6);
  display: flex;
  align-items: center;
  gap: var(--sp-4);
}
.hero__ticker-label {
  font-size: 11px;
  font-weight: 700;
  color: rgba(255,255,255,0.35);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  flex-shrink: 0;
}
.ticker-live-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--green);
  flex-shrink: 0;
  animation: pulse-dot 1.5s infinite;
}
#tickerText {
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  font-weight: 500;
  transition: opacity 0.4s;
}

/* ============================================================
   HERO PROOF STRIP
   ============================================================ */

.hero-proof {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: var(--sp-5) 0;
}
.hero-proof__inner {
  display: flex;
  align-items: center;
  gap: var(--sp-6);
  flex-wrap: wrap;
}
.hero-proof__item {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  flex: 1;
  min-width: 240px;
}
.hero-proof__item p {
  font-size: 13px;
  color: var(--text-2);
  line-height: 1.5;
  font-style: italic;
}
.hero-proof__item p span {
  font-style: normal;
  font-weight: 600;
  color: var(--text-3);
  font-size: 12px;
  display: block;
  margin-top: 2px;
}
.hero-proof__sep {
  width: 1px;
  height: 40px;
  background: var(--border);
  flex-shrink: 0;
}
@media (max-width: 640px) {
  .hero-proof__sep { display: none; }
  .hero-proof__item:last-child { display: none; }
}

/* ============================================================
   SOCIAL PROOF BAR
   ============================================================ */

.proof-bar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: var(--sp-6) 0;
}
.proof-bar__inner {
  display: flex;
  align-items: center;
  gap: var(--sp-6);
}
.proof-bar__label {
  font-size: 11px;
  font-weight: 700;
  color: var(--text-3);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  white-space: nowrap;
  flex-shrink: 0;
}
.proof-bar__sep {
  width: 1px;
  height: 24px;
  background: var(--border);
  flex-shrink: 0;
}
.proof-bar__logos {
  flex: 1;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}
.proof-bar__track {
  display: flex;
  gap: var(--sp-6);
  align-items: center;
  width: max-content;
  animation: scroll-logos 20s linear infinite;
}
.proof-bar__track:hover { animation-play-state: paused; }
@keyframes scroll-logos {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.proof-bar__logo {
  height: 32px;
  width: auto;
  object-fit: contain;
  opacity: 0.65;
  filter: grayscale(30%);
  transition: opacity 0.2s, filter 0.2s;
  flex-shrink: 0;
}
.proof-bar__logo:hover { opacity: 1; filter: none; }

/* Stats strip */
.stats-strip {
  background: var(--grad-dark);
  padding: var(--sp-12) 0;
}
.stats-strip__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.08);
  border-radius: var(--r-md);
  overflow: hidden;
}
.stats-strip__item {
  background: rgba(255,255,255,0.03);
  padding: var(--sp-8) var(--sp-6);
  text-align: center;
}
.stats-strip__num {
  font-size: 40px;
  font-weight: 800;
  line-height: 1;
  color: var(--white);
  letter-spacing: -0.03em;
  margin-bottom: var(--sp-2);
}
.stats-strip__num span { color: var(--blue-light); }
.stats-strip__lbl {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  font-weight: 500;
}

@media (max-width: 768px) {
  .hero__grid { grid-template-columns: 1fr; gap: var(--sp-10); }
  .hero__visual { display: flex; }
  .hero__dash {
    max-width: 100%;
  }
  .hero__chip { display: none; }
  .hero__h1 { font-size: 36px; }
  .hero__sub { font-size: 16px; }
  .hero__actions { flex-direction: column; align-items: stretch; }
  .hero__actions .btn { justify-content: center; }
  .stats-strip__grid { grid-template-columns: repeat(2, 1fr); }
  .proof-bar__sep { display: none; }
}

/* ============================================================
   PROBLEMS SECTION
   ============================================================ */

.problems { background: var(--surface); }

.problems__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-5);
}

.problem-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: var(--sp-8);
  transition: box-shadow 0.2s, border-color 0.2s;
}
.problem-card:hover { box-shadow: var(--shadow-md); border-color: var(--border-2); }

.problem-card__icon {
  width: 44px; height: 44px;
  border-radius: var(--r-sm);
  background: var(--red-dim);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  margin-bottom: var(--sp-4);
}
.problem-card__icon--amber { background: var(--amber-dim); }
.problem-card__icon--blue  { background: var(--blue-dim); }

.problem-card__h { font-size: 16px; font-weight: 700; margin-bottom: var(--sp-2); }
.problem-card__p { font-size: 14px; color: var(--text-2); line-height: 1.6; }

/* Arrow to solution */
.problems__arrow {
  text-align: center;
  padding: var(--sp-8) 0 0;
  color: var(--text-3);
  font-size: 13px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-3);
}
.problems__arrow::before,
.problems__arrow::after {
  content: '';
  flex: 1;
  max-width: 120px;
  height: 1px;
  background: var(--border);
}

/* ============================================================
   SOLUTION / PRODUCT OVERVIEW
   ============================================================ */

.solution { background: var(--white); }

.solution__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-16);
  align-items: center;
}

.solution__list {
  display: flex;
  flex-direction: column;
  gap: var(--sp-5);
  margin-top: var(--sp-8);
}
.solution__item {
  display: flex;
  gap: var(--sp-4);
  align-items: flex-start;
}
.solution__item-icon {
  width: 36px; height: 36px;
  border-radius: var(--r-sm);
  background: var(--blue-dim);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
  margin-top: 2px;
}
.solution__item-h { font-size: 15px; font-weight: 700; margin-bottom: 3px; }
.solution__item-p { font-size: 14px; color: var(--text-2); line-height: 1.6; }

/* Right: visual panel */
.solution__panel {
  background: var(--grad-dark);
  border-radius: var(--r-xl);
  padding: var(--sp-6);
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}
.solution__panel::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 32px 32px;
}

/* Tracking timeline inside panel */
.track-timeline { position: relative; z-index: 1; }
.track-timeline__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--sp-5);
}
.track-timeline__title { font-size: 13px; font-weight: 700; color: rgba(255,255,255,0.9); }
.track-timeline__badge {
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 100px;
  background: rgba(11,138,209,0.3);
  color: #7DD3FC;
}

.timeline-steps { display: flex; flex-direction: column; gap: 0; }
.timeline-step {
  display: flex;
  gap: var(--sp-4);
  padding: var(--sp-3) 0;
  position: relative;
}
.timeline-step:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 11px; top: 36px;
  width: 2px;
  height: calc(100% - 12px);
  background: rgba(255,255,255,0.1);
}
.timeline-step.done::after { background: rgba(11,138,209,0.5); }

.timeline-dot {
  width: 24px; height: 24px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.05);
  flex-shrink: 0;
  position: relative; z-index: 1;
  display: flex; align-items: center; justify-content: center;
  font-size: 10px;
}
.timeline-step.done .timeline-dot {
  background: var(--blue);
  border-color: var(--blue);
  color: white;
}
.timeline-step.active .timeline-dot {
  background: transparent;
  border-color: var(--blue-light);
  box-shadow: 0 0 0 4px rgba(56,189,248,0.2);
}

.timeline-info__title { font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.9); }
.timeline-info__time  { font-size: 11px; color: rgba(255,255,255,0.4); margin-top: 2px; }

/* ============================================================
   FEATURES GRID
   ============================================================ */

.features { background: var(--surface); }

.features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-5);
}

.feature-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: var(--sp-8);
  transition: all 0.2s;
  position: relative;
  overflow: hidden;
}
.feature-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--grad);
  opacity: 0;
  transition: opacity 0.2s;
}
.feature-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.feature-card:hover::after { opacity: 1; }

.feature-card--featured {
  background: var(--grad-dark);
  border-color: transparent;
  color: var(--white);
}
.feature-card--featured::after { opacity: 1; }

.feature-card__icon {
  width: 44px; height: 44px;
  border-radius: var(--r-sm);
  background: var(--blue-dim);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  margin-bottom: var(--sp-5);
}
.feature-card--featured .feature-card__icon { background: rgba(255,255,255,0.1); }

.feature-card__h { font-size: 16px; font-weight: 700; margin-bottom: var(--sp-2); }
.feature-card--featured .feature-card__h { color: var(--white); }

.feature-card__p { font-size: 14px; color: var(--text-2); line-height: 1.6; }
.feature-card--featured .feature-card__p { color: rgba(255,255,255,0.65); }

.feature-card__tag {
  display: inline-block;
  margin-top: var(--sp-4);
  padding: 3px 10px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  background: var(--blue-dim);
  color: var(--blue-dark);
}
.feature-card--featured .feature-card__tag { background: rgba(255,255,255,0.12); color: rgba(255,255,255,0.8); }

/* ============================================================
   DASHBOARD SHOWCASE
   ============================================================ */

.showcase { background: var(--grad-dark); overflow: hidden; }

.showcase__grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: var(--sp-16);
  align-items: center;
}

.showcase__tabs {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  margin-top: var(--sp-8);
}
.showcase__tab {
  display: flex;
  gap: var(--sp-4);
  align-items: flex-start;
  padding: var(--sp-4) var(--sp-5);
  border-radius: var(--r);
  border: 1px solid rgba(255,255,255,0.06);
  background: rgba(255,255,255,0.03);
  cursor: pointer;
  transition: all 0.2s;
}
.showcase__tab:hover { background: rgba(255,255,255,0.07); }
.showcase__tab.active {
  background: rgba(11,138,209,0.15);
  border-color: rgba(11,138,209,0.4);
}
.showcase__tab-icon { font-size: 20px; flex-shrink: 0; margin-top: 2px; }
.showcase__tab-h { font-size: 14px; font-weight: 700; color: rgba(255,255,255,0.9); margin-bottom: 3px; }
.showcase__tab-p { font-size: 13px; color: rgba(255,255,255,0.45); line-height: 1.5; }

/* Screen mockup */
.showcase__screen {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: 0 40px 100px rgba(0,0,0,0.5);
}
.screen__bar {
  background: rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  padding: var(--sp-3) var(--sp-5);
  display: flex;
  align-items: center;
  gap: var(--sp-3);
}
.screen__dots { display: flex; gap: 5px; }
.screen__dot { width: 9px; height: 9px; border-radius: 50%; }
.screen__dot--r { background: rgba(255,95,87,0.6); }
.screen__dot--y { background: rgba(255,189,46,0.6); }
.screen__dot--g { background: rgba(40,202,65,0.6); }
.screen__url {
  flex: 1;
  background: rgba(255,255,255,0.05);
  border-radius: var(--r-sm);
  padding: 4px 12px;
  font-size: 11px;
  color: rgba(255,255,255,0.3);
  font-family: monospace;
}

.screen__content { padding: var(--sp-5); }

/* Admin dashboard inside screen */
.admin-dash__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--sp-4);
}
.admin-dash__title { font-size: 14px; font-weight: 700; color: rgba(255,255,255,0.9); }
.admin-dash__actions { display: flex; gap: var(--sp-2); }
.admin-dash__btn {
  padding: 5px 12px;
  border-radius: var(--r-sm);
  font-size: 11px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  font-family: var(--font);
}
.admin-dash__btn--primary { background: var(--blue); color: white; }
.admin-dash__btn--ghost { background: rgba(255,255,255,0.07); color: rgba(255,255,255,0.6); }

.admin-dash__kpis {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-3);
  margin-bottom: var(--sp-4);
}
.admin-kpi {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--r);
  padding: var(--sp-3) var(--sp-4);
}
.admin-kpi__val { font-size: 20px; font-weight: 800; color: var(--white); line-height: 1; }
.admin-kpi__lbl { font-size: 10px; color: rgba(255,255,255,0.35); margin-top: 3px; text-transform: uppercase; letter-spacing: 0.05em; }
.admin-kpi__delta { font-size: 10px; font-weight: 600; margin-top: 3px; }
.admin-kpi__delta--up   { color: var(--green); }
.admin-kpi__delta--down { color: var(--red); }

.admin-dash__table { width: 100%; border-collapse: collapse; }
.admin-dash__table th {
  font-size: 10px;
  font-weight: 700;
  color: rgba(255,255,255,0.3);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: var(--sp-2) var(--sp-3);
  text-align: left;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.admin-dash__table td {
  font-size: 12px;
  color: rgba(255,255,255,0.75);
  padding: var(--sp-3);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.admin-dash__table tr:last-child td { border-bottom: none; }
.tbl-badge {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 100px;
  font-size: 10px;
  font-weight: 700;
}
.tbl-badge--transit { background: rgba(11,138,209,0.25); color: #7DD3FC; }
.tbl-badge--done    { background: rgba(16,185,129,0.2);  color: #6EE7B7; }
.tbl-badge--pending { background: rgba(245,158,11,0.2);  color: #FCD34D; }

@media (max-width: 1024px) {
  .features__grid { grid-template-columns: repeat(2, 1fr); }
  .showcase__grid { grid-template-columns: 1fr; }
  .showcase__screen { display: none; }
  .admin-dash__kpis { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .problems__grid { grid-template-columns: 1fr; }
  .solution__grid { grid-template-columns: 1fr; }
  .features__grid { grid-template-columns: 1fr; }
}

/* ============================================================
   WORKFLOW / HOW IT WORKS
   ============================================================ */

.workflow { background: var(--white); }

.workflow__steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-5);
  position: relative;
  margin-top: var(--sp-12);
}
.workflow__steps::before {
  content: '';
  position: absolute;
  top: 28px; left: calc(16.66% + 28px); right: calc(16.66% + 28px);
  height: 2px;
  background: linear-gradient(to right, var(--blue-dim), var(--blue), var(--blue-dim));
}

.workflow-step {
  text-align: center;
  padding: var(--sp-8) var(--sp-6);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  transition: all 0.2s;
  position: relative;
}
.workflow-step:hover { box-shadow: var(--shadow-md); border-color: var(--blue-light); transform: translateY(-2px); }

.workflow-step__num {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--grad);
  color: var(--white);
  font-size: 20px;
  font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto var(--sp-5);
  box-shadow: var(--shadow-blue);
  position: relative; z-index: 1;
}
.workflow-step__h { font-size: 17px; font-weight: 700; margin-bottom: var(--sp-2); }
.workflow-step__p { font-size: 14px; color: var(--text-2); line-height: 1.6; }

.workflow__cta { text-align: center; margin-top: var(--sp-12); }

/* ============================================================
   METRICS / RESULTS
   ============================================================ */

.metrics { background: var(--surface); }

.metrics__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-5);
}

.metric-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: var(--sp-8);
  display: flex;
  gap: var(--sp-5);
  align-items: flex-start;
  transition: box-shadow 0.2s;
}
.metric-card:hover { box-shadow: var(--shadow-md); }

.metric-card__icon {
  width: 48px; height: 48px;
  border-radius: var(--r-sm);
  background: var(--blue-dim);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}
.metric-card__val {
  font-size: 36px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: var(--sp-1);
}
.metric-card__val span { color: var(--blue); }
.metric-card__lbl { font-size: 14px; font-weight: 600; color: var(--text); margin-bottom: var(--sp-1); }
.metric-card__sub { font-size: 13px; color: var(--text-2); line-height: 1.5; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */

.testimonials { background: var(--white); }

.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-5);
}

.testi-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: var(--sp-8);
  display: flex;
  flex-direction: column;
  gap: var(--sp-5);
  transition: all 0.2s;
}
.testi-card:hover { box-shadow: var(--shadow-md); border-color: var(--border-2); transform: translateY(-2px); }

.testi-card--featured {
  background: var(--grad-dark);
  border-color: transparent;
}

.testi-stars { color: var(--amber); font-size: 14px; letter-spacing: 2px; }
.testi-card--featured .testi-stars { color: #FCD34D; }

.testi-quote {
  font-size: 15px;
  color: var(--text-2);
  line-height: 1.7;
  font-style: italic;
  flex: 1;
}
.testi-card--featured .testi-quote { color: rgba(255,255,255,0.75); }

.testi-author { display: flex; align-items: center; gap: var(--sp-3); }
.testi-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--grad);
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.testi-card--featured .testi-avatar { background: rgba(255,255,255,0.15); }
.testi-name { font-size: 14px; font-weight: 700; color: var(--text); }
.testi-card--featured .testi-name { color: var(--white); }
.testi-role { font-size: 12px; color: var(--text-3); }
.testi-card--featured .testi-role { color: rgba(255,255,255,0.45); }

/* ============================================================
   INTEGRATIONS
   ============================================================ */

.integrations { background: var(--surface); }

.integrations__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-4);
  margin-top: var(--sp-10);
}

.integration-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: var(--sp-6);
  text-align: center;
  transition: all 0.2s;
}
.integration-card:hover { box-shadow: var(--shadow-md); border-color: var(--blue-light); transform: translateY(-2px); }

.integration-card__icon { font-size: 32px; margin-bottom: var(--sp-3); }
.integration-card__name { font-size: 14px; font-weight: 700; margin-bottom: var(--sp-1); }
.integration-card__status {
  display: inline-block;
  padding: 2px 10px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 600;
}
.integration-card__status--live    { background: var(--green-dim); color: #065F46; }
.integration-card__status--soon    { background: var(--amber-dim); color: #92400E; }
.integration-card__status--contact { background: var(--blue-dim);  color: var(--blue-dark); }

/* ============================================================
   FINAL CTA
   ============================================================ */

.final-cta { background: var(--grad-dark); overflow: hidden; position: relative; }
.final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 48px 48px;
}
.final-cta__inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
}
.final-cta__h {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: var(--sp-5);
}
.final-cta__sub {
  font-size: 18px;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  margin-bottom: var(--sp-10);
}
.final-cta__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-4);
  flex-wrap: wrap;
  margin-bottom: var(--sp-8);
}
.final-cta__trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-6);
  flex-wrap: wrap;
}
.final-cta__trust-item {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  font-weight: 500;
}

/* ============================================================
   FOOTER
   ============================================================ */

.footer {
  background: #060E1A;
  padding: var(--sp-16) 0 var(--sp-8);
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--sp-10);
  margin-bottom: var(--sp-12);
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: var(--sp-4);
}
.footer__logo img { width: 30px; height: 30px; object-fit: contain; }
.footer__tagline { font-size: 14px; color: rgba(255,255,255,0.4); line-height: 1.7; max-width: 260px; margin-bottom: var(--sp-5); }

.footer__social { display: flex; gap: var(--sp-3); }
.footer__social-link {
  width: 36px; height: 36px;
  border-radius: var(--r-sm);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  transition: all 0.2s;
  color: rgba(255,255,255,0.6);
}
.footer__social-link:hover { background: rgba(255,255,255,0.12); color: var(--white); }

.footer__col-h {
  font-size: 12px;
  font-weight: 700;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: var(--sp-5);
}
.footer__links { display: flex; flex-direction: column; gap: var(--sp-3); }
.footer__links a {
  font-size: 14px;
  color: rgba(255,255,255,0.45);
  transition: color 0.2s;
}
.footer__links a:hover { color: var(--white); }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: var(--sp-6);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--sp-4);
}
.footer__copy { font-size: 13px; color: rgba(255,255,255,0.3); }
.footer__flag { font-size: 13px; color: rgba(255,255,255,0.3); }

/* ============================================================
   SIDE PANELS
   ============================================================ */

.panel {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: 100%; max-width: 520px;
  background: var(--white);
  z-index: 2000;
  transform: translateX(100%);
  transition: transform 0.38s cubic-bezier(0.4,0,0.2,1);
  display: flex;
  flex-direction: column;
  box-shadow: -8px 0 60px rgba(0,0,0,0.2);
}
.panel.open { transform: translateX(0); }

.panel__backdrop {
  position: fixed; inset: 0;
  background: rgba(6,14,26,0.6);
  z-index: 1999;
  opacity: 0; pointer-events: none;
  transition: opacity 0.38s;
  backdrop-filter: blur(4px);
}
.panel__backdrop.open { opacity: 1; pointer-events: all; }

.panel__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--sp-5) var(--sp-6);
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}
.panel__title { font-size: 17px; font-weight: 700; }
.panel__close {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--surface);
  border: none;
  font-size: 18px;
  color: var(--text-2);
  display: flex; align-items: center; justify-content: center;
  transition: all 0.2s;
}
.panel__close:hover { background: var(--red-dim); color: var(--red); }

.panel__body {
  flex: 1;
  overflow-y: auto;
  padding: var(--sp-6);
  display: flex;
  flex-direction: column;
  gap: var(--sp-5);
}

/* Form elements inside panel */
.panel .form-field { display: flex; flex-direction: column; gap: 6px; }
.panel .form-field label { font-size: 13px; font-weight: 600; color: var(--text); }
.panel .form-field input,
.panel .form-field select,
.panel .form-field textarea {
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--r-sm);
  font-size: 14px;
  font-family: var(--font);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  background: var(--white);
  color: var(--text);
  resize: vertical;
}
.panel .form-field input:focus,
.panel .form-field select:focus,
.panel .form-field textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(11,138,209,0.1);
}

.panel__section-title {
  font-size: 11px;
  font-weight: 700;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  padding-bottom: var(--sp-3);
  border-bottom: 1px solid var(--border);
}

.panel__grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-4); }

.panel__sub { font-size: 14px; color: var(--text-2); line-height: 1.6; }

.panel__input-row { display: flex; gap: var(--sp-3); }
.panel__input-row input {
  flex: 1;
  padding: 13px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--r-sm);
  font-size: 15px;
  font-family: var(--font);
  outline: none;
  transition: border-color 0.2s;
}
.panel__input-row input:focus { border-color: var(--blue); }

.panel__center {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: var(--sp-10) 0;
  gap: var(--sp-3);
}
.panel__center-icon { font-size: 48px; }
.panel__center h3 { font-size: 20px; font-weight: 700; }
.panel__center p { font-size: 14px; color: var(--text-2); }

.panel__spinner {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 3px solid var(--border);
  border-top-color: var(--blue);
  animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* Track result */
.track-result { display: flex; flex-direction: column; }
.track-result__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--sp-4) 0;
  border-bottom: 1px solid var(--border);
  margin-bottom: var(--sp-2);
}
.track-result__lbl { font-size: 11px; color: var(--text-3); font-weight: 500; margin-bottom: 3px; }
.track-result__code { font-size: 22px; font-weight: 800; }
.track-result__badge {
  padding: 5px 14px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
}
.badge--pending   { background: var(--amber-dim); color: #92400E; }
.badge--transit   { background: var(--blue-dim);  color: var(--blue-dark); }
.badge--delivered { background: var(--green-dim); color: #065F46; }
.badge--overdue   { background: var(--red-dim);   color: #991B1B; }

.track-result__row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: var(--sp-3) 0;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
  gap: var(--sp-4);
}
.track-result__row:last-child { border-bottom: none; }
.track-result__row span:first-child { color: var(--text-2); flex-shrink: 0; }
.track-result__row span:last-child  { font-weight: 600; text-align: right; }

.panel__info-cards { display: flex; flex-direction: column; gap: var(--sp-3); }
.panel__info-card {
  display: flex;
  gap: var(--sp-3);
  align-items: flex-start;
  background: var(--surface);
  border-radius: var(--r-sm);
  padding: var(--sp-4);
  font-size: 13px;
  color: var(--text-2);
  line-height: 1.5;
}
.panel__info-card span { font-size: 18px; flex-shrink: 0; }
.panel__info-card a { color: var(--blue); font-weight: 600; }

/* Pricing grid */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}
@media (max-width: 768px) {
  .pricing-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   ANIMATIONS
   ============================================================ */

.fade-up {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* Stagger children */
.stagger > *:nth-child(1) { transition-delay: 0.05s; }
.stagger > *:nth-child(2) { transition-delay: 0.10s; }
.stagger > *:nth-child(3) { transition-delay: 0.15s; }
.stagger > *:nth-child(4) { transition-delay: 0.20s; }
.stagger > *:nth-child(5) { transition-delay: 0.25s; }
.stagger > *:nth-child(6) { transition-delay: 0.30s; }

/* ============================================================
   RESPONSIVE CATCH-ALL
   ============================================================ */

@media (max-width: 1024px) {
  .integrations__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: var(--sp-8); }
}

@media (max-width: 768px) {
  .section { padding: var(--sp-16) 0; }
  .section--lg { padding: var(--sp-16) 0; }
  .workflow__steps { grid-template-columns: 1fr; }
  .workflow__steps::before { display: none; }
  .metrics__grid { grid-template-columns: 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .integrations__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; text-align: center; }
  .final-cta__actions { flex-direction: column; align-items: stretch; }
  .final-cta__actions .btn { justify-content: center; }
  .panel { max-width: 100%; }
  .panel__grid-2 { grid-template-columns: 1fr; }
  .panel__input-row { flex-direction: column; }
}

@media (max-width: 480px) {
  .stats-strip__grid { grid-template-columns: 1fr 1fr; }
  .integrations__grid { grid-template-columns: 1fr 1fr; }
  .pricing-grid { grid-template-columns: 1fr !important; }
}

/* ============================================================
   NAV DROPDOWNS
   ============================================================ */

.nav__dropdown {
  position: relative;
}

.nav__dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font);
  padding: 0;
  transition: color 0.2s;
  white-space: nowrap;
}
.nav__dropdown-trigger:hover { color: var(--white); }
.nav.scrolled .nav__dropdown-trigger { color: var(--text-2); }
.nav.scrolled .nav__dropdown-trigger:hover { color: var(--blue); }
.nav__dropdown-trigger svg { transition: transform 0.2s; }
.nav__dropdown.open .nav__dropdown-trigger svg { transform: rotate(180deg); }

.nav__dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%);
  min-width: 260px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  box-shadow: 0 16px 48px rgba(0,0,0,0.14), 0 4px 12px rgba(0,0,0,0.08);
  padding: 8px;
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) translateY(-6px);
  transition: opacity 0.18s ease, transform 0.18s ease;
  z-index: 950;
}
.nav__dropdown.open .nav__dropdown-menu {
  opacity: 1;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}

/* Arrow pointer */
.nav__dropdown-menu::before {
  content: '';
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 12px; height: 6px;
  background: var(--white);
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  border-left: 1px solid var(--border);
  border-right: 1px solid var(--border);
}

.nav__dropdown-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 12px;
  border-radius: var(--r-sm);
  color: var(--text);
  text-decoration: none;
  transition: background 0.15s;
}
.nav__dropdown-item:hover { background: var(--surface); }
.nav__dropdown-item strong { display: block; font-size: 13px; font-weight: 600; color: var(--text); }
.nav__dropdown-item small  { display: block; font-size: 11px; color: var(--text-3); margin-top: 1px; }

.nav__dropdown-icon {
  font-size: 18px;
  width: 32px; height: 32px;
  border-radius: var(--r-sm);
  background: var(--surface);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

.nav__dropdown-sep {
  height: 1px;
  background: var(--border);
  margin: 6px 4px;
}

/* Secondary quote CTA button in nav */
.nav__cta-quote {
  padding: 9px 18px;
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.4);
  border-radius: var(--r-sm);
  font-size: 14px;
  font-weight: 600;
  font-family: var(--font);
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
  flex-shrink: 0;
}
.nav__cta-quote:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.7); }
.nav.scrolled .nav__cta-quote { color: var(--blue-dark); border-color: var(--blue); background: var(--blue-dim); }
.nav.scrolled .nav__cta-quote:hover { background: var(--blue); color: var(--white); }

/* Mobile drawer group labels */
.nav__drawer-group-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  padding: 16px 20px 6px;
}

/* ============================================================
   QUOTE PANEL — STEP TABS
   ============================================================ */

.qp-tabs {
  display: flex;
  border-bottom: 1px solid var(--border);
  background: var(--surface);
  flex-shrink: 0;
}

.qp-tab {
  flex: 1;
  text-align: center;
  padding: 12px 8px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-3);
  border-bottom: 2px solid transparent;
  transition: all 0.15s;
}

.qp-tab.active {
  color: var(--blue);
  border-bottom-color: var(--blue);
}

.qp-tab.done {
  color: var(--green);
  border-bottom-color: transparent;
}

.qp-tab.done::before {
  content: '✓ ';
}

/* Ensure quote panel displays above other panels */
#quotePanel { z-index: 2010; }

/* ============================================================
   MOBILE DRAWER — ACCORDION DROPDOWNS
   ============================================================ */

.nav__drawer-accordion {
  display: flex;
  flex-direction: column;
}

.nav__drawer-accordion-trigger {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  padding: 16px var(--sp-5);
  color: rgba(255,255,255,0.85);
  font-size: 16px;
  font-weight: 500;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  background: none;
  border-left: none;
  border-right: none;
  border-top: none;
  font-family: var(--font);
  cursor: pointer;
  width: 100%;
  text-align: left;
  transition: background 0.15s;
}
.nav__drawer-accordion-trigger:active { background: rgba(255,255,255,0.06); }
.nav__drawer-accordion-trigger-icon { font-size: 18px; flex-shrink: 0; width: 28px; text-align: center; }
.nav__drawer-accordion-trigger span:nth-child(2) { flex: 1; }
.nav__drawer-accordion-chevron {
  color: rgba(255,255,255,0.25);
  flex-shrink: 0;
  transition: transform 0.25s ease;
}
.nav__drawer-accordion.open .nav__drawer-accordion-chevron { transform: rotate(180deg); }

.nav__drawer-accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0.4,0,0.2,1);
  background: rgba(0,0,0,0.25);
}
.nav__drawer-accordion.open .nav__drawer-accordion-body {
  max-height: 400px;
}

.nav__drawer-accordion-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 20px 13px 52px;
  color: rgba(255,255,255,0.65);
  font-size: 14px;
  font-weight: 500;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  transition: background 0.15s, color 0.15s;
}
.nav__drawer-accordion-item:last-child { border-bottom: none; }
.nav__drawer-accordion-item:active { background: rgba(255,255,255,0.06); color: var(--white); }
.nav__drawer-accordion-item-icon {
  font-size: 16px;
  width: 24px;
  text-align: center;
  flex-shrink: 0;
}
.nav__drawer-accordion-item strong { display: block; font-size: 14px; font-weight: 600; color: inherit; line-height: 1.2; }
.nav__drawer-accordion-item small  { display: block; font-size: 11px; color: rgba(255,255,255,0.35); margin-top: 2px; }

@media (max-width: 768px) {
  .nav__drawer-actions {
    grid-template-columns: 1fr;
  }
  .nav__dropdown-menu { display: none !important; }
}
