/* ============================================================
   HOME.CSS — VirtualToursXR Homepage
   Pixel-aligned to Figma reference
   ============================================================ */

/* ── Table of Contents ─────────────────────────────────────────
   0.  Shared Primitives    — .eyebrow, .grad-text, .section-heading/body
   ─────────────────────────────────────────────────────────────
   1.  Hero                 — two-col grid; browser preview card + sidecard
   2.  Three Steps          — partner cards (teal/blue/purple) + chips
   3.  Assessment           — 4-item checklist; fit-score card & animated bars
   4.  Tour Tiers           — 4 .tiercard variants + CTA row
   5.  Add-On Features      — banner image + 6 .addoncard grid
   6.  Drive Visitors       — channel audit list; traffic card + KPI grid
   7.  Industries We Serve  — .indcard: 72 px icon column + text
   8.  Different Goals      — 2 .groupcard: revenue KPIs vs efficiency KPIs
   9.  Dark Stats Banner    — .banner — 4 stats on dark background
   10. Data / Analytics     — .livecard, .livekpi, .livechart, .livemeter
   11. Gamification         — .achcard achievement cards + top-visitors board
   12. Industry Tours       — .tcard video showcase grid (4 cards)
   13. Contact Form         — .start section: trust items + Formspree form
   ─────────────────────────────────────────────────────────────
   Responsive breakpoints at bottom of file
   ──────────────────────────────────────────────────────────── */

