/* ===== FONTS ===== */
:root {
  --bg: #0f0f0f;
  --surface: #1a1a1a;
  --surface2: #242424;
  --fg: #f0ece4;
  --fg-muted: #8a857a;
  --accent: #f5a623;
  --accent-dim: rgba(245, 166, 35, 0.12);
  --green: #4ade80;
  --border: rgba(240, 236, 228, 0.08);
  --font-display: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body { background: var(--bg); color: var(--fg); font-family: var(--font-body); line-height: 1.6; -webkit-font-smoothing: antialiased; }

/* ===== NAV ===== */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(15, 15, 15, 0.85); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0 2rem;
}
.nav-inner { max-width: 1100px; margin: 0 auto; height: 56px; display: flex; align-items: center; justify-content: space-between; }
.nav-logo { font-family: var(--font-display); font-size: 1.3rem; font-weight: 800; color: var(--fg); letter-spacing: -0.02em; }
.nav-tagline { font-size: 0.8rem; color: var(--fg-muted); font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase; }

/* ===== HERO ===== */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  padding: 7rem 2rem 4rem;
  background: var(--bg);
  position: relative;
}
.hero::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 60%;
  background: radial-gradient(ellipse 80% 60% at 50% -10%, rgba(245,166,35,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.hero-text h1 {
  font-family: var(--font-display); font-size: clamp(2.8rem, 5vw, 4rem); font-weight: 800;
  line-height: 1.05; letter-spacing: -0.03em; color: var(--fg);
  margin-bottom: 1.5rem;
}
.hero-sub {
  font-size: 1.15rem; color: var(--fg-muted); line-height: 1.65; margin-bottom: 0.75rem; max-width: 440px;
}
.hero-target { font-size: 0.9rem; color: var(--fg-muted); font-style: italic; max-width: 400px; }

/* ===== CALL WIDGET ===== */
.call-widget {
  background: var(--surface); border: 1px solid var(--border); border-radius: 16px;
  overflow: hidden; box-shadow: 0 24px 80px rgba(0,0,0,0.5);
}
.cw-header {
  background: var(--surface2); padding: 0.75rem 1rem;
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.8rem; font-weight: 500; color: var(--fg-muted);
  border-bottom: 1px solid var(--border);
}
.cw-dot { width: 8px; height: 8px; border-radius: 50%; }
.cw-dot.missed { background: #f87171; }
.cw-time { margin-left: auto; font-size: 0.75rem; color: rgba(138,133,122,0.6); }
.cw-body { padding: 1rem; display: flex; flex-direction: column; gap: 0.6rem; max-height: 300px; overflow-y: auto; }
.cw-msg {
  padding: 0.6rem 0.9rem; border-radius: 12px; font-size: 0.85rem; line-height: 1.5; max-width: 85%;
}
.cw-msg.incoming { background: var(--surface2); color: var(--fg); align-self: flex-start; border-bottom-left-radius: 4px; }
.cw-msg.outgoing { background: var(--accent-dim); color: var(--accent); align-self: flex-end; border-bottom-right-radius: 4px; }
.cw-msg.system { background: rgba(74,222,128,0.08); color: var(--green); font-size: 0.75rem; align-self: flex-end; border-bottom-right-radius: 4px; font-style: italic; }
.cw-footer { padding: 0.6rem 1rem; border-top: 1px solid var(--border); }
.cw-status { display: flex; align-items: center; gap: 0.4rem; font-size: 0.75rem; color: var(--green); }
.cw-dot-small { width: 6px; height: 6px; border-radius: 50%; }
.cw-dot-small.green { background: var(--green); }

/* ===== STATSBAR ===== */
.statsbar {
  background: var(--surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  padding: 2rem 2rem;
}
.statsbar-inner { max-width: 1100px; margin: 0 auto; display: flex; align-items: center; gap: 0; }
.stat { flex: 1; text-align: center; padding: 0.5rem; }
.stat-value { display: block; font-family: var(--font-display); font-size: 1.8rem; font-weight: 800; color: var(--accent); letter-spacing: -0.02em; }
.stat-label { display: block; font-size: 0.78rem; color: var(--fg-muted); margin-top: 0.25rem; line-height: 1.3; }
.stat-divider { width: 1px; height: 40px; background: var(--border); flex-shrink: 0; }

/* ===== SECTIONS ===== */
section { padding: 5rem 2rem; }
.section-inner { max-width: 1100px; margin: 0 auto; }
.section-eyebrow { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent); margin-bottom: 0.75rem; }
section h2 { font-family: var(--font-display); font-size: clamp(1.8rem, 3vw, 2.5rem); font-weight: 700; letter-spacing: -0.02em; line-height: 1.15; max-width: 560px; margin-bottom: 3rem; }

/* ===== WHAT IT DOES ===== */
.what-it-does { background: var(--bg); }
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.feature-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: 12px;
  padding: 1.5rem; transition: border-color 0.2s;
}
.feature-card:hover { border-color: rgba(245,166,35,0.3); }
.feature-icon { color: var(--accent); margin-bottom: 1rem; }
.feature-card h3 { font-family: var(--font-display); font-size: 1rem; font-weight: 700; margin-bottom: 0.5rem; }
.feature-card p { font-size: 0.88rem; color: var(--fg-muted); line-height: 1.6; }

/* ===== HOW IT WORKS ===== */
.how-it-works { background: var(--surface); }
.steps { display: flex; align-items: center; gap: 2rem; }
.step { flex: 1; }
.step-num { display: block; font-family: var(--font-display); font-size: 2.5rem; font-weight: 800; color: var(--accent-dim); letter-spacing: -0.03em; margin-bottom: 0.75rem; }
.step-content h3 { font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; margin-bottom: 0.5rem; }
.step-content p { font-size: 0.9rem; color: var(--fg-muted); line-height: 1.6; }
.step-arrow { color: var(--fg-muted); flex-shrink: 0; }

/* ===== PRICING ===== */
.pricing { background: var(--bg); }
.pricing-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; max-width: 800px; }
.pricing-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: 16px;
  padding: 2rem; position: relative;
}
.pricing-card.featured { border-color: var(--accent); background: linear-gradient(135deg, var(--surface) 0%, rgba(245,166,35,0.05) 100%); }
.plan-name { font-family: var(--font-display); font-size: 1.1rem; font-weight: 800; margin-bottom: 1rem; color: var(--fg-muted); text-transform: uppercase; letter-spacing: 0.08em; font-size: 0.85rem; }
.pricing-card.featured .plan-name { color: var(--accent); }
.plan-price { font-family: var(--font-display); font-size: 2.5rem; font-weight: 800; letter-spacing: -0.03em; color: var(--fg); }
.plan-monthly { font-family: var(--font-display); font-size: 1.8rem; font-weight: 700; letter-spacing: -0.02em; color: var(--fg-muted); margin-top: 0.25rem; }
.plan-period { font-size: 0.85rem; font-weight: 400; color: var(--fg-muted); }
.plan-features { list-style: none; margin: 1.5rem 0; display: flex; flex-direction: column; gap: 0.6rem; }
.plan-features li { font-size: 0.9rem; color: var(--fg-muted); padding-left: 1.2rem; position: relative; }
.plan-features li::before { content: '→'; position: absolute; left: 0; color: var(--accent); font-size: 0.85rem; }
.plan-note { font-size: 0.8rem; color: var(--fg-muted); font-style: italic; border-top: 1px solid var(--border); padding-top: 1rem; }
.pricing-cta { margin-top: 2rem; font-size: 0.9rem; color: var(--fg-muted); }

