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

:root {
  --bg: #0B0E14;
  --surface: #111520;
  --surface-2: #1A1E28;
  --border: #1E2330;
  --text: #D4D8E3;
  --text-muted: #6B7280;
  --amber: #F59E0B;
  --amber-dim: #F59E0B22;
  --amber-light: #FCD34D;
  --red: #EF4444;
  --green: #10B981;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Figtree', system-ui, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* === TYPOGRAPHY === */
h1, h2, h3, h4 {
  font-family: 'Syne', system-ui, sans-serif;
  font-weight: 800;
  line-height: 1.15;
  color: #F4F6FB;
}

.section-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--amber);
  font-weight: 600;
  margin-bottom: 1rem;
}

.section-title {
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 1rem;
}

.section-sub {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 600px;
}

/* === NAV === */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1rem 2rem;
  background: rgba(11, 14, 20, 0.8);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  color: #F4F6FB;
}

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--text); }

/* === HERO === */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 7rem 2rem 4rem;
  position: relative;
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  color: var(--text-muted);
  font-size: 0.85rem;
  font-weight: 500;
}

.dot {
  width: 8px;
  height: 8px;
  background: var(--amber);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero-headline {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.amber { color: var(--amber); }

.hero-sub {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  max-width: 480px;
  line-height: 1.7;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--amber);
  color: #0B0E14;
  padding: 0.75rem 1.75rem;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  font-size: 0.95rem;
  transition: background 0.2s, transform 0.15s;
}

.btn-primary:hover {
  background: var(--amber-light);
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  padding: 0.75rem 1.75rem;
  border-radius: 8px;
  font-weight: 500;
  text-decoration: none;
  font-size: 0.95rem;
  border: 1px solid var(--border);
  transition: border-color 0.2s, color 0.2s;
}

.btn-ghost:hover { border-color: var(--amber); color: var(--amber); }

.hero-stats {
  display: flex;
  gap: 2rem;
  align-items: center;
  flex-wrap: wrap;
}

.stat-num {
  display: block;
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.3rem;
  color: #F4F6FB;
}

.stat-label {
  display: block;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 0.2rem;
}

.stat-divider {
  width: 1px;
  height: 36px;
  background: var(--border);
}

/* === CHAT WIDGET === */
.chat-widget {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,0.5);
}

.chat-header {
  padding: 1rem 1.25rem;
  background: var(--surface-2);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.chat-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
}

.chat-dot.live { animation: pulse 2s infinite; }

.chat-title {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
}

.chat-body {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.chat-msg {
  max-width: 85%;
  padding: 0.75rem 1rem;
  border-radius: 12px;
  font-size: 0.875rem;
  line-height: 1.5;
}

.msg-owner {
  background: var(--surface-2);
  color: var(--text);
  align-self: flex-end;
  border-bottom-right-radius: 4px;
}

.msg-bot {
  background: var(--amber-dim);
  border: 1px solid rgba(245,158,11,0.15);
  color: #E8EAF0;
  align-self: flex-start;
  border-bottom-left-radius: 4px;
}

.msg-time {
  font-size: 0.7rem;
  color: var(--text-muted);
  margin-top: 0.4rem;
}

.bot-label { color: var(--amber); }

.chat-lead-badge {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(16,185,129,0.1);
  border: 1px solid rgba(16,185,129,0.25);
  color: var(--green);
  padding: 0.5rem 0.75rem;
  border-radius: 8px;
  font-size: 0.75rem;
  font-weight: 600;
  margin-top: 0.5rem;
}

.phone-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0.6rem 1rem;
  margin-top: 1rem;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.hero-scroll-hint {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  margin-top: 4rem;
  color: var(--text-muted);
  font-size: 0.8rem;
}

/* === PAIN === */
.pain {
  padding: 6rem 2rem;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.pain-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.pain-quote {
  margin-bottom: 5rem;
  max-width: 780px;
}

.quote-mark { margin-bottom: 1.5rem; }

.pain-quote blockquote {
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  font-style: italic;
  color: #D4D8E3;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.pain-quote cite {
  font-style: normal;
  color: var(--text-muted);
  font-size: 0.875rem;
}

.pain-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.pain-item {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.5rem;
  transition: border-color 0.2s;
}

.pain-item:hover { border-color: rgba(245,158,11,0.4); }

.pain-icon {
  margin-bottom: 1rem;
}

.pain-item h3 {
  font-size: 1rem;
  font-family: 'Syne', sans-serif;
  margin-bottom: 0.5rem;
}

.pain-item p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* === HOW === */
.how {
  padding: 7rem 2rem;
}

.how .section-title {
  max-width: 700px;
}

.how .section-sub {
  margin-bottom: 4rem;
}

.steps {
  max-width: 900px;
  margin: 0 auto;
}

.step {
  display: grid;
  grid-template-columns: 80px 1fr 280px;
  gap: 2rem;
  align-items: start;
}

.step-connector {
  display: flex;
  justify-content: center;
  grid-column: 1 / -1;
  padding-left: 80px;
  padding-bottom: 1rem;
}

.step-number {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--amber);
  line-height: 1;
  padding-top: 0.25rem;
}

.step-content h3 {
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
}

.step-content p {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
  line-height: 1.6;
}

.step-tags {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.step-tags span {
  background: var(--amber-dim);
  border: 1px solid rgba(245,158,11,0.2);
  color: var(--amber);
  padding: 0.25rem 0.6rem;
  border-radius: 4px;
  font-size: 0.7rem;
  font-weight: 600;
}

.viz-box {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}

.viz-label {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  padding: 0.6rem 1rem;
  border-bottom: 1px solid var(--border);
}

.viz-items {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.viz-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.viz-call {
  padding: 1rem;
}

.call-status {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.call-time {
  margin-left: auto;
  color: var(--amber);
  font-weight: 700;
}

.call-script {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  font-size: 0.78rem;
  color: var(--text-muted);
  font-style: italic;
  margin-bottom: 0.75rem;
  padding-left: 0.5rem;
  border-left: 2px solid var(--border);
}

.call-script span::before { content: '"'; }
.call-script span::after { content: '"'; }

.call-result {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--green);
  background: rgba(16,185,129,0.08);
  border: 1px solid rgba(16,185,129,0.2);
  padding: 0.4rem 0.7rem;
  border-radius: 6px;
}

.viz-lead { padding: 1rem; }

.lead-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.5rem;
}

.lead-name {
  font-weight: 700;
  font-size: 0.95rem;
  color: #F4F6FB;
}

.lead-badge.hot {
  background: rgba(245,158,11,0.15);
  border: 1px solid rgba(245,158,11,0.4);
  color: var(--amber);
  padding: 0.15rem 0.5rem;
  border-radius: 4px;
  font-size: 0.65rem;
  font-weight: 700;
}

.lead-info {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 0.3rem;
}

.lead-tags {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.75rem;
  flex-wrap: wrap;
}

.lead-tags span {
  font-size: 0.65rem;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  background: var(--surface-2);
  color: var(--text-muted);
  border: 1px solid var(--border);
}

/* === FEATURES === */
.features {
  padding: 7rem 2rem;
  background: var(--surface);
  border-top: 1px solid var(--border);
}

.features .section-title {
  margin-bottom: 3rem;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.feature {
  padding: 1.75rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  transition: border-color 0.2s;
}

.feature:hover { border-color: rgba(245,158,11,0.3); }

.feature-icon {
  margin-bottom: 1rem;
}

.feature h3 {
  font-size: 1.05rem;
  margin-bottom: 0.6rem;
}

.feature p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* === PRICING === */
.pricing {
  padding: 7rem 2rem;
}

.pricing .section-title { margin-bottom: 0.75rem; }
.pricing .section-sub { margin-bottom: 4rem; }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto 4rem;
  align-items: start;
}

.pricing-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem;
  position: relative;
}

.pricing-card.featured {
  border-color: var(--amber);
  box-shadow: 0 0 0 1px var(--amber), 0 0 40px rgba(245,158,11,0.1);
}

.card-popular {
  position: absolute;
  top: -0.75rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--amber);
  color: #0B0E14;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
}

