:root {
  --navy: #0B1F3A;
  --navy-light: #0f2849;
  --accent: #F97316;
  --accent-dim: rgba(249, 115, 22, 0.12);
  --bg: #FFFFFF;
  --bg-alt: #F8FAFC;
  --text: #0B1F3A;
  --text-muted: #64748B;
  --border: #E2E8F0;
  --font-head: 'Plus Jakarta Sans', system-ui, sans-serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

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

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* NAV */
.nav {
  padding: 20px 40px;
  border-bottom: 1px solid var(--border);
  background: #fff;
}
.nav-inner { max-width: 1140px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; }
.nav-logo { font-family: var(--font-head); font-weight: 800; font-size: 20px; color: var(--navy); letter-spacing: -0.5px; }
.nav-tagline { font-size: 13px; color: var(--text-muted); font-family: var(--font-body); }

/* HERO */
.hero { background: var(--navy); color: #fff; padding: 80px 40px 90px; position: relative; overflow: hidden; }
.hero::before { content: ''; position: absolute; top: -100px; right: -100px; width: 600px; height: 600px; background: radial-gradient(circle, rgba(249,115,22,0.08) 0%, transparent 70%); border-radius: 50%; }
.hero-inner { max-width: 1140px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(249,115,22,0.15); border: 1px solid rgba(249,115,22,0.3); border-radius: 20px; padding: 6px 14px; font-size: 12px; font-weight: 600; color: #F97316; font-family: var(--font-head); margin-bottom: 24px; letter-spacing: 0.5px; text-transform: uppercase; }
.badge-dot { width: 6px; height: 6px; background: #F97316; border-radius: 50%; }
.hero-headline { font-family: var(--font-head); font-size: clamp(36px, 4vw, 54px); font-weight: 800; line-height: 1.1; letter-spacing: -1.5px; margin-bottom: 20px; }
.headline-accent { color: #F97316; }
.hero-sub { font-size: 17px; color: rgba(255,255,255,0.72); line-height: 1.7; max-width: 480px; margin-bottom: 32px; }
.hero-trust { display: flex; gap: 20px; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.8); font-family: var(--font-head); }

/* CALL WIDGET */
.hero-visual { display: flex; justify-content: center; align-items: center; }
.call-widget { background: #0f2849; border: 1px solid rgba(255,255,255,0.1); border-radius: 20px; padding: 24px; width: 100%; max-width: 340px; position: relative; }
.call-header { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
.call-avatar { width: 44px; height: 44px; background: rgba(249,115,22,0.2); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.call-info { flex: 1; }
.call-name { font-family: var(--font-head); font-weight: 700; font-size: 14px; color: #fff; }
.call-number { font-size: 12px; color: rgba(255,255,255,0.45); margin-top: 2px; }
.call-status { font-size: 10px; font-weight: 800; padding: 3px 8px; border-radius: 4px; letter-spacing: 1px; }
.call-status.live { background: #10B981; color: #fff; }
.call-waves { display: flex; align-items: center; gap: 3px; margin-bottom: 20px; height: 24px; }
.wave { width: 3px; border-radius: 2px; background: #F97316; animation: wave 1.2s ease-in-out infinite; }
.w1 { height: 8px; animation-delay: 0s; }
.w2 { height: 16px; animation-delay: 0.2s; }
.w3 { height: 12px; animation-delay: 0.4s; }
@keyframes wave { 0%, 100% { transform: scaleY(1); } 50% { transform: scaleY(0.4); } }
.call-transcript { background: rgba(255,255,255,0.05); border-radius: 12px; padding: 14px; margin-bottom: 16px; }
.transcript-label { font-size: 10px; font-weight: 700; color: #F97316; letter-spacing: 0.5px; text-transform: uppercase; margin-bottom: 6px; font-family: var(--font-head); }
.transcript-text { font-size: 13px; color: rgba(255,255,255,0.85); line-height: 1.6; font-style: italic; }
.call-outcomes { display: flex; gap: 8px; }
.outcome { font-size: 11px; font-weight: 600; padding: 5px 10px; border-radius: 6px; font-family: var(--font-head); }
.outcome.captured { background: rgba(16,185,129,0.15); color: #10B981; }
.outcome.booked { background: rgba(249,115,22,0.15); color: #F97316; }
.widget-shadow { display: none; }

/* STATS */
.stats-section { background: #FAFAFA; padding: 60px 40px; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.stats-inner { max-width: 1140px; margin: 0 auto; display: grid; grid-template-columns: 1fr auto 1fr auto 1fr; gap: 0; align-items: center; }
.stat-card { padding: 0 40px; }
.stat-number { font-family: var(--font-head); font-size: 52px; font-weight: 800; color: var(--navy); line-height: 1; letter-spacing: -2px; margin-bottom: 8px; }
.stat-label { font-size: 14px; color: var(--text-muted); line-height: 1.5; max-width: 220px; }
.stat-divider { width: 1px; height: 60px; background: var(--border); flex-shrink: 0; }
.stats-note { max-width: 1140px; margin: 20px auto 0; font-size: 13px; color: var(--text-muted); font-style: italic; }

/* HOW */
.how-section { padding: 80px 40px; max-width: 1140px; margin: 0 auto; }
.how-header { margin-bottom: 60px; }
.section-label { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: var(--accent); font-family: var(--font-head); margin-bottom: 12px; }
.how-headline { font-family: var(--font-head); font-size: 36px; font-weight: 800; color: var(--navy); letter-spacing: -1px; line-height: 1.2; }
.how-steps { display: grid; grid-template-columns: 1fr auto 1fr auto 1fr; gap: 0; align-items: start; }
.how-step { padding: 0 24px; }
.step-number { font-family: var(--font-head); font-size: 11px; font-weight: 800; color: var(--accent); letter-spacing: 1px; margin-bottom: 16px; }
.step-title { font-family: var(--font-head); font-size: 17px; font-weight: 700; color: var(--navy); margin-bottom: 10px; line-height: 1.3; }
.step-desc { font-size: 14px; color: var(--text-muted); line-height: 1.65; }
.step-icon { margin-top: 24px; }
.how-arrow { display: flex; align-items: center; padding-top: 36px; }

/* FEATURES */
.features-section { background: var(--bg-alt); padding: 80px 40px; }
.features-header { max-width: 620px; margin: 0 auto 60px; text-align: center; }
.features-headline { font-family: var(--font-head); font-size: 36px; font-weight: 800; color: var(--navy); letter-spacing: -1px; margin-bottom: 16px; }
.features-sub { font-size: 16px; color: var(--text-muted); line-height: 1.7; }
.features-grid { max-width: 1140px; margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.feature-card { background: #fff; border: 1px solid var(--border); border-radius: 16px; padding: 28px; transition: transform 0.2s, box-shadow 0.2s; }
.feature-card:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(11,31,58,0.08); }
.feature-icon-wrap { margin-bottom: 16px; }
.feature-title { font-family: var(--font-head); font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.feature-desc { font-size: 14px; color: var(--text-muted); line-height: 1.65; }

/* MANIFESTO */
.manifesto-section { background: var(--navy); padding: 80px 40px; }
.manifesto-inner { max-width: 800px; margin: 0 auto; }
.manifesto-label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; color: var(--accent); font-family: var(--font-head); margin-bottom: 16px; }
.manifesto-headline { font-family: var(--font-head); font-size: 36px; font-weight: 800; color: #fff; letter-spacing: -1px; line-height: 1.2; margin-bottom: 28px; }
.manifesto-body p { font-size: 16px; color: rgba(255,255,255,0.65); line-height: 1.8; margin-bottom: 16px; }
.manifesto-body p:last-child { color: rgba(255,255,255,0.85); font-weight: 500; }
.manifesto-stat { margin-top: 40px; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: 16px; padding: 28px 32px; }
.manifesto-stat-inner { display: flex; align-items: center; justify-content: center; gap: 40px; }
.m-stat { text-align: center; }
.m-stat-value { font-family: var(--font-head); font-size: 36px; font-weight: 800; color: var(--accent); letter-spacing: -1px; }
.m-stat-label { font-size: 13px; color: rgba(255,255,255,0.5); margin-top: 4px; }
.m-divider { width: 1px; height: 48px; background: rgba(255,255,255,0.1); }

/* CLOSING */
.closing-section { padding: 80px 40px; background: #fff; border-top: 1px solid var(--border); }
.closing-inner { max-width: 800px; margin: 0 auto; text-align: center; }
.closing-headline { font-family: var(--font-head); font-size: 36px; font-weight: 800; color: var(--navy); letter-spacing: -1px; line-height: 1.2; margin-bottom: 20px; }
.closing-sub { font-size: 17px; color: var(--text-muted); line-height: 1.7; margin-bottom: 36px; }
.closing-tags { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; }
.tag { background: var(--navy); color: rgba(255,255,255,0.85); font-size: 12px; font-weight: 600; padding: 6px 14px; border-radius: 20px; font-family: var(--font-head); letter-spacing: 0.3px; }

/* FOOTER */
.footer { padding: 32px 40px; border-top: 1px solid var(--border); }
.footer-inner { max-width: 1140px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; }
.footer-logo { font-family: var(--font-head); font-weight: 800; font-size: 16px; color: var(--navy); display: block; margin-bottom: 6px; }
.footer-tagline { font-size: 13px; color: var(--text-muted); }
.footer-note { font-size: 12px; color: var(--text-muted); }

/* MOBILE */
@media (max-width: 768px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { order: -1; }
  .call-widget { max-width: 100%; }
  .hero { padding: 60px 24px 70px; }
  .hero-headline { font-size: 32px; }
  .stats-inner { grid-template-columns: 1fr; gap: 32px; }
  .stat-card { padding: 0; }
  .stat-divider { width: 48px; height: 1px; }
  .how-steps { grid-template-columns: 1fr; }
  .how-arrow { transform: rotate(90deg); justify-content: center; }
  .features-grid { grid-template-columns: 1fr; }
  .manifesto-stat-inner { flex-direction: column; gap: 24px; }
  .m-divider { width: 48px; height: 1px; }
  .footer-inner { flex-direction: column; gap: 16px; text-align: center; }
  .nav { padding: 16px 24px; }
  .how-section, .features-section, .manifesto-section, .closing-section { padding: 60px 24px; }
  .stats-section { padding: 48px 24px; }
  .stat-number { font-size: 40px; }
  .how-headline, .features-headline, .manifesto-headline, .closing-headline { font-size: 28px; }
  .manifesto-stat { padding: 20px; }
}