/* ════════════════════════════════════════════════════════════════════════════
 *  trywebcallhub — shared design system
 *  Used by every vertical demo under trywebcallhub.com.
 *
 *  Per-vertical pages override CSS variables in their own <style> block:
 *    :root {
 *      --primary: #0B1F3A;       /* main brand */
 *      --primary-deep: #061226;
 *      --accent: #00B8D9;        /* CTAs, highlights */
 *      --accent-bright: #06D6F0;
 *      --gold: #F59E0B;          /* prices, badges */
 *    }
 *
 *  All other tokens (spacing, radii, shadows, typography) stay constant
 *  so verticals share a consistent feel even when colors vary wildly.
 * ════════════════════════════════════════════════════════════════════════════ */

:root {
  /* defaults — verticals MUST override the brand palette */
  --primary: #0B1F3A;
  --primary-deep: #061226;
  --primary-soft: #1B3358;
  --accent: #00B8D9;
  --accent-bright: #06D6F0;
  --gold: #F59E0B;
  --gold-deep: #D97706;

  /* neutrals — keep constant across verticals */
  --bg: #F7FAFC;
  --bg-soft: #FFFFFF;
  --text: #0F172A;
  --text-muted: #64748B;
  --text-dim: #94A3B8;
  --border: #E2E8F0;
  --border-soft: #F1F5F9;

  /* status */
  --green: #10B981;
  --amber: #F59E0B;
  --red: #EF4444;
  --gray: #94A3B8;

  /* primitives */
  --radius: 14px;
  --radius-lg: 20px;
  --radius-sm: 8px;
  --shadow-sm: 0 1px 3px rgba(11,31,58,.06), 0 1px 2px rgba(11,31,58,.04);
  --shadow-md: 0 4px 12px rgba(11,31,58,.08), 0 2px 4px rgba(11,31,58,.04);
  --shadow-lg: 0 12px 32px rgba(11,31,58,.12), 0 4px 8px rgba(11,31,58,.06);
  --shadow-xl: 0 24px 48px rgba(11,31,58,.18);

  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* ─── Reset ──────────────────────────────────────────────────────────── */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font); color: var(--text); line-height: 1.6;
  background: var(--bg);
  -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale;
}
a { color: inherit; text-decoration: none; }
button { font-family: inherit; }
img { max-width: 100%; display: block; }

/* ─── Demo banner ────────────────────────────────────────────────────── */
.demo-banner {
  background: linear-gradient(90deg, var(--primary) 0%, var(--primary-soft) 100%);
  color: #fff; text-align: center; padding: 8px 16px; font-size: 13px; font-weight: 500;
}
.demo-banner strong { color: var(--accent-bright); }
.demo-banner a { color: #fff; text-decoration: underline; margin-left: 8px; opacity: .9; }
.demo-banner a:hover { opacity: 1; }

/* ─── Nav ───────────────────────────────────────────────────────────── */
.nav {
  background: rgba(255,255,255,.92); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border); padding: 14px 0;
  position: sticky; top: 0; z-index: 100;
}
.nav-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.brand { display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 20px; color: var(--primary); }
.brand-mark {
  width: 36px; height: 36px; border-radius: 10px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  display: flex; align-items: center; justify-content: center; color: #fff; font-size: 18px;
}
.nav-links { display: flex; gap: 28px; align-items: center; }
.nav-links a { color: var(--text); font-weight: 500; font-size: 15px; }
.nav-links a:hover { color: var(--accent); }
.nav-cta {
  background: var(--primary); color: #fff !important; padding: 10px 22px;
  border-radius: 999px; font-weight: 600; font-size: 14px;
}
.nav-cta:hover { background: var(--accent); }

