/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: #05101E;
  color: #fff;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
button { font-family: inherit; cursor: pointer; }
ul { list-style: none; }
svg { display: block; }

/* ── CSS VARIABLES ── */
:root {
  --accent:  #28C9B8;
  --blue:    #1E90E8;
  --bg:      #05101E;
  --card:    rgba(255,255,255,0.03);
  --border:  rgba(255,255,255,0.08);
  --muted:   rgba(255,255,255,0.65);
  --faint:   rgba(255,255,255,0.4);
}

/* ── GRADIENT TEXT ── */
.gradient-text {
  background: linear-gradient(90deg, var(--blue), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── AMBIENT GLOW ── */
.glow {
  position: absolute;
  pointer-events: none;
  border-radius: 50%;
  filter: blur(60px);
  z-index: 0;
}
.glow-tr { top: -200px; right: -200px; width: 700px; height: 700px; background: radial-gradient(circle, rgba(40,201,184,0.18), transparent 60%); }
.glow-tl { top: 60px; left: -100px; width: 500px; height: 500px; background: radial-gradient(circle, rgba(30,144,232,0.14), transparent 60%); }
.glow-center {
  top: 40%; left: 50%;
  transform: translate(-50%, -50%);
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(40,201,184,0.13), transparent 60%);
}

/* ── BADGE ── */
.badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(40,201,184,0.1); color: var(--accent);
  padding: 6px 14px; border-radius: 20px;
  font-size: 12px; font-weight: 500;
  border: 1px solid rgba(40,201,184,0.25);
  margin-bottom: 24px;
}
.badge-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent); box-shadow: 0 0 8px var(--accent);
  flex-shrink: 0;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 24px; border-radius: 10px;
  font-size: 15px; font-weight: 600; border: none;
  transition: all 0.15s; cursor: pointer; white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--blue), var(--accent));
  color: #fff;
  box-shadow: 0 8px 32px rgba(40,201,184,0.28);
}
.btn-primary:hover { opacity: 0.9; transform: translateY(-1px); }
.btn-secondary {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.15);
  color: #fff;
}
.btn-secondary:hover { background: rgba(255,255,255,0.1); }
.btn-sm { padding: 10px 18px; font-size: 13px; border-radius: 8px; }
.btn-ghost {
  background: transparent; border: 1px solid var(--border);
  color: var(--muted); padding: 10px 18px; border-radius: 8px;
  font-size: 13px; font-weight: 500; transition: all 0.15s;
}
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }

