/* ===== VARIABLES ===== */
:root {
  --bg: #0B0F1A;
  --surface: #111827;
  --surface2: #1C2333;
  --border: #1E2D40;
  --text: #E8E6DF;
  --text-muted: #8A94A6;
  --accent: #F97316;
  --accent-dim: rgba(249, 115, 22, 0.12);
  --green: #4ADE80;
  --font-display: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

/* ===== RESET & BASE ===== */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ===== NAV ===== */
.nav { padding: 20px 40px; border-bottom: 1px solid var(--border); }
.nav-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: baseline; gap: 16px; }
.nav-logo { font-family: var(--font-display); font-weight: 800; font-size: 22px; letter-spacing: -0.5px; color: var(--text); }
.nav-tag { font-size: 14px; color: var(--text-muted); }

/* ===== SECTION UTILITIES ===== */
.section-inner { max-width: 1200px; margin: 0 auto; padding: 80px 40px; }
.section-label { font-size: 12px; font-weight: 500; letter-spacing: 2px; text-transform: uppercase; color: var(--accent); margin-bottom: 12px; }
.section-title { font-family: var(--font-display); font-size: clamp(28px, 4vw, 42px); font-weight: 700; line-height: 1.15; margin-bottom: 48px; color: var(--text); }

/* ===== HERO ===== */
.hero { padding: 80px 40px 60px; max-width: 1200px; margin: 0 auto; }
.hero-content { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.hero-eyebrow { font-size: 13px; font-weight: 500; letter-spacing: 1.5px; text-transform: uppercase; color: var(--accent); margin-bottom: 20px; }
.hero-headline { font-family: var(--font-display); font-size: clamp(36px, 5vw, 58px); font-weight: 800; line-height: 1.1; letter-spacing: -1.5px; margin-bottom: 24px; color: var(--text); }
.hero-lede { font-size: 17px; color: var(--text-muted); line-height: 1.65; max-width: 460px; }

/* Hero dashboard mockup */
.hero-dashboard-wrap { position: relative; }
.hero-dashboard {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,0.5);
}
.dash-header {
  background: var(--surface2);
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
}
.dash-dot { width: 8px; height: 8px; border-radius: 50%; }
.dash-dot.green { background: var(--green); box-shadow: 0 0 8px var(--green); }
.dash-stats { display: grid; grid-template-columns: repeat(3, 1fr); border-bottom: 1px solid var(--border); }
.dash-stat { padding: 16px; text-align: center; border-right: 1px solid var(--border); }
.dash-stat:last-child { border-right: none; }
.dash-num { display: block; font-family: var(--font-display); font-size: 28px; font-weight: 700; color: var(--text); }
.dash-label { display: block; font-size: 11px; color: var(--text-muted); margin-top: 4px; text-transform: uppercase; letter-spacing: 0.5px; }
.dash-convo { padding: 16px; display: flex; flex-direction: column; gap: 10px; }
.dash-msg { border-radius: 10px; padding: 10px 14px; }
.dash-msg.caller { background: var(--surface2); }
.dash-msg.ai { background: var(--accent-dim); border: 1px solid rgba(249,115,22,0.2); }
.dash-msg.booked { border: 1px solid rgba(74,222,128,0.3); background: rgba(74,222,128,0.06); }
.msg-label { display: block; font-size: 10px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; color: var(--text-muted); margin-bottom: 4px; }
.msg-text { font-size: 13px; color: var(--text); line-height: 1.4; }
.dash-footer { padding: 10px 16px; border-top: 1px solid var(--border); }
.dash-status { font-size: 11px; color: var(--text-muted); }

/* ===== HOW IT WORKS ===== */
.how-it-works { border-top: 1px solid var(--border); }
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.step-num { display: block; font-family: var(--font-display); font-size: 40px; font-weight: 800; color: var(--accent-dim); color: rgba(249,115,22,0.25); line-height: 1; margin-bottom: 16px; }
.step h3 { font-family: var(--font-display); font-size: 20px; font-weight: 700; margin-bottom: 10px; }
.step p { font-size: 15px; color: var(--text-muted); line-height: 1.6; }