/* ===== TESTIMONIALS ===== */
.testimonials { background: var(--surface); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.testimonial-card {
  background: var(--bg); border: 1px solid var(--border); border-radius: 12px;
  padding: 1.5rem;
}
.quote { font-size: 0.95rem; color: var(--fg); line-height: 1.65; margin-bottom: 1rem; font-style: italic; }
.tm-name { display: block; font-weight: 600; font-size: 0.9rem; color: var(--fg); }
.tm-role { display: block; font-size: 0.78rem; color: var(--fg-muted); margin-top: 0.2rem; }

/* ===== CLOSING ===== */
.closing { background: var(--bg); }
.closing h2 { max-width: 600px; }
.closing p { font-size: 1rem; color: var(--fg-muted); line-height: 1.7; max-width: 560px; margin-bottom: 1rem; }
.closing-tagline { font-family: var(--font-display); font-size: 1.2rem; font-weight: 700; color: var(--accent); }

/* ===== FOOTER ===== */
footer { background: var(--surface); border-top: 1px solid var(--border); padding: 4rem 2rem 2rem; }
.footer-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer-logo { display: block; font-family: var(--font-display); font-size: 1.3rem; font-weight: 800; margin-bottom: 0.75rem; }
.footer-desc { font-size: 0.85rem; color: var(--fg-muted); line-height: 1.6; max-width: 280px; }
.footer-col-head { display: block; font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--fg-muted); margin-bottom: 0.75rem; }
.footer-col { display: flex; flex-direction: column; gap: 0.4rem; }
.footer-col span { font-size: 0.85rem; color: var(--fg-muted); cursor: default; }
.footer-bottom { max-width: 1100px; margin: 0 auto; padding-top: 2rem; border-top: 1px solid var(--border); font-size: 0.8rem; color: var(--fg-muted); }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .hero-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-text h1 { font-size: 2.4rem; }
  .hero { padding-top: 6rem; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .steps { flex-direction: column; gap: 1.5rem; }
  .step-arrow { transform: rotate(90deg); }
  .pricing-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .statsbar-inner { flex-direction: column; gap: 1.5rem; }
  .stat-divider { width: 60px; height: 1px; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
}
@media (max-width: 480px) {
  .features-grid { grid-template-columns: 1fr; }
  section { padding: 3rem 1.25rem; }
  .hero { padding: 5rem 1.25rem 3rem; }
}