/* Fonts */
:root {
  --bg: #0A0F1C;
  --bg-light: #111827;
  --bg-card: #162032;
  --accent: #FFB347;
  --accent-dim: #C17E1A;
  --text: #F5F5F0;
  --text-muted: #8A96A8;
  --text-dim: #5A6578;
  --border: #1E2D45;
  --green: #34D399;
  --blue: #60A5FA;
}

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

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Nav */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 48px;
  border-bottom: 1px solid var(--border);
}
.nav-brand { display: flex; align-items: center; gap: 8px; }
.brand-mark { color: var(--accent); font-size: 20px; }
.brand-name { font-family: 'Syne', sans-serif; font-size: 20px; font-weight: 700; letter-spacing: -0.5px; }
.nav-tag { font-size: 12px; color: var(--text-muted); background: var(--bg-card); padding: 4px 10px; border-radius: 20px; border: 1px solid var(--border); }

/* Hero */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  padding: 80px 48px 80px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
}
.hero-left { display: flex; flex-direction: column; gap: 24px; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,179,71,0.1); border: 1px solid rgba(255,179,71,0.3); padding: 6px 14px; border-radius: 20px; width: fit-content; }
.badge-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); animation: pulse 2s infinite; }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.4; } }
.badge-text { font-size: 12px; color: var(--accent); font-weight: 500; }
.hero-headline { font-family: 'Syne', sans-serif; font-size: clamp(36px, 5vw, 56px); font-weight: 800; line-height: 1.1; letter-spacing: -1.5px; }
.hero-headline .accent { color: var(--accent); }
.hero-sub { font-size: 18px; color: var(--text-muted); max-width: 480px; line-height: 1.7; }
.hero-proof { display: flex; gap: 24px; align-items: center; padding-top: 8px; }
.proof-item { display: flex; flex-direction: column; }
.proof-num { font-family: 'Syne', sans-serif; font-size: 24px; font-weight: 800; color: var(--accent); }
.proof-label { font-size: 11px; color: var(--text-dim); max-width: 90px; line-height: 1.4; }
.proof-divider { width: 1px; height: 40px; background: var(--border); }

