/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #0d1117;
  --bg-alt: #0f1521;
  --fg: #f0f4f8;
  --fg-muted: #7a8ba3;
  --accent: #00d4aa;
  --accent-dim: rgba(0, 212, 170, 0.12);
  --accent-glow: rgba(0, 212, 170, 0.08);
  --amber: #f59e0b;
  --surface: #161b27;
  --border: rgba(255,255,255,0.07);
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* === TYPOGRAPHY === */
h1, h2, h3, h4 { font-family: 'Syne', sans-serif; font-weight: 700; line-height: 1.15; }

/* === NAV === */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 20px 40px;
  backdrop-filter: blur(12px);
  background: rgba(13,17,23,0.8);
  border-bottom: 1px solid var(--border);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; max-width: 1200px; margin: 0 auto; }
.nav-logo {
  display: flex; align-items: center; gap: 8px;
  font-family: 'Syne', sans-serif; font-weight: 700; font-size: 18px; color: var(--fg);
}
.nav-tagline { font-size: 13px; color: var(--fg-muted); letter-spacing: 0.08em; text-transform: uppercase; }

/* === HERO === */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center;
  padding: 140px 40px 80px;
  overflow: hidden;
}

.hero-bg-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(0,212,170,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,212,170,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black 30%, transparent 100%);
}

.hero-glow {
  position: absolute;
  top: 20%; left: 50%;
  transform: translate(-50%, -50%);
  width: 600px; height: 400px;
  background: radial-gradient(ellipse, rgba(0,212,170,0.07) 0%, transparent 70%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  max-width: 1200px; margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  width: 100%;
}

.hero-left { display: flex; flex-direction: column; gap: 28px; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--accent-dim);
  border: 1px solid rgba(0,212,170,0.2);
  border-radius: 100px;
  padding: 6px 14px;
  font-size: 12px; font-weight: 500;
  color: var(--accent);
  letter-spacing: 0.04em;
  width: fit-content;
}
.badge-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent);
  animation: pulse 2s infinite;
}
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.4; } }

.hero-headline {
  font-size: clamp(44px, 5.5vw, 72px);
  font-weight: 800;
  color: var(--fg);
  line-height: 1.05;
}
.hero-headline em { font-style: normal; color: var(--accent); }

.hero-sub {
  font-size: 18px; line-height: 1.7;
  color: var(--fg-muted);
  max-width: 480px;
}

.hero-actions { display: flex; flex-direction: column; gap: 12px; }
.action-note { font-size: 13px; color: var(--fg-muted); }

.hero-social-proof { display: flex; align-items: center; gap: 12px; }
.proof-avatars { display: flex; }
.avatar {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--surface);
  border: 2px solid var(--bg);
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 600; color: var(--fg-muted);
  margin-left: -8px;
}
.avatar:first-child { margin-left: 0; }
.proof-text { font-size: 12px; color: var(--fg-muted); }

/* === PHONE FRAME === */
.hero-right { display: flex; justify-content: center; align-items: center; }

.phone-frame {
  width: 280px;
  background: #161b27;
  border-radius: 36px;
  border: 1.5px solid rgba(255,255,255,0.1);
  padding: 12px;
  box-shadow:
    0 0 0 1px rgba(0,212,170,0.15),
    0 30px 80px rgba(0,0,0,0.6),
    0 0 60px rgba(0,212,170,0.08);
  position: relative;
}
.phone-notch {
  width: 80px; height: 24px;
  background: #0d1117;
  border-radius: 0 0 14px 14px;
  margin: 0 auto 8px;
}
.phone-screen {
  background: #0a0f1a;
  border-radius: 24px;
  padding: 16px;
  min-height: 340px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  overflow: hidden;
}
.phone-home {
  width: 40px; height: 4px;
  background: rgba(255,255,255,0.15);
  border-radius: 2px;
  margin: 8px auto 0;
}