/* ─── Hero ──────────────────────────────────────────────────────────── */
.hero {
  background: linear-gradient(135deg, var(--primary-deep) 0%, var(--primary) 50%, var(--primary-soft) 100%);
  color: #fff; padding: 80px 24px 100px; position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(255,255,255,.08) 0%, transparent 50%),
              radial-gradient(circle at 20% 80%, rgba(255,255,255,.05) 0%, transparent 50%);
}
.hero-inner {
  max-width: 1200px; margin: 0 auto; position: relative;
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 64px; align-items: center;
}
.hero-eyebrow {
  display: inline-block; font-size: 13px; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; color: var(--accent-bright); margin-bottom: 18px;
}
.hero h1 {
  font-size: 56px; font-weight: 800; line-height: 1.05;
  margin-bottom: 20px; letter-spacing: -.02em;
}
.hero h1 .accent {
  background: linear-gradient(90deg, var(--accent-bright) 0%, var(--accent) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero p { font-size: 19px; opacity: .85; margin-bottom: 32px; max-width: 540px; }
.hero-stats {
  display: flex; gap: 32px; margin-top: 40px; padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,.15);
}
.hero-stat-num { font-size: 28px; font-weight: 800; color: var(--accent-bright); }
.hero-stat-label { font-size: 13px; opacity: .7; margin-top: 2px; }
.hero-card {
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-lg); padding: 6px; backdrop-filter: blur(20px);
  box-shadow: var(--shadow-xl);
}
.hero-card-img {
  width: 100%; aspect-ratio: 16/10; object-fit: cover; border-radius: 16px;
}
.hero-card-meta {
  padding: 20px 16px 16px; display: flex; justify-content: space-between; align-items: flex-end;
}
.hero-card-title { font-size: 18px; font-weight: 700; color: #fff; }
.hero-card-sub { font-size: 13px; color: rgba(255,255,255,.65); margin-top: 2px; }
.hero-card-price { font-size: 24px; font-weight: 800; color: var(--gold); }

/* ─── Buttons ───────────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 28px; border-radius: 999px; font-weight: 600; font-size: 15px;
  border: none; cursor: pointer; transition: transform .15s, box-shadow .2s, background .2s;
  text-decoration: none;
}
.btn-primary {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-bright) 100%);
  color: var(--primary-deep); box-shadow: 0 6px 20px rgba(0,184,217,.4);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(0,184,217,.55); }
.btn-ghost { background: rgba(255,255,255,.1); color: #fff; border: 1px solid rgba(255,255,255,.2); }
.btn-ghost:hover { background: rgba(255,255,255,.18); }
.btn-outline { background: transparent; color: var(--primary); border: 2px solid var(--primary); }
.btn-outline:hover { background: var(--primary); color: #fff; }
.btn-gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-deep) 100%);
  color: #fff; box-shadow: 0 6px 20px rgba(245,158,11,.35);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(245,158,11,.5); }

/* ─── Sections ──────────────────────────────────────────────────────── */
.section { padding: 96px 24px; }
.section-tight { padding: 64px 24px; }
.section-alt { background: var(--bg-soft); }
.container { max-width: 1200px; margin: 0 auto; }
.section-eyebrow {
  display: inline-block; font-size: 13px; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; color: var(--accent); margin-bottom: 14px;
}
.section-title { font-size: 40px; font-weight: 800; line-height: 1.15; letter-spacing: -.015em; margin-bottom: 14px; }
.section-sub { font-size: 18px; color: var(--text-muted); max-width: 640px; margin-bottom: 56px; }
.section-head { text-align: center; margin-bottom: 56px; }
.section-head .section-sub { margin-left: auto; margin-right: auto; }

/* ─── Why-call grid ─────────────────────────────────────────────────── */
.why-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 28px;
}
.why-card {
  background: var(--bg-soft); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 32px 28px; transition: border-color .2s, transform .2s;
}
.why-card:hover { border-color: var(--accent); transform: translateY(-2px); }
.why-icon {
  width: 48px; height: 48px; border-radius: 12px; display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%); color: #fff; font-size: 22px;
  margin-bottom: 18px;
}
.why-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 8px; color: var(--text); }
.why-card p { font-size: 14px; color: var(--text-muted); line-height: 1.6; }

