/* ============================================================
   ParcelPro — Design System
   ============================================================ */

:root {
  /* Brand palette */
  --indigo-900: #1d1033;   /* business header / parcelvision bg */
  --indigo-800: #2c1a52;   /* homepage header */
  --indigo-700: #3a2270;
  --purple-700: #6d28d9;
  --purple-600: #7c3aed;
  --purple-500: #8b5cf6;
  --purple-400: #a78bfa;
  --violet-text: #7c3aed;

  --pink-500: #ec0d8c;     /* primary CTA pink */
  --pink-600: #d10a7c;
  --teal-500: #12c2c2;     /* business CTA teal */
  --teal-600: #0fb0b0;
  --teal-text: #12b5b5;

  --lav-50: #f7f5fe;       /* page bg */
  --lav-100: #f1ecfd;
  --lav-200: #e7defb;
  --teal-card: #e3f7f8;    /* promo card bg */

  --ink-900: #1f1138;
  --ink-700: #3b2f55;
  --ink-600: #5a4f74;
  --ink-500: #756a8f;
  --line: #ece8f6;
  --white: #ffffff;

  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 22px;
  --radius-pill: 999px;
  --shadow-sm: 0 4px 14px rgba(45, 27, 78, 0.06);
  --shadow: 0 14px 40px rgba(45, 27, 78, 0.10);
  --shadow-lg: 0 26px 70px rgba(45, 27, 78, 0.16);

  --maxw: 1180px;
  --font-head: "Poppins", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  color: var(--ink-700);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; padding: 0; }
h1, h2, h3, h4 { font-family: var(--font-head); color: var(--ink-900); line-height: 1.12; font-weight: 700; letter-spacing: -0.01em; }

/* ---------- Layout helpers ---------- */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: 22px; }
.section { padding-block: 76px; }
.text-purple { color: var(--violet-text); }
.text-pink { color: var(--pink-500); }
.text-teal { color: var(--teal-text); }
.center { text-align: center; }
.eyebrow { font-family: var(--font-head); font-weight: 600; font-size: 0.74rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--violet-text); }