/* ═══════ SHARED PRIMITIVES ═══════ */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  font-weight: 700;
  color: var(--clr-primary);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.eyebrow__dash {
  display: inline-block;
  width: 28px;
  height: 2px;
  background: var(--clr-primary);
}
.eyebrow--center { justify-content: center; margin-left: auto; margin-right: auto; }
.eyebrow--on-dark { color: #5eead4; }
.eyebrow__dash--light { background: #5eead4; }

.grad-text {
  background: var(--clr-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.section-heading {
  font-size: var(--fs-section);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--clr-text-1);
  margin-bottom: 18px;
  text-transform: uppercase;
}
.section-body {
  font-size: 17px;
  line-height: 1.65;
  color: var(--clr-text-3);
  max-width: 620px;
}
.section-header--center .section-body { margin-left: auto; margin-right: auto; }
.section-header { margin-bottom: 56px; }
.section-header--center { text-align: center; }

/* Buttons — all base styles in common.css */

/* ═══════ 1 — HERO ═══════ */
.hero {
  padding-top: calc(var(--nav-height) + 56px);
  padding-bottom: 96px;
  background:
    radial-gradient(1100px 500px at 80% 10%, rgba(13,148,136,0.08), transparent 70%),
    radial-gradient(900px 500px at 10% 80%, rgba(124,58,237,0.06), transparent 70%),
    var(--clr-bg-1);
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: center;
}
.hero__heading {
  font-size: var(--fs-hero);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  color: var(--clr-text-1);
  margin-bottom: 24px;
}
.hero__body {
  font-size: 18px;
  color: var(--clr-text-3);
  line-height: 1.65;
  max-width: 560px;
  margin-bottom: 36px;
}
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 56px; }
.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  padding-top: 28px;
  border-top: 1px solid var(--clr-border);
}
.hero__stat { display: flex; flex-direction: column; gap: 4px; }
.hero__stat-num {
  font-size: 32px;
  font-weight: 900;
  background: var(--clr-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero__stat-lbl { font-size: 11px; font-weight: 700; color: var(--clr-text-3); letter-spacing: 0.1em; }

.hero__visual { position: relative; }
.hero__preview {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 20px 60px rgba(15,23,42,0.12), 0 2px 6px rgba(15,23,42,0.05);
  overflow: hidden;
  border: 1px solid var(--clr-border);
}
.hero__preview-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: #f1f5f9;
  border-bottom: 1px solid var(--clr-border);
}
.hero__preview-dot { width: 10px; height: 10px; border-radius: 50%; background: #cbd5e1; }
.hero__preview-dot:nth-child(1) { background: #f87171; }
.hero__preview-dot:nth-child(2) { background: #fbbf24; }
.hero__preview-dot:nth-child(3) { background: #34d399; }
.hero__preview-url { margin-left: 12px; font-size: 12px; color: var(--clr-text-3); letter-spacing: 0.03em; }
.hero__preview-body {
  position: relative;
  padding: 22px;
  background: linear-gradient(135deg, rgba(13,148,136,0.10), rgba(124,58,237,0.10));
  min-height: 320px;
}
.hero__preview-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 14px;
  height: 100%;
  min-height: 280px;
}
.hero__preview-block {
  border-radius: 12px;
  background: linear-gradient(135deg, #0d9488 0%, #2563eb 100%);
  opacity: 0.85;
}
.hero__preview-block--lg {
  grid-row: 1 / 3;
  background: linear-gradient(135deg, #0d9488 0%, #7c3aed 100%);
  opacity: 0.92;
}
.hero__preview-block:nth-child(2) { background: linear-gradient(135deg, #2563eb, #7c3aed); }
.hero__preview-block:nth-child(3) { background: linear-gradient(135deg, #14b8a6, #2563eb); }
.hero__preview-play {
  position: absolute;
  top: 50%; left: 35%;
  transform: translate(-50%, -50%);
  width: 56px; height: 56px;
  border-radius: 50%;
  background: rgba(255,255,255,0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(0,0,0,0.18);
}
.hero__preview-play svg { fill: var(--clr-primary); margin-left: 3px; }
.hero__sidecard {
  position: absolute;
  right: -20px;
  bottom: -30px;
  background: #fff;
  border-radius: 14px;
  padding: 18px 22px;
  box-shadow: 0 12px 40px rgba(15,23,42,0.14);
  border: 1px solid var(--clr-border);
  min-width: 240px;
}
.hero__sidecard-label {
  display: block;
  font-size: 10px;
  font-weight: 800;
  color: var(--clr-text-3);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.hero__sidecard-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--clr-text-2);
  font-weight: 600;
  padding: 5px 0;
}
.hero__sidecard-dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }
.hero__sidecard-dot--teal   { background: #0d9488; }
.hero__sidecard-dot--blue   { background: #2563eb; }
.hero__sidecard-dot--purple { background: #7c3aed; }

/* ═══════ 2 — THREE STEPS ═══════ */
.threesteps { background: #f7f9fc; }
.threesteps__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.threesteps__heading {
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.0;
  font-weight: 900;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.threesteps__t1, .threesteps__t3 { color: var(--clr-text-1); }
.threesteps__t2 {
  background: var(--clr-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.threesteps__body {
  font-size: 17px;
  color: var(--clr-text-3);
  line-height: 1.65;
  margin-bottom: 32px;
  max-width: 520px;
}
.threesteps__actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 48px; }
.threesteps__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding-top: 28px;
  border-top: 1px solid var(--clr-border);
}
.threesteps__stat { display: flex; flex-direction: column; gap: 4px; }
.threesteps__stat-num {
  font-size: 28px; font-weight: 900;
  background: var(--clr-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.threesteps__stat-lbl { font-size: 10px; font-weight: 700; color: var(--clr-text-3); letter-spacing: 0.1em; }
/* Right-column header for the 3-step process (Figma v2.0).
   Big "3 STEPS" title on the left + inline "Book a Call" button on the right.
   Replaces the previous small "VIRTUALTOURSXR 3 STEP PROCESS" label. */
.threesteps__right {
  scroll-margin-top: calc(var(--nav-height, 88px) + 20px);
}
.threesteps__right-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.threesteps__right-title {
  font-size: clamp(2rem, 4.2vw, 3rem);
  font-weight: 900;
  color: var(--clr-primary, #0d9488);
  letter-spacing: -0.02em;
  line-height: 1;
  margin: 0;
  text-transform: uppercase;
}
@media (max-width: 480px) {
  .threesteps__right-head { gap: 12px; margin-bottom: 18px; }
  .threesteps__right-title { font-size: clamp(1.6rem, 7vw, 2rem); }
}

.partnercard {
  background: #fff;
  border-radius: 16px;
  padding: 26px;
  margin-bottom: 16px;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--clr-border);
  border-left-width: 4px;
}
.partnercard--teal   { border-left-color: #0d9488; }
.partnercard--blue   { border-left-color: #2563eb; }
.partnercard--purple { border-left-color: #7c3aed; }
.partnercard__title {
  font-size: 18px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--clr-text-1);
  margin-bottom: 6px;
}
.partnercard__desc { color: var(--clr-text-3); font-size: 14px; margin-bottom: 16px; }
.partnercard__chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 6px 11px;
  border-radius: 999px;
}
.chip__check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 14px; height: 14px;
  border-radius: 50%;
  font-size: 9px;
  color: #fff;
}
.chip--teal   { background: rgba(13,148,136,0.10); color: #0d9488; }
.chip--teal   .chip__check { background: #0d9488; }
.chip--blue   { background: rgba(37,99,235,0.10); color: #2563eb; }
.chip--blue   .chip__check { background: #2563eb; }
.chip--purple { background: rgba(124,58,237,0.10); color: #7c3aed; }
.chip--purple .chip__check { background: #7c3aed; }

/* ═══════ 3 — ASSESSMENT ═══════ */
.assess { background: #fff; }
.assess__grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 72px;
  align-items: stretch;
}
.assess__right { position: sticky; top: 110px; align-self: start; }
.assess__heading {
  font-size: clamp(2.25rem, 4.2vw, 3.25rem);
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -0.025em;
  text-transform: uppercase;
  color: var(--clr-text-1);
  margin-bottom: 20px;
}
.assess__body {
  font-size: 15px;
  line-height: 1.65;
  color: var(--clr-text-3);
  max-width: 520px;
  margin-bottom: 8px;
}

/* v2.0: BOOK A CALL button container above the rating criteria list.
   Uses the existing .btn .btn--teal-outline pattern, just wrapped for spacing. */
.assess__actions {
  margin: 14px 0 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.assess__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.assess__item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px 18px;
  border-radius: 10px;
  background: transparent;
  border-bottom: 1px solid var(--clr-border);
  cursor: pointer;
  transition: background-color 220ms ease, border-color 220ms ease, transform 220ms ease;
}
.assess__item:last-child { border-bottom: none; }
.assess__item:hover,
.assess__item--highlight {
  background: #e0f2f1;
  border-bottom-color: transparent;
  transform: translateX(2px);
}
.assess__check {
  flex-shrink: 0;
  width: 24px; height: 24px;
  border-radius: 6px;
  background: var(--clr-primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}
.assess__item-body { flex: 1; }
.assess__item-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 8px;
}
.assess__item-head strong {
  display: block;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--clr-text-1);
  line-height: 1.3;
}
.assess__weight {
  flex-shrink: 0;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #0d9488;
  background: #ccfbf1;
  padding: 5px 10px;
  border-radius: 4px;
}
.assess__weight--med { color: #2563eb; background: #dbeafe; }
.assess__item-body p {
  font-size: 13px;
  color: var(--clr-text-3);
  line-height: 1.6;
  margin: 0;
  max-width: 460px;
}

/* ─ Fit Score Card (right) ─ */
.fitcard {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(15,23,42,0.08);
  border: 1px solid var(--clr-border);
  display: flex;
  flex-direction: column;
  min-height: 580px;
}
.fitcard__header {
  background: #0f172a;
  color: #fff;
  padding: 22px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.fitcard__label { color: #fff; }
.fitcard__status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.9);
  font-size: 11px;
}
.fitcard__status-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 0 3px rgba(16,185,129,0.25);
}
.fitcard__body {
  padding: 36px 32px 36px 32px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.fitbars {
  list-style: none;
  padding: 0;
  margin: 0 0 32px 0;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.fitbar {
  display: grid;
  grid-template-columns: 170px 1fr 56px;
  gap: 16px;
  align-items: center;
}
.fitbar__label {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--clr-text-2);
  text-transform: uppercase;
}
.fitbar__track {
  position: relative;
  display: block;
  height: 4px;
  border-radius: 999px;
  background: #e2e8f0;
  overflow: hidden;
}
.fitbar__fill {
  display: block;
  height: 100%;
  width: 0;
  border-radius: 999px;
  transition: width 1200ms cubic-bezier(0.22, 1, 0.36, 1);
}
.fitbar__fill--teal   { background: #0d9488; }
.fitbar__fill--blue   { background: #2563eb; }
.fitbar__fill--green  { background: #65a30d; }
.fitbar__fill--purple { background: #7c3aed; }
.fitbar__value {
  font-size: 11px;
  font-weight: 800;
  color: var(--clr-text-1);
  text-align: right;
  letter-spacing: 0.02em;
}

.fitcard__verdict {
  margin-top: auto;
}
.fitcard__verdict-label {
  display: block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--clr-text-3);
  margin-bottom: 12px;
}
.fitcard__verdict-text {
  font-size: 15px;
  font-weight: 700;
  color: var(--clr-text-1);
  line-height: 1.55;
  margin-bottom: 0;
}
/* Divider sits BETWEEN the verdict text and the CTA button below */
.fitcard__divider {
  border: 0;
  height: 1px;
  background: var(--clr-border);
  margin: 22px 0;
}
/* Primary CTA — opens the contact modal */
.fitcard__cta {
  display: inline-block;
  width: 100%;
  text-align: center;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #ffffff;
  background: #0d9488;
  padding: 14px 22px;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
  box-shadow: 0 2px 6px rgba(13, 148, 136, 0.18);
}
.fitcard__cta:hover,
.fitcard__cta:focus {
  background: #0f766e;
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(13, 148, 136, 0.28);
  outline: none;
}
.fitcard__cta:active {
  transform: translateY(0);
  box-shadow: 0 2px 6px rgba(13, 148, 136, 0.18);
}

/* ═══════ 4 — TIERS ═══════ */
.tiers { background: #f7f9fc; }
.tiers__header { text-align: left; margin-bottom: 48px; max-width: 900px; }
.tiers__header .eyebrow--blue { color: #2563eb; }
.tiers__header .eyebrow__dash--blue { background: #2563eb; }
.tiers__heading {
  font-size: clamp(2.25rem, 4.6vw, 3.75rem);
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  color: var(--clr-text-1);
  margin-bottom: 20px;
}
.tiers__body {
  font-size: 15px;
  line-height: 1.65;
  color: var(--clr-text-3);
  max-width: 640px;
}

.tiers__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  align-items: stretch;
}
.tiercard {
  --tier-color: #0d9488;
  position: relative;
  background: #ffffff;
  border-radius: 6px;
  padding: 34px 26px 32px 26px;
  border: 1px solid #eef2f7;
  display: flex;
  flex-direction: column;
  transition: transform 260ms ease, box-shadow 260ms ease, border-color 260ms ease;
}
.tiercard:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 44px rgba(15,23,42,0.08);
  border-color: transparent;
}
.tiercard--teal   { --tier-color: #0d9488; }
.tiercard--blue   { --tier-color: #2563eb; }
.tiercard--green  { --tier-color: #65a30d; }
.tiercard--purple { --tier-color: #7c3aed; }

.tiercard__rule {
  position: absolute;
  top: 0;
  left: 26px;
  right: 26px;
  height: 2px;
  background: var(--tier-color);
  border-radius: 999px;
}
.tiercard__label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--tier-color);
  margin-bottom: 18px;
}
.tiercard__dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--tier-color);
}
.tiercard__title {
  font-size: 18px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--clr-text-1);
  margin-bottom: 16px;
}
.tiercard__desc {
  font-size: 13px;
  color: var(--clr-text-3);
  line-height: 1.6;
  margin-bottom: 22px;
}
.tiercard__divider {
  display: block;
  height: 1px;
  background: var(--clr-border);
  margin: 0 0 20px 0;
}
.tiercard__features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.tiercard__features li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 13px;
  color: var(--clr-text-2);
  line-height: 1.5;
}
.tiercard__bullet {
  flex-shrink: 0;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--tier-color);
  margin-top: 7px;
  transition: transform 200ms ease;
}
.tiercard:hover .tiercard__bullet { transform: scale(1.35); }

.tiers__cta { text-align: center; margin-top: 52px; }
.btn--book {
  padding: 14px 34px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
}
.btn--book:hover { transform: translateY(-1px); }

/* Blue eyebrow variant */
.eyebrow--blue { color: #2563eb; }
.eyebrow__dash--blue { background: #2563eb; }

/* ═══════ 5 — ADDONS ═══════ */
.addons { background: #ffffff; }
.addons__header {
  text-align: left;
  max-width: 720px;
  margin-bottom: 32px;
}
.addons__header .eyebrow { justify-content: flex-start; margin-bottom: 18px; }
.addons__heading {
  font-family: var(--font-family);
  font-size: clamp(2.5rem, 5vw, 4.25rem);
  font-weight: 900;
  line-height: 0.98;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  color: var(--clr-text-1);
  margin: 0 0 22px 0;
}
/* v2.0: Teal accent on the "FEATURES" word in the Add-On section H2,
   matching Figma color token virtualtoursxr.com/Blue Chill (#0d9488). */
.addons__heading-accent {
  color: var(--clr-primary, #0d9488);
}
.addons__intro {
  font-size: 15px;
  line-height: 1.6;
  color: var(--clr-text-3);
  max-width: 560px;
  margin: 0;
}

.addons__hero {
  margin: 8px 0 56px 0;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
}
.addons__hero-img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 360px;
  object-fit: contain;
}

.addons__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--clr-border);
}
.addoncard {
  position: relative;
  padding: 36px 28px 34px 28px;
  border-right: 1px solid var(--clr-border);
  border-bottom: 1px solid var(--clr-border);
  background: #fff;
  transition: background 220ms ease, transform 220ms ease;
}
.addons__grid .addoncard:nth-child(3n) { border-right: none; }
.addons__grid .addoncard:nth-last-child(-n+3) { border-bottom: none; }
.addoncard::before {
  content: "";
  position: absolute;
  left: 0; top: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, #0d9488 0%, #2563eb 50%, #7c3aed 100%);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 320ms ease;
}
.addoncard:hover { background: #fafcff; transform: translateY(-2px); }
.addoncard:hover::before { transform: scaleX(1); }
.addoncard:hover .addoncard__icon { color: #2563eb; transform: translateY(-1px) scale(1.04); }

.addoncard__icon {
  width: 36px; height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: #6b8fe0;
  transition: color 220ms ease, transform 220ms ease;
}
.addoncard__title {
  font-family: var(--font-family);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--clr-primary);
  margin: 0 0 10px 0;
}
.addoncard__text {
  font-size: 13.5px;
  color: var(--clr-text-3);
  line-height: 1.6;
  margin: 0;
}

/* ═══════ 6 — DRIVE ═══════ */
.drive { background: #f7f9fc; }

.eyebrow--purple { color: #7c3aed; }
.eyebrow__dash--purple { background: #7c3aed; }

.drive__grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 72px;
  align-items: start;
}
.drive__left { padding-top: 4px; }
.drive__heading {
  font-family: var(--font-family);
  /* Reduced from 4.5rem max → 3.25rem so each <br> segment
     ("3. DRIVE VISITORS" / "TO YOUR ONLINE" / "VIRTUAL TOUR")
     fits on one line within the left column → 3 lines total. */
  font-size: clamp(2rem, 4.2vw, 3.25rem);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  color: var(--clr-text-1);
  margin: 18px 0 26px 0;
}
.drive__intro {
  font-size: 15px;
  line-height: 1.65;
  color: var(--clr-text-3);
  margin: 0 0 36px 0;
  max-width: 560px;
}
.drive__subheading {
  font-family: var(--font-family);
  font-size: clamp(1.5rem, 2vw, 1.9rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--clr-text-1);
  margin: 0 0 18px 0;
}
.drive__body {
  font-size: 14px;
  line-height: 1.65;
  color: var(--clr-text-3);
  margin: 0 0 16px 0;
  max-width: 560px;
}
.drive__body + .drive__body { margin-bottom: 28px; }

.channelist {
  list-style: none;
  padding: 0;
  margin: 36px 0 0 0;
  display: flex;
  flex-direction: column;
}
.channelist__row {
  display: grid;
  grid-template-columns: 12px 1fr auto;
  align-items: center;
  column-gap: 16px;
  padding: 22px 10px 22px 6px;
  border-top: 1px solid #e5eaf0;
  transition: background 220ms ease, transform 220ms ease, padding-left 220ms ease;
}
.channelist__row:first-child { border-top: none; padding-top: 4px; }
.channelist__row:hover {
  background: #f8fafc;
  transform: translateX(4px);
}
.channelist__row:hover .channelist__dot {
  transform: scale(1.5);
  box-shadow: 0 0 0 4px rgba(13,148,136,0.10);
}
.channelist__row:hover .status {
  transform: scale(1.03);
}

.channelist__dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  display: inline-block;
  transition: transform 220ms ease, box-shadow 220ms ease;
}
.channelist__dot--teal   { background: #0d9488; }
.channelist__dot--blue   { background: #2563eb; }
.channelist__dot--green  { background: #65a30d; }
.channelist__dot--purple { background: #7c3aed; }

.channelist__copy {
  font-size: 15px;
  line-height: 1.5;
  color: var(--clr-text-3);
}
.channelist__copy strong {
  /* v2.0: Channel block headings in teal — matches brand primary (#0d9488). */
  color: var(--clr-primary, #0d9488);
  font-weight: 700;
}

.status {
  display: inline-block;
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 7px 13px;
  border-radius: 4px;
  white-space: nowrap;
  transition: transform 220ms ease;
}
.status--audited { background: #ccf3e6; color: #0f766e; }
.status--gap     { background: #e9e1ff; color: #6d28d9; }
.status--reco    { background: #e9f5cf; color: #4d7c0f; }
/* v2.0: "NEW" status pill for freshly-added channel options (e.g. In-Venue QR).
   Uses a brand-aligned teal/aqua to signal a brand-new opportunity. */
.status--new     { background: #cffafe; color: #0e7490; }

/* ── Traffic card (right column) ── */
.trafficcard {
  background: #ffffff;
  border-radius: 10px;
  border: 1px solid var(--clr-border);
  box-shadow: 0 20px 50px rgba(15,23,42,0.06);
  overflow: hidden;
  position: sticky;
  top: 100px;
}
.trafficcard__hero {
  width: 100%;
  aspect-ratio: 16 / 8.5;
  background: #ffffff;
  overflow: hidden;
  line-height: 0;
}
.trafficcard__hero img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 38%;
}
.trafficcard__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 22px;
  background: #0f172a;
  color: #fff;
  margin-top: 20px;
}
.trafficcard__bar-title {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.trafficcard__bar-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #86efac;
}
.trafficcard__live-dot {
  width: 7px; height: 7px;
  background: #22c55e;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(34,197,94,0.6);
  animation: tc-pulse 1.8s ease-out infinite;
}
@keyframes tc-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(34,197,94,0.55); }
  70%  { box-shadow: 0 0 0 8px rgba(34,197,94,0);  }
  100% { box-shadow: 0 0 0 0 rgba(34,197,94,0);    }
}
.trafficcard__body { padding: 26px 26px 28px 26px; }

.meterlist {
  list-style: none;
  padding: 0;
  margin: 0 0 24px 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.meterlist__row + .meterlist__row { padding-top: 18px; border-top: 1px solid #eef2f7; }
.meterlist__top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 10px;
}
.meterlist__label {
  font-size: 11px;
  font-weight: 800;
  color: var(--clr-text-1);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.meterlist__value {
  font-size: 11px;
  font-weight: 700;
  color: var(--clr-text-3);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.meterlist__value--gap { color: #dc2626; }
.meterlist__track {
  height: 3px;
  background: #e5eaf0;
  border-radius: 999px;
  overflow: hidden;
  position: relative;
}
.meterlist__fill {
  display: block;
  height: 100%;
  border-radius: 999px;
  transform-origin: left center;
  animation: tc-fill 900ms ease-out;
}
@keyframes tc-fill {
  from { transform: scaleX(0); }
  to   { transform: scaleX(1); }
}
.meterlist__fill--teal   { background: #0d9488; }
.meterlist__fill--blue   { background: #2563eb; }
.meterlist__fill--green  { background: #65a30d; }
.meterlist__fill--purple { background: #7c3aed; }
.meterlist__fill--gap    { background: #f87171; opacity: 0.8; }

.kpigrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  padding-top: 18px;
  border-top: 1px solid #eef2f7;
}
.kpigrid__cell {
  background: #f4f7fb;
  border-radius: 8px;
  padding: 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: transform 220ms ease, box-shadow 220ms ease;
}
.kpigrid__cell:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(15,23,42,0.07);
}
.kpigrid__lbl {
  font-size: 10px;
  font-weight: 800;
  color: var(--clr-text-3);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.kpigrid__num {
  font-size: 26px;
  font-weight: 900;
  color: var(--clr-text-1);
  letter-spacing: -0.02em;
  line-height: 1;
}
.kpigrid__sub {
  font-size: 11.5px;
  font-weight: 600;
  color: #0d9488;
  line-height: 1.4;
  margin-top: 2px;
}
.kpigrid__cell:nth-child(3) .kpigrid__sub,
.kpigrid__cell:nth-child(4) .kpigrid__sub {
  color: var(--clr-text-3);
}
.kpigrid__arrow {
  color: #0d9488;
  font-weight: 900;
  margin-right: 2px;
}

/* ═══════ 7 — INDUSTRIES ═══════ */
.industries { background: #e8f5f3; }
.industries__header {
  text-align: left;
  margin-bottom: 40px;
  max-width: 780px;
}
.eyebrow--pill {
  display: inline-block;
  font-family: var(--font-family);
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #7c3aed;
  background: #f3ecff;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 18px;
}
.industries__heading {
  font-family: var(--font-family);
  font-size: clamp(2rem, 3.4vw, 2.75rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--clr-text-1);
  margin: 0 0 14px 0;
}
.industries__intro {
  font-size: 15px;
  line-height: 1.6;
  color: var(--clr-text-3);
  margin: 0;
  max-width: 640px;
}

.industries__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 24px;
  row-gap: 16px;
}
.indcard {
  background: #ffffff;
  border: 1px solid #eef1f5;
  border-radius: 10px;
  padding: 22px 22px 22px 22px;
  display: grid;
  grid-template-columns: 72px 1fr;
  column-gap: 16px;
  align-items: flex-start;
  position: relative;
  overflow: hidden;
  transition: transform 280ms ease, box-shadow 280ms ease, border-color 280ms ease;
}
.indcard::before {
  content: "";
  position: absolute;
  left: 0; top: 0;
  width: 3px;
  height: 100%;
  background: linear-gradient(180deg, #0d9488, #2563eb, #7c3aed);
  transform: scaleY(0);
  transform-origin: top center;
  transition: transform 320ms ease;
}
.indcard:hover {
  transform: translateY(-3px);
  border-color: #e2e8f0;
  box-shadow: 0 14px 36px rgba(15,23,42,0.08);
}
.indcard:hover::before { transform: scaleY(1); }
.indcard:hover .indcard__icon { transform: scale(1.08) rotate(-3deg); }
.indcard:hover .indcard__title { color: #7c3aed; }

.indcard__icon {
  width: 72px;
  height: 72px;
  border-radius: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 320ms ease;
}
.indcard__icon img { width: 36px; height: 36px; object-fit: contain; }

.indcard__body { min-width: 0; }
.indcard__title {
  font-family: var(--font-family);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--clr-text-1);
  margin: 2px 0 8px 0;
  transition: color 220ms ease;
}
.indcard__text {
  font-size: 13px;
  color: var(--clr-text-3);
  line-height: 1.55;
  margin: 0;
}

/* ═══════ 8 — GOALS ═══════ */
.goals { background: #f5f7fa; }

.goals__header {
  text-align: center;
  margin: 0 auto 48px auto;
  max-width: 1100px;
}
.goals__heading {
  font-family: var(--font-family);
  font-size: clamp(1.75rem, 3.4vw, 2.85rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.015em;
  text-transform: uppercase;
  color: var(--clr-text-1);
  margin: 0 0 14px 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  flex-wrap: nowrap;
  width: 100%;
}
.goals__heading-text {
  display: inline-block;
  text-align: center;
  max-width: 720px;
}
.goals__heading-accent { color: #0d9488; }
.goals__target {
  width: clamp(40px, 4vw, 56px);
  height: clamp(40px, 4vw, 56px);
  flex-shrink: 0;
  object-fit: contain;
  transition: transform 500ms cubic-bezier(0.34, 1.56, 0.64, 1);
}
.goals__target--left  { animation: tgt-bob 4s ease-in-out infinite; }
.goals__target--right { animation: tgt-bob 4s ease-in-out infinite -2s; }
@keyframes tgt-bob {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50%      { transform: translateY(-6px) rotate(2deg); }
}
.goals__sub {
  font-size: 14px;
  color: var(--clr-text-3);
  margin: 0;
  line-height: 1.55;
}

.goals__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: stretch;
}

.groupcard {
  background: #ffffff;
  border: 1px solid #cdeeea;
  border-radius: 14px;
  padding: 28px 28px 28px 28px;
  display: flex;
  flex-direction: column;
  position: relative;
  height: 100%;
  transition: transform 280ms ease, box-shadow 280ms ease, border-color 280ms ease;
}
.groupcard .steplist { margin-top: auto; }
.groupcard:hover {
  transform: translateY(-4px);
  border-color: #5eead4;
  box-shadow: 0 24px 50px rgba(13,148,136,0.10);
}

/* v2.0: Header row inside each group card — dark "INDUSTRY GROUP N" tag on
   the left, teal "BOOK NOW" CTA pill on the right. Wraps on narrow widths. */
.groupcard__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.groupcard__tag {
  display: inline-block;
  font-family: var(--font-family);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #ffffff;
  background: #0f172a;
  padding: 8px 16px;
  border-radius: 6px;
}
.groupcard__cta {
  display: inline-block;
  font-family: var(--font-family);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--clr-primary, #0d9488);
  background: transparent;
  border: 1.5px solid var(--clr-primary, #0d9488);
  padding: 7px 18px;
  border-radius: 6px;
  text-decoration: none;
  transition: background 180ms ease, color 180ms ease;
}
.groupcard__cta:hover,
.groupcard__cta:focus-visible {
  background: var(--clr-primary, #0d9488);
  color: #ffffff;
}

.groupcard__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 26px;
}
.indchip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--clr-text-2);
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 7px;
  padding: 8px 14px 8px 11px;
  transition: border-color 200ms ease, background 200ms ease, transform 200ms ease, color 200ms ease;
  cursor: default;
}
.indchip:hover {
  border-color: #5eead4;
  background: #f0fdfa;
  color: var(--clr-text-1);
  transform: translateY(-1px);
}
.indchip--strong {
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 11.5px;
  color: var(--clr-text-1);
}
.indchip__ico {
  width: 14px;
  height: 14px;
  border-radius: 3px;
  background: linear-gradient(135deg, #94d8d0, #5eead4);
  flex-shrink: 0;
  display: inline-block;
}

.groupcard__divider {
  border: none;
  height: 1px;
  background: #e2e8f0;
  margin: 4px 0 22px 0;
}

.groupcard__label {
  font-family: var(--font-family);
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--clr-text-1);
  margin: 0 0 16px 0;
}

.kpilist {
  list-style: none;
  padding: 0;
  margin: 0 0 28px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.kpilist li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 14px;
  font-weight: 500;
  color: var(--clr-text-1);
  padding: 4px 0;
  transition: transform 200ms ease;
}
.kpilist li:hover { transform: translateX(3px); }
.kpilist__check {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #ccf3e6;
  color: #0d9488;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 200ms ease, color 200ms ease;
}
.kpilist li:hover .kpilist__check {
  background: #0d9488;
  color: #ffffff;
}

.steplist {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.steplist li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--clr-text-1);
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  padding: 9px 14px;
  transition: border-color 220ms ease, background 220ms ease, transform 220ms ease;
}
.steplist li:hover {
  border-color: #5eead4;
  background: #f0fdfa;
  transform: translateX(3px);
}
.steplist__num {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #f1f5f9;
  color: var(--clr-text-2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 800;
  flex-shrink: 0;
  transition: background 220ms ease, color 220ms ease;
}
.steplist li:hover .steplist__num {
  background: #0d9488;
  color: #ffffff;
}

/* ═══════ 9 — DARK STATS BANNER ═══════ */
.banner {
  background: #0f172a;
  color: #fff;
  padding: clamp(52px, 7vw, 80px) 0;
}
.banner__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 48px;
  align-items: start;
}
.banner__stat {
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform var(--tr-base);
}
.banner__stat:hover { transform: translateY(-3px); }
.banner__num {
  font-size: clamp(1.75rem, 2.8vw, 2.625rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.05;
  letter-spacing: -0.01em;
}
.banner__body {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.55);
  margin: 0;
}

/* ═══════ 10 — DATA ═══════ */
.data {
  background: #f5f7fa;
}
.data__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.data__left { max-width: 560px; }
.data__eyebrow {
  display: inline-block;
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: var(--clr-primary);
  text-transform: uppercase;
  margin-bottom: 20px;
}
.data__heading {
  font-size: clamp(2.25rem, 4.5vw, 3.5rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--clr-text-1);
  margin: 0 0 24px 0;
  text-transform: uppercase;
}
.data__body {
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--clr-text-2);
  margin: 0 0 18px 0;
}
.data__body + .data__body { margin-bottom: 28px; }

.datalist {
  list-style: none;
  padding: 0;
  margin: 4px 0 0 0;
  display: flex;
  flex-direction: column;
}
.datalist__row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 0;
  border-top: 1px solid #e5eaf0;
  transition: transform var(--tr-base), padding-left var(--tr-base);
}
.datalist__row:last-child { border-bottom: 1px solid #e5eaf0; }
.datalist__row:hover { transform: translateX(4px); }
.datalist__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}
.datalist__dot--teal   { background: #0d9488; box-shadow: 0 0 0 3px rgba(13,148,136,0.15); }
.datalist__dot--blue   { background: #2563eb; box-shadow: 0 0 0 3px rgba(37,99,235,0.15); }
.datalist__dot--green  { background: #10b981; box-shadow: 0 0 0 3px rgba(16,185,129,0.15); }
.datalist__dot--purple { background: #8b5cf6; box-shadow: 0 0 0 3px rgba(139,92,246,0.15); }
.datalist__text {
  font-size: 15px;
  line-height: 1.5;
  color: var(--clr-text-2);
  font-weight: 500;
}

/* ── Live dashboard card ── */
.livecard {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(15,23,42,0.10), 0 2px 6px rgba(15,23,42,0.04);
  border: 1px solid #e5eaf0;
  transition: transform var(--tr-base), box-shadow var(--tr-base);
}
.livecard:hover {
  transform: translateY(-4px);
  box-shadow: 0 32px 70px rgba(15,23,42,0.14), 0 2px 6px rgba(15,23,42,0.04);
}
.livecard__header {
  background: #0f172a;
  color: #fff;
  padding: 14px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.livecard__brand {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
}
.livecard__feed {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: #10b981;
  text-transform: uppercase;
}
.livecard__feed-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 0 0 rgba(16,185,129,0.6);
  animation: livepulse 1.8s ease-out infinite;
}
@keyframes livepulse {
  0%   { box-shadow: 0 0 0 0 rgba(16,185,129,0.6); }
  70%  { box-shadow: 0 0 0 8px rgba(16,185,129,0); }
  100% { box-shadow: 0 0 0 0 rgba(16,185,129,0); }
}
.livecard__body { padding: 22px 22px 20px; }

/* ── KPI row ── */
.livekpis {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid #e5eaf0;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 20px;
}
.livekpi {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 16px 16px 14px;
  background: #fff;
  border-right: 1px solid #e5eaf0;
  transition: background var(--tr-base), transform var(--tr-base);
  position: relative;
}
.livekpi:last-child { border-right: none; }
.livekpi:hover { background: #f8fbff; transform: translateY(-1px); }
.livekpi__lbl {
  font-size: 9.5px;
  font-weight: 800;
  letter-spacing: 0.13em;
  color: var(--clr-text-3);
  text-transform: uppercase;
  margin-bottom: 4px;
}
.livekpi__num {
  font-size: 28px;
  font-weight: 900;
  color: var(--clr-text-1);
  line-height: 1.05;
  letter-spacing: -0.01em;
}
.livekpi__delta {
  font-size: 11px;
  font-weight: 700;
  color: #0d9488;
  display: inline-flex;
  align-items: center;
  gap: 3px;
  margin-top: 3px;
}
.livekpi__arrow { font-size: 12px; line-height: 1; }

/* ── Chart ── */
.livechart {
  padding: 0 0 18px;
  margin-bottom: 4px;
}
.livechart__title {
  display: block;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.13em;
  color: var(--clr-text-3);
  text-transform: uppercase;
  margin-bottom: 14px;
}
.livechart__bars {
  display: flex;
  align-items: flex-end;
  gap: 5px;
  height: 90px;
}
.livebar {
  flex: 1;
  border-radius: 3px 3px 0 0;
  height: var(--h);
  min-height: 5px;
  transform-origin: bottom;
  animation: barIn 700ms cubic-bezier(0.22,1,0.36,1) both;
  transition: filter var(--tr-fast);
}
.livebar:nth-child(1)  { animation-delay:  50ms; }
.livebar:nth-child(2)  { animation-delay: 100ms; }
.livebar:nth-child(3)  { animation-delay: 150ms; }
.livebar:nth-child(4)  { animation-delay: 200ms; }
.livebar:nth-child(5)  { animation-delay: 250ms; }
.livebar:nth-child(6)  { animation-delay: 300ms; }
.livebar:nth-child(7)  { animation-delay: 350ms; }
.livebar:nth-child(8)  { animation-delay: 400ms; }
.livebar:nth-child(9)  { animation-delay: 450ms; }
.livebar:nth-child(10) { animation-delay: 500ms; }
.livebar:nth-child(11) { animation-delay: 550ms; }
.livebar:nth-child(12) { animation-delay: 600ms; }
@keyframes barIn {
  from { transform: scaleY(0); }
  to   { transform: scaleY(1); }
}
.livebar:hover { filter: brightness(1.15); }
.livebar--teal   { background: linear-gradient(180deg, #14b8a6 0%, #0d9488 100%); }
.livebar--blue   { background: linear-gradient(180deg, #3b82f6 0%, #2563eb 100%); }
.livebar--green  { background: linear-gradient(180deg, #34d399 0%, #10b981 100%); }
.livebar--purple { background: linear-gradient(180deg, #a78bfa 0%, #7c3aed 100%); }

/* ── Meters (2-col side by side) ── */
.livemeters {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.livemeter {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid #e5eaf0;
  border-radius: 10px;
  padding: 14px 16px 14px;
  background: #fff;
  transition: border-color var(--tr-base), transform var(--tr-base);
}
.livemeter:hover {
  border-color: rgba(13,148,136,0.3);
  transform: translateY(-2px);
}
.livemeter__lbl {
  font-size: 9.5px;
  font-weight: 800;
  letter-spacing: 0.13em;
  color: var(--clr-text-3);
  text-transform: uppercase;
  margin-bottom: 6px;
}
.livemeter__num {
  font-size: 26px;
  font-weight: 900;
  color: var(--clr-text-1);
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
}
.livemeter__track {
  height: 5px;
  background: #eef1f5;
  border-radius: 999px;
  overflow: hidden;
  margin-top: auto;
}
.livemeter__fill {
  display: block;
  height: 100%;
  border-radius: 999px;
  width: 0;
  animation: fillIn 1000ms 600ms cubic-bezier(0.22,1,0.36,1) forwards;
}
@keyframes fillIn {
  from { width: 0; }
  to   { width: var(--fill-w, 100%); }
}
.livemeter__fill--teal { background: linear-gradient(90deg, #14b8a6 0%, #0d9488 100%); }
.livemeter__fill--blue { background: linear-gradient(90deg, #3b82f6 0%, #2563eb 100%); }

@media (max-width: 900px) {
  .livekpis { grid-template-columns: 1fr; border: none; gap: 10px; }
  .livekpi { border: 1px solid #e5eaf0; border-radius: 10px; }
  .livemeters { grid-template-columns: 1fr; }
}

/* ═══════ 11 — ENGAGE (GAMIFICATION) ═══════ */
.engage {
  background: #fff;
}
.engage__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 5vw, 70px);
  align-items: start;
}
.engage__left { max-width: 560px; }
.engage__eyebrow {
  display: inline-block;
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: var(--clr-primary);
  text-transform: uppercase;
  margin-bottom: 20px;
}
.engage__heading {
  font-size: clamp(2.25rem, 4.5vw, 3.5rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--clr-text-1);
  margin: 0 0 24px 0;
  text-transform: uppercase;
}
.engage__body {
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--clr-text-2);
  margin: 0 0 32px 0;
}

.gamilist {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
}
.gamilist__row {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 22px 0;
  border-top: 1px solid #e5eaf0;
  transition: transform var(--tr-base), padding-left var(--tr-base);
}
.gamilist__row:hover { transform: translateX(4px); }
.gamilist__row:last-child { border-bottom: 1px solid #e5eaf0; }
.gamilist__icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
  transition: transform var(--tr-bounce);
}
.gamilist__row:hover .gamilist__icon { transform: scale(1.08) rotate(-4deg); }
.gamilist__icon img { max-width: 100%; max-height: 100%; display: block; }
.gamilist__body { flex: 1; min-width: 0; }
.gamilist__title {
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--clr-text-1);
  margin: 0 0 8px 0;
}
.gamilist__text {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--clr-text-2);
  margin: 0;
}

/* ── Engagement dashboard card ── */
.engdash {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #e5eaf0;
  box-shadow: 0 24px 60px rgba(15,23,42,0.10), 0 2px 6px rgba(15,23,42,0.04);
  transition: transform var(--tr-base), box-shadow var(--tr-base);
}
.engdash:hover {
  transform: translateY(-4px);
  box-shadow: 0 32px 70px rgba(15,23,42,0.14), 0 2px 6px rgba(15,23,42,0.04);
}
.engdash__header {
  background: #0f172a;
  color: #fff;
  padding: 14px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.engdash__brand {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
}
.engdash__feed {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: #10b981;
  text-transform: uppercase;
}
.engdash__feed-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #10b981;
  animation: livepulse 1.8s ease-out infinite;
}
.engdash__body {
  padding: 22px;
  background: #fff;
}

.achgrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 18px;
}
.achcard {
  background: #fff;
  border: 1px solid #e5eaf0;
  border-radius: 12px;
  padding: 16px 16px 14px;
  display: flex;
  flex-direction: column;
  transition: border-color var(--tr-base), transform var(--tr-base), box-shadow var(--tr-base);
}
.achcard:hover {
  transform: translateY(-2px);
  border-color: rgba(124,58,237,0.35);
  box-shadow: 0 8px 20px rgba(15,23,42,0.06);
}
.achcard__tag {
  font-size: 9.5px;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: #7c3aed;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.achcard__title {
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--clr-text-1);
  margin: 0 0 4px 0;
  line-height: 1.2;
}
.achcard__text {
  font-size: 12px;
  line-height: 1.45;
  color: var(--clr-text-3);
  margin: 0 0 14px 0;
}
.achcard__track {
  height: 3px;
  background: #eef1f5;
  border-radius: 999px;
  overflow: hidden;
  margin: auto 0 10px 0;
}
.achcard__fill {
  display: block;
  height: 100%;
  border-radius: 999px;
  transition: width 900ms ease;
}
.achcard__fill--teal { background: linear-gradient(90deg, #14b8a6 0%, #0d9488 100%); }
.achcard__fill--blue { background: linear-gradient(90deg, #3b82f6 0%, #2563eb 100%); }
.achcard__status {
  font-size: 9.5px;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--clr-text-3);
  text-transform: uppercase;
}
.achcard__status--teal { color: #0d9488; }

.topvis {
  border: 1px solid #e5eaf0;
  border-radius: 12px;
  padding: 16px 18px;
  background: #fff;
}
.topvis__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 10px;
  margin-bottom: 6px;
  border-bottom: 1px solid #eef1f5;
}
.topvis__title {
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: var(--clr-text-1);
  text-transform: uppercase;
}
.topvis__live {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 9.5px;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: #10b981;
  text-transform: uppercase;
}
.topvis__live-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #10b981;
  animation: livepulse 1.8s ease-out infinite;
}
.topvis__list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.topvis__row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 10px 0;
  border-bottom: 1px solid #f2f4f7;
  transition: transform var(--tr-base);
}
.topvis__row:last-child { border-bottom: none; }
.topvis__row:hover { transform: translateX(3px); }
.topvis__rank {
  font-size: 13px;
  font-weight: 900;
  color: #7c3aed;
  min-width: 22px;
}
.topvis__name {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--clr-text-2);
}
.topvis__pts {
  font-size: 12.5px;
  font-weight: 900;
  letter-spacing: 0.06em;
  color: var(--clr-text-1);
}

@media (max-width: 900px) {
  .achgrid { grid-template-columns: 1fr; }
}

/* ═══════ 12 — TOURS ═══════ */
.tours { background: #f9f9f9; }

.tours__header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: end;
  margin-bottom: 40px;
}
.tours__eyebrow {
  display: inline-block;
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: var(--clr-primary);
  text-transform: uppercase;
  margin-bottom: 16px;
}
.tours__heading {
  font-size: clamp(2.25rem, 4.2vw, 3.25rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--clr-text-1);
  margin: 0;
  text-transform: uppercase;
}
.tours__heading-teal { color: var(--clr-primary); }
.tours__intro {
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--clr-text-3);
  margin: 0 0 8px 0;
  max-width: 520px;
}

.tours__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.tcard {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid #f3e8ff;
  box-shadow: 0 2px 6px rgba(15,23,42,0.04);
  transition: transform var(--tr-base), box-shadow var(--tr-base), border-color var(--tr-base);
  display: flex;
  flex-direction: column;
}
.tcard:hover {
  transform: translateY(-4px);
  border-color: rgba(13,148,136,0.25);
  box-shadow: 0 20px 40px rgba(15,23,42,0.08);
}

.tcard__media {
  position: relative;
  aspect-ratio: 16 / 8.5;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.tcard--1 .tcard__media { background: linear-gradient(135deg, #f3e8ff 0%, #f3e8ff 50%, #f1f5f9 100%); }
.tcard--2 .tcard__media { background: linear-gradient(135deg, #dbeafe 0%, #f3e8ff 55%, #f1f5f9 100%); }
.tcard--3 .tcard__media { background: linear-gradient(135deg, #f3e8ff 0%, #f1f5f9 55%, #f3e8ff 100%); }
.tcard--4 .tcard__media { background: linear-gradient(135deg, #f3e8ff 0%, #f3e8ff 55%, #dbeafe 100%); }

.tcard__tag {
  position: absolute;
  top: 16px;
  left: 18px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: var(--clr-text-3);
  text-transform: uppercase;
}
.tcard__duration {
  position: absolute;
  top: 16px;
  right: 18px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--clr-text-3);
  text-transform: uppercase;
}
.tcard__play {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: #fff;
  border: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(15,23,42,0.12), 0 2px 4px rgba(15,23,42,0.06);
  transition: transform var(--tr-bounce), box-shadow var(--tr-base);
  position: relative;
  z-index: 1;
}
.tcard__play svg { margin-left: 3px; }
.tcard:hover .tcard__play {
  transform: scale(1.08);
  box-shadow: 0 12px 30px rgba(15,23,42,0.16), 0 2px 4px rgba(15,23,42,0.06);
}
.tcard__play::after {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.55);
  opacity: 0;
  transition: opacity var(--tr-base), inset var(--tr-base);
}
.tcard:hover .tcard__play::after { opacity: 1; inset: -12px; }

.tcard__body { padding: 20px 22px 22px; }
.tcard__title {
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--clr-text-1);
  margin: 0 0 8px 0;
  line-height: 1.25;
}
.tcard__text {
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--clr-text-3);
  margin: 0;
}

@media (max-width: 1000px) {
  .tours__header { grid-template-columns: 1fr; gap: 20px; }
  .tours__grid { grid-template-columns: 1fr; }
}

/* ═══════ 13 — START CTA ═══════ */
.start {
  background: #f8fafc;
  padding: 120px 0 120px;
  border-top: 1px solid #e2e8f0;
}

.start__grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(56px, 8vw, 100px);
  align-items: center;
}

/* Left column */
.start__left { padding-top: 0; }

.start__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--clr-primary);
  margin-bottom: 24px;
}
.start__eyebrow::before {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: var(--clr-primary);
  border-radius: 2px;
}

.start__heading {
  font-size: clamp(2.4rem, 4vw, 3.5rem);
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--clr-text-1);
  margin: 0 0 24px 0;
}
.start__teal { color: var(--clr-primary); }
.start__body {
  font-size: 15.5px;
  color: var(--clr-text-3);
  line-height: 1.75;
  margin: 0 0 40px 0;
}

.start__trust {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 40px;
}
.start__trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--clr-text-2);
}
.start__trust-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--clr-primary);
  flex-shrink: 0;
}

.start__btn {
  display: inline-block;
  padding: 16px 32px;
  background: #0f172a;
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 8px;
  transition: background var(--tr-base), transform var(--tr-base), box-shadow var(--tr-base);
}
.start__btn:hover {
  background: #1e293b;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(15,23,42,0.15);
}

/* Right column — form card */
.start__form {
  display: flex;
  flex-direction: column;
  gap: 0;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  padding: 48px 48px 44px;
  box-shadow: 0 4px 24px rgba(15,23,42,0.06);
}

.start__form-title {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin: 0 0 32px 0;
  padding-bottom: 20px;
  border-bottom: 1px solid #e2e8f0;
}
.start__form-kicker {
  font-family: var(--font-family);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--clr-text-1);
}
.start__form-headline {
  font-family: var(--font-family);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--clr-text-1);
}

.start__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.start__field {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}
.start__label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--clr-text-2);
  text-transform: uppercase;
  margin-bottom: 8px;
}
.start__req { color: var(--clr-primary); }
.start__input {
  background: #f8fafc;
  border: 1.5px solid #e2e8f0;
  border-radius: 8px;
  padding: 12px 14px;
  font-family: inherit;
  font-size: 14px;
  color: var(--clr-text-1);
  width: 100%;
  transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}
.start__input::placeholder { color: #94a3b8; }
.start__input:focus {
  border-color: var(--clr-primary);
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(13,148,136,0.1);
}
.start__select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2364748B' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}
.start__textarea {
  resize: none;
  min-height: 88px;
  line-height: 1.6;
}
.start__submit-wrap {
  margin-top: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.start__submit {
  width: 100%;
  padding: 17px 32px;
  background: var(--clr-primary);
  color: #fff;
  border: none;
  font-family: inherit;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 8px;
  transition: background var(--tr-base), transform var(--tr-base), box-shadow var(--tr-base);
}
.start__submit:hover {
  background: var(--clr-primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(13,148,136,0.28);
}
.start__note {
  font-size: 12px;
  color: var(--clr-text-4);
  text-align: center;
  margin: 0;
  width: 100%;
}

/* Success & error states */
.start__success,
.start__error { display: none; }
.start__success:not([hidden]) { display: flex; }
.start__error:not([hidden]) { display: block; }

.start__success {
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 48px 24px;
  gap: 16px;
}
/* Video + Calendly slots inside the success state must stretch to full
   width so the 16:9 iframe inside .vtxr-confirm-video can size correctly.
   Without this they shrink to content (zero) inside the centered flex column. */
.start__video-slot,
.start__calendly-slot {
  width: 100%;
  align-self: stretch;
  display: flex;
  justify-content: center;
}
.start__success-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(13,148,136,0.1);
  color: var(--clr-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.start__success-title {
  font-size: 1.4rem;
  font-weight: 900;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--clr-text-1);
  margin: 0;
}
.start__success-body {
  font-size: 15px;
  color: var(--clr-text-3);
  line-height: 1.7;
  max-width: 340px;
  margin: 0;
}

.start__error {
  background: #fff5f5;
  border: 1px solid #fecaca;
  border-radius: 8px;
  padding: 14px 16px;
  margin-bottom: 16px;
  font-size: 13.5px;
  color: #b91c1c;
}
.start__error a { color: #b91c1c; text-decoration: underline; }

/* Loading state on button */
.start__submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

@media (max-width: 1023px) {
  .start__grid { grid-template-columns: 1fr; }
  .start__form { padding: 36px 32px; }
}
@media (max-width: 639px) {
  .start__row { grid-template-columns: 1fr; gap: 0; }
  .start__form { padding: 28px 20px; }
}

/* ═══════ FOOTER ═══════ */
.footer {
  background: #0f172a;
  color: rgba(255,255,255,0.55);
  padding: 24px 0;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.footer__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.footer__copy { color: rgba(255,255,255,0.55); }
.footer__meta {
  display: flex;
  align-items: center;
  gap: 16px;
  color: rgba(255,255,255,0.55);
}
.footer__meta a {
  color: rgba(255,255,255,0.75);
  transition: color 200ms ease;
}
.footer__meta a:hover { color: var(--clr-primary-light); }
.footer__sep { color: rgba(255,255,255,0.25); }

/* Header logo accent */
.nav__logo-text .accent { color: var(--clr-primary); }

/* ═══════ RESPONSIVE ═══════ */
@media (max-width: 1100px) {
  .hero__grid,
  .threesteps__grid,
  .assess__grid,
  .drive__grid,
  .data__grid,
  .engage__grid,
  .goals__grid { grid-template-columns: 1fr; gap: 56px; }
  .hero__sidecard { position: static; margin-top: 16px; right: auto; bottom: auto; }
  .tiers__grid { grid-template-columns: repeat(2, 1fr); }
  .addons__grid { grid-template-columns: repeat(2, 1fr); }
  .industries__grid { grid-template-columns: repeat(3, 1fr); }
  .tours__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__top { grid-template-columns: 1fr; gap: 40px; }
  .footer__cols { grid-template-columns: repeat(2, 1fr); }
  .banner__grid { grid-template-columns: repeat(2, 1fr); }
  .start__box { grid-template-columns: 1fr; padding: 40px; }
  .start__form { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  /* Stats — keep 3 in a row on mobile */
  .hero__stats,
  .threesteps__stats { grid-template-columns: repeat(3, 1fr); gap: 12px; }

  /* Buttons — side by side, wrap if needed */
  .hero__actions,
  .threesteps__actions { flex-direction: row; flex-wrap: wrap; gap: 10px; }
  .hero__actions .btn,
  .threesteps__actions .btn { flex: 1; min-width: 140px; text-align: center; justify-content: center; }

  /* Grids */
  .tiers__grid { grid-template-columns: 1fr; }
  .addons__grid { grid-template-columns: repeat(2, 1fr); }
  .industries__grid { grid-template-columns: 1fr; }
  .tours__grid { grid-template-columns: 1fr; }
  .drive__list { grid-template-columns: 1fr; }
  .banner__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__cols { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; gap: 10px; text-align: center; }

  /* Hero */
  .hero { padding-top: calc(var(--nav-height) + 2rem); padding-bottom: 2.5rem; }
  /* Mobile H1: shrink so "YOUR BUSINESS" stays on one line (3 total lines) */
  .hero__heading { font-size: clamp(2rem, 8.5vw, 2.6rem); }
  .hero__heading .grad-text { white-space: nowrap; }

  /* Section H2 headlines: hide forced <br> on mobile so the text wraps
     naturally across the full container width instead of breaking into
     5+ tiny lines. Also shrink slightly so the words actually fit. */
  br.hide-mobile { display: none; }
  .tiers__heading,
  .drive__heading {
    font-size: clamp(1.85rem, 7vw, 2.3rem);
    line-height: 1.08;
  }

  /* Sections */
  .start__heading { font-size: 2rem; }
  .start__form { padding: 24px 16px; }
  .start__row { grid-template-columns: 1fr; gap: 0; }
}

@media (max-width: 420px) {
  /* Smallest phones */
  .hero__stats,
  .threesteps__stats { grid-template-columns: repeat(3, 1fr); gap: 8px; }
  .hero__stats .hero__stat-num { font-size: 1.5rem; }
  .addons__grid { grid-template-columns: 1fr; }
  .industries__grid { grid-template-columns: 1fr; }
  .banner__grid { grid-template-columns: 1fr; }
  /* Stack CTAs full-width on small phones so neither overflows;
     keeps both centered and readable. */
  .hero__actions,
  .threesteps__actions { flex-direction: column; align-items: stretch; gap: 10px; }
  .hero__actions .btn,
  .threesteps__actions .btn { font-size: 12px; padding: 14px 16px; width: 100%; }
}

/* ==========================================================================
   Audit v2 additions — inline style refactors
   ========================================================================== */

/* "We Refuse Partnerships" highlight item */
.assess__item--highlight {
  background: #fff9d6;
  border: 2px solid #f5c518;
  border-radius: 12px;
  padding: 1rem;
}

/* Inline teal emphasis */
.text-teal-bold { color: #14b8a6; font-weight: 700; }
.text-teal { color: #14b8a6; }

/* Audited pill as clickable link */
.status--audited[href] { text-decoration: none; cursor: pointer; }

/* Yellow stat on banner */
.banner__num--yellow,
.banner__body--yellow { color: #facc15; }

/* Confidential subtext inside form title */
.start__form-title-sub {
  font-weight: 400;
  font-size: 0.85em;
  color: #64748b;
}

/* Form row modifiers */
.start__row--3col { grid-template-columns: 1fr 1fr 1fr; }
.start__row--end  { align-items: end; }
@media (max-width: 600px) {
  .start__row--3col { grid-template-columns: 1fr; }
}

/* Grey italic pre-submit note */
.start__note--muted {
  color: #94a3b8;
  font-style: italic;
  margin-bottom: 0.75rem;
}

/* Spaced-out brand mention (Section 9 audit) */
.brand-spaced {
  letter-spacing: 0.18em;
  font-weight: 700;
}

/* Email Marketing CTA → solid button (Section 6 audit) */
.channelist__btn {
  display: inline-block;
  padding: 8px 16px;
  background: #14b8a6;
  color: #fff;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.15s ease, transform 0.15s ease;
}
.channelist__btn:hover,
.channelist__btn:focus {
  background: #0d9488;
  transform: translateY(-1px);
  color: #fff;
}


/* ============================================================================
   SECTION 5B: PLACE YOUR VIRTUAL TOUR LINK EVERYWHERE - DARK CTA BANNER
   ============================================================================ */
.placetour {
  background: var(--clr-text-1);
  padding: 96px 24px;
}
.placetour__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: center;
}
.placetour__copy {
  flex: 0 0 auto;
  max-width: 560px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 40px;
}
.placetour__heading {
  font-family: var(--font-family);
  font-weight: 800;
  font-size: 48px;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: #fff;
  text-transform: uppercase;
  margin: 0;
}
.btn-outline-white {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 35px;
  font-family: var(--font-family);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #fff;
  background: transparent;
  border: 1px solid #fff;
  border-radius: 6px;
  text-decoration: none;
  transition: background 200ms ease, color 200ms ease, transform 200ms ease;
}
.btn-outline-white:hover,
.btn-outline-white:focus-visible {
  background: #fff;
  color: var(--clr-text-1);
  transform: translateY(-1px);
}
@media (max-width: 760px) {
  .btn-outline-white {
    background: #fff;
    color: var(--clr-text-1, #0F172A);
    border-color: #fff;
  }
  .groupcard__cta {
    background: var(--clr-primary, #0d9488);
    color: #fff;
    border-color: var(--clr-primary, #0d9488);
  }
}
.placetour__hub {
  flex: 0 0 auto;
  width: 530px;
  max-width: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.placetour__hub-img {
  display: block;
  width: 100%;
  height: auto;
}
.placetour__brand {
  position: absolute;
  top: 44.3%;     /* 235px / 530px from Figma */
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Inter', var(--font-family);
  font-weight: 800;
  font-size: clamp(14px, 3.8vw, 20px);
  line-height: 1;
  letter-spacing: -0.05em;
  color: #0f172a;
  text-transform: uppercase;
  white-space: nowrap;
  pointer-events: none;
}
.placetour__brand-accent {
  color: #00bfa5;
}

@media (max-width: 960px) {
  .placetour { padding: 64px 20px; }
  .placetour__inner { flex-direction: column; gap: 40px; }
  .placetour__copy { align-items: center; text-align: center; gap: 28px; }
  .placetour__heading { font-size: 34px; }
  .placetour__hub { width: 100%; max-width: 420px; }
}
@media (max-width: 760px) {
  .placetour { padding: 56px 20px; }
  .placetour__heading { font-size: 28px; line-height: 1.15; }
  /* Mobile: teal-solid CTA per Figma 1333:100 (overrides solid-white default) */
  .placetour .btn-outline-white {
    background: var(--clr-primary, #0d9488);
    color: #fff;
    border-color: var(--clr-primary, #0d9488);
    padding: 14px 40px;
    border-radius: 10px;
  }
  .placetour__hub { max-width: 320px; }
}