/* ── NAV ── */
.nav {
  position: sticky; top: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 56px;
  background: rgba(5,16,30,0.85);
  backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border);
}
.nav-brand {
  display: flex; align-items: center; gap: 12px;
  text-decoration: none; color: inherit;
}
.nav-brand-name { font-weight: 700; font-size: 18px; letter-spacing: -0.3px; }
.nav-brand-name .accent { color: var(--accent); }
.nav-links {
  display: flex; gap: 28px;
  font-size: 13.5px; color: var(--faint);
}
.nav-links a { transition: color 0.15s; }
.nav-links a:hover { color: #fff; }
.nav-links a.active { color: #fff; font-weight: 600; }
.nav-right { display: flex; align-items: center; gap: 12px; }

/* Mobile hamburger */
.nav-hamburger {
  display: none; background: none; border: none;
  width: 36px; height: 36px;
  flex-direction: column; justify-content: center; align-items: center; gap: 5px;
  border-radius: 8px; transition: background 0.15s; padding: 0;
}
.nav-hamburger:hover { background: rgba(255,255,255,0.08); }
.nav-hamburger span {
  display: block; width: 20px; height: 1.5px;
  background: #fff; border-radius: 2px; transition: all 0.25s;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile drawer */
.nav-drawer {
  display: none;
  position: fixed; inset: 0; top: 61px; z-index: 99;
  background: rgba(5,16,30,0.97); backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  flex-direction: column; padding: 24px;
  gap: 4px;
}
.nav-drawer.open { display: flex; }
.nav-drawer a {
  padding: 18px 8px; font-size: 22px; font-weight: 600;
  border-bottom: 1px solid var(--border); color: rgba(255,255,255,0.75);
  transition: color 0.15s;
}
.nav-drawer a:hover, .nav-drawer a.active { color: #fff; }
.nav-drawer .drawer-cta {
  margin-top: 20px; padding: 18px;
  background: linear-gradient(135deg, var(--blue), var(--accent));
  color: #fff; text-align: center; border-radius: 12px;
  font-size: 16px; font-weight: 600; border: none; border-bottom: none;
}

/* ── SECTION BASE ── */
.section { padding: 60px 56px; position: relative; }
.section-label {
  font-size: 12px; text-transform: uppercase;
  letter-spacing: 2px; color: var(--accent); margin-bottom: 12px;
}
.section-heading {
  font-size: 44px; line-height: 1.1;
  letter-spacing: -1px; font-weight: 700;
}
.section-heading .accent { color: var(--accent); }

/* ── HOME HERO ── */
.home-hero { padding: 60px 56px 70px; position: relative; overflow: hidden; }
.home-hero-inner {
  text-align: center; max-width: 1100px;
  margin: 0 auto; position: relative; z-index: 1;
}
.hero-h1 {
  font-size: 88px; line-height: 1;
  letter-spacing: -3px; margin-bottom: 24px; font-weight: 800;
}
.hero-subtitle {
  font-size: 19px; line-height: 1.55;
  color: var(--muted); margin: 0 auto 36px; max-width: 620px;
}
.hero-ctas {
  display: flex; gap: 12px;
  justify-content: center; margin-bottom: 64px; flex-wrap: wrap;
}
.hero-stats {
  display: flex; gap: 32px; font-size: 12px;
  color: var(--faint); justify-content: center;
  flex-wrap: wrap; margin-top: 48px;
}
.hero-stat strong { color: #fff; font-size: 20px; font-weight: 700; display: block; }

/* ── PAGE HERO (inner pages) ── */
.page-hero { padding: 72px 56px 64px; position: relative; overflow: hidden; }
.page-hero-inner { max-width: 820px; position: relative; z-index: 1; }
.page-hero h1 {
  font-size: 60px; line-height: 1.06;
  letter-spacing: -2px; font-weight: 800; margin-bottom: 20px;
}
.page-hero-sub {
  font-size: 18px; line-height: 1.55;
  color: var(--muted); max-width: 580px; margin-bottom: 32px;
}

/* ── PHONE ILLUSTRATION ── */
.phone-wrap { display: flex; justify-content: center; position: relative; }
.phone-rings {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 560px; height: 560px; pointer-events: none;
}
.phone-ring {
  position: absolute; inset: 0; border-radius: 50%;
  border: 1.5px solid rgba(40,201,184,0.35);
  animation: ringWave 3s infinite ease-out;
}
.phone-ring:nth-child(2) { animation-delay: 1s; }
.phone-ring:nth-child(3) { animation-delay: 2s; }
@keyframes ringWave { 0% { opacity: 0.8; transform: scale(0.35); } 100% { opacity: 0; transform: scale(1); } }
.phone-device {
  width: 300px; height: 600px; border-radius: 46px;
  background: linear-gradient(180deg, #1c1c1c, #0a0a0a);
  border: 1px solid rgba(255,255,255,0.15); padding: 10px;
  position: relative; z-index: 1;
  box-shadow: 0 40px 100px rgba(0,0,0,0.7), 0 0 80px rgba(40,201,184,0.22);
}
.phone-notch {
  width: 110px; height: 28px; background: #000; border-radius: 16px;
  position: absolute; top: 18px; left: 50%; transform: translateX(-50%); z-index: 2;
}
.phone-screen {
  width: 100%; height: 100%; border-radius: 38px;
  background: linear-gradient(180deg, rgba(30,144,232,0.32) 0%, rgba(40,201,184,0.18) 60%), #05101E;
  overflow: hidden; padding: 72px 24px 28px;
  display: flex; flex-direction: column; align-items: center;
  color: #fff; text-align: center;
}
.phone-time { font-size: 13px; opacity: 0.7; margin-bottom: 8px; letter-spacing: 0.3px; }
.phone-caller { font-size: 24px; font-weight: 600; margin-bottom: 4px; letter-spacing: -0.5px; }
.phone-number { font-size: 13px; opacity: 0.7; margin-bottom: 36px; }
.phone-avatar-wrap { position: relative; margin-bottom: 32px; }
.phone-ring-wave {
  position: absolute; inset: -20px; border-radius: 50%;
  border: 2px solid rgba(40,201,184,0.6);
  animation: avatarRing 1.8s infinite ease-out;
}
.phone-ring-wave:nth-child(2) { animation-delay: 0.6s; }
@keyframes avatarRing { 0% { opacity: 1; transform: scale(1); } 100% { opacity: 0; transform: scale(1.6); } }
.phone-avatar {
  width: 130px; height: 130px; border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--accent));
  display: grid; place-items: center;
  animation: avatarPulse 1.8s infinite;
  box-shadow: 0 12px 40px rgba(40,201,184,0.5);
  position: relative;
}
@keyframes avatarPulse { 0%,100% { transform: scale(1); } 50% { transform: scale(1.06); } }
.phone-label {
  font-size: 14px; color: var(--accent); margin-bottom: 10px;
  font-weight: 600; display: inline-flex; align-items: center; gap: 6px;
}
.dot-blink {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--accent); animation: dotBlink 1.2s infinite;
}
@keyframes dotBlink { 0%,100% { opacity: 1; } 50% { opacity: 0.3; } }
.phone-quote { font-size: 11px; opacity: 0.65; line-height: 1.5; max-width: 220px; font-style: italic; }
.phone-buttons { margin-top: auto; display: flex; gap: 36px; padding-top: 24px; }
.phone-btn { width: 52px; height: 52px; border-radius: 50%; display: grid; place-items: center; border: none; }
.phone-btn-decline { background: #ef4444; opacity: 0.35; }
.phone-btn-accept { background: #22c55e; box-shadow: 0 0 0 4px rgba(34,197,94,0.25); }

/* ── SOCIAL PROOF BAR ── */
.social-proof {
  padding: 22px 56px;
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  display: flex; align-items: center; gap: 40px;
  justify-content: space-between; overflow-x: auto;
  color: var(--faint); font-size: 12px;
}
.social-proof-label { text-transform: uppercase; letter-spacing: 1.5px; flex-shrink: 0; white-space: nowrap; }
.social-proof-name { font-weight: 600; font-size: 14px; color: rgba(255,255,255,0.45); white-space: nowrap; }

/* ── STATS GRID ── */
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.stat-card { background: var(--card); border: 1px solid var(--border); border-radius: 16px; padding: 24px; }
.stat-icon {
  width: 40px; height: 40px; border-radius: 10px;
  background: rgba(239,68,68,0.12); color: #f87171;
  display: grid; place-items: center; margin-bottom: 20px;
}
.stat-num { font-size: 36px; font-weight: 700; letter-spacing: -1px; margin-bottom: 4px; line-height: 1; }
.stat-label { font-size: 13px; color: var(--muted); line-height: 1.4; }

/* ── AGENT CARDS ── */
.agents-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 48px; }
.agents-header-text { max-width: 600px; }
.agents-header-sub { font-size: 14px; color: var(--faint); max-width: 320px; }
.agents-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 16px; }

.agent-card-hero {
  grid-row: span 2;
  background: linear-gradient(160deg, rgba(30,144,232,0.15), rgba(40,201,184,0.12) 60%, transparent);
  border: 1px solid rgba(40,201,184,0.28); border-radius: 20px;
  padding: 32px; position: relative; overflow: hidden;
}
.agent-card-glow {
  position: absolute; top: -60px; right: -60px;
  width: 240px; height: 240px;
  background: radial-gradient(circle, rgba(40,201,184,0.3), transparent 70%);
  filter: blur(40px); pointer-events: none;
}
.agent-icon-lg {
  width: 44px; height: 44px; border-radius: 12px;
  background: linear-gradient(135deg, var(--blue), var(--accent));
  display: grid; place-items: center; flex-shrink: 0;
}
.agent-icon-sm {
  width: 40px; height: 40px; border-radius: 10px;
  background: rgba(255,255,255,0.06); color: var(--accent);
  display: grid; place-items: center; flex-shrink: 0;
}
.agent-name-row { display: flex; gap: 12px; align-items: center; margin-bottom: 20px; position: relative; }
.agent-title { font-size: 20px; font-weight: 700; }
.agent-status-live { font-size: 12px; color: var(--accent); }
.agent-status-wip {
  font-size: 10px; padding: 3px 8px;
  background: rgba(250,200,80,0.15); color: #f5c16c;
  border-radius: 20px; text-transform: uppercase; letter-spacing: 0.5px;
}
.agent-desc { font-size: 15px; line-height: 1.55; color: rgba(255,255,255,0.75); margin-bottom: 24px; position: relative; max-width: 440px; }
.agent-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 16px; padding: 28px;
  display: flex; gap: 20px; align-items: flex-start;
  grid-column: span 2;
}
.agent-card-name { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.agent-card-row { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
.agent-card-desc { font-size: 13px; color: var(--muted); line-height: 1.5; margin-bottom: 12px; }

/* Tags */
.tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 20px; position: relative; }
.tag {
  font-size: 11px; padding: 5px 10px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1); border-radius: 20px;
}
.tag-sm {
  font-size: 11px; padding: 3px 8px;
  background: rgba(255,255,255,0.04); color: var(--faint); border-radius: 4px;
}

/* ── SOPHIE DEMO ── */
.sophie-demo {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px; padding: 20px; position: relative;
}
.sophie-header { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.sophie-avatar {
  width: 36px; height: 36px; border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--accent));
  display: grid; place-items: center; flex-shrink: 0;
}
.sophie-info { flex: 1; }
.sophie-name { font-weight: 600; font-size: 14px; }
.sophie-status { font-size: 11px; color: var(--faint); display: flex; align-items: center; gap: 6px; }
.status-dot { width: 6px; height: 6px; border-radius: 50%; background: #22c55e; box-shadow: 0 0 0 3px rgba(34,197,94,0.2); }
.sophie-play-btn {
  border: none; background: var(--accent); color: #fff;
  padding: 7px 12px; border-radius: 20px; font-size: 12px; font-weight: 600;
  display: flex; align-items: center; gap: 6px; flex-shrink: 0;
  transition: opacity 0.15s;
}
.sophie-play-btn:hover { opacity: 0.85; }
.sophie-play-btn.paused { background: rgba(239,68,68,0.15); color: #ef4444; }
.sophie-messages {
  display: flex; flex-direction: column; gap: 8px;
  min-height: 200px; max-height: 300px; overflow-y: auto;
}
.msg-system {
  align-self: center; font-size: 11px; color: #6FB8F2;
  background: rgba(30,144,232,0.15); padding: 5px 12px;
  border-radius: 20px; font-family: ui-monospace, monospace; letter-spacing: 0.3px;
}
.msg-wrap { max-width: 85%; }
.msg-wrap.sophie-msg { align-self: flex-start; }
.msg-wrap.client-msg { align-self: flex-end; }
.msg-who { font-size: 10px; color: var(--faint); margin-bottom: 3px; padding: 0 10px; }
.msg-wrap.client-msg .msg-who { text-align: right; }
.msg-bubble { padding: 10px 14px; border-radius: 14px; font-size: 13px; line-height: 1.4; }
.msg-bubble.sophie-bubble { background: rgba(40,201,184,0.12); color: var(--accent); }
.msg-bubble.client-bubble { background: rgba(255,255,255,0.06); color: rgba(255,255,255,0.9); }
.typing-dots { display: flex; gap: 4px; padding: 10px 14px; border-radius: 14px; background: rgba(40,201,184,0.12); }
.typing-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--faint); animation: typingPulse 1.2s infinite; }
.typing-dot:nth-child(2) { animation-delay: 0.15s; }
.typing-dot:nth-child(3) { animation-delay: 0.3s; }
@keyframes typingPulse { 0%,60%,100% { opacity: 0.3; } 30% { opacity: 1; } }

/* ── HOW IT WORKS ── */
.how-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 80px; align-items: start; }
.how-sticky { position: sticky; top: 90px; }
.how-intro-text { font-size: 16px; line-height: 1.55; color: var(--muted); margin-top: 24px; max-width: 420px; }
.steps-list { display: flex; flex-direction: column; gap: 14px; }
.step-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 16px; padding: 28px;
  display: grid; grid-template-columns: 80px 1fr; gap: 20px; align-items: start;
}
.step-num {
  font-size: 36px; font-weight: 800; letter-spacing: -1px;
  background: linear-gradient(135deg, var(--blue), var(--accent));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; line-height: 1;
}
.step-title { font-size: 19px; font-weight: 600; margin-bottom: 8px; }
.step-desc { font-size: 14px; line-height: 1.55; color: var(--muted); margin: 0; }