/* ─── Inventory grid (cars / properties / appointments / cases / etc.) ─ */
.inventory-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px;
}
.inv-card {
  background: var(--bg-soft); border: 1px solid var(--border); border-radius: var(--radius);
  overflow: hidden; transition: transform .2s, box-shadow .2s, border-color .2s;
  display: flex; flex-direction: column;
}
.inv-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--accent); }
.inv-img-wrap { position: relative; aspect-ratio: 16/10; overflow: hidden; background: var(--border-soft); }
.inv-img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.inv-card:hover .inv-img { transform: scale(1.05); }
.inv-badge {
  position: absolute; top: 12px; left: 12px;
  background: var(--gold); color: #fff; font-size: 11px; font-weight: 700;
  padding: 4px 12px; border-radius: 999px; letter-spacing: .03em;
}
.inv-badge.green { background: var(--green); }
.inv-badge.red { background: var(--red); }
.inv-badge.primary { background: var(--primary); }
.inv-body { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.inv-title { font-size: 17px; font-weight: 700; color: var(--text); margin-bottom: 4px; }
.inv-sub { font-size: 13px; color: var(--text-muted); margin-bottom: 14px; }
.inv-specs {
  display: flex; gap: 14px; flex-wrap: wrap; font-size: 12px; color: var(--text-muted);
  margin-bottom: 16px;
}
.inv-specs span { display: flex; align-items: center; gap: 4px; }
.inv-foot { display: flex; align-items: center; justify-content: space-between; margin-top: auto; padding-top: 14px; border-top: 1px solid var(--border-soft); }
.inv-price { font-size: 22px; font-weight: 800; color: var(--primary); }
.inv-price-sub { font-size: 11px; color: var(--text-muted); font-weight: 500; text-transform: uppercase; letter-spacing: .04em; }
.inv-call-btn {
  background: var(--primary); color: #fff; border: none; padding: 9px 16px; border-radius: 999px;
  font-weight: 600; font-size: 13px; cursor: pointer; transition: background .2s, transform .15s;
  display: inline-flex; align-items: center; gap: 6px;
}
.inv-call-btn:hover { background: var(--accent); transform: scale(1.04); }
.inv-call-btn svg { width: 14px; height: 14px; fill: currentColor; }

/* ─── Agents grid (the star — sellers/doctors/lawyers/advisors) ────── */
.agents-section {
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-soft) 100%);
}
.agents-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 24px;
}
.agent-card {
  background: var(--bg-soft); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 24px 20px; text-align: center; transition: transform .2s, box-shadow .2s, border-color .2s;
  position: relative;
}
.agent-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--accent); }
.agent-photo-wrap { position: relative; width: 120px; height: 120px; margin: 0 auto 14px; }
.agent-photo {
  width: 100%; height: 100%; border-radius: 50%; object-fit: cover;
  border: 4px solid var(--bg-soft); box-shadow: var(--shadow-md);
}
.agent-presence {
  position: absolute; bottom: 4px; right: 4px; width: 20px; height: 20px;
  border-radius: 50%; border: 3px solid var(--bg-soft);
}
.agent-presence.online { background: var(--green); animation: pulse 2s infinite; }
.agent-presence.away { background: var(--amber); }
.agent-presence.offline { background: var(--gray); }
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(16,185,129,.6), 0 0 0 3px var(--bg-soft); }
  50% { box-shadow: 0 0 0 6px rgba(16,185,129,0), 0 0 0 3px var(--bg-soft); }
}
.agent-name { font-size: 16px; font-weight: 700; color: var(--text); margin-bottom: 2px; }
.agent-role { font-size: 13px; color: var(--accent); font-weight: 500; margin-bottom: 4px; }
.agent-status {
  font-size: 12px; color: var(--text-muted); margin-bottom: 16px;
  display: inline-flex; align-items: center; gap: 5px;
}
.agent-status .dot { width: 6px; height: 6px; border-radius: 50%; }
.agent-status.online .dot { background: var(--green); }
.agent-status.away .dot { background: var(--amber); }
.agent-status.offline .dot { background: var(--gray); }
.agent-actions { display: flex; gap: 8px; justify-content: center; }
.agent-call-btn {
  flex: 1; background: var(--primary); color: #fff; border: none; padding: 10px 12px;
  border-radius: 10px; font-weight: 600; font-size: 13px; cursor: pointer;
  transition: background .2s, transform .15s; display: inline-flex; align-items: center; justify-content: center; gap: 6px;
}
.agent-call-btn:hover { background: var(--accent); transform: scale(1.03); }
.agent-call-btn svg { width: 14px; height: 14px; fill: currentColor; }
.agent-call-btn:disabled { background: var(--border); color: var(--text-dim); cursor: not-allowed; transform: none; }
.agent-wa-btn {
  background: #25D366; color: #fff; border: none; width: 38px; height: 38px;
  border-radius: 10px; cursor: pointer; display: inline-flex; align-items: center; justify-content: center;
  transition: background .2s, transform .15s;
}
.agent-wa-btn:hover { background: #1EBE5D; transform: scale(1.05); }
.agent-wa-btn svg { width: 18px; height: 18px; fill: #fff; }

/* ─── Testimonials ──────────────────────────────────────────────────── */
.testimonials-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px;
}
.testimonial {
  background: var(--bg-soft); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 28px; position: relative;
}
.testimonial::before {
  content: '"'; position: absolute; top: 12px; left: 20px;
  font-size: 60px; color: var(--accent); opacity: .25; line-height: 1; font-family: Georgia, serif;
}
.testimonial-text { font-size: 15px; line-height: 1.7; color: var(--text); margin-bottom: 16px; position: relative; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar { width: 40px; height: 40px; border-radius: 50%; object-fit: cover; }
.testimonial-name { font-size: 14px; font-weight: 700; }
.testimonial-meta { font-size: 12px; color: var(--text-muted); }

/* ─── WebCallHub CTA section (bottom of every vertical page) ───────── */
.wch-cta {
  background: linear-gradient(135deg, var(--primary-deep) 0%, var(--primary) 100%);
  color: #fff; padding: 80px 24px; position: relative; overflow: hidden;
}
.wch-cta::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 70% 30%, rgba(0,184,217,.18) 0%, transparent 60%);
}
.wch-cta-inner { max-width: 900px; margin: 0 auto; text-align: center; position: relative; }
.wch-cta-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(0,184,217,.15); border: 1px solid rgba(0,184,217,.3);
  color: var(--accent-bright); padding: 6px 16px; border-radius: 999px;
  font-size: 13px; font-weight: 600; margin-bottom: 20px;
}
.wch-cta h2 { font-size: 44px; font-weight: 800; line-height: 1.1; margin-bottom: 16px; letter-spacing: -.02em; }
.wch-cta h2 .accent {
  background: linear-gradient(90deg, var(--accent-bright) 0%, var(--gold) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.wch-cta p { font-size: 18px; opacity: .8; max-width: 600px; margin: 0 auto 36px; }
.wch-cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.wch-cta-features {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 24px; margin-top: 56px; max-width: 800px; margin-left: auto; margin-right: auto;
}
.wch-cta-feature { text-align: left; }
.wch-cta-feature .check {
  display: inline-flex; align-items: center; justify-content: center;
  width: 24px; height: 24px; border-radius: 50%; background: var(--accent); color: var(--primary-deep);
  font-weight: 800; margin-bottom: 8px; font-size: 14px;
}
.wch-cta-feature h4 { font-size: 15px; font-weight: 700; margin-bottom: 4px; }
.wch-cta-feature p { font-size: 13px; opacity: .75; line-height: 1.5; margin: 0; }

/* ─── Footer ────────────────────────────────────────────────────────── */
.footer { background: var(--primary-deep); color: rgba(255,255,255,.6); padding: 48px 24px 28px; }
.footer-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px;
}
.footer-brand { display: flex; align-items: center; gap: 10px; color: #fff; font-weight: 800; font-size: 18px; margin-bottom: 14px; }
.footer p { font-size: 13px; line-height: 1.6; max-width: 320px; }
.footer h5 { color: #fff; font-size: 14px; margin-bottom: 14px; font-weight: 700; }
.footer a { display: block; color: rgba(255,255,255,.65); padding: 4px 0; font-size: 13px; }
.footer a:hover { color: var(--accent-bright); }
.footer-bottom {
  max-width: 1200px; margin: 32px auto 0; padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.1); font-size: 12px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
}
.footer-bottom .powered { color: var(--accent-bright); font-weight: 600; }

/* ─── Pre-call modal ────────────────────────────────────────────────── */
.precall-backdrop {
  position: fixed; inset: 0; background: rgba(11,31,58,.7); backdrop-filter: blur(6px);
  z-index: 9998; display: none; align-items: center; justify-content: center; padding: 16px;
}
.precall-backdrop.open { display: flex; }
.precall-modal {
  background: #fff; border-radius: var(--radius-lg); width: 100%; max-width: 440px;
  box-shadow: var(--shadow-xl); overflow: hidden; animation: modalIn .25s ease-out;
}
@keyframes modalIn { from { opacity: 0; transform: translateY(20px) scale(.96); } to { opacity: 1; transform: translateY(0) scale(1); } }
.precall-header {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-soft) 100%);
  color: #fff; padding: 28px 24px; text-align: center; position: relative;
}
.precall-close {
  position: absolute; top: 12px; right: 12px;
  width: 32px; height: 32px; border-radius: 50%; background: rgba(255,255,255,.15);
  color: #fff; border: none; font-size: 18px; cursor: pointer;
  display: flex; align-items: center; justify-content: center; transition: background .2s;
}
.precall-close:hover { background: rgba(255,255,255,.25); }
.precall-photo {
  width: 76px; height: 76px; border-radius: 50%; border: 3px solid #fff;
  margin: 0 auto 12px; object-fit: cover; box-shadow: var(--shadow-md);
}
.precall-title { font-size: 20px; font-weight: 700; margin-bottom: 4px; }
.precall-role { font-size: 13px; opacity: .8; }
.precall-body { padding: 28px 24px 24px; }
.precall-body p { font-size: 14px; color: var(--text-muted); margin-bottom: 18px; }
.precall-listing-chip {
  background: var(--bg); border: 1px solid var(--border); border-radius: 10px;
  padding: 10px 14px; font-size: 13px; color: var(--text); margin-bottom: 18px;
  display: flex; align-items: center; gap: 10px;
}
.precall-listing-chip .chip-icon { font-size: 18px; }
.precall-form label {
  display: block; font-size: 12px; font-weight: 600; color: var(--text);
  margin-bottom: 6px; text-transform: uppercase; letter-spacing: .04em;
}
.precall-form input {
  width: 100%; padding: 12px 14px; border: 1px solid var(--border); border-radius: 10px;
  font-size: 15px; font-family: inherit; outline: none; margin-bottom: 14px;
  transition: border-color .2s, box-shadow .2s;
}
.precall-form input:focus { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(0,184,217,.15); }
.precall-form .optional { color: var(--text-dim); font-weight: 400; text-transform: none; letter-spacing: 0; }
.precall-actions { display: flex; gap: 10px; margin-top: 8px; }
.precall-btn {
  flex: 1; padding: 13px 18px; border-radius: 10px; border: none; font-weight: 600;
  font-size: 15px; cursor: pointer; transition: background .2s, transform .15s;
}
.precall-btn-primary {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-bright) 100%);
  color: var(--primary-deep);
}
.precall-btn-primary:hover { transform: translateY(-1px); box-shadow: 0 6px 16px rgba(0,184,217,.4); }
.precall-btn-secondary { background: var(--bg); color: var(--text); flex: 0 0 auto; padding-left: 20px; padding-right: 20px; }
.precall-btn-secondary:hover { background: var(--border-soft); }
.precall-trust {
  margin-top: 16px; font-size: 12px; color: var(--text-dim); text-align: center;
  display: flex; align-items: center; justify-content: center; gap: 6px;
}