/* ===== ROLES ===== */
.roles-section { background: var(--surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.roles-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.role-card { background: var(--bg); border: 1px solid var(--border); border-radius: 12px; padding: 28px; transition: border-color 0.2s; }
.role-card:hover { border-color: rgba(249,115,22,0.4); }
.role-icon { color: var(--accent); margin-bottom: 16px; }
.role-card h3 { font-family: var(--font-display); font-size: 17px; font-weight: 700; margin-bottom: 8px; }
.role-card p { font-size: 14px; color: var(--text-muted); line-height: 1.55; }

/* ===== OUTCOMES ===== */
.outcomes-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-bottom: 48px; }
.outcome-stat { font-family: var(--font-display); font-size: 36px; font-weight: 800; color: var(--accent); margin-bottom: 12px; }
.outcome-item p { font-size: 15px; color: var(--text-muted); line-height: 1.55; }
.outcome-quote { background: var(--surface); border: 1px solid var(--border); border-radius: 12px; padding: 32px; }
.outcome-quote blockquote { font-family: var(--font-display); font-size: 20px; font-weight: 600; color: var(--text); line-height: 1.4; margin-bottom: 16px; }
.outcome-quote p { font-size: 15px; color: var(--text-muted); }

/* ===== INDUSTRIES ===== */
.industries { border-top: 1px solid var(--border); }
.industry-list { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 24px; }
.industry-tag { background: var(--surface2); border: 1px solid var(--border); border-radius: 100px; padding: 8px 18px; font-size: 14px; font-weight: 500; color: var(--text); transition: border-color 0.2s, background 0.2s; }
.industry-tag:hover { border-color: rgba(249,115,22,0.4); background: var(--accent-dim); }
.industries-note { font-size: 15px; color: var(--text-muted); max-width: 560px; }

/* ===== CLOSING ===== */
.closing-section { background: linear-gradient(135deg, var(--bg) 0%, #0F1825 100%); border-top: 1px solid var(--border); }
.closing-headline { font-family: var(--font-display); font-size: clamp(28px, 4vw, 48px); font-weight: 800; line-height: 1.15; margin-bottom: 20px; color: var(--text); }
.closing-body { font-size: 17px; color: var(--text-muted); max-width: 600px; line-height: 1.65; }
.closing-cta { margin-top: 32px; display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn-primary { display: inline-block; background: var(--accent); color: white; padding: 14px 28px; border-radius: 10px; font-weight: 600; font-size: 15px; text-decoration: none; transition: all 0.2s; border: none; }
.btn-primary:hover { background: #EA580C; transform: translateY(-1px); }
.btn-secondary { display: inline-block; background: transparent; color: var(--text); padding: 14px 28px; border-radius: 10px; font-weight: 600; font-size: 15px; text-decoration: none; border: 1px solid var(--border); transition: all 0.2s; }
.btn-secondary:hover { border-color: var(--text-muted); }

/* ===== FOOTER ===== */
.footer { border-top: 1px solid var(--border); padding: 32px 40px; }
.footer-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: baseline; gap: 16px; }
.footer-brand { font-family: var(--font-display); font-weight: 800; font-size: 18px; color: var(--text); }
.footer-tagline { font-size: 14px; color: var(--text-muted); }

/* ===== TRUST BADGES ===== */
.trust-section { background: var(--surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.trust-badges { display: flex; flex-wrap: wrap; gap: 24px; justify-content: center; align-items: center; }
.trust-badge { display: flex; align-items: center; gap: 10px; background: var(--bg); border: 1px solid var(--border); border-radius: 100px; padding: 10px 20px; font-size: 14px; font-weight: 500; color: var(--text); }
.trust-badge svg { color: var(--accent); flex-shrink: 0; }

/* ===== TESTIMONIALS ===== */
.testimonials-section { border-top: 1px solid var(--border); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-card { background: var(--surface); border: 1px solid var(--border); border-radius: 14px; padding: 28px; display: flex; flex-direction: column; gap: 16px; transition: border-color 0.2s; }
.testimonial-card:hover { border-color: rgba(249,115,22,0.3); }
.testimonial-stars { display: flex; gap: 3px; }
.testimonial-quote { font-family: var(--font-display); font-size: 15px; font-weight: 500; color: var(--text); line-height: 1.55; flex: 1; }
.testimonial-meta { display: flex; align-items: center; gap: 12px; border-top: 1px solid var(--border); padding-top: 16px; }
.testimonial-avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--surface2); display: flex; align-items: center; justify-content: center; color: var(--text-muted); flex-shrink: 0; }
.testimonial-name { font-size: 14px; font-weight: 600; color: var(--text); }
.testimonial-role { font-size: 12px; color: var(--text-muted); margin-top: 2px; }

/* ===== HOW IT WORKS (visual) ===== */
.how-section { border-top: 1px solid var(--border); }
.steps-visual { display: grid; grid-template-columns: repeat(3, 1fr); gap: 48px; position: relative; }
.step-item { display: flex; flex-direction: column; align-items: flex-start; }
.step-icon-wrap { width: 64px; height: 64px; border-radius: 14px; background: var(--accent-dim); border: 1px solid rgba(249,115,22,0.2); display: flex; align-items: center; justify-content: center; color: var(--accent); margin-bottom: 20px; }
.step-connector { width: 100%; height: 1px; background: linear-gradient(90deg, rgba(249,115,22,0.3) 0%, rgba(249,115,22,0.05) 100%); margin-bottom: 20px; align-self: stretch; }
.step-item-last .step-connector { display: none; }
.step-step-label { font-size: 10px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--accent); margin-bottom: 8px; }
.step-item h3 { font-family: var(--font-display); font-size: 20px; font-weight: 700; margin-bottom: 10px; }
.step-item p { font-size: 14px; color: var(--text-muted); line-height: 1.6; }
.step-detail-badge { margin-top: 16px; background: var(--surface2); border: 1px solid var(--border); border-radius: 6px; padding: 6px 12px; font-size: 12px; font-weight: 500; color: var(--green); }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .hero-content { grid-template-columns: 1fr; gap: 40px; }
  .hero-dashboard-wrap { order: -1; }
  .steps-grid { grid-template-columns: 1fr; gap: 32px; }
  .roles-grid { grid-template-columns: 1fr 1fr; }
  .outcomes-grid { grid-template-columns: 1fr; }
  .nav { padding: 16px 20px; }
  .section-inner { padding: 60px 20px; }
  .hero { padding: 48px 20px 40px; }
  .footer { padding: 24px 20px; }
}
@media (max-width: 600px) {
  .roles-grid { grid-template-columns: 1fr; }
  .dash-stats { grid-template-columns: 1fr; }
  .dash-stat { border-right: none; border-bottom: 1px solid var(--border); }
  .dash-stat:last-child { border-bottom: none; }
}