.section-title { font-size: clamp(1.7rem, 3.4vw, 2.6rem); }
.section-sub { color: var(--ink-500); font-size: 1.02rem; max-width: 620px; margin: 14px auto 0; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-head); font-weight: 600; font-size: 0.95rem;
  padding: 13px 26px; border-radius: var(--radius-pill);
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-pink { background: var(--pink-500); color: #fff; box-shadow: 0 10px 24px rgba(236,13,140,.28); }
.btn-pink:hover { background: var(--pink-600); }
.btn-purple { background: var(--purple-600); color: #fff; box-shadow: 0 10px 24px rgba(124,58,237,.28); }
.btn-purple:hover { background: var(--purple-700); }
.btn-teal { background: var(--teal-500); color: #06343a; box-shadow: 0 10px 24px rgba(18,194,194,.30); }
.btn-teal:hover { background: var(--teal-600); }
.btn-ghost { background: var(--indigo-800); color: #fff; }
.btn-ghost:hover { background: var(--indigo-700); }
.btn-outline { border: 1.5px solid var(--purple-400); color: var(--violet-text); background: transparent; }
.btn-outline:hover { background: var(--lav-100); }
.link-arrow { font-family: var(--font-head); font-weight: 600; color: var(--violet-text); display: inline-flex; align-items: center; gap: 6px; }
.link-arrow:hover { gap: 9px; }
.link-pink { color: var(--pink-500); font-weight: 700; }

/* ============================================================
   Header / Navigation
   ============================================================ */
.site-header { position: sticky; top: 0; z-index: 60; background: var(--indigo-800); }
.business .site-header { background: var(--indigo-900); }
.nav { display: flex; align-items: center; gap: 36px; height: 70px; }
.logo { display: inline-flex; align-items: center; }
.logo .logo-box {
  background: #fff; color: var(--indigo-900); font-family: var(--font-head); font-weight: 700;
  font-size: 0.95rem; line-height: 0.95; padding: 9px 12px; border-radius: 7px; letter-spacing: -0.02em;
}
.logo .logo-box span { display: block; }

.nav-menu { display: flex; align-items: center; gap: 6px; margin-left: 6px; }
.nav-item { position: static; }
.nav-link {
  display: inline-flex; align-items: center; gap: 6px; color: #efeaff; font-family: var(--font-head);
  font-weight: 500; font-size: 0.92rem; padding: 10px 14px; border-radius: 8px; transition: color .15s, background .15s;
}
.nav-link:hover, .nav-item.open .nav-link { color: #fff; background: rgba(255,255,255,.08); }
.nav-link .caret { transition: transform .2s ease; }
.nav-item.open .nav-link .caret { transform: rotate(180deg); }
.nav-right { margin-left: auto; display: flex; align-items: center; gap: 20px; }
.nav-right a { color: #efeaff; font-family: var(--font-head); font-weight: 500; font-size: 0.92rem; display: inline-flex; align-items: center; gap: 8px; }
.nav-right a:hover { color: #fff; }
.icon-btn { width: 38px; height: 38px; border-radius: var(--radius-pill); display: grid; place-items: center; border: 1.5px solid rgba(255,255,255,.25); color: #fff; }
.icon-btn:hover { background: rgba(255,255,255,.1); }

.nav-toggle { display: none; color: #fff; width: 42px; height: 42px; place-items: center; }

/* Mega menu */
.mega {
  position: absolute; left: 0; right: 0; top: 100%;
  background: #fff; box-shadow: var(--shadow-lg);
  opacity: 0; visibility: hidden; transform: translateY(-8px);
  transition: opacity .18s ease, transform .18s ease, visibility .18s;
  z-index: 55;
}
.nav-item.open .mega { opacity: 1; visibility: visible; transform: translateY(0); }
.mega-inner { display: grid; grid-template-columns: repeat(3, 1fr) 1.15fr; gap: 40px; padding: 42px 22px; max-width: var(--maxw); margin-inline: auto; }
.mega-col h4 { font-size: 1.05rem; margin-bottom: 18px; color: var(--ink-900); }
.mega-col li { margin-bottom: 13px; }
.mega-col a { color: var(--ink-600); font-size: 0.93rem; }
.mega-col a:hover { color: var(--violet-text); }
.mega-promo { background: var(--teal-card); border-radius: var(--radius); padding: 24px; }
.mega-promo h4 { font-size: 1.05rem; margin-bottom: 12px; }
.mega-promo p { color: var(--ink-600); font-size: 0.9rem; margin-bottom: 18px; }
.mega-bar { background: var(--lav-100); }
.nav-item.open .mega + .mega-bar {}
.mega-bar .container { padding-block: 13px; font-family: var(--font-head); font-weight: 500; color: var(--ink-700); font-size: 0.9rem; }
.mega-wrap { position: absolute; left: 0; right: 0; top: 100%; opacity: 0; visibility: hidden; transform: translateY(-8px); transition: opacity .18s, transform .18s, visibility .18s; z-index: 55; }
.nav-item.open .mega-wrap { opacity: 1; visibility: visible; transform: translateY(0); }
.mega-wrap .mega { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; }
.mega-wrap { box-shadow: var(--shadow-lg); }

/* ============================================================
   Footer
   ============================================================ */
.site-footer { background: var(--indigo-800); color: #cdc3e8; padding-block: 60px 34px; }
.business .site-footer { background: var(--indigo-900); }
.footer-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 34px; padding-bottom: 40px; }
.footer-col h5 { font-family: var(--font-head); color: #fff; font-size: 0.98rem; margin-bottom: 18px; font-weight: 600; }
.footer-col li { margin-bottom: 11px; }
.footer-col a { color: #b6a9d6; font-size: 0.88rem; }
.footer-col a:hover { color: #fff; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding-top: 28px; border-top: 1px solid rgba(255,255,255,.12); flex-wrap: wrap; }
.footer-social { display: flex; gap: 12px; }
.footer-social a { width: 34px; height: 34px; border-radius: var(--radius-pill); display: grid; place-items: center; background: rgba(255,255,255,.08); color: #fff; }
.footer-social a:hover { background: var(--pink-500); }
.footer-legal { display: flex; gap: 20px; flex-wrap: wrap; font-size: 0.8rem; }
.footer-legal a:hover, .footer-legal span:hover { color: #fff; }
.copyright { font-size: 0.8rem; color: #9988c0; }

/* ============================================================
   Homepage — Hero
   ============================================================ */
.hero {
  background: var(--indigo-800); position: relative; overflow: hidden;
  padding: 54px 0 120px;
}
.hero::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px; height: 120px;
  background: var(--lav-200);
  clip-path: ellipse(75% 100% at 50% 100%);
}
.hero .container { position: relative; z-index: 2; }
.hero h1 { color: #fff; font-size: clamp(2rem, 4.4vw, 3.1rem); }
.hero h1 .text-pink { color: #ff5cbf; }
.hero-sub { color: #d9cffb; max-width: 640px; margin-top: 14px; font-size: 1.05rem; }
.hero-art { position: absolute; right: 30px; top: 24px; width: 180px; opacity: .92; z-index: 1; }

/* Quote widget */
.quote-widget { margin-top: 26px; max-width: 1050px; }
.quote-tabs { display: flex; gap: 6px; }
.quote-tab {
  font-family: var(--font-head); font-weight: 600; font-size: 0.9rem; color: #cbbdf2;
  padding: 11px 26px; border-radius: 12px 12px 0 0; background: transparent;
}
.quote-tab.active { background: var(--purple-600); color: #fff; }
.quote-card {
  background: var(--indigo-900); border-radius: 0 16px 16px 16px; padding: 22px;
  box-shadow: var(--shadow-lg);
}
.quote-row { display: flex; flex-wrap: wrap; align-items: flex-end; gap: 14px 18px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field > label { color: #efeaff; font-family: var(--font-head); font-weight: 500; font-size: 0.82rem; }
.field .req { color: #ff5cbf; }
.field .control { background: #fff; border-radius: 10px; height: 46px; display: flex; align-items: center; padding: 0 12px; gap: 8px; }
.field .control input { border: none; outline: none; width: 100%; font-size: 0.92rem; color: var(--ink-900); background: transparent; }
.field .control .unit { color: var(--ink-500); font-size: 0.85rem; }
.field-from .control, .field-to .control { width: 190px; }
.field .flag { font-size: 1.05rem; }
.field-qty .control { width: 78px; }
.field-dim .control { width: 92px; }
.field-loc-label { display: inline-flex; gap: 6px; align-items: baseline; }
.field-loc-label b { color: #fff; font-weight: 600; }
.field select { border: none; outline: none; background: transparent; font-size: 0.92rem; color: var(--ink-900); width: 100%; }
.btn-quote { background: var(--pink-500); color: #fff; font-family: var(--font-head); font-weight: 700; font-size: 0.86rem; letter-spacing: .04em; height: 46px; padding: 0 22px; border-radius: 10px; align-self: flex-end; }
.btn-quote:hover { background: var(--pink-600); }
.quote-foot { display: flex; align-items: center; justify-content: space-between; margin-top: 16px; gap: 16px; flex-wrap: wrap; }
.add-parcel { display: inline-flex; align-items: center; gap: 8px; color: #efeaff; font-family: var(--font-head); font-weight: 500; font-size: 0.9rem; }
.add-parcel:hover { color: #fff; }
.unit-toggle { display: inline-flex; align-items: center; gap: 6px; color: #cbbdf2; font-size: 0.86rem; }
.hero-cta-line { margin-top: 22px; color: #d9cffb; font-family: var(--font-head); font-weight: 500; }

/* ---------- Carrier strip ---------- */
.carrier-strip { padding-block: 56px 30px; }
.carrier-strip h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); text-align: center; margin-bottom: 34px; }
.carrier-logos { display: flex; align-items: center; justify-content: center; gap: 38px; flex-wrap: wrap; }
.carrier-logos img, .carrier-logos .clogo { height: 34px; width: auto; filter: grayscale(0); opacity: .92; }

/* ---------- Delivers more ---------- */
.delivers { background: var(--lav-50); }
.delivers-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 50px; align-items: center; }
.delivers h2 { font-size: clamp(1.6rem, 3vw, 2.3rem); margin-bottom: 26px; }
.check-list li { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 18px; font-size: 1.05rem; color: var(--ink-700); }
.check-list .tick { flex: none; width: 26px; height: 26px; border-radius: var(--radius-pill); background: var(--purple-500); color: #fff; display: grid; place-items: center; margin-top: 2px; }
.check-list b { color: var(--ink-900); }
.rating-box { text-align: center; }
.rating-box .rlabel { color: var(--ink-600); margin-bottom: 12px; }
.feefo { font-family: var(--font-head); font-weight: 700; color: var(--ink-900); font-size: 1.4rem; display: inline-flex; align-items: center; gap: 4px; }
.stars { display: inline-flex; gap: 4px; color: #ff7a00; font-size: 1.7rem; margin: 8px 0; }
.rating-box small { color: var(--ink-500); display: block; }

/* ---------- Featured in ---------- */
.featured { background: var(--indigo-800); padding-block: 30px; }
.featured-pill { background: #fff; border-radius: var(--radius-pill); padding: 18px 34px; display: flex; align-items: center; justify-content: center; gap: 44px; flex-wrap: wrap; }
.featured-pill .flabel { font-family: var(--font-head); font-weight: 700; color: var(--violet-text); font-size: 0.95rem; }
.featured-pill .fname { font-family: Georgia, "Times New Roman", serif; font-weight: 700; color: #20242b; font-size: 1.5rem; }
.featured-pill .fname.serif2 { font-size: 1.25rem; }

/* ---------- Courier services ---------- */
.courier { background: var(--lav-50); position: relative; }
.cards-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; margin-top: 44px; }
.svc-card { background: #fff; border-radius: var(--radius-lg); padding: 30px 28px 0; box-shadow: var(--shadow-sm); position: relative; overflow: hidden; min-height: 240px; }
.svc-card .svc-icon { width: 56px; height: 56px; display: grid; place-items: center; margin-bottom: 24px; color: var(--indigo-800); }
.svc-card h3 { font-size: 1.2rem; margin-bottom: 12px; }
.svc-card p { color: var(--ink-500); margin-bottom: 18px; }
.svc-card .link-pink { font-family: var(--font-head); display: inline-block; margin-bottom: 30px; }
.svc-card::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 26px; background: linear-gradient(90deg, var(--purple-400), var(--purple-500)); border-radius: 50% 50% 0 0 / 100% 100% 0 0; opacity: .5; }

/* ---------- Shipping for business ---------- */
.ship-biz { background: #fff; }
.ship-biz-grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: 54px; align-items: center; }
.ship-biz h2 { font-size: clamp(1.7rem, 3.2vw, 2.5rem); margin-bottom: 18px; }
.ship-biz p.lead { color: var(--ink-600); margin-bottom: 22px; }
.ship-biz .check-list li { font-size: 0.98rem; margin-bottom: 14px; }
.ship-biz .check-list .tick { width: 22px; height: 22px; }
.ship-biz .btn { margin-top: 26px; }
.ship-biz .foot-note { margin-top: 16px; color: var(--ink-500); font-size: 0.92rem; }
.dash-mock { background: #fff; border-radius: var(--radius-lg); box-shadow: var(--shadow); border: 1px solid var(--line); overflow: hidden; }

/* ---------- Trusted by millions ---------- */
.trusted { background: var(--lav-50); }
.feature-card { background: #fff; border-radius: var(--radius-lg); padding: 32px 28px; box-shadow: var(--shadow-sm); }
.feature-card .fc-icon { width: 48px; height: 48px; border-radius: 12px; background: var(--lav-100); display: grid; place-items: center; color: var(--purple-600); margin-bottom: 20px; }
.feature-card h3 { font-size: 1.15rem; margin-bottom: 10px; }
.feature-card p { color: var(--ink-500); font-size: 0.95rem; }

/* ---------- Integrate ---------- */
.integrate { background: #fff; }
.integrate-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 54px; align-items: center; }
.integrate h2 { font-size: clamp(1.8rem, 3.4vw, 2.7rem); margin-bottom: 18px; }
.integrate p { color: var(--ink-600); margin-bottom: 26px; }
.logo-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.logo-card { border: 1.5px dashed var(--purple-400); border-radius: var(--radius-lg); padding: 30px; display: grid; gap: 26px; place-items: center; background: #fff; }
.logo-card .lc-inner { background: #fff; box-shadow: var(--shadow-sm); border-radius: var(--radius); padding: 26px 30px; display: grid; gap: 24px; place-items: center; width: 100%; }
.logo-card img, .logo-card .ilogo { height: 34px; }

/* ---------- Stats banner ---------- */
.stats-banner {
  background: linear-gradient(120deg, var(--purple-700), var(--purple-500));
  border-radius: var(--radius-lg); padding: 44px; text-align: center; color: #fff;
  box-shadow: var(--shadow);
}
.stats-banner h2 { color: #fff; font-size: clamp(1.4rem, 2.8vw, 2rem); margin-bottom: 26px; }
.stats-banner h2 .text-pink { color: #ff8cd4; }
.stats-row { display: flex; align-items: center; justify-content: center; gap: 0; flex-wrap: wrap; }
.stat { padding: 0 50px; position: relative; }
.stat + .stat::before { content: ""; position: absolute; left: 0; top: 8px; bottom: 8px; width: 1px; background: rgba(255,255,255,.3); }
.stat .num { font-family: var(--font-head); font-weight: 700; font-size: 2.4rem; }
.stat .lbl { color: #e3d8ff; font-size: 0.9rem; }

/* ---------- Ready to ship ---------- */
.ready { background: var(--lav-50); text-align: center; }
.ready h2 { font-size: clamp(1.7rem, 3.2vw, 2.4rem); margin-bottom: 12px; }
.ready p { color: var(--ink-500); margin-bottom: 26px; }

/* ============================================================
   Business page
   ============================================================ */
.biz-hero {
  background: linear-gradient(135deg, #0fb5b5 0%, #3a2270 55%, var(--indigo-900) 100%);
  position: relative; overflow: hidden; padding: 70px 0 90px;
}
.biz-hero .container { position: relative; z-index: 2; }
.biz-hero-grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: 40px; align-items: center; }
.biz-hero h1 { color: #fff; font-size: clamp(2.2rem, 4.6vw, 3.4rem); }
.biz-hero h1 .text-teal { color: #5eead4; }
.biz-hero h1 .text-purple { color: #c4b5fd; }
.biz-hero p { color: #e4ddf5; margin: 18px 0 26px; max-width: 480px; }
.biz-hero p b { color: #fff; }
.biz-hero .foot-note { margin-top: 16px; color: #d9cffb; font-size: 0.92rem; }
.biz-hero-mock { background: #fff; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); overflow: hidden; }

/* When shipping becomes */
.when-ship { background: #fff; }
.control-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; margin-top: 46px; }
.control-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 0 0 28px; box-shadow: var(--shadow-sm); overflow: hidden; }
.control-card .cc-visual { background: var(--lav-50); height: 150px; padding: 18px; border-bottom: 1px solid var(--line); }
.control-card .cc-body { padding: 24px 26px 0; }
.control-card h3 { font-size: 1.2rem; margin-bottom: 10px; }
.control-card p { color: var(--ink-500); font-size: 0.94rem; margin-bottom: 14px; }
.control-card .payoff { font-size: 0.92rem; color: var(--ink-700); }
.control-card .payoff b { color: var(--violet-text); }

/* Built to grow rows */
.grow { background: var(--lav-50); }
.grow-row { display: grid; grid-template-columns: 1fr 1fr; gap: 54px; align-items: center; padding-block: 30px; }
.grow-row.reverse .grow-text { order: 2; }
.grow-text .eyebrow { display: block; margin-bottom: 14px; }
.grow-text h3 { font-size: clamp(1.5rem, 2.8vw, 2.1rem); margin-bottom: 16px; }
.grow-text p { color: var(--ink-600); margin-bottom: 18px; }
.grow-text .check-list li { font-size: 0.98rem; margin-bottom: 12px; }
.grow-text .check-list .tick { width: 22px; height: 22px; }
.grow-mock { background: #fff; border-radius: var(--radius-lg); box-shadow: var(--shadow); border: 1px solid var(--line); overflow: hidden; }
.grow-mock.teal-mock { background: linear-gradient(135deg, #0fb5b5, #3a2270); padding: 20px; }
.grow-mock.dark-mock { background: var(--indigo-900); padding: 20px; }

/* Pricing */
.pricing { background: #fff; }
.plan-controls { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-pill); padding: 12px 16px; max-width: 760px; margin: 36px auto 40px; box-shadow: var(--shadow-sm); }
.vol-select { display: flex; align-items: center; gap: 14px; }
.vol-select .vlabel { font-family: var(--font-head); font-weight: 600; font-size: 0.82rem; color: var(--ink-700); max-width: 130px; line-height: 1.25; }
.vol-pill { display: flex; align-items: center; gap: 10px; background: var(--lav-50); border: 1px solid var(--line); border-radius: var(--radius-pill); padding: 9px 16px; min-width: 220px; }
.vol-pill select { border: none; background: transparent; outline: none; font-family: var(--font-head); font-weight: 600; font-size: 0.86rem; color: var(--ink-700); width: 100%; }
.bill-toggle { display: inline-flex; background: var(--lav-100); border-radius: var(--radius-pill); padding: 4px; }
.bill-toggle button { font-family: var(--font-head); font-weight: 600; font-size: 0.82rem; padding: 8px 16px; border-radius: var(--radius-pill); color: var(--ink-600); display: inline-flex; align-items: center; gap: 6px; }
.bill-toggle button.active { background: #fff; color: var(--ink-900); box-shadow: var(--shadow-sm); }
.bill-toggle .save { background: var(--purple-500); color: #fff; font-size: 0.66rem; padding: 2px 7px; border-radius: var(--radius-pill); }

.plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: start; }
.plan { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 32px 28px; box-shadow: var(--shadow-sm); position: relative; }
.plan.popular { border: 2px solid var(--teal-500); box-shadow: var(--shadow); }
.plan .badge { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: var(--purple-500); color: #fff; font-family: var(--font-head); font-weight: 600; font-size: 0.66rem; letter-spacing: .08em; text-transform: uppercase; padding: 5px 14px; border-radius: var(--radius-pill); }
.plan h3 { font-size: 1.3rem; margin-bottom: 6px; }
.plan.popular h3 { color: var(--teal-text); }
.plan .price { font-family: var(--font-head); font-weight: 700; font-size: 2.3rem; color: var(--ink-900); }
.plan .price small { font-size: 0.9rem; font-weight: 500; color: var(--ink-500); }
.plan .who { color: var(--ink-500); font-size: 0.85rem; margin: 6px 0 20px; }
.plan .btn { width: 100%; justify-content: center; margin-bottom: 22px; }
.plan .plus-label { font-family: var(--font-head); font-weight: 600; font-size: 0.9rem; color: var(--ink-900); margin-bottom: 16px; }
.plan-features li { display: flex; gap: 11px; align-items: flex-start; margin-bottom: 13px; font-size: 0.9rem; color: var(--ink-600); }
.plan-features .pf-ic { flex: none; width: 20px; height: 20px; border-radius: var(--radius-pill); background: var(--lav-100); color: var(--purple-600); display: grid; place-items: center; margin-top: 1px; }
.plan-features b { color: var(--ink-900); }

/* Success stories */
.stories { background: var(--lav-50); }
.stories-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 40px; }
.story { background: #fff; border-radius: var(--radius-lg); padding: 28px; box-shadow: var(--shadow-sm); display: grid; grid-template-columns: 1fr auto; gap: 16px; align-items: start; }
.story .who b { font-family: var(--font-head); color: var(--ink-900); display: block; }
.story .who span { color: var(--ink-500); font-size: 0.85rem; }
.story p { grid-column: 1 / -1; color: var(--ink-600); font-size: 0.95rem; font-style: italic; }
.story .co-logo { font-family: var(--font-head); font-weight: 700; color: var(--purple-600); font-size: 0.95rem; text-align: right; }

/* ParcelVision section */
.pvision { background: var(--indigo-900); color: #e7ddfb; }
.pv-top { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 44px; align-items: start; }
.pv-badge { display: inline-flex; align-items: center; gap: 6px; background: rgba(255,255,255,.08); border-radius: var(--radius-pill); padding: 7px 16px; font-family: var(--font-head); font-weight: 700; margin-bottom: 20px; }
.pv-badge .pv-v { color: var(--teal-500); }
.pvision h2 { color: #fff; font-size: clamp(1.5rem, 3vw, 2.1rem); margin-bottom: 16px; }
.pvision h2 .pv-v, .pvision h3 .pv-v { color: var(--teal-500); }
.pv-top p { color: #c9bdf0; }
.pv-price-card { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius-lg); padding: 28px; }
.pv-price-card h4 { color: #fff; font-size: 1.05rem; margin-bottom: 20px; }
.pv-price-item { display: flex; gap: 14px; margin-bottom: 18px; }
.pv-price-item .pvi-ic { flex: none; width: 38px; height: 38px; border-radius: 10px; background: rgba(18,194,194,.18); color: var(--teal-500); display: grid; place-items: center; }
.pv-price-item b { color: #fff; display: block; font-family: var(--font-head); font-size: 0.95rem; }
.pv-price-item p { color: #b3a6dc; font-size: 0.86rem; }

.pv-controls { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius-pill); padding: 12px 16px; max-width: 760px; margin: 44px auto 36px; }
.pv-controls .vol-select .vlabel { color: #e7ddfb; }
.pv-controls .vol-pill { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.15); }
.pv-controls .vol-pill select { color: #fff; }
.pv-controls .vol-pill select option { color: #1f1138; }
.pv-controls .bill-toggle { background: rgba(255,255,255,.08); }
.pv-controls .bill-toggle button { color: #cbbdf2; }
.pv-controls .bill-toggle button.active { background: #fff; color: var(--ink-900); }

.pv-plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: start; }
.pv-plan { background: rgba(255,255,255,.96); border-radius: var(--radius-lg); padding: 30px 26px; position: relative; overflow: hidden; }
.pv-plan::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 8px; background: linear-gradient(90deg, var(--teal-500), var(--purple-500)); }
.pv-plan h3 { font-size: 1.25rem; margin-bottom: 6px; }
.pv-plan .price { font-family: var(--font-head); font-weight: 700; font-size: 2rem; color: var(--ink-900); }
.pv-plan .price small { font-size: 0.85rem; font-weight: 500; color: var(--ink-500); }
.pv-plan .who { color: var(--ink-500); font-size: 0.84rem; margin: 8px 0 18px; min-height: 54px; }
.pv-plan .btn { width: 100%; justify-content: center; margin-bottom: 20px; }
.pv-plan .plus-label { font-family: var(--font-head); font-weight: 600; font-size: 0.88rem; color: var(--ink-900); margin-bottom: 14px; }
.pv-features li { display: flex; gap: 11px; align-items: flex-start; margin-bottom: 14px; font-size: 0.85rem; color: var(--ink-600); }
.pv-features .pf-ic { flex: none; width: 20px; height: 20px; border-radius: var(--radius-pill); background: rgba(18,194,194,.18); color: var(--teal-600); display: grid; place-items: center; margin-top: 1px; }
.pv-features b { color: var(--ink-900); display: block; }

/* What ParcelVision unlocks (accordion) */
.pv-unlocks { background: var(--indigo-900); color: #fff; }
.pv-unlocks h2 { color: #fff; text-align: center; font-size: clamp(1.6rem, 3vw, 2.3rem); margin-bottom: 36px; }
.accordion { max-width: 820px; margin-inline: auto; display: grid; gap: 14px; }
.acc-item { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); border-radius: var(--radius); overflow: hidden; }
.acc-head { width: 100%; display: flex; align-items: center; justify-content: space-between; padding: 20px 24px; color: #fff; font-family: var(--font-head); font-weight: 600; font-size: 1.02rem; text-align: left; }
.acc-head .acc-ic { display: flex; align-items: center; gap: 14px; }
.acc-head .acc-ic .circle { width: 34px; height: 34px; border-radius: var(--radius-pill); background: rgba(18,194,194,.2); color: var(--teal-500); display: grid; place-items: center; }
.acc-head .chev { transition: transform .25s ease; color: #b3a6dc; }
.acc-item.open .chev { transform: rotate(180deg); }
.acc-body { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.acc-body-inner { padding: 0 24px 22px 72px; color: #c9bdf0; font-size: 0.95rem; }

/* Enhanced delivery intelligence */
.enhanced { background: var(--indigo-800); color: #fff; }
.enhanced-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.enhanced h3 { color: #fff; font-size: clamp(1.5rem, 2.8vw, 2.1rem); margin-bottom: 16px; }
.enhanced h3 .pv-v { color: var(--teal-500); }
.enhanced p.lead { color: #c9bdf0; margin-bottom: 20px; }
.enhanced .check-list li { color: #e7ddfb; font-size: 0.96rem; margin-bottom: 13px; }
.enhanced .check-list .tick { background: var(--teal-500); color: #06343a; width: 22px; height: 22px; }
.enhanced .btn { margin-top: 24px; }
.enhanced-mock { background: #fff; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }

/* Get started */
.get-started { background: var(--lav-50); text-align: center; }
.get-started h2 { font-size: clamp(1.8rem, 3.4vw, 2.6rem); margin-bottom: 14px; }
.get-started > .container > p { color: var(--ink-500); max-width: 680px; margin: 0 auto 40px; }
.gs-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; max-width: 880px; margin-inline: auto; }
.gs-card { border-radius: var(--radius-lg); padding: 34px; text-align: left; }
.gs-card.biz { background: var(--teal-card); }
.gs-card.ind { background: var(--lav-100); }
.gs-card h3 { font-size: 1.3rem; margin-bottom: 12px; }
.gs-card p { color: var(--ink-600); margin-bottom: 22px; font-size: 0.96rem; }

/* ---------- Mock UI primitives (dashboard illustrations) ---------- */
.mck { font-family: var(--font-body); }
.mck-bar { height: 9px; border-radius: 6px; background: #e9e4f4; }
.mck-bar.w-40 { width: 40%; } .mck-bar.w-60 { width: 60%; } .mck-bar.w-80 { width: 80%; }
.mck-pill { font-size: 0.62rem; font-weight: 600; padding: 3px 9px; border-radius: var(--radius-pill); font-family: var(--font-head); }
.mck-row { display: flex; align-items: center; gap: 10px; padding: 9px 0; border-bottom: 1px solid #f0ecf8; }
.mck-head { background: var(--indigo-900); color: #fff; padding: 12px 16px; display: flex; align-items: center; gap: 10px; font-family: var(--font-head); font-weight: 600; font-size: 0.8rem; }
.mck-chip { background: var(--lav-50); border-radius: 10px; padding: 12px 14px; }
.mck-chip .n { font-family: var(--font-head); font-weight: 700; font-size: 1.1rem; color: var(--ink-900); }
.mck-chip .t { font-size: 0.6rem; color: var(--ink-500); }

/* Modal */
.modal-overlay { position: fixed; inset: 0; background: rgba(20,12,40,.55); display: none; align-items: center; justify-content: center; z-index: 200; padding: 20px; }
.modal-overlay.open { display: flex; }
.modal { background: #fff; border-radius: var(--radius); width: 100%; max-width: 440px; padding: 28px; box-shadow: var(--shadow-lg); }
.modal-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 22px; }
.modal-head h3 { font-size: 1.3rem; }
.modal-close { color: var(--ink-500); width: 32px; height: 32px; display: grid; place-items: center; border-radius: 8px; }
.modal-close:hover { background: var(--lav-100); }
.modal label { display: block; font-family: var(--font-head); font-weight: 600; font-size: 0.85rem; margin-bottom: 8px; color: var(--ink-800, var(--ink-900)); }
.modal label .req { color: var(--pink-500); }
.modal input { width: 100%; height: 46px; border: 1px solid var(--line); border-radius: 10px; padding: 0 14px; font-size: 0.95rem; outline: none; }
.modal input:focus { border-color: var(--purple-500); }
.modal-actions { display: flex; align-items: center; gap: 18px; margin-top: 22px; }
.modal-actions .btn-cancel { color: var(--ink-600); font-family: var(--font-head); font-weight: 600; }

/* Chat widget */
.chat-fab { position: fixed; right: 22px; bottom: 22px; width: 56px; height: 56px; border-radius: var(--radius-pill); background: var(--indigo-800); color: #fff; display: grid; place-items: center; box-shadow: var(--shadow-lg); z-index: 90; }
.chat-fab:hover { background: var(--purple-600); }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 980px) {
  .mega-inner { grid-template-columns: 1fr 1fr; gap: 28px; }
  .delivers-grid, .ship-biz-grid, .integrate-grid, .biz-hero-grid,
  .grow-row, .enhanced-grid, .pv-top { grid-template-columns: 1fr; gap: 34px; }
  .grow-row.reverse .grow-text { order: 0; }
  .cards-3, .control-cards, .plans, .pv-plans { grid-template-columns: 1fr; }
  .stories-grid, .gs-cards, .logo-cards { grid-template-columns: 1fr; }
  .hero-art { display: none; }
}
@media (max-width: 760px) {
  .nav-menu, .nav-right .nav-track-label { display: none; }
  .nav-toggle { display: grid; }
  .nav.mobile-open .nav-menu { display: flex; position: absolute; top: 70px; left: 0; right: 0; flex-direction: column; align-items: stretch; background: var(--indigo-900); padding: 12px; gap: 2px; z-index: 70; }
  .nav.mobile-open .nav-menu .nav-link { width: 100%; }
  .mega, .mega-wrap { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; display: none; }
  .nav.mobile-open .nav-item.open .mega-wrap { display: block; }
  .mega-inner { grid-template-columns: 1fr; padding: 18px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .section { padding-block: 52px; }
  .stat { padding: 14px 30px; }
  .stat + .stat::before { display: none; }
  .quote-row { gap: 12px; }
  .field-from .control, .field-to .control { width: 100%; }
  .field { flex: 1 1 120px; }
}