.chat-header {
  display: flex; align-items: center; gap: 10px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  margin-bottom: 4px;
}
.chat-avatar {
  width: 36px; height: 36px; border-radius: 50%;
  background: linear-gradient(135deg, #00d4aa, #00a886);
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 700; color: #0d1117;
  flex-shrink: 0;
}
.chat-info { flex: 1; }
.chat-name { font-size: 13px; font-weight: 600; color: var(--fg); display: block; }
.chat-status { font-size: 11px; color: var(--accent); }
.chat-dots { display: flex; gap: 4px; }
.chat-dots span { width: 4px; height: 4px; border-radius: 50%; background: var(--fg-muted); }

.chat-bubble {
  padding: 10px 14px;
  border-radius: 16px;
  font-size: 13px;
  line-height: 1.5;
  max-width: 85%;
}
.chat-bubble.bot {
  background: var(--surface);
  color: var(--fg);
  border-bottom-left-radius: 4px;
  align-self: flex-start;
}
.chat-bubble.user {
  background: var(--accent);
  color: #0d1117;
  font-weight: 500;
  border-bottom-right-radius: 4px;
  align-self: flex-end;
}
.chat-bubble.bot.first { font-size: 12px; }

.confirmed-inner {
  background: rgba(0,212,170,0.1);
  border: 1px solid rgba(0,212,170,0.25);
  border-radius: 10px;
  padding: 10px 12px;
  display: flex; flex-direction: column; gap: 4px;
}
.confirmed-inner svg { margin-bottom: 2px; }
.confirmed-inner strong { font-size: 13px; color: var(--accent); }
.confirmed-inner span { font-size: 12px; color: var(--fg-muted); }

.typing-indicator {
  display: flex; gap: 4px; align-items: center;
  padding: 4px 0;
}
.typing-indicator span {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--fg-muted);
  animation: bounce 1.2s infinite;
}
.typing-indicator span:nth-child(2) { animation-delay: 0.2s; }
.typing-indicator span:nth-child(3) { animation-delay: 0.4s; }
@keyframes bounce { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-4px); } }

/* === HOW IT WORKS === */
.how {
  padding: 120px 40px;
  max-width: 1200px; margin: 0 auto;
}
.how-label, .verts-label, .results-label, .manifesto-label {
  font-size: 11px; text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--accent); font-weight: 600; margin-bottom: 16px;
}
.how-headline {
  font-size: clamp(36px, 4vw, 52px);
  color: var(--fg);
  margin-bottom: 80px;
}
.how-steps {
  display: flex; align-items: flex-start; gap: 0;
  margin-bottom: 60px;
}
.step { flex: 1; padding: 0 40px; }
.step:first-child { padding-left: 0; }
.step:last-child { padding-right: 0; }
.step-connector { padding-top: 20px; flex-shrink: 0; }
.step-num { font-size: 11px; color: var(--accent); font-weight: 600; margin-bottom: 16px; letter-spacing: 0.08em; }
.step-icon { margin-bottom: 16px; }
.step h3 { font-size: 18px; color: var(--fg); margin-bottom: 10px; }
.step p { font-size: 15px; color: var(--fg-muted); line-height: 1.65; }

.how-tools { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.tools-label { font-size: 12px; color: var(--fg-muted); font-weight: 500; }
.tool-pills { display: flex; gap: 8px; flex-wrap: wrap; }
.pill {
  padding: 5px 12px;
  border-radius: 100px;
  background: var(--surface);
  border: 1px solid var(--border);
  font-size: 12px; color: var(--fg-muted);
  font-weight: 500;
}

/* === VERTICALS === */
.verts {
  padding: 80px 40px 120px;
  max-width: 1200px; margin: 0 auto;
}
.verts-headline {
  font-size: clamp(36px, 4vw, 52px);
  color: var(--fg);
  margin-bottom: 60px;
}
.verts-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.vert-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 36px;
  transition: border-color 0.2s, transform 0.2s;
}
.vert-card:hover { border-color: rgba(0,212,170,0.25); transform: translateY(-2px); }
.vert-icon { font-size: 36px; margin-bottom: 16px; }
.vert-card h3 { font-size: 20px; color: var(--fg); margin-bottom: 10px; }
.vert-card p { font-size: 15px; color: var(--fg-muted); line-height: 1.65; }