/* Workflow Widget */
.workflow-widget {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0,0,0,0.5);
}
.widget-header { background: #0D1526; padding: 12px 16px; display: flex; align-items: center; gap: 12px; border-bottom: 1px solid var(--border); }
.widget-dots { display: flex; gap: 6px; }
.widget-dots span { width: 10px; height: 10px; border-radius: 50%; background: var(--border); }
.widget-dots span:first-child { background: #FF5F57; }
.widget-dots span:nth-child(2) { background: #FEBC2E; }
.widget-dots span:last-child { background: #28C840; }
.widget-title { font-size: 12px; color: var(--text-muted); margin-left: auto; }
.widget-body { padding: 20px; display: flex; flex-direction: column; gap: 0; }
.step { display: flex; align-items: center; gap: 12px; padding: 12px; border-radius: 10px; background: rgba(255,255,255,0.03); border: 1px solid transparent; }
.step-icon { width: 36px; height: 36px; border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 16px; flex-shrink: 0; }
.lead-icon { background: rgba(96,165,250,0.15); }
.ai-icon { background: rgba(255,179,71,0.15); }
.qualified-icon { background: rgba(52,211,153,0.15); }
.done-icon { background: rgba(52,211,153,0.15); }
.step-text { flex: 1; }
.step-title { font-size: 13px; font-weight: 600; }
.step-desc { font-size: 11px; color: var(--text-muted); margin-top: 2px; line-height: 1.4; }
.step-time { font-size: 11px; color: var(--accent); font-weight: 600; white-space: nowrap; }
.step-connector { text-align: center; font-size: 14px; color: var(--text-dim); padding: 4px 0; }
.widget-footer { padding: 10px 20px; border-top: 1px solid var(--border); display: flex; justify-content: space-between; align-items: center; }
.wf-tag { font-size: 11px; color: var(--text-muted); }
.wf-status { font-size: 11px; color: var(--green); font-weight: 600; }

/* Workflow section */
.workflow-section { background: var(--bg-light); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.workflow-inner { max-width: 1200px; margin: 0 auto; padding: 80px 48px; }
.workflow-label { font-size: 11px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--accent); margin-bottom: 16px; }
.workflow-headline { font-family: 'Syne', sans-serif; font-size: clamp(28px, 3.5vw, 44px); font-weight: 800; line-height: 1.2; letter-spacing: -1px; margin-bottom: 56px; }
.workflow-steps { display: flex; gap: 32px; align-items: flex-start; }
.w-step { flex: 1; }
.w-step-num { font-family: 'Syne', sans-serif; font-size: 48px; font-weight: 800; color: var(--border); line-height: 1; margin-bottom: 16px; }
.w-step h3 { font-family: 'Syne', sans-serif; font-size: 20px; font-weight: 700; margin-bottom: 8px; }
.w-step p { font-size: 14px; color: var(--text-muted); line-height: 1.7; }
.w-arrow { font-size: 28px; color: var(--text-dim); flex-shrink: 0; padding-top: 20px; }

/* Features */
.features { padding: 80px 48px; }
.features-inner { max-width: 1200px; margin: 0 auto; }
.features-label, .niches-label, .pricing-label { font-size: 11px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--accent); margin-bottom: 16px; }
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 40px; }
.feature-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: 16px; padding: 28px; transition: border-color 0.2s; }
.feature-card:hover { border-color: var(--accent-dim); }
.feature-icon { font-size: 28px; margin-bottom: 16px; }
.feature-card h3 { font-family: 'Syne', sans-serif; font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.feature-card p { font-size: 13px; color: var(--text-muted); line-height: 1.6; }

/* Niches */
.niches { background: var(--bg-light); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 80px 48px; }
.niches-inner { max-width: 1200px; margin: 0 auto; }
.niches-headline { font-family: 'Syne', sans-serif; font-size: clamp(28px, 3.5vw, 44px); font-weight: 800; line-height: 1.2; letter-spacing: -1px; margin-bottom: 48px; }
.niches-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.niche-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: 12px; padding: 24px; }
.niche-icon { font-size: 24px; margin-bottom: 12px; }
.niche-card h4 { font-family: 'Syne', sans-serif; font-size: 15px; font-weight: 700; margin-bottom: 6px; }
.niche-card p { font-size: 13px; color: var(--text-muted); line-height: 1.6; }

/* Pricing */
.pricing { padding: 80px 48px; }
.pricing-inner { max-width: 1200px; margin: 0 auto; }
.pricing-headline { font-family: 'Syne', sans-serif; font-size: clamp(28px, 3.5vw, 44px); font-weight: 800; line-height: 1.2; letter-spacing: -1px; margin-bottom: 48px; }
.pricing-cards { display: flex; gap: 24px; }
.pricing-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: 20px; padding: 36px; flex: 1; position: relative; }
.pc-featured { border-color: var(--accent-dim); }
.pc-tag { position: absolute; top: -12px; left: 32px; background: var(--accent); color: var(--bg); font-size: 11px; font-weight: 700; padding: 4px 12px; border-radius: 20px; }
.pc-label { font-size: 11px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--text-muted); margin-bottom: 8px; }
.pc-price { font-family: 'Syne', sans-serif; font-size: 40px; font-weight: 800; color: var(--text); margin-bottom: 16px; }
.pc-price .pc-period { font-size: 20px; color: var(--text-muted); font-weight: 400; }
.pc-desc { font-size: 13px; color: var(--text-muted); line-height: 1.7; margin-bottom: 24px; padding-bottom: 24px; border-bottom: 1px solid var(--border); }
.pc-features { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.pc-features li { font-size: 13px; color: var(--text-muted); }
.pc-features li::before { content: '✓ '; color: var(--green); }
.pc-cta { margin-top: 24px; padding: 12px; background: rgba(255,179,71,0.1); border-radius: 8px; font-size: 12px; color: var(--accent); font-weight: 600; text-align: center; }

/* Closing */
.closing { padding: 100px 48px; }
.closing-inner { max-width: 800px; margin: 0 auto; text-align: center; }
.closing-headline { font-family: 'Syne', sans-serif; font-size: clamp(28px, 4vw, 52px); font-weight: 800; line-height: 1.1; letter-spacing: -1.5px; margin-bottom: 24px; }
.closing-sub { font-size: 18px; color: var(--text-muted); line-height: 1.7; margin-bottom: 24px; }
.closing-statement { font-family: 'Syne', sans-serif; font-size: 16px; font-weight: 600; color: var(--accent); }

/* Footer */
.footer { border-top: 1px solid var(--border); padding: 40px 48px; }
.footer-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; gap: 24px; }
.footer-brand { display: flex; align-items: center; gap: 8px; }
.footer-tagline { color: var(--text-muted); font-size: 13px; flex: 1; }
.footer-links { font-size: 12px; color: var(--text-dim); }

/* Responsive */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; gap: 48px; padding: 48px 24px; }
  .hero-right { display: none; }
  .features-grid, .niches-grid { grid-template-columns: 1fr 1fr; }
  .workflow-steps { flex-direction: column; }
  .w-arrow { display: none; }
  .pricing-cards { flex-direction: column; }
  .nav { padding: 16px 24px; }
  .features, .niches, .pricing, .closing { padding: 60px 24px; }
  .workflow-inner { padding: 60px 24px; }
  .footer { padding: 32px 24px; }
}
@media (max-width: 600px) {
  .features-grid, .niches-grid { grid-template-columns: 1fr; }
  .hero-proof { flex-direction: column; gap: 12px; }
  .proof-divider { display: none; }
}