/* ─── Call iframe wrap ──────────────────────────────────────────────── */
.call-iframe-wrap {
  position: fixed; bottom: 24px; right: 24px;
  width: 380px; height: 580px; border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl); background: #fff; overflow: hidden;
  z-index: 9997; display: none;
}
.call-iframe-wrap.open { display: block; }
.call-iframe-wrap iframe { width: 100%; height: 100%; border: 0; }
.call-iframe-close {
  position: absolute; top: 8px; right: 8px;
  width: 32px; height: 32px; border-radius: 50%; background: rgba(0,0,0,.55);
  color: #fff; border: none; font-size: 16px; cursor: pointer; z-index: 2;
}

/* ─── Vertical-switcher chip (shown on every demo for cross-nav) ───── */
.vertical-switcher {
  position: fixed; bottom: 24px; left: 24px; z-index: 9996;
  background: rgba(11,31,58,.92); color: #fff; padding: 10px 16px; border-radius: 999px;
  font-size: 13px; font-weight: 500; backdrop-filter: blur(8px);
  display: inline-flex; align-items: center; gap: 8px; box-shadow: var(--shadow-lg);
  text-decoration: none; transition: background .2s, transform .15s;
}
.vertical-switcher:hover { background: rgba(11,31,58,1); transform: translateY(-1px); }
.vertical-switcher .arrow { color: var(--accent-bright); }

/* ─── Mobile ────────────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero h1 { font-size: 38px; }
  .nav-links { display: none; }
  .nav-links .nav-cta { display: inline-flex; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .section-title, .wch-cta h2 { font-size: 30px; }
  .section { padding: 64px 24px; }
  .call-iframe-wrap { width: calc(100vw - 16px); height: calc(100vh - 120px); bottom: 100px; right: 8px; }
  .vertical-switcher { bottom: 80px; }
}
@media (max-width: 560px) {
  .footer-inner { grid-template-columns: 1fr; }
  .hero-stats { gap: 20px; }
  .hero-stat-num { font-size: 22px; }
  .demo-banner { font-size: 12px; }
}