/* ── ROI ── */
.roi-card {
  background: linear-gradient(135deg, rgba(30,144,232,0.12), rgba(40,201,184,0.12));
  border: 1px solid rgba(40,201,184,0.2); border-radius: 24px;
  padding: 56px; text-align: center;
}
.roi-title { font-size: 40px; margin: 0 auto 40px; letter-spacing: -1px; font-weight: 700; max-width: 700px; line-height: 1.15; }
.roi-title .accent { color: var(--accent); }
.roi-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.roi-num {
  font-size: 56px; font-weight: 800; letter-spacing: -2px;
  background: linear-gradient(135deg, var(--blue), var(--accent));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; line-height: 1; margin-bottom: 8px;
}
.roi-label { font-size: 13px; color: var(--muted); }

/* ── TESTIMONIALS ── */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.testimonial-card { background: var(--card); border: 1px solid var(--border); border-radius: 16px; padding: 28px; }
.stars { display: flex; gap: 2px; margin-bottom: 16px; color: var(--accent); }
.testimonial-quote { font-size: 15px; line-height: 1.55; color: rgba(255,255,255,0.85); margin-bottom: 24px; }
.testimonial-author { display: flex; align-items: center; gap: 12px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.06); }
.author-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--accent));
  display: grid; place-items: center; font-weight: 700; font-size: 13px; flex-shrink: 0;
}
.author-name { font-size: 13px; font-weight: 600; }
.author-role { font-size: 11px; color: rgba(255,255,255,0.5); }

