@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

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

:root {
  --blue: #2563eb;
  --blue-dark: #1d4ed8;
  --text: #1a1a1a;
  --text-muted: #4b5563;
  --bg: #ffffff;
  --bg-alt: #f9fafb;
  --border: #e5e7eb;
  --max: 820px;
}

html { font-size: 18px; scroll-behavior: smooth; }
body { font-family: 'Inter', system-ui, Arial, sans-serif; color: var(--text); background: var(--bg); line-height: 1.65; }

/* ── Layout ── */
.container { max-width: var(--max); margin: 0 auto; padding: 0 24px; }
section { padding: 72px 0; scroll-margin-top: 69px; }
section:nth-child(even) { background: var(--bg-alt); }

/* ── Nav ── */
header { position: sticky; top: 0; z-index: 100; background: rgba(255,255,255,0.92); backdrop-filter: blur(12px); border-bottom: 1px solid var(--border); }
nav {
  padding: 16px 24px;
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  font-size: 1.1rem; font-weight: 700; color: var(--blue);
  text-decoration: none; letter-spacing: -0.02em;
  display: flex; align-items: center; gap: 8px;
}
/* Crop whitespace from RL.png — letters ~y:130–380, x:95–405 of 500x500 canvas */
/* Rendered at 90px tall (0.18×): letters span y:23–68, x:17–73 → 45×51px visible */
.logo-mark-wrap {
  display: inline-block;
  width: 56px;
  height: 46px;
  overflow: hidden;
  flex-shrink: 0;
}
.logo-mark {
  height: 90px;
  width: auto;
  margin-top: -23px;
  margin-left: -16px;
  display: block;
}
.nav-links { display: flex; align-items: center; gap: 24px; }
.nav-link {
  font-size: 0.88rem; font-weight: 500;
  color: var(--text-muted); text-decoration: none;
  transition: color 0.15s;
}
.nav-link:hover { color: var(--blue); }

/* ── Buttons ── */
.btn {
  display: inline-block;
  background: var(--blue);
  color: white;
  font-size: 1rem;
  font-weight: 600;
  padding: 16px 32px;
  border-radius: 8px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  line-height: 1;
  min-height: 52px;
  transition: background 0.15s;
}
.btn:hover { background: var(--blue-dark); }
.nav-btn { font-size: 0.88rem; padding: 10px 20px; min-height: auto; border-radius: 8px; }
.no-contract { margin-top: 12px; font-size: 0.85rem; color: var(--text-muted); }

/* ── Section text ── */
h2 { font-size: 1.9rem; font-weight: 700; line-height: 1.25; letter-spacing: -0.025em; margin-bottom: 24px; }
p.section-close { margin-top: 24px; font-size: 1rem; color: var(--text-muted); font-style: italic; }

/* ── Bullet lists with Iconoir ── */
.bullet-list { list-style: none; display: flex; flex-direction: column; gap: 16px; margin: 24px 0; }
.bullet-list li { display: flex; align-items: flex-start; gap: 14px; font-size: 1rem; }
.bullet-list li .icon {
  flex-shrink: 0; width: 36px; height: 36px;
  background: #dbeafe; color: var(--blue);
  border-radius: 10px; display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; margin-top: 1px;
}
.bullet-list li .icon i { font-size: 1.1rem; }
.bullet-list.problem li .icon { background: #fee2e2; color: #dc2626; }

/* ── Hero ── */
#hero { padding: 80px 0 72px; }
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 270px;
  gap: 48px;
  align-items: center;
}
#hero h1 { font-size: 2.3rem; font-weight: 700; line-height: 1.2; letter-spacing: -0.03em; margin-bottom: 20px; }
#hero p.sub { font-size: 1.05rem; color: var(--text-muted); margin-bottom: 32px; line-height: 1.7; }
.hero-phone-wrap { display: flex; justify-content: center; align-items: center; }