.card-label {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--amber);
  margin-bottom: 1rem;
}

.card-price {
  margin-bottom: 1rem;
}

.price {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 3rem;
  color: #F4F6FB;
}

.period {
  font-size: 1rem;
  color: var(--text-muted);
  margin-left: 0.25rem;
}

.card-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.card-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.card-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.card-note {
  font-size: 0.75rem;
  color: var(--text-muted);
  border-top: 1px solid var(--border);
  padding-top: 1rem;
  font-style: italic;
}

.pricing-roi {
  max-width: 700px;
  margin: 0 auto;
  background: var(--surface);
  border: 1px solid rgba(245,158,11,0.3);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
}

.roi-label {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--amber);
  margin-bottom: 1rem;
}

.pricing-roi p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 2;
}

/* === TESTIMONIALS / RESULTS === */
.testimonials {
  padding: 7rem 2rem;
  background: var(--surface);
  border-top: 1px solid var(--border);
}

.testimonials .section-title { margin-bottom: 3rem; }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.result-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
}

.result-num {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 3.5rem;
  color: var(--amber);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.result-label {
  font-size: 1rem;
  font-weight: 600;
  color: #F4F6FB;
  margin-bottom: 0.5rem;
}

.result-context {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* === MANIFESTO === */
.manifesto {
  padding: 7rem 2rem;
  background: var(--bg);
}

.manifesto-inner {
  max-width: 760px;
  margin: 0 auto;
}

.manifesto-inner h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: 2rem;
}

.manifesto-inner p {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.manifesto-signature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 3rem;
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.3rem;
  color: #F4F6FB;
}

/* === CLOSING === */
.closing {
  padding: 7rem 2rem;
  background: var(--surface);
  border-top: 1px solid var(--border);
}

.closing-inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.closing-inner h2 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  margin-bottom: 1.5rem;
}

.closing-inner p {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 1rem;
}

/* === FOOTER === */
footer {
  padding: 2.5rem 2rem;
  border-top: 1px solid var(--border);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  text-align: center;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  color: #F4F6FB;
  margin-bottom: 0.25rem;
}

.footer-tagline {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.footer-copy {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 0.5rem;
}

/* === RESPONSIVE === */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 3rem; }
  .hero-right { display: none; }
  .step { grid-template-columns: 60px 1fr; }
  .step-visual { grid-column: 2; }
  .step-connector { padding-left: 60px; }
}

@media (max-width: 600px) {
  .nav-links { display: none; }
  .hero { padding: 6rem 1.25rem 3rem; }
  .pain, .how, .features, .pricing, .testimonials, .manifesto, .closing {
    padding: 4rem 1.25rem;
  }
  .hero-stats { gap: 1.25rem; }
  .stat-divider { display: none; }
  .step { grid-template-columns: 1fr; }
  .step-visual { grid-column: 1; }
  .pricing-grid { grid-template-columns: 1fr; }
}
