/* ═══════════════════════════════════════════════════════════════════════
   Page styles — Shuttle ETA landing page
   ═══════════════════════════════════════════════════════════════════════ */

/* ── Reset / base ────────────────────────────────────────────────────── */
* { box-sizing: border-box; }
body { margin: 0; overflow-x: hidden; }
h1, h2, h3, p { margin: 0; }
ul { list-style: none; padding: 0; margin: 0; }
a { text-decoration: none; color: inherit; }

/* ── Layout utilities ────────────────────────────────────────────────── */
.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
  box-sizing: border-box;
}
.flex-center { display: flex; align-items: center; justify-content: center; }

/* ── Section defaults ────────────────────────────────────────────────── */
.section {
  padding-top: 112px;
  padding-bottom: 112px;
}
.section--subtle { background: var(--color-bg-subtle); }
.section--dark   { background: var(--black-pearl); color: #fff; }
.section--brand  { background: linear-gradient(135deg, #136AB6 0%, #000F2B 100%); color: #fff; position: relative; overflow: hidden; }
.section--light  { background: var(--color-bg); }

/* ── Typography ──────────────────────────────────────────────────────── */
.heading-hero { font-size: 48px; font-weight: 700; letter-spacing: -0.02em; line-height: 1.05; color: #fff; }
.heading-1   { font-size: 60px; font-weight: 700; letter-spacing: -0.02em; line-height: 1.05; }
.heading-2   { font-size: 44px; font-weight: 700; letter-spacing: -0.015em; line-height: 1.08; }
.heading-3   { font-size: 22px; font-weight: 500; line-height: 1.25; }
.heading-sm  { font-size: 40px; font-weight: 700; letter-spacing: -0.015em; line-height: 1.1; }
.text-body   { font-size: 17px; color: var(--color-text-muted); line-height: 1.6; }
.text-small  { font-size: 14px; color: var(--color-text-muted); line-height: 1.55; }
.text-on-dark { color: #A8B5CC; }
.text-white  { color: #fff; }
.text-on-brand { color: #C9DFF2; }

.section-head {
  max-width: 760px;
  margin-bottom: 48px;
}
.section-head .kicker { margin-bottom: 8px; }
.section-head .heading-2 { margin-top: 14px; }
.section-head p { margin-top: 16px; }

/* ── Kicker / Eyebrow ────────────────────────────────────────────────── */
.kicker { font-size: 12px; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; color: var(--color-brand); }
.kicker.on-dark { color: rgba(255,255,255,0.7); }
.kicker.muted { color: var(--color-text-muted); }
.kicker.accent { color: var(--color-accent); }

/* ── Buttons ─────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: inherit;
  font-size: 18px;
  font-weight: 500;
  padding: 13px 22px;
  border-radius: 8px;
  border: 0;
  cursor: pointer;
  transition: all 160ms cubic-bezier(0.22,0.61,0.36,1);
  line-height: 1.2;
  white-space: nowrap;
}
.btn--primary         { background: var(--color-brand); color: var(--color-text-on-brand); }
.btn--primary:hover   { background: var(--color-brand-hover); box-shadow: var(--shadow-brand); }
.btn--primary:active  { transform: scale(0.98); }
.btn--secondary       { background: transparent; color: var(--color-brand); border:1px solid var(--color-brand); padding: 11.5px 20.5px; }
.btn--secondary:hover { background: var(--color-brand); color: var(--color-text-on-brand); }
.btn--accent          { background: var(--color-accent); color: var(--color-accent-on); border: 1px solid rgba(0,0,0,0.06); }
.btn--accent:hover    { box-shadow: 0 8px 24px rgba(255,255,255,0.25); }
.btn--accent:active   { transform: scale(0.98); }
.btn--ghost           { background: transparent; color: var(--color-brand); padding-left: 0; padding-right: 0; }
.btn--ghost:hover     { color: var(--color-brand-pressed); }
.btn--ghost-dark      { background: transparent; color: #fff; border:1px solid rgba(255,255,255,0.8); padding: 11.5px 20.5px; }
.btn--ghost-dark:hover{ background: rgba(255,255,255,0.08); border:1px solid rgba(255,255,255,1); color: #fff; }
.btn--full            { width: 100%; justify-content: center; }

/* ── Animations ──────────────────────────────────────────────────────── */
@keyframes pulse-ring {
  0%   { transform: scale(0.9); opacity: 0.9; }
  70%  { transform: scale(2.2); opacity: 0; }
  100% { transform: scale(2.2); opacity: 0; }
}
.pulse-dot {
  position: relative;
  display: inline-block;
  width: 8px; height: 8px;
  border-radius: 999px;
  background: var(--shape-data);
  vertical-align: middle;
}
.pulse-dot::after {
  content: "";
  position: absolute; inset: 0;
  border-radius: 999px;
  background: var(--shape-data);
  animation: pulse-ring 1.8s var(--ease-out) infinite;
}

@keyframes tick {
  0%, 90% { transform: translateY(0); }
  95%     { transform: translateY(-2px); }
  100%    { transform: translateY(0); }
}
.eta-tick { animation: tick 2s var(--ease-out) infinite; display: inline-block; }

@keyframes sweep {
  0%   { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
.sweep {
  position: absolute; inset: 0; pointer-events: none;
  background: conic-gradient(from 0deg, rgba(19,106,182,0) 0deg, rgba(19,106,182,0.18) 40deg, rgba(19,106,182,0) 80deg, rgba(19,106,182,0) 360deg);
  animation: sweep 4.5s linear infinite;
  mix-blend-mode: multiply;
}

@keyframes bus-glide {
  0%   { offset-distance: 0%; }
  100% { offset-distance: 100%; }
}

/* ── Card lift ────────────────────────────────────────────────────────── */
.card-lift {
  transition: transform var(--dur-base) var(--ease-out),
              box-shadow var(--dur-base) var(--ease-out);
}
.card-lift:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* ── Focus ring ──────────────────────────────────────────────────────── */
:focus-visible { outline: 2px solid var(--color-brand); outline-offset: 2px; border-radius: 4px; }

/* ── Live badge ──────────────────────────────────────────────────────── */
.live-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(104, 200, 180, 0.14);
  color: #1F8A5C;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
}

/* ── Surface tag ──────────────────────────────────────────────────────── */
.surface-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(0,15,43,0.85);
  color: #fff;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.1em;
  padding: 4px 9px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.16);
}
.surface-tag--accent { background: var(--color-accent); color: var(--color-accent-on); border: none; }

/* ── Shape / decorative brand elements ────────────────────────────────── */
.shape {
  position: relative;
  width: 96px; height: 96px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.shape--hex svg polygon { fill: var(--color-brand); }
.shape--square svg rect { fill: var(--color-brand); }
.shape--circle svg circle { fill: var(--color-brand); }

/* ── QR mark ─────────────────────────────────────────────────────────── */
.qr-mark {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  grid-template-rows: repeat(7, 1fr);
  gap: 2px;
  padding: 4px;
  background: #fff;
  border-radius: 6px;
}
.qr-mark > span {
  border-radius: 1px;
}
.qr-mark > span.on { background: var(--black-pearl); }
.qr-mark > span.off { background: transparent; }

/* ── Route line ──────────────────────────────────────────────────────── */
.route-line {
  background-image: radial-gradient(circle, var(--color-brand) 1.5px, transparent 1.5px);
  background-repeat: repeat-x;
  background-size: 14px 3px;
  background-position: center;
  height: 3px;
}

/* ═══════════════════════════════════════════════════════════════════════
   NAV
   ═══════════════════════════════════════════════════════════════════════ */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--color-bg);
  border-bottom: 1px solid transparent;
  transition: border-color 200ms, background 200ms;
}
.nav--scrolled {
  background: rgba(248,250,253,0.85);
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid var(--color-divider);
}
.nav__inner {
  display: flex;
  align-items: center;
  gap: 28px;
  height: 68px;
}
.nav__brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.nav__brand img { height: 20px; display: block; }
.nav__brand-label {
  font-size: 13px;
  color: var(--color-text-subtle);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-left: 1px solid var(--color-border);
  padding-left: 10px;
}
.nav__links {
  display: flex;
  gap: 30px;
  margin-left: 20px;
}
.nav__link {
  font-size: 16px;
  font-weight: 500;
  color: var(--color-text);
  padding: 8px 0;
  transition: color 120ms;
  white-space: nowrap;
}
.nav__link:hover { color: var(--color-brand); }
.nav__spacer { flex: 1; }
.nav__actions { display: flex; align-items: center; gap: 12px; }
.nav__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 24px; height: 24px;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 0;
  z-index: 51;
  margin-left: 16px;
}
.nav__lang {
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  color: var(--color-brand);
  background: var(--color-brand-subtle);
  border: 1px solid var(--color-brand);
  border-radius: 6px;
  padding: 4px 10px;
  cursor: pointer;
  transition: background 160ms var(--ease-out);
  line-height: 1.4;
}
.nav__lang:hover { background: var(--color-brand); color: #fff; }
.nav__toggle span {
  display: block;
  width: 22px; height: 2px;
  background: var(--color-text-strong);
  border-radius: 2px;
  transition: transform 220ms var(--ease-out), opacity 220ms var(--ease-out);
}
.nav--open .nav__toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav--open .nav__toggle span:nth-child(2) {
  opacity: 0;
}
.nav--open .nav__toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ═══════════════════════════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════════════════════════ */
.hero {
  background: linear-gradient(135deg, #136AB6 0%, #000F2B 100%);
  color: var(--color-text-on-brand);
  padding-top: 96px;
  padding-bottom: 80px;
  position: relative;
  overflow: hidden;
}
.hero__curl {
  position: absolute;
  bottom: 0; left: 0;
  width: 100%;
  height: 80px;
  opacity: 0.5;
  pointer-events: none;
}
.hero__grid {
  display: grid;
  grid-template-columns: 0.95fr 1.1fr;
  gap: 56px;
  align-items: center;
}
.hero__text .kicker { margin-bottom: 20px; }
.hero__title { font-size: 60px; font-weight: 700; letter-spacing: -0.02em; line-height: 1.04; color: #fff; text-wrap: balance; }
.hero__subtitle { font-size: 19px; color: #C9DFF2; line-height: 1.6; margin-top: 22px; max-width: 560px; }
.hero__cta { display: flex; gap: 12px; margin-top: 36px; flex-wrap: wrap; }
.hero__stats { display: flex; gap: 32px; margin-top: 48px; color: #A8B5CC; font-size: 13px; flex-wrap: wrap; }
.hero__stat-num { font-size: 22px; font-weight: 700; color: #fff; letter-spacing: -0.01em; line-height: 1; }
.hero__stat-label { font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: #A8B5CC; margin-top: 6px; }

.hero__visual {
  position: relative;
  height: 540px;
}
.hero__glow {
  position: absolute;
  inset: 20px -40px 20px 40px;
  background: radial-gradient(ellipse at center, rgba(62,137,199,0.25) 0%, rgba(0,15,43,0) 60%);
  pointer-events: none;
}
.hero__monitor {
  position: absolute;
  right: -40px; top: 24px;
  width: 320px;
  transform: rotate(2deg);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 24px 48px rgba(0,0,0,0.4);
  border: 1px solid rgba(255,255,255,0.10);
}
.hero__monitor img { width: 100%; display: block; }
.hero__monitor .surface-tag { position: absolute; top: 12px; left: 12px; }
.hero__dashboard {
  position: absolute;
  left: -60px; top: 70px;
  width: 620px;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 36px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
}
.hero__dashboard img { width: 100%; display: block; }
.hero__dashboard .surface-tag { position: absolute; top: 14px; left: 14px; }
.hero__phone {
  position: absolute;
  right: 24px; bottom: -20px;
  width: 180px;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 28px 56px rgba(0,0,0,0.5);
  border: 6px solid #0A1C40;
  background: #0A1C40;
  transform: rotate(-3deg);
}
.hero__phone img { width: 100%; display: block; }
.hero__phone .surface-tag { position: absolute; top: 6px; left: 6px; }

/* ═══════════════════════════════════════════════════════════════════════
   PAIN ANCHOR
   ═══════════════════════════════════════════════════════════════════════ */
.pain-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.pain-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 14px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.pain-card__icon {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: rgba(244,103,79,0.12);
  color: #D24A33;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.pain-card__text {
  font-size: 15px;
  color: var(--color-text-strong);
  line-height: 1.5;
  font-weight: 500;
}
.pain-callout {
  margin-top: 40px;
  padding: 20px 28px;
  background: var(--color-surface);
  border: 1px solid var(--color-border-brand);
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 18px;
  max-width: 880px;
}
.pain-callout__icon { color: var(--color-brand); flex: 0 0 auto; }
.pain-callout__text { font-size: 17px; color: var(--color-text-strong); line-height: 1.5; text-wrap: balance; }
.pain-callout__text strong { font-weight: 500; }
.pain-callout__text span { color: var(--color-text-muted); }

/* ═══════════════════════════════════════════════════════════════════════
   CHANNELS
   ═══════════════════════════════════════════════════════════════════════ */
.channels-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.channel-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 16px;
  padding: 28px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}
.channel-card__media {
  height: 220px;
  background: var(--color-bg-subtle);
  border-radius: 12px;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}
.channel-card__media img { width: 100%; display: block; object-fit: cover; height: 100%; }
.channel-card .kicker { margin-bottom: 10px; }
.channel-card h3 { margin-bottom: 10px; }
.channel-card p { font-size: 15px; color: var(--color-text-muted); line-height: 1.6; }

/* QR stop mini */
.qr-stop-mini {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.qr-stop-mini__plate {
  width: 120px;
  padding: 14px;
  background: #0A1C40;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  box-shadow: 0 12px 28px rgba(0,15,43,0.2);
}
.qr-stop-mini__plate-label { font-size: 8px; color: #A8B5CC; letter-spacing: 0.08em; text-transform: uppercase; }
.qr-stop-mini__plate-sub  { font-size: 8px; color: #A8B5CC; letter-spacing: 0.06em; }
.qr-stop-mini__eta {
  width: 90px;
  padding: 10px;
  background: #fff;
  border: 1px solid #EAEEF6;
  border-radius: 10px;
  box-shadow: 0 12px 28px rgba(0,15,43,0.1);
}
.qr-stop-mini__eta-route { font-size: 7px; color: #6B7A93; letter-spacing: 0.08em; text-transform: uppercase; }
.qr-stop-mini__eta-num { font-size: 26px; font-weight: 700; color: var(--color-brand); letter-spacing: -0.02em; line-height: 1; margin-top: 4px; }
.qr-stop-mini__eta-unit { font-size: 8px; color: #6B7A93; margin-top: 2px; }
.qr-stop-mini__eta-bar { margin-top: 8px; height: 3px; background: #EAEEF6; border-radius: 999px; }
.qr-stop-mini__eta-fill { width: 70%; height: 100%; background: var(--color-brand); border-radius: 999px; }

/* ═══════════════════════════════════════════════════════════════════════
   OPERATOR VALUE
   ═══════════════════════════════════════════════════════════════════════ */
.op-value__grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
  align-items: start;
}
.op-value__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.op-value__item {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 12px;
  padding: 18px;
}
.op-value__item-icon {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: rgba(62,137,199,0.18);
  color: #5BA0D6;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}
.op-value__item-title { font-size: 15px; font-weight: 500; color: #fff; margin-bottom: 6px; }
.op-value__item-desc  { font-size: 13px; color: #A8B5CC; line-height: 1.5; }
.op-value__visual {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 36px 80px rgba(0,0,0,0.5);
  border: 1px solid rgba(255,255,255,0.10);
  position: relative;
}
.op-value__visual img { width: 100%; display: block; }
.op-value__visual .surface-tag { position: absolute; top: 14px; left: 14px; }
.op-value__cta { margin-top: 48px; display: flex; gap: 12px; flex-wrap: wrap; }

/* ═══════════════════════════════════════════════════════════════════════
   WHY CHOOSE US
   ═══════════════════════════════════════════════════════════════════════ */
.why-us-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.why-us-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 16px;
  padding: 32px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}
.why-us-card__icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--color-brand-subtle);
  color: var(--color-brand);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.why-us-card__stat { font-size: 48px; font-weight: 700; color: var(--color-brand); letter-spacing: -0.02em; line-height: 1; }
.why-us-card__stat-label { font-size: 12px; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; color: var(--color-text-muted); margin-top: 8px; }
.why-us-card h3 { font-size: 20px; font-weight: 500; color: var(--color-text-strong); line-height: 1.3; margin-bottom: 10px; }
.why-us-card p { font-size: 14px; color: var(--color-text-muted); line-height: 1.6; }
.why-us-disclaimer { margin-top: 24px; font-size: 12px; color: var(--color-text-subtle); }

/* ═══════════════════════════════════════════════════════════════════════
   BUILT FOR OPERATORS
   ═══════════════════════════════════════════════════════════════════════ */
.built-for-head { display: flex; justify-content: space-between; align-items: end; gap: 32px; margin-bottom: 48px; flex-wrap: wrap; }
.built-for-head a { color: var(--color-brand); font-size: 15px; font-weight: 500; display: inline-flex; align-items: center; gap: 6px; }
.built-for-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.built-for-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.built-for-card__media {
  height: 180px;
  position: relative;
  overflow: hidden;
}
.built-for-card__media svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.built-for-card__body { padding: 28px; }
.built-for-card__body .kicker { margin-bottom: 10px; }
.built-for-card__body h3 { font-size: 20px; font-weight: 500; color: var(--color-text-strong); line-height: 1.3; margin-bottom: 12px; }
.built-for-card__body p { font-size: 14px; color: var(--color-text-muted); line-height: 1.6; }
.built-for-card__kpi {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--color-divider);
  display: flex;
  align-items: baseline;
  gap: 12px;
}
.built-for-card__kpi-value { font-size: 34px; font-weight: 700; color: var(--color-brand); letter-spacing: -0.02em; line-height: 1; }
.built-for-card__kpi-label { font-size: 12px; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; color: var(--color-text-muted); }

/* ═══════════════════════════════════════════════════════════════════════
   QR STOP NETWORK
   ═══════════════════════════════════════════════════════════════════════ */
.qr-stop__grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 72px;
  align-items: center;
}
.qr-stop__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 540px;
  margin-top: 28px;
}
.qr-stop__item {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 14px;
  align-items: start;
  padding: 8px 0;
}
.qr-stop__item-icon { color: var(--color-brand); margin-top: 2px; }
.qr-stop__item-title { font-size: 15px; font-weight: 500; color: var(--color-text-strong); }
.qr-stop__item-desc  { font-size: 14px; color: var(--color-text-muted); margin-top: 2px; line-height: 1.5; }

.qr-stop__visual {
  position: relative;
  height: 580px;
}
.qr-stop__pole {
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 240px;
}
.qr-stop__pole-bar {
  position: absolute;
  left: 50%; top: 0; bottom: 0;
  width: 8px;
  transform: translateX(-50%);
  background: linear-gradient(180deg, #B3BFD1 0%, #94A3BA 100%);
  border-radius: 4px;
}
.qr-stop__pole-sign {
  position: absolute;
  left: 50%; top: 6px;
  transform: translateX(-50%);
  width: 110px; height: 76px;
  background: var(--color-brand);
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 12px 24px rgba(0,15,43,0.15);
  border: 2px solid #fff;
}
.qr-stop__pole-sign i { display: inline-flex; }
.qr-stop__pole-sign-label { font-size: 9px; letter-spacing: 0.16em; margin-top: 4px; }
.qr-stop__plate {
  position: absolute;
  left: 50%; top: 180px;
  transform: translateX(-50%);
  width: 210px;
  background: #fff;
  border: 1px solid #EAEEF6;
  border-radius: 14px;
  padding: 18px;
  box-shadow: 0 24px 56px rgba(0,15,43,0.18);
}
.qr-stop__plate-brand { display: flex; align-items: center; gap: 8px; }
.qr-stop__plate-brand img { height: 12px; width: auto; }
.qr-stop__plate-brand span { font-size: 10px; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: var(--color-text-muted); }
.qr-stop__plate-stop { font-size: 11px; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: var(--color-text-muted); margin-top: 12px; }
.qr-stop__plate-name  { font-size: 17px; font-weight: 500; color: var(--color-text-strong); margin-top: 2px; }
.qr-stop__plate-qr   { margin-top: 14px; padding: 12px; background: #F2F5FA; border-radius: 10px; display: flex; justify-content: center; }
.qr-stop__plate-hint { margin-top: 14px; text-align: center; font-size: 12px; color: var(--color-text-muted); }
.qr-stop__phone {
  position: absolute;
  right: 0; top: 60px;
  width: 250px;
  border-radius: 36px;
  overflow: hidden;
  border: 9px solid #0A1C40;
  background: #0A1C40;
  box-shadow: 0 36px 80px rgba(0,15,43,0.35);
  transform: rotate(4deg);
}
.qr-stop__phone img { width: 100%; display: block; }

/* ═══════════════════════════════════════════════════════════════════════
   MONITOR NETWORK
   ═══════════════════════════════════════════════════════════════════════ */
.monitor__grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 64px;
  align-items: center;
}
.monitor__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 520px;
  margin-top: 28px;
}
.monitor__item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 15px;
  color: var(--color-text-strong);
  line-height: 1.5;
}
.monitor__item-icon { color: var(--color-brand); margin-top: 2px; }

.monitor__visual { position: relative; }
.monitor__screen {
  background: #1A2440;
  padding: 14px;
  border-radius: 16px;
  box-shadow: 0 36px 80px rgba(0,15,43,0.22);
}
.monitor__screen-img {
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  background: #fff;
}
.monitor__screen-img img { width: 100%; display: block; }
.monitor__screen-img .surface-tag { position: absolute; top: 18px; right: 18px; }
.monitor__stand {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: -2px;
}
.monitor__stand-neck { width: 110px; height: 16px; background: #1A2440; border-radius: 0 0 8px 8px; }
.monitor__stand-base { width: 200px; height: 6px; background: #1A2440; border-radius: 999px; margin-top: 6px; }
.monitor__mini {
  position: absolute;
  left: -40px; bottom: -10px;
  width: 220px;
  background: #1A2440;
  padding: 8px;
  border-radius: 10px;
  box-shadow: 0 18px 40px rgba(0,15,43,0.25);
  transform: rotate(-4deg);
}
.monitor__mini-inner {
  background: var(--black-pearl);
  border-radius: 5px;
  aspect-ratio: 16 / 10;
  padding: 12px;
  color: #fff;
  position: relative;
}
.monitor__mini-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 8px; }
.monitor__mini-header span { font-size: 8px; letter-spacing: 0.1em; text-transform: uppercase; color: #A8B5CC; }
.monitor__mini-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.monitor__mini-row:last-child { border-bottom: none; }
.monitor__mini-route { display: flex; align-items: center; gap: 6px; }
.monitor__mini-route-badge { width: 16px; height: 12px; background: var(--color-brand); border-radius: 2px; font-size: 8px; font-weight: 700; color: #fff; display: flex; align-items: center; justify-content: center; }
.monitor__mini-route-label { font-size: 9px; }
.monitor__mini-eta-num { font-size: 14px; font-weight: 700; }
.monitor__mini-eta-unit { font-size: 7px; color: #A8B5CC; margin-left: 2px; }

/* ═══════════════════════════════════════════════════════════════════════
   DASHBOARD SHOWCASE
   ═══════════════════════════════════════════════════════════════════════ */
.dashboard__tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 24px;
  flex-wrap: wrap;
  border-bottom: 1px solid var(--color-divider);
}
.dashboard__tab {
  background: transparent;
  border: 0;
  border-bottom: 2px solid transparent;
  color: var(--color-text-muted);
  padding: 14px 18px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: color 160ms var(--ease-out), border-color 160ms var(--ease-out);
  margin-bottom: -1px;
}
.dashboard__tab--active {
  border-bottom-color: var(--color-brand);
  color: var(--color-brand);
}
.dashboard__screen {
  background: linear-gradient(135deg, var(--color-brand-subtle) 0%, var(--color-bg-subtle) 100%);
  border-radius: 20px;
  padding: 32px;
  position: relative;
  overflow: hidden;
}
.dashboard__screen-img {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 36px 80px rgba(0,15,43,0.18);
  border: 1px solid var(--color-border);
  background: #fff;
}
.dashboard__screen-img img { width: 100%; display: block; }
.dashboard__screen-caption {
  margin-top: 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.dashboard__screen-caption-text { font-size: 16px; color: var(--color-text-strong); font-weight: 500; max-width: 640px; }
.dashboard__dots { display: flex; gap: 8px; }
.dashboard__dot {
  width: 8px; height: 8px;
  border-radius: 999px;
  background: var(--color-border-strong);
  transition: width 200ms var(--ease-out);
}
.dashboard__dot--active { width: 24px; background: var(--color-brand); }
.dashboard__ribbon {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-top: 48px;
}
.dashboard__ribbon-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 18px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text-strong);
}
.dashboard__ribbon-item i { color: var(--color-brand); }

/* ═══════════════════════════════════════════════════════════════════════
   BUILT TO SCALE
   ═══════════════════════════════════════════════════════════════════════ */
.scale-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.scale-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 14px;
  padding: 24px;
}
.scale-card__icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: rgba(255,255,255,0.08);
  color: var(--color-accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.scale-card h3 { font-size: 16px; font-weight: 500; color: #fff; margin-bottom: 8px; line-height: 1.3; }
.scale-card p  { font-size: 13px; color: #A8B5CC; line-height: 1.55; }

/* Hex backdrop */
.scale-hex-bg { position: absolute; inset: 0; width: 100%; height: 100%; opacity: 0.05; pointer-events: none; }

/* ═══════════════════════════════════════════════════════════════════════
   PROOF / TESTIMONIALS
   ═══════════════════════════════════════════════════════════════════════ */
.proof__quotes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 64px;
}
.quote-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 16px;
  padding: 36px;
  box-shadow: var(--shadow-sm);
  margin: 0;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.quote-card__watermark { position: absolute; right: -30px; top: -30px; width: 180px; height: 180px; opacity: 0.06; pointer-events: none; }
.quote-card__icon { color: var(--color-brand); margin-bottom: 18px; }
.quote-card blockquote {
  margin: 0;
  font-size: 19px;
  line-height: 1.5;
  color: var(--color-text-strong);
  font-weight: 500;
  text-wrap: pretty;
  flex: 1;
}
.quote-card__stat {
  margin-top: 22px;
  padding: 16px 18px;
  background: var(--color-bg-subtle);
  border-radius: 10px;
  display: flex;
  align-items: baseline;
  gap: 14px;
}
.quote-card__stat-value { font-size: 26px; font-weight: 700; color: var(--color-brand); letter-spacing: -0.02em; line-height: 1; }
.quote-card__stat-label { font-size: 12px; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; color: var(--color-text-muted); }
.quote-card__author {
  margin-top: 22px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.quote-card__author-avatar {
  width: 44px; height: 44px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: -0.01em;
}
.quote-card__author-name { font-size: 14px; font-weight: 500; color: var(--color-text-strong); }
.quote-card__author-role { color: var(--color-text-muted); font-weight: 400; }
.quote-card__author-company { font-size: 13px; color: var(--color-text-muted); margin-top: 2px; }

.proof__logos {
  padding: 32px;
  background: var(--color-bg-subtle);
  border: 1px solid var(--color-divider);
  border-radius: 16px;
}
.proof__logos-head { text-align: center; margin-bottom: 20px; }
.proof__logos-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 32px;
  align-items: center;
  opacity: 0.55;
}
.proof__logos-item {
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  color: var(--color-text-muted);
  letter-spacing: -0.01em;
}
.proof__logos-footer { margin-top: 20px; text-align: center; font-size: 12px; color: var(--color-text-subtle); }

/* ═══════════════════════════════════════════════════════════════════════
   PRICING
   ═══════════════════════════════════════════════════════════════════════ */
.pricing__head { max-width: 760px; margin-bottom: 56px; text-align: center; margin-left: auto; margin-right: auto; }
.pricing__head .kicker { display: block; }
.pricing__head .heading-2 { margin-top: 14px; }
.pricing__head p { margin-top: 16px; max-width: 600px; margin-left: auto; margin-right: auto; }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}
.pricing-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 18px;
  padding: 32px;
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.pricing-card--featured {
  background: var(--black-pearl);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 24px 56px rgba(0,15,43,0.18);
}
.pricing-card--featured::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--color-accent);
}
.pricing-card__tag {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--color-brand);
  margin-bottom: 10px;
}
.pricing-card--featured .pricing-card__tag { color: var(--color-accent); }
.pricing-card__name {
  font-size: 24px;
  font-weight: 500;
  color: var(--color-text-strong);
  letter-spacing: -0.01em;
}
.pricing-card--featured .pricing-card__name { color: #fff; }
.pricing-card__price-row { display: flex; align-items: baseline; gap: 10px; margin-top: 18px; margin-bottom: 6px; }
.pricing-card__price-label { font-size: 13px; color: var(--color-text-muted); letter-spacing: 0.04em; }
.pricing-card__price-figure { font-size: 36px; font-weight: 700; color: var(--color-text-strong); letter-spacing: -0.02em; line-height: 1; }
.pricing-card--featured .pricing-card__price-figure { color: #fff; }
.pricing-card--featured .pricing-card__price-label { color: #A8B5CC; }
.pricing-card__sub { font-size: 13px; color: var(--color-text-muted); margin-bottom: 18px; }
.pricing-card--featured .pricing-card__sub { color: #A8B5CC; }
.pricing-card__desc {
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.55;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--color-divider);
}
.pricing-card--featured .pricing-card__desc { color: #C9DFF2; border-bottom-color: rgba(255,255,255,0.10); }
.pricing-card__bullets {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 20px 0;
  flex: 1;
}
.pricing-card__bullet {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 14px;
  color: var(--color-text-strong);
}
.pricing-card--featured .pricing-card__bullet { color: #E6ECF5; }
.pricing-card__bullet i { color: var(--color-brand); margin-top: 2px; flex: 0 0 auto; }
.pricing-card--featured .pricing-card__bullet i { color: var(--color-accent); }

/* ═══════════════════════════════════════════════════════════════════════
   FAQ
   ═══════════════════════════════════════════════════════════════════════ */
.faq__grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 72px;
  align-items: start;
}
.faq__sidebar { position: sticky; top: 100px; }
.faq__sidebar-link { color: var(--color-brand); font-weight: 500; font-size: 16px; display: inline-block; margin-top: 16px; }
details.faq-item {
  padding: 20px 0;
  border-bottom: 1px solid var(--color-divider);
}
details.faq-item summary {
  list-style: none;
  cursor: pointer;
  font-size: 18px;
  font-weight: 500;
  color: var(--color-text-strong);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
details.faq-item summary::-webkit-details-marker { display: none; }
details.faq-item summary::after {
  content: "+";
  font-size: 28px;
  font-weight: 300;
  color: var(--color-brand);
  transition: transform var(--dur-base) var(--ease-out);
  line-height: 1;
}
details.faq-item[open] summary::after { content: "−"; }
.faq-answer {
  font-size: 16px;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin-top: 12px;
  max-width: 720px;
}

/* ═══════════════════════════════════════════════════════════════════════
   FINAL CTA
   ═══════════════════════════════════════════════════════════════════════ */
.cta {
  text-align: center;
  position: relative;
}
.cta .container { max-width: 880px; position: relative; }
.cta__curl {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 80px;
  opacity: 0.5;
  pointer-events: none;
}
.cta .kicker { display: block; text-align: center; }
.cta h2 { margin-top: 20px; text-wrap: balance; }
.cta__desc { font-size: 18px; color: #C9DFF2; line-height: 1.65; margin-top: 18px; max-width: 640px; margin-left: auto; margin-right: auto; }
.cta__actions { display: flex; gap: 12px; margin-top: 36px; justify-content: center; flex-wrap: wrap; }
.cta__response {
  margin-top: 40px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 999px;
  font-size: 13px;
  color: #C9DFF2;
}

/* ═══════════════════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════════════════ */
.footer {
  background: var(--black-pearl);
  color: var(--color-text-on-brand);
  padding-top: 80px;
  padding-bottom: 40px;
  position: relative;
  overflow: hidden;
}
.footer__wave {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 80px;
  opacity: 0.9;
}
.footer__info { margin-top: 24px; max-width: 480px; }
.footer__info img { height: 26px; width: auto; display: block; filter: brightness(0) invert(1); margin-bottom: 18px; }
.footer__info p { color: #A8B5CC; font-size: 14px; line-height: 1.65; }
.footer__bottom {
  margin-top: 64px;
  padding-top: 24px;
  border-top: 1px solid #14274D;
  color: #6E7E9A;
  font-size: 12px;
}

/* ═══════════════════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════════════════ */

/* ── Mobile (≤ 640px) ────────────────────────────────────────────────── */
@media (max-width: 640px) {

  .container { padding: 0 16px; }

  .section { padding-top: 48px !important; padding-bottom: 48px !important; }
  .hero { padding-top: 64px; padding-bottom: 48px; }

  .heading-1   { font-size: 30px !important; }
  .heading-2   { font-size: 24px !important; }
  .heading-hero{ font-size: 30px !important; }
  .heading-sm  { font-size: 24px !important; }
  h1 { font-size: 30px !important; line-height: 1.1 !important; }
  h2 { font-size: 24px !important; }

  /* All grids → single column */
  .hero__grid, .pain-grid, .channels-grid, .op-value__grid, .op-value__list,
  .why-us-grid, .built-for-grid, .qr-stop__grid, .monitor__grid,
  .dashboard__ribbon, .scale-grid, .proof__quotes, .proof__logos-grid,
  .pricing-grid, .faq__grid {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }

  /* Nav — hamburger menu */
  .nav__toggle { display: flex; }
  .nav__spacer { display: none; }
  .nav__actions { margin-left: auto; }
  .nav__inner { height: 56px; gap: 12px; flex-wrap: nowrap; }
  .nav__brand-label { display: none; }
  .nav__links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--color-bg);
    flex-direction: column;
    padding: 8px 0;
    gap: 0;
    margin-left: 0;
    border-bottom: 1px solid var(--color-divider);
    box-shadow: 0 12px 32px rgba(0,15,43,0.12);
  }
  .nav--open .nav__links { display: flex; }
  .nav__link {
    font-size: 16px;
    padding: 14px 24px;
    border-bottom: 1px solid var(--color-divider);
  }
  .nav__link:last-child { border-bottom: 0; }

  /* When open, prevent body scroll */
  body.nav--open { overflow: hidden; }

  /* Hero */
  .hero__grid { gap: 32px!important; }
  .hero__title { font-size: 30px !important; }
  .hero__visual { height: 450px; overflow: hidden; }
  .hero__stats { flex-direction: column; gap: 16px; }
  .hero__monitor {
    right: 0;
    top: 8px;
  }
  .hero__dashboard {
        top: 100px;
        width: 100%;
        left: 0;
  }

  .hero__phone {
    bottom: 0px;
  }
  /* Pain */
  .pain-callout { flex-direction: column; align-items: flex-start; }

  /* Op value */
  .op-value__list { grid-template-columns: 1fr !important; }
  .op-value__cta { margin-top: 32px; }

  /* QR stop */
  .qr-stop__visual { height: auto; }
  .qr-stop__pole { position: static; width: auto; height: 280px; overflow: hidden; }
  .qr-stop__phone { position: relative; right: auto; top: auto; width: 100%; max-width: 250px; margin: 24px auto 0; transform: none; border-radius: 28px; }

  /* Monitor */
  .monitor__mini { display: none; }

  /* Pricing */
  .pricing-card__price-figure { font-size: 28px !important; }

  /* FAQ */
  .faq__sidebar { position: static; }

  /* Footer */
  .footer { padding-top: 48px; padding-bottom: 32px; }
  .footer__bottom { margin-top: 40px; }

  .dashboard__tabs {
    justify-content: space-around;
  }

  .dashboard__tab {
    padding: 14px 6px;
  }
}

/* ── Tablet (641px–900px) ────────────────────────────────────────────── */
@media (min-width: 641px) and (max-width: 900px) {

  .container { padding: 0 24px; }
  .section { padding-top: 64px !important; padding-bottom: 64px !important; }

  h1 { font-size: 40px !important; }
  h2 { font-size: 30px !important; }
  .heading-1 { font-size: 40px !important; }
  .heading-2 { font-size: 30px !important; }

  /* 3+ column grids → 2 columns */
  .pain-grid, .channels-grid, .why-us-grid, .built-for-grid,
  .scale-grid, .proof__logos-grid, .pricing-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  .dashboard__ribbon { grid-template-columns: repeat(3, 1fr) !important; }

  /* Hero */
  .hero__grid { gap: 36px; }
  .hero__visual { height: 420px; overflow: hidden; }
  .hero__dashboard { width: 480px; left: -30px; }

  /* Proof logos */
  .proof__logos-grid { grid-template-columns: repeat(3, 1fr) !important; gap: 20px; }
}

/* ── Small desktop (901px–1024px) ────────────────────────────────────── */
@media (min-width: 901px) and (max-width: 1024px) {

  .section { padding-top: 80px !important; padding-bottom: 80px !important; }

  /* 4+ → 2 columns, 5+ → 3 columns */
  .scale-grid         { grid-template-columns: repeat(2, 1fr) !important; }
  .proof__logos-grid  { grid-template-columns: repeat(3, 1fr) !important; }
  .dashboard__ribbon  { grid-template-columns: repeat(3, 1fr) !important; }
}