/* ── Phone Wrap (SVG overlay approach) ── */
.phone-wrap {
  position: relative;
  width: 220px;
  flex-shrink: 0;
}
.phone-wrap.large { width: 256px; }

.phone-frame-img {
  width: 100%;
  height: auto;
  display: block;
  position: relative;
  z-index: 2;
  pointer-events: none;
  user-select: none;
  /* Shadow moved to ::after so it can't bleed inside the transparent screen */
}

/* Phone outer shadow — sits behind everything, no inner bleed */
.phone-wrap::after {
  content: '';
  position: absolute;
  top: 3%;
  left: 5%;
  width: 90%;
  height: 94%;
  z-index: 0;
  border-radius: 20px;
  box-shadow: 0 18px 44px rgba(0,0,0,0.52), 0 5px 14px rgba(0,0,0,0.32);
  pointer-events: none;
}

.phone-content {
  position: absolute;
  /* Screen flanks Dynamic Island — starts at top transparent edge */
  top: 1.7%;
  left: 4%;
  width: 91.8%;
  height: 96.3%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background: #ffffff;
  z-index: 1;
  border-radius: 36px;
}

/* ── iPhone status bar ── */
.phone-status-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 4px 14px 2px;
  flex-shrink: 0;
  background: white;
  min-height: 20px;
}
.phone-time {
  font-size: 0.62rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.01em;
}
.phone-status-right {
  display: flex;
  align-items: center;
  gap: 3px;
}
.psi-signal {
  display: flex;
  align-items: flex-end;
  gap: 1.5px;
  height: 7px;
}
.psi-signal span {
  width: 2px;
  background: var(--text);
  border-radius: 0.5px;
  display: block;
}
.psi-signal span:nth-child(1) { height: 3px; }
.psi-signal span:nth-child(2) { height: 5px; }
.psi-signal span:nth-child(3) { height: 7px; }
.psi-battery {
  width: 13px; height: 7px;
  border: 1.5px solid var(--text);
  border-radius: 2px;
  position: relative;
  display: flex;
  align-items: stretch;
  padding: 1px;
}
.psi-battery::after {
  content: '';
  position: absolute;
  right: -3.5px; top: 50%;
  transform: translateY(-50%);
  width: 2px; height: 4px;
  background: var(--text);
  border-radius: 0 1px 1px 0;
}
.psi-battery span {
  width: 75%; height: 100%;
  background: var(--text);
  border-radius: 1px;
}