/* === RESULTS === */
.results {
  position: relative;
  padding: 100px 40px 120px;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.results-headline {
  font-size: clamp(36px, 4vw, 52px);
  color: var(--fg);
  margin-bottom: 60px;
}
.results-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 80px;
}
.result-card {
  padding: 28px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
}
.result-metric {
  font-family: 'Syne', sans-serif;
  font-size: 36px;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 12px;
}
.result-desc { font-size: 14px; color: var(--fg-muted); line-height: 1.6; margin-bottom: 12px; }
.result-tag { font-size: 11px; color: var(--amber); font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; }

.results-cta { text-align: center; }
.cta-pricing { display: flex; align-items: center; justify-content: center; gap: 32px; margin-bottom: 16px; }
.cta-price { display: flex; flex-direction: column; align-items: center; gap: 4px; }
.cta-amount { font-family: 'Syne', sans-serif; font-size: 36px; font-weight: 800; color: var(--fg); }
.cta-label { font-size: 14px; color: var(--fg-muted); }
.cta-divider { font-size: 28px; color: var(--fg-muted); font-weight: 300; }
.cta-sub { font-size: 15px; color: var(--fg-muted); }

/* === MANIFESTO === */
.manifesto {
  padding: 100px 40px;
  max-width: 900px; margin: 0 auto;
  text-align: center;
}
.quote-mark { font-family: 'Syne', sans-serif; font-size: 120px; color: var(--accent); opacity: 0.15; line-height: 0.5; margin-bottom: 32px; }
.manifesto blockquote {
  font-family: 'Syne', sans-serif;
  font-size: clamp(22px, 2.8vw, 32px);
  font-weight: 600;
  color: var(--fg);
  line-height: 1.5;
  font-style: normal;
}