/* ── PRICING ── */
.pricing-header { text-align: center; max-width: 680px; margin: 0 auto 56px; }
.pricing-subtitle { font-size: 16px; line-height: 1.55; color: var(--muted); margin-top: 16px; }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; max-width: 1200px; margin: 0 auto; }
.pricing-card { background: var(--card); border: 1px solid var(--border); border-radius: 20px; padding: 32px; position: relative; }
.pricing-card.highlight {
  background: linear-gradient(160deg, rgba(30,144,232,0.18), rgba(40,201,184,0.08));
  border-color: rgba(40,201,184,0.35);
}
.pricing-badge {
  position: absolute; top: -10px; left: 32px;
  font-size: 10px; font-weight: 700; padding: 4px 10px;
  background: var(--accent); color: #03221F;
  border-radius: 100px; letter-spacing: 0.5px; text-transform: uppercase;
}
.pricing-tagline { font-size: 12px; color: var(--muted); text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 8px; }
.pricing-name { font-size: 24px; font-weight: 700; margin-bottom: 20px; }
.pricing-price-row { display: flex; align-items: baseline; gap: 6px; margin-bottom: 16px; }
.pricing-price { font-size: 44px; font-weight: 800; letter-spacing: -1.5px; }
.pricing-unit { font-size: 14px; color: var(--muted); }
.pricing-desc { font-size: 14px; color: var(--muted); line-height: 1.55; margin-bottom: 24px; min-height: 56px; }
.pricing-btn {
  width: 100%; padding: 12px; border-radius: 10px;
  font-size: 14px; font-weight: 600; margin-bottom: 24px;
  background: transparent; color: #fff; border: 1px solid var(--border);
  transition: opacity 0.15s;
}
.pricing-btn:hover { opacity: 0.8; }
.pricing-btn.highlight-btn { background: var(--accent); color: #03221F; border: none; }
.pricing-features { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.pricing-feature { display: flex; gap: 10px; font-size: 13px; color: var(--muted); align-items: center; }
.feature-check {
  width: 18px; height: 18px; border-radius: 50%;
  background: rgba(40,201,184,0.15); color: var(--accent);
  display: grid; place-items: center; flex-shrink: 0;
}
.pricing-note { text-align: center; font-size: 13px; color: var(--faint); margin-top: 32px; }

/* ── FAQ ── */
.faq-grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 80px; align-items: start; }
.faq-sticky { position: sticky; top: 90px; }
.faq-contact { font-size: 14px; color: var(--accent); font-weight: 600; margin-top: 24px; display: inline-block; transition: opacity 0.15s; }
.faq-contact:hover { opacity: 0.8; }
.faq-list { display: flex; flex-direction: column; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question {
  width: 100%; padding: 24px 0; background: transparent; border: none;
  color: #fff; font-size: 17px; font-weight: 600; text-align: left;
  display: flex; justify-content: space-between; align-items: center; gap: 24px;
  font-family: inherit; transition: opacity 0.15s;
}
.faq-question:hover { opacity: 0.85; }
.faq-toggle {
  width: 28px; height: 28px; border-radius: 50%;
  background: rgba(40,201,184,0.12); color: var(--accent);
  display: grid; place-items: center; flex-shrink: 0;
  font-size: 18px; transition: all 0.2s; line-height: 1;
}
.faq-item.open .faq-toggle { background: var(--accent); color: #03221F; transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.faq-item.open .faq-answer { max-height: 400px; }
.faq-answer p { font-size: 15px; line-height: 1.6; color: var(--muted); padding-bottom: 24px; max-width: 640px; margin: 0; }

/* ── CTA STRIP (gradient box) ── */
.cta-strip {
  background: linear-gradient(135deg, var(--blue), var(--accent));
  border-radius: 24px; padding: 56px;
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 56px;
  color: #fff; position: relative; overflow: hidden;
}
.cta-title { font-size: 46px; margin-bottom: 20px; letter-spacing: -1.5px; line-height: 1.05; font-weight: 700; }
.cta-desc { font-size: 17px; line-height: 1.55; margin-bottom: 28px; opacity: 0.9; max-width: 480px; }
.cta-promises { display: flex; flex-direction: column; gap: 12px; font-size: 15px; }
.cta-promise { display: flex; gap: 10px; align-items: center; }
.promise-check {
  width: 20px; height: 20px; border-radius: 50%;
  background: rgba(255,255,255,0.2); display: grid; place-items: center; flex-shrink: 0;
}

/* ── FORM (inside gradient box) ── */
.form-box {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-radius: 16px; padding: 28px;
  border: 1px solid rgba(255,255,255,0.15);
}
.form-box h3 { font-size: 18px; margin-bottom: 16px; }
.form-fields { display: flex; flex-direction: column; gap: 10px; }
.form-field label { font-size: 11px; opacity: 0.85; display: block; margin-bottom: 4px; }
.form-field input, .form-field textarea, .form-field select {
  width: 100%; padding: 10px 12px; border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.08); color: #fff;
  font-size: 13px; font-family: inherit; outline: none;
  -webkit-appearance: none;
}
.form-field input::placeholder, .form-field textarea::placeholder { color: rgba(255,255,255,0.45); }
.form-field input:focus, .form-field textarea:focus { border-color: rgba(255,255,255,0.45); background: rgba(255,255,255,0.13); }
.form-field textarea { resize: vertical; min-height: 80px; }
.form-submit-btn {
  width: 100%; padding: 13px; border-radius: 8px;
  border: none; background: #05101E; color: #fff;
  font-size: 14px; font-weight: 600; margin-top: 4px;
  transition: background 0.15s; cursor: pointer;
}
.form-submit-btn:hover { background: #0b1d32; }
.form-note { font-size: 11px; opacity: 0.8; text-align: center; margin-top: 8px; }

/* ── STANDALONE FORM (contact page) ── */
.form-standalone {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 24px; padding: 40px;
}
.form-standalone .form-field input,
.form-standalone .form-field textarea,
.form-standalone .form-field select {
  background: rgba(255,255,255,0.04); border-color: var(--border);
  color: #fff;
}
.form-standalone .form-field input:focus,
.form-standalone .form-field textarea:focus { border-color: var(--accent); background: rgba(40,201,184,0.05); }
.form-standalone .form-field input::placeholder,
.form-standalone .form-field textarea::placeholder { color: var(--faint); }
.form-standalone .form-submit-btn {
  background: linear-gradient(135deg, var(--blue), var(--accent)); color: #fff;
}
.form-standalone .form-submit-btn:hover { opacity: 0.9; background: linear-gradient(135deg, var(--blue), var(--accent)); }

/* ── INFO BOX (contact page left col) ── */
.info-box { display: flex; flex-direction: column; gap: 32px; }
.info-item { display: flex; gap: 16px; align-items: flex-start; }
.info-icon {
  width: 44px; height: 44px; border-radius: 12px; flex-shrink: 0;
  background: rgba(40,201,184,0.1); border: 1px solid rgba(40,201,184,0.2);
  display: grid; place-items: center; color: var(--accent);
}
.info-label { font-size: 12px; color: var(--faint); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 4px; }
.info-value { font-size: 16px; font-weight: 600; margin-bottom: 2px; }
.info-sub { font-size: 13px; color: var(--muted); }

/* ── FOOTER ── */
.footer {
  padding: 40px 56px;
  border-top: 1px solid var(--border);
  display: grid; grid-template-columns: 1fr auto 1fr;
  gap: 24px; align-items: center;
  font-size: 12px; color: var(--faint);
}
.footer-brand { display: flex; gap: 12px; align-items: center; }
.footer-nav { display: flex; gap: 28px; justify-content: center; }
.footer-nav a { color: var(--faint); transition: color 0.15s; }
.footer-nav a:hover { color: rgba(255,255,255,0.8); }
.footer-legal { display: flex; gap: 20px; justify-content: flex-end; }
.footer-legal a { color: var(--faint); transition: color 0.15s; }
.footer-legal a:hover { color: rgba(255,255,255,0.7); }

/* ── TWO-COL LAYOUT ── */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.two-col-wide { display: grid; grid-template-columns: 1.3fr 1fr; gap: 64px; align-items: start; }

/* ── DIVIDER ── */
.divider { height: 1px; background: var(--border); margin: 0 56px; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .nav { padding: 16px 24px; }
  .nav-links { gap: 20px; font-size: 13px; }
  .section { padding: 48px 32px; }
  .home-hero, .page-hero { padding: 48px 32px 60px; }
  .social-proof { padding: 18px 32px; }
  .hero-h1 { font-size: 60px; letter-spacing: -2px; }
  .page-hero h1 { font-size: 48px; letter-spacing: -1.5px; }
  .section-heading { font-size: 34px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .agents-header { flex-direction: column; align-items: flex-start; gap: 16px; }
  .agents-grid { grid-template-columns: 1fr; }
  .agent-card-hero { grid-row: auto; }
  .agent-card { grid-column: auto; }
  .how-grid, .faq-grid { grid-template-columns: 1fr; gap: 40px; }
  .how-sticky, .faq-sticky { position: static; }
  .roi-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .roi-card { padding: 40px 32px; }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .cta-strip { grid-template-columns: 1fr; gap: 32px; padding: 40px; }
  .two-col, .two-col-wide { grid-template-columns: 1fr; gap: 40px; }
  .footer { grid-template-columns: 1fr; gap: 20px; padding: 32px 24px; text-align: center; }
  .footer-nav, .footer-legal { justify-content: center; }
  .footer-brand { justify-content: center; }
  .divider { margin: 0 32px; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .nav { padding: 14px 18px; }
  .section { padding: 40px 20px; }
  .home-hero, .page-hero { padding: 32px 20px 48px; }
  .hero-h1 { font-size: 40px; line-height: 1.05; letter-spacing: -1px; }
  .page-hero h1 { font-size: 34px; letter-spacing: -1px; }
  .hero-subtitle { font-size: 16px; }
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .hero-ctas .btn { justify-content: center; }
  .section-heading { font-size: 28px; letter-spacing: -0.5px; }
  .stats-grid { grid-template-columns: 1fr; }
  .roi-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .roi-num { font-size: 40px; }
  .roi-card { padding: 28px 20px; }
  .roi-title { font-size: 28px; }
  .cta-title { font-size: 30px; letter-spacing: -0.8px; }
  .cta-strip { padding: 28px; border-radius: 18px; }
  .phone-device { transform: scale(0.75); transform-origin: top center; margin-bottom: -90px; }
  .phone-rings { width: 380px; height: 380px; }
  .step-card { grid-template-columns: 60px 1fr; padding: 20px; gap: 14px; }
  .step-num { font-size: 28px; }
  .faq-question { font-size: 15px; padding: 18px 0; }
  .divider { margin: 0 20px; }
  .hero-ctas { gap: 10px; }
}

@media (max-width: 380px) {
  .hero-h1 { font-size: 34px; }
  .section-heading { font-size: 24px; }
  .page-hero h1 { font-size: 30px; }
}

/* ── CONTACT PAGE ── */
.contact-layout {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start;
}
.contact-promises { position: sticky; top: 90px; }
.promise-list { display: flex; flex-direction: column; gap: 28px; margin-bottom: 40px; }
.promise-item { display: flex; gap: 16px; align-items: flex-start; }
.promise-icon { font-size: 24px; flex-shrink: 0; margin-top: 2px; }
.promise-title { font-size: 15px; font-weight: 600; margin-bottom: 6px; }
.promise-desc { font-size: 13px; color: var(--muted); line-height: 1.55; }

.contact-stats {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
  padding: 24px; background: var(--card); border: 1px solid var(--border);
  border-radius: 16px; margin-bottom: 32px;
}
.contact-stat { text-align: center; }
.contact-stat-value { font-size: 26px; font-weight: 800; letter-spacing: -1px; color: var(--accent); }
.contact-stat-label { font-size: 11px; color: var(--faint); margin-top: 4px; line-height: 1.4; }

.contact-info-block { padding-top: 24px; border-top: 1px solid var(--border); }
.contact-info-title { font-size: 11px; text-transform: uppercase; letter-spacing: 1.5px; color: var(--faint); margin-bottom: 6px; }
.contact-info-link { font-size: 16px; font-weight: 600; color: var(--accent); display: block; transition: opacity 0.15s; }
.contact-info-link:hover { opacity: 0.8; }

/* Standalone form (contact page) */
.form-standalone-header { margin-bottom: 28px; }
.form-standalone-title { font-size: 20px; font-weight: 700; margin-bottom: 6px; }
.form-standalone-sub { font-size: 13px; color: var(--faint); }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-label { font-size: 12px; color: var(--muted); font-weight: 500; }
.form-input {
  width: 100%; padding: 11px 14px; border-radius: 10px;
  border: 1px solid var(--border); background: rgba(255,255,255,0.04);
  color: #fff; font-size: 14px; font-family: inherit; outline: none;
  -webkit-appearance: none; transition: border-color 0.15s, background 0.15s;
}
.form-input::placeholder { color: var(--faint); }
.form-input:focus { border-color: var(--accent); background: rgba(40,201,184,0.05); }
select.form-input {
  cursor: pointer;
  color-scheme: dark;
}
.form-textarea { resize: vertical; min-height: 90px; }

/* Next steps */
.next-steps-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 24px; padding: 48px;
}
.next-steps-title { font-size: 22px; font-weight: 700; margin-bottom: 32px; }
.next-steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.next-step { display: flex; flex-direction: column; gap: 12px; }
.next-step-num {
  width: 40px; height: 40px; border-radius: 10px;
  background: linear-gradient(135deg, var(--blue), var(--accent));
  display: grid; place-items: center;
  font-size: 18px; font-weight: 800;
}
.next-step-text { font-size: 13px; color: var(--muted); line-height: 1.55; }
.next-step-text strong { color: #fff; display: block; margin-bottom: 4px; }

/* Footer inner variant */
.footer-inner {
  display: grid; grid-template-columns: 1fr auto 1fr;
  gap: 24px; align-items: center; max-width: 100%;
}
.footer-links { display: flex; gap: 28px; justify-content: center; }
.footer-links a { color: var(--faint); font-size: 13px; transition: color 0.15s; }
.footer-links a:hover { color: rgba(255,255,255,0.8); }
.footer-tagline { font-size: 12px; color: var(--faint); margin-top: 4px; }

@media (max-width: 1024px) {
  .contact-layout { grid-template-columns: 1fr; gap: 48px; }
  .contact-promises { position: static; }
  .next-steps-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr; gap: 20px; text-align: center; }
  .footer-links { justify-content: center; }
}

@media (max-width: 640px) {
  .form-row { grid-template-columns: 1fr; }
  .contact-stats { grid-template-columns: 1fr; gap: 12px; }
  .next-steps-grid { grid-template-columns: 1fr; }
  .next-steps-card { padding: 28px 20px; }
}