/* ── Phone UI inside screen ── */
.phone-bar {
  background: #ffffff;
  padding: 6px 10px 7px;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.phone-back {
  color: #007aff;
  font-size: 1.3rem;
  font-weight: 300;
  line-height: 1;
  width: 20px;
  flex-shrink: 0;
}
.phone-contact-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1px;
  flex: 1;
}
.phone-video-btn {
  color: #007aff;
  width: 20px;
  flex-shrink: 0;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.phone-video-btn i { font-size: 0.9rem; }
.phone-avatar-sm {
  width: 28px; height: 28px;
  background: var(--blue); color: white;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.52rem; font-weight: 700; flex-shrink: 0;
  margin-bottom: 1px;
}
.phone-cname { color: var(--text); font-size: 0.65rem; font-weight: 600; }
.phone-online { color: #8e8e93; font-size: 0.54rem; display: flex; align-items: center; gap: 3px; }
.dot-online { width: 5px; height: 5px; background: #4ade80; border-radius: 50%; display: inline-block; }

.phone-msgs {
  flex: 1;
  overflow-y: auto;
  padding: 10px 7px 6px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 3px;
}
.phone-msgs::-webkit-scrollbar { display: none; }
.phone-msgs { scrollbar-width: none; }

.phone-input-bar {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 6px 8px;
  border-top: 1px solid rgba(0,0,0,0.06);
  flex-shrink: 0;
  background: #ffffff;
}
.phone-plus {
  width: 18px; height: 18px;
  border: 1.5px solid #8e8e93;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.7rem; color: #8e8e93; flex-shrink: 0;
  line-height: 1; font-weight: 300;
}
.phone-input-fake {
  flex: 1;
  background: white;
  border: 1px solid rgba(0,0,0,0.12);
  border-radius: 16px;
  padding: 5px 10px;
  font-size: 0.6rem;
  color: #c7c7cc;
}
.phone-mic {
  color: #8e8e93;
  font-size: 0.75rem;
  display: flex; align-items: center;
  flex-shrink: 0;
}
.phone-mic i { font-size: 0.75rem; }

/* ── Large phone scaling (demo phone 256px vs hero 220px) ── */
.phone-wrap.large .phone-status-bar { padding: 5px 16px 3px; min-height: 23px; }
.phone-wrap.large .phone-time { font-size: 0.74rem; }
.phone-wrap.large .psi-signal { height: 10px; }
.phone-wrap.large .psi-signal span:nth-child(1) { height: 4px; }
.phone-wrap.large .psi-signal span:nth-child(2) { height: 7px; }
.phone-wrap.large .psi-signal span:nth-child(3) { height: 10px; }
.phone-wrap.large .psi-battery { width: 17px; height: 9px; }
.phone-wrap.large .phone-bar { padding: 9px 14px 10px; }
.phone-wrap.large .phone-avatar-sm { width: 40px; height: 40px; font-size: 0.66rem; margin-bottom: 2px; }
.phone-wrap.large .phone-cname { font-size: 0.82rem; }
.phone-wrap.large .phone-online { font-size: 0.68rem; }
.phone-wrap.large .phone-back { font-size: 1.8rem; }
.phone-wrap.large .phone-video-btn i { font-size: 1.1rem; }
.phone-wrap.large .pbubble { font-size: 0.79rem; padding: 8px 12px; }
.phone-wrap.large .phone-msgs { padding: 12px 9px 7px; gap: 4px; }
.phone-wrap.large .phone-input-bar { padding: 7px 10px; }
.phone-wrap.large .phone-input-fake { font-size: 0.7rem; padding: 6px 12px; }
.phone-wrap.large .phone-plus { width: 22px; height: 22px; font-size: 0.82rem; }
.phone-wrap.large .phone-mic i { font-size: 0.9rem; }
.phone-wrap.large .msg-typing { padding: 10px 14px; }
.phone-wrap.large .msg-typing span { width: 7px; height: 7px; }

/* ── Chat messages inside phone ── */
.pmsg { display: flex; margin: 2px 3px; animation: msgIn 0.25s ease both; }
.pmsg-bot { justify-content: flex-start; }
.pmsg-customer { justify-content: flex-end; }

.pbubble {
  max-width: 80%;
  padding: 7px 10px;
  border-radius: 14px;
  font-size: 0.68rem;
  line-height: 1.45;
  word-break: break-word;
}
.pmsg-customer .pbubble { background: var(--blue); color: white; border-bottom-right-radius: 3px; }
.pmsg-bot .pbubble { background: #f3f4f6; color: var(--text); border-bottom-left-radius: 3px; }

@keyframes msgIn {
  from { opacity: 0; transform: translateY(5px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── Typing indicator ── */
.msg-typing {
  display: flex; gap: 4px;
  padding: 9px 12px;
  background: #f3f4f6;
  border-radius: 14px 14px 14px 3px;
  margin: 2px 3px;
  width: fit-content;
}
/* Outgoing typing (business owner view — bot reply is outgoing/right) */
.msg-typing.msg-typing-out {
  background: var(--blue);
  border-radius: 14px 14px 3px 14px;
  align-self: flex-end;
}
.msg-typing.msg-typing-out span { background: rgba(255,255,255,0.8); }
.msg-typing span {
  width: 6px; height: 6px;
  background: #9ca3af;
  border-radius: 50%;
  animation: typingBounce 1.1s infinite;
}
.msg-typing span:nth-child(2) { animation-delay: 0.18s; }
.msg-typing span:nth-child(3) { animation-delay: 0.36s; }

@keyframes typingBounce {
  0%, 60%, 100% { transform: translateY(0); }
  30% { transform: translateY(-5px); }
}

/* ── Demo Section ── */
#demo { background: var(--bg-alt); }
.demo-container {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 64px;
  align-items: start;
}
.demo-text { padding-top: 4px; }
.demo-sub { color: var(--text-muted); max-width: 400px; margin-bottom: 0; line-height: 1.6; font-size: 0.95rem; }
.demo-phone-wrap { display: flex; justify-content: center; padding-top: 8px; }

/* ── Business type tabs ── */
.biz-tabs { display: flex; gap: 8px; flex-wrap: wrap; margin: 24px 0 20px; }
.biz-tab {
  background: white;
  border: 2px solid var(--border);
  border-radius: 8px;
  padding: 8px 14px;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  color: var(--text-muted);
  transition: all 0.15s;
  font-family: inherit;
  display: flex; align-items: center; gap: 6px;
}
.biz-tab i { font-size: 0.95rem; }
.biz-tab:hover { border-color: var(--blue); color: var(--blue); }
.biz-tab.active { background: #dbeafe; border-color: var(--blue); color: var(--blue); }

/* ── Audio demo ── */
.audio-demo { display: flex; align-items: center; gap: 14px; margin-top: 4px; }
.audio-btn {
  display: flex; align-items: center; gap: 10px;
  background: white;
  border: 2px solid var(--border);
  border-radius: 50px;
  padding: 12px 20px;
  font-size: 0.88rem; font-weight: 600;
  cursor: pointer; color: var(--text);
  transition: all 0.15s; font-family: inherit;
}
.audio-btn:hover { border-color: var(--blue); color: var(--blue); }
.audio-btn.playing { background: #dbeafe; border-color: var(--blue); color: var(--blue); }
.play-icon { font-size: 0.65rem; }

.audio-wave { display: none; align-items: flex-end; gap: 2px; height: 22px; }
.audio-wave.active { display: flex; }
.audio-wave span {
  width: 3px; background: var(--blue); border-radius: 2px;
  animation: waveBar 0.9s ease-in-out infinite;
}
.audio-wave span:nth-child(1)  { height: 6px;  animation-delay: 0s; }
.audio-wave span:nth-child(2)  { height: 12px; animation-delay: 0.09s; }
.audio-wave span:nth-child(3)  { height: 18px; animation-delay: 0.18s; }
.audio-wave span:nth-child(4)  { height: 22px; animation-delay: 0.27s; }
.audio-wave span:nth-child(5)  { height: 16px; animation-delay: 0.36s; }
.audio-wave span:nth-child(6)  { height: 22px; animation-delay: 0.45s; }
.audio-wave span:nth-child(7)  { height: 18px; animation-delay: 0.54s; }
.audio-wave span:nth-child(8)  { height: 12px; animation-delay: 0.63s; }
.audio-wave span:nth-child(9)  { height: 8px;  animation-delay: 0.72s; }
.audio-wave span:nth-child(10) { height: 4px;  animation-delay: 0.81s; }

@keyframes waveBar {
  0%, 100% { transform: scaleY(0.3); }
  50%       { transform: scaleY(1); }
}

.audio-note { font-size: 0.72rem; color: #9ca3af; margin-top: 10px; }

/* ── Who It's For ── */
.biz-tags { display: flex; flex-wrap: wrap; gap: 10px; margin: 16px 0; }
.biz-tag {
  background: #dbeafe; color: var(--blue);
  padding: 7px 16px; border-radius: 100px;
  font-size: 0.85rem; font-weight: 500;
}

/* ── What We Replace ── */
#replace { background: var(--bg); }
.replace-table { display: flex; flex-direction: column; gap: 14px; max-width: 720px; }
.replace-row {
  display: grid;
  grid-template-columns: 1fr 36px 1fr;
  align-items: center;
  gap: 12px;
  background: #f9fafb;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 20px 24px;
}
.replace-old, .replace-new { display: flex; align-items: center; gap: 12px; }
.rx, .rcheck {
  width: 30px; height: 30px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.72rem; font-weight: 700; flex-shrink: 0;
}
.rx { background: #fee2e2; color: #dc2626; }
.rcheck { background: #d1fae5; color: #059669; }
.replace-old div, .replace-new div { display: flex; flex-direction: column; gap: 3px; }
.replace-old div strong, .replace-new div strong { font-size: 0.88rem; font-weight: 600; }
.replace-old div span, .replace-new div span { font-size: 0.75rem; color: var(--text-muted); }
.replace-vs { font-size: 1.3rem; color: var(--blue); font-weight: 700; text-align: center; }

/* ── Pricing Tiers ── */
#pricing { background: var(--bg-alt); }
.pricing-tiers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 780px;
  margin: 0 auto;
  text-align: left;
}
.pricing-card {
  border: 2px solid var(--border);
  border-radius: 16px;
  padding: 28px 22px 24px;
  display: flex;
  flex-direction: column;
  position: relative;
  background: white;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.pricing-card:hover { border-color: #93c5fd; }
.pricing-card.popular {
  border-color: var(--blue);
  box-shadow: 0 4px 28px rgba(37,99,235,0.14);
}
.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--blue);
  color: white;
  font-size: 0.68rem;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 100px;
  letter-spacing: 0.04em;
  white-space: nowrap;
}
.pricing-name {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--text);
  letter-spacing: -0.01em;
}
.pricing-tagline {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 14px;
  line-height: 1.4;
}
.pricing-setup-row {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 6px;
}
.pricing-setup-row strong { color: var(--text); }
.pricing-price {
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 18px;
  letter-spacing: -0.03em;
  line-height: 1;
}
/* Margin breakdown table */
.pricing-margin-table {
  margin: 36px auto 0;
  max-width: 560px;
  background: white;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px 24px;
  text-align: left;
}
.pmt-title {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 14px;
  text-align: center;
}
.pmt-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 8px 12px;
  font-size: 0.82rem;
}
.pmt-head {
  font-weight: 600;
  color: var(--text-muted);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--border);
}
.pmt-grid > div:not(.pmt-head) {
  color: var(--text-muted);
  padding: 3px 0;
}
.pmt-margin { color: #059669; font-weight: 600; }
.pricing-price span {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
}
.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
  flex: 1;
}
.pricing-features li {
  font-size: 0.83rem;
  color: var(--text-muted);
  padding-left: 20px;
  position: relative;
  line-height: 1.4;
}
.pricing-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #059669;
  font-weight: 700;
  font-size: 0.8rem;
}
.pricing-btn {
  text-align: center;
  padding: 13px 20px;
  font-size: 0.9rem;
  min-height: auto;
  width: 100%;
  display: block;
}
.pricing-btn.outline {
  background: transparent;
  color: var(--blue);
  border: 2px solid var(--blue);
  padding: 11px 20px;
}
.pricing-btn.outline:hover { background: var(--blue); color: white; }

/* ── Process ── */
.steps { display: flex; flex-direction: column; gap: 28px; margin: 32px 0; }
.step { display: flex; gap: 20px; align-items: flex-start; }
.step-num {
  flex-shrink: 0; width: 40px; height: 40px;
  background: var(--blue); color: white;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 1rem;
}
.step-text strong { display: block; font-size: 1rem; font-weight: 600; margin-bottom: 4px; }
.step-text span { font-size: 0.88rem; color: var(--text-muted); }

/* ── Trust ── */
.trust-list { display: flex; flex-direction: column; gap: 20px; margin: 24px 0; }
.trust-item { display: flex; align-items: center; gap: 14px; font-size: 1rem; }
.trust-item .check {
  width: 28px; height: 28px;
  background: #d1fae5; color: #059669;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem; flex-shrink: 0;
}

/* ── Final CTA ── */
#final-cta { text-align: center; background: var(--blue); padding: 80px 24px; }
#final-cta h2 { color: white; font-size: 2rem; }
#final-cta .btn { background: white; color: var(--blue); margin-top: 28px; font-size: 1.05rem; }
#final-cta .btn:hover { background: #f0f9ff; }
#final-cta .cta-sub { margin-top: 14px; color: rgba(255,255,255,0.75); font-size: 0.9rem; }

/* ── Footer ── */
footer { background: #111827; color: #9ca3af; padding: 40px 24px; text-align: center; font-size: 0.85rem; }
footer .footer-name { font-size: 1rem; font-weight: 700; color: white; margin-bottom: 8px; }
footer a { color: #93c5fd; text-decoration: none; }
footer a:hover { text-decoration: underline; }
footer .footer-tagline { margin-top: 6px; font-size: 0.8rem; }
footer .footer-copy { margin-top: 16px; font-size: 0.78rem; color: #6b7280; }

/* ── Business Type Popup Modal ── */
.biz-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(4px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  animation: fadeIn 0.2s ease;
}
.biz-modal-overlay.hidden { display: none; }

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.biz-modal {
  background: white;
  border-radius: 20px;
  padding: 40px 36px;
  max-width: 560px;
  width: 100%;
  box-shadow: 0 24px 64px rgba(0,0,0,0.18);
  animation: slideUp 0.25s ease;
}

@keyframes slideUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.biz-modal h2 {
  font-size: 1.4rem;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}
.biz-modal .modal-sub {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 28px;
  line-height: 1.5;
}

.biz-modal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.biz-modal-option {
  border: 2px solid var(--border);
  border-radius: 12px;
  padding: 16px 12px;
  cursor: pointer;
  background: white;
  text-align: center;
  transition: all 0.15s;
  font-family: inherit;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.biz-modal-option:hover {
  border-color: var(--blue);
  background: #f0f6ff;
}
.biz-modal-option i {
  font-size: 1.6rem;
  color: var(--blue);
  display: block;
}
.biz-modal-option span {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.3;
}

.modal-skip {
  display: block;
  text-align: center;
  margin-top: 20px;
  font-size: 0.78rem;
  color: #9ca3af;
  cursor: pointer;
  background: none;
  border: none;
  font-family: inherit;
}
.modal-skip:hover { color: var(--text-muted); }

/* ── Responsive ── */
@media (max-width: 680px) {
  html { font-size: 17px; }

  header { position: relative; }

  .nav-links { gap: 10px; }
  .nav-link { display: none; }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .hero-phone-wrap { order: -1; }
  .phone-wrap { width: 230px; }
  #hero h1 { font-size: 1.75rem; }

  .demo-container {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .demo-phone-wrap { order: -1; }
  .phone-wrap.large { width: 230px; }

  .replace-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .replace-vs { transform: rotate(90deg); justify-self: start; margin-left: 8px; }

  .pricing-tiers {
    grid-template-columns: 1fr;
    max-width: 340px;
    margin: 0 auto;
  }

  .biz-modal { padding: 28px 20px; }
  .biz-modal-grid { grid-template-columns: repeat(2, 1fr); }

  section { padding: 48px 0; }
  h2 { font-size: 1.5rem; }

  /* ensure phones never overflow their container */
  .hero-phone-wrap, .demo-phone-wrap { width: 100%; max-width: 280px; margin: 0 auto; }
  .phone-wrap, .phone-wrap.large { width: 100%; }
}