/* === CLOSING === */
.closing {
  position: relative;
  padding: 100px 40px 120px;
  text-align: center;
  overflow: hidden;
}
.closing-glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 500px; height: 300px;
  background: radial-gradient(ellipse, rgba(245,158,11,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.closing-headline {
  position: relative;
  font-size: clamp(40px, 5vw, 64px);
  color: var(--fg);
  margin-bottom: 20px;
}
.closing-sub {
  position: relative;
  font-size: 18px; color: var(--fg-muted);
  max-width: 500px; margin: 0 auto;
}

/* === CLOSING CTA === */
.closing-cta-wrap {
  position: relative;
  padding: 0 40px 120px;
  text-align: center;
  overflow: hidden;
}
.closing-cta-wrap .closing-glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 500px; height: 300px;
  background: radial-gradient(ellipse, rgba(0,212,170,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.closing-cta-headline {
  position: relative;
  font-size: clamp(40px, 5vw, 64px);
  color: var(--fg);
  margin-bottom: 12px;
}
.closing-cta-sub {
  position: relative;
  font-size: 18px; color: var(--fg-muted);
  max-width: 480px; margin: 0 auto 36px;
}
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--accent); color: #0d1117;
  font-family: 'Syne', sans-serif; font-weight: 700; font-size: 15px;
  padding: 14px 32px; border-radius: 12px;
  border: none; cursor: pointer;
  text-decoration: none;
  transition: opacity 0.15s, transform 0.15s;
}
.btn-primary:hover { opacity: 0.88; transform: translateY(-1px); }
.btn-primary:active { transform: translateY(0); }

/* === DEMO MODAL === */
.modal-backdrop {
  display: none;
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(6px);
  z-index: 200;
  align-items: center; justify-content: center;
  padding: 24px;
}
.modal-backdrop.open { display: flex; }
.modal {
  background: var(--surface);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 24px;
  padding: 40px;
  width: 100%; max-width: 480px;
  position: relative;
  box-shadow: 0 40px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(0,212,170,0.1);
  animation: modalIn 0.25s ease;
}
@keyframes modalIn {
  from { opacity: 0; transform: scale(0.95) translateY(10px); }
  to   { opacity: 1; transform: scale(1)    translateY(0); }
}
.modal-close {
  position: absolute; top: 20px; right: 20px;
  background: none; border: none;
  color: var(--fg-muted); cursor: pointer;
  font-size: 20px; padding: 4px; line-height: 1;
  border-radius: 6px; transition: color 0.15s;
}
.modal-close:hover { color: var(--fg); }
.modal-label {
  font-size: 11px; text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--accent); font-weight: 600; margin-bottom: 10px;
}
.modal-headline {
  font-family: 'Syne', sans-serif;
  font-size: 26px; font-weight: 800; color: var(--fg);
  margin-bottom: 8px; line-height: 1.2;
}
.modal-sub {
  font-size: 14px; color: var(--fg-muted); margin-bottom: 28px; line-height: 1.6;
}
.form-group { margin-bottom: 16px; }
.form-label {
  display: block; font-size: 13px; font-weight: 500; color: var(--fg);
  margin-bottom: 6px;
}
.form-input, .form-select {
  width: 100%; padding: 11px 14px;
  background: var(--bg-alt); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px; color: var(--fg); font-size: 14px;
  font-family: 'DM Sans', sans-serif;
  transition: border-color 0.15s;
  appearance: none;
  -webkit-appearance: none;
}
.form-input::placeholder { color: var(--fg-muted); }
.form-input:focus, .form-select:focus {
  outline: none; border-color: var(--accent);
}
.form-select option { background: var(--bg-alt); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.btn-submit {
  width: 100%; padding: 14px;
  background: var(--accent); color: #0d1117;
  font-family: 'Syne', sans-serif; font-weight: 700; font-size: 15px;
  border: none; border-radius: 12px; cursor: pointer;
  transition: opacity 0.15s;
}
.btn-submit:hover { opacity: 0.85; }
.btn-submit:disabled { opacity: 0.5; cursor: not-allowed; }
.form-note { font-size: 12px; color: var(--fg-muted); margin-top: 12px; text-align: center; }
.form-error { background: rgba(239,68,68,0.12); border: 1px solid rgba(239,68,68,0.3); border-radius: 8px; padding: 10px 14px; color: #f87171; font-size: 13px; margin-bottom: 16px; display: none; }
.form-error.visible { display: block; }
.form-success { background: rgba(0,212,170,0.1); border: 1px solid rgba(0,212,170,0.3); border-radius: 8px; padding: 20px; color: var(--accent); font-size: 15px; font-weight: 600; text-align: center; display: none; }
.form-success.visible { display: block; }
.form-success-sub { font-size: 13px; color: var(--fg-muted); font-weight: 400; margin-top: 6px; }

@media (max-width: 600px) {
  .closing-cta-wrap { padding: 0 24px 80px; }
  .modal { padding: 28px 24px; }
  .form-row { grid-template-columns: 1fr; }
}
  border-top: 1px solid var(--border);
  padding: 40px;
}
.footer-inner { max-width: 1200px; margin: 0 auto; text-align: center; }
.footer-brand { display: flex; align-items: center; justify-content: center; gap: 8px; font-family: 'Syne', sans-serif; font-weight: 700; font-size: 16px; color: var(--fg); margin-bottom: 12px; }
.footer-tagline { font-size: 14px; color: var(--fg-muted); margin-bottom: 8px; }
.footer-legal { font-size: 12px; color: rgba(255,255,255,0.2); }

/* === PRICING PAGE === */
.pricing-main { padding-top: 80px; }

.pricing-hero {
  padding: 80px 40px 60px;
  text-align: center;
}
.pricing-hero-inner { max-width: 700px; margin: 0 auto; }
.pricing-label {
  font-size: 11px; text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--accent); font-weight: 600; margin-bottom: 16px;
}
.pricing-headline {
  font-size: clamp(36px, 5vw, 56px);
  color: var(--fg);
  margin-bottom: 16px;
}
.pricing-sub { font-size: 18px; color: var(--fg-muted); line-height: 1.7; }

.pricing-tiers {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 900px;
  margin: 0 auto 80px;
  padding: 0 40px;
}
.tier-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 36px;
  position: relative;
  display: flex;
  flex-direction: column;
}
.tier-card--recommended {
  border-color: rgba(0,212,170,0.3);
  box-shadow: 0 0 0 1px rgba(0,212,170,0.08), 0 8px 32px rgba(0,0,0,0.3);
}
.tier-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--accent); color: #0d1117;
  font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em;
  padding: 4px 16px; border-radius: 100px;
  white-space: nowrap;
}
.tier-name {
  font-family: 'Syne', sans-serif; font-size: 16px; font-weight: 700;
  color: var(--fg); margin-bottom: 20px; padding-top: 8px;
}
.tier-price-wrap { display: flex; align-items: baseline; gap: 10px; margin-bottom: 4px; }
.tier-price {
  font-family: 'Syne', sans-serif; font-size: 44px; font-weight: 800; color: var(--fg);
}
.tier-price-note { font-size: 13px; color: var(--fg-muted); }
.tier-recurring { display: flex; align-items: baseline; gap: 6px; margin-bottom: 28px; }
.tier-recurring-amount { font-family: 'Syne', sans-serif; font-size: 22px; font-weight: 700; color: var(--fg); }
.tier-recurring-label { font-size: 14px; color: var(--fg-muted); }

.tier-features { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; flex: 1; }
.tier-features li {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px; color: var(--fg-muted);
}

.tier-cta { width: 100%; justify-content: center; margin-top: auto; }
.btn-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--fg);
  font-family: 'Syne', sans-serif; font-weight: 700; font-size: 15px;
  padding: 14px 32px; border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.15); cursor: pointer;
  text-decoration: none;
  transition: border-color 0.15s, background 0.15s, transform 0.15s;
}
.btn-secondary:hover { border-color: rgba(0,212,170,0.4); background: var(--accent-dim); transform: translateY(-1px); }
.btn-secondary:active { transform: translateY(0); }

/* Comparison table */
.pricing-compare {
  max-width: 900px; margin: 0 auto 80px; padding: 0 40px;
}
.compare-headline {
  font-size: clamp(28px, 3vw, 40px);
  color: var(--fg); margin-bottom: 32px; text-align: center;
}
.compare-table { border: 1px solid var(--border); border-radius: 16px; overflow: hidden; }
.compare-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  border-bottom: 1px solid var(--border);
}
.compare-row:last-child { border-bottom: none; }
.compare-header { background: var(--bg-alt); }
.compare-feature {
  padding: 16px 24px; font-size: 14px; font-weight: 500; color: var(--fg-muted);
}
.compare-col {
  padding: 16px 24px; font-size: 14px; font-weight: 600; color: var(--fg);
  text-align: center;
}
.compare-col--rec { color: var(--accent); }
.compare-cell {
  padding: 16px 24px; font-size: 14px; color: var(--fg-muted);
  display: flex; justify-content: center; align-items: center;
}
.compare-cell svg { display: block; }
.compare-no { color: rgba(255,255,255,0.2); }
.compare-bold { font-weight: 700; color: var(--fg) !important; font-family: 'Syne', sans-serif; }
.compare-row:hover { background: rgba(255,255,255,0.02); }

/* FAQ */
.pricing-faq {
  max-width: 900px; margin: 0 auto 80px; padding: 0 40px;
}
.faq-headline {
  font-size: clamp(28px, 3vw, 40px);
  color: var(--fg); margin-bottom: 40px; text-align: center;
}
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.faq-item { background: var(--surface); border: 1px solid var(--border); border-radius: 16px; padding: 28px; }
.faq-item h3 { font-size: 16px; color: var(--fg); margin-bottom: 10px; }
.faq-item p { font-size: 14px; color: var(--fg-muted); line-height: 1.65; }

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

@media (max-width: 640px) {
  .pricing-compare .compare-row { grid-template-columns: 1fr 1fr; }
  .compare-col:first-of-type { display: none; }
}

/* === RESPONSIVE === */
@media (max-width: 900px) {
  .hero-content { grid-template-columns: 1fr; gap: 60px; text-align: center; }
  .hero-left { align-items: center; }
  .hero-sub { max-width: 100%; }
  .hero-social-proof { justify-content: center; }
  .how-steps { flex-direction: column; gap: 40px; }
  .step-connector { display: none; }
  .step { padding: 0; }
  .verts-grid { grid-template-columns: 1fr; }
  .results-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .hero { padding: 120px 24px 60px; }
  .how, .verts, .results, .manifesto, .closing, .footer { padding-left: 24px; padding-right: 24px; }
  .results-grid { grid-template-columns: 1fr; }
  .cta-pricing { flex-direction: column; gap: 16px; }
  .cta-divider { display: none; }
  .phone-frame { width: 240px; }
}