:root {
  --bg: #0d1117;
  --surface: #161b22;
  --surface-alt: #1c2128;
  --border: #30363d;
  --fg: #e6edf3;
  --fg-muted: #8b949e;
  --fg-subtle: #6e7681;
  --accent: #f0a500;
  --accent-dim: rgba(240,165,0,0.12);
  --amber-glow: rgba(240,165,0,0.06);
  --red: #f85149;
}

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

html { scroll-behavior: smooth; }

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

/* ── Nav ── */
.nav {
  padding: 1.25rem 2rem;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  background: rgba(13,17,23,0.92);
  backdrop-filter: blur(12px);
  z-index: 100;
}
.nav-inner { max-width: 1100px; margin: 0 auto; display: flex; align-items: center; gap: 1rem; }
.nav-logo {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--fg);
  letter-spacing: -0.02em;
}
.nav-tagline { font-size: 0.8rem; color: var(--fg-muted); margin-left: auto; }

/* ── Hero ── */
.hero {
  padding: 6rem 2rem 5rem;
  position: relative;
  overflow: hidden;
}
.hero-bg-shape {
  position: absolute;
  top: -80px;
  right: -120px;
  width: 600px;
  height: 600px;
  background: radial-gradient(ellipse at center, rgba(240,165,0,0.08) 0%, transparent 65%);
  pointer-events: none;
}
.hero-content {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.hero-label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-dim);
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(240,165,0,0.25);
  margin-bottom: 1.5rem;
  width: fit-content;
}
.hero-headline {
  font-family: 'Sora', sans-serif;
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--fg);
  margin-bottom: 1.5rem;
}
.hero-lede {
  font-size: 1.1rem;
  color: var(--fg-muted);
  line-height: 1.7;
  max-width: 420px;
  margin-bottom: 2.5rem;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 2rem;
  border-top: 1px solid var(--border);
  padding-top: 2rem;
}
.hero-stat { display: flex; flex-direction: column; }
.hero-stat-num {
  font-family: 'Sora', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}
.hero-stat-label { font-size: 0.75rem; color: var(--fg-muted); margin-top: 0.25rem; }
.hero-stat-sep {
  width: 1px;
  height: 32px;
  background: var(--border);
  flex-shrink: 0;
}
.hero-shape-right {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.hero-shape-circle {
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle at 40% 40%, rgba(240,165,0,0.15) 0%, rgba(240,165,0,0.04) 60%, transparent 80%);
  border: 1px solid rgba(240,165,0,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-shape-inner {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: radial-gradient(circle at center, rgba(240,165,0,0.25) 0%, rgba(240,165,0,0.08) 70%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-shape-core {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 40px rgba(240,165,0,0.5), 0 0 80px rgba(240,165,0,0.2);
}

/* ── Trust bar ── */
.trust-bar {
  padding: 1.5rem 2rem;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  text-align: center;
}
.trust-label { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--fg-subtle); margin-bottom: 0.75rem; }
.trust-items { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 0.4rem; color: var(--fg-muted); font-size: 0.85rem; font-weight: 500; }
.trust-dot { color: var(--fg-subtle); }

/* ── Services ── */
.services { padding: 6rem 2rem; max-width: 1100px; margin: 0 auto; }
.services-header { margin-bottom: 3.5rem; }
.services-header h2 {
  font-family: 'Sora', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}
.services-header p { color: var(--fg-muted); font-size: 1rem; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); border-radius: 12px; overflow: hidden; }
.service-card { background: var(--surface); padding: 2rem; }
.service-icon { color: var(--accent); margin-bottom: 1rem; }
.service-card h3 { font-family: 'Sora', sans-serif; font-size: 1rem; font-weight: 600; margin-bottom: 0.5rem; }
.service-card p { font-size: 0.875rem; color: var(--fg-muted); line-height: 1.6; }

/* ── Workflow ── */
.workflow { padding: 6rem 2rem; background: var(--surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.workflow-header { max-width: 1100px; margin: 0 auto 3.5rem; }
.workflow-header h2 { font-family: 'Sora', sans-serif; font-size: 2rem; font-weight: 700; letter-spacing: -0.02em; margin-bottom: 0.5rem; }
.workflow-header p { color: var(--fg-muted); }
.workflow-steps { max-width: 1100px; margin: 0 auto; display: flex; align-items: center; gap: 0; }
.wf-step { flex: 1; display: flex; align-items: flex-start; gap: 1rem; padding: 1.5rem; background: var(--surface-alt); border: 1px solid var(--border); border-radius: 10px; }
.wf-num { font-family: 'Sora', sans-serif; font-size: 1.8rem; font-weight: 800; color: var(--accent); line-height: 1; flex-shrink: 0; opacity: 0.7; }
.wf-body h3 { font-family: 'Sora', sans-serif; font-size: 0.95rem; font-weight: 600; margin-bottom: 0.3rem; }
.wf-body p { font-size: 0.8rem; color: var(--fg-muted); }
.wf-arrow { color: var(--fg-subtle); flex-shrink: 0; padding: 0 0.5rem; }
.workflow-pricing { max-width: 1100px; margin: 3rem auto 0; display: flex; align-items: baseline; gap: 1rem; border-top: 1px solid var(--border); padding-top: 2rem; }
.wf-price { font-family: 'Sora', sans-serif; font-size: 3rem; font-weight: 800; color: var(--accent); letter-spacing: -0.02em; }
.wf-price-sub { font-size: 1rem; color: var(--fg-muted); }

/* ── Verticals ── */
.verticals { padding: 6rem 2rem; max-width: 1100px; margin: 0 auto; }
.verticals-header { margin-bottom: 3rem; }
.verticals-header h2 { font-family: 'Sora', sans-serif; font-size: 2rem; font-weight: 700; letter-spacing: -0.02em; margin-bottom: 0.5rem; }
.verticals-header p { color: var(--fg-muted); }
.verticals-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); border-radius: 12px; overflow: hidden; }
.vertical-item { background: var(--surface); padding: 1.5rem 1.75rem; display: flex; align-items: flex-start; gap: 1rem; }
.vertical-icon { color: var(--accent); flex-shrink: 0; margin-top: 2px; }
.vertical-item h4 { font-family: 'Sora', sans-serif; font-size: 0.9rem; font-weight: 600; margin-bottom: 0.25rem; }
.vertical-item p { font-size: 0.8rem; color: var(--fg-muted); }

/* ── Objections ── */
.objections { padding: 6rem 2rem; background: var(--surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.obj-grid { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.obj-col { padding: 1.5rem; border: 1px solid var(--border); border-radius: 10px; background: var(--surface-alt); }
.obj-icon { color: var(--accent); margin-bottom: 1rem; }
.obj-col h4 { font-family: 'Sora', sans-serif; font-size: 0.9rem; font-weight: 600; margin-bottom: 0.5rem; }
.obj-col p { font-size: 0.85rem; color: var(--fg-muted); line-height: 1.6; }

/* ── Closing ── */
.closing { padding: 7rem 2rem; position: relative; overflow: hidden; }
.closing::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(240,165,0,0.06) 0%, transparent 60%);
  pointer-events: none;
}
.closing-inner { max-width: 800px; margin: 0 auto; text-align: center; }
.closing h2 {
  font-family: 'Sora', sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}
.closing p { font-size: 1.05rem; color: var(--fg-muted); max-width: 560px; margin: 0 auto 3rem; }
.closing-cta { display: inline-block; }
.closing-price { display: flex; align-items: baseline; gap: 0.5rem; justify-content: center; margin-bottom: 0.5rem; }
.cp-amount { font-family: 'Sora', sans-serif; font-size: 3.5rem; font-weight: 800; color: var(--accent); letter-spacing: -0.03em; }
.cp-period { font-size: 1rem; color: var(--fg-muted); }
.cp-note { font-size: 0.8rem; color: var(--fg-subtle); }

/* ── Footer ── */
.footer { border-top: 1px solid var(--border); padding: 2rem; }
.footer-inner { max-width: 1100px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; }
.footer-logo { font-family: 'Sora', sans-serif; font-weight: 700; font-size: 0.95rem; }
.footer-copy { font-size: 0.8rem; color: var(--fg-subtle); }

/* ── Responsive ── */
@media (max-width: 768px) {
  .hero-content { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-shape-right { display: none; }
  .hero { padding: 4rem 1.5rem 3rem; }
  .hero-stats { gap: 1.5rem; }
  .services-grid { grid-template-columns: 1fr; }
  .workflow-steps { flex-direction: column; gap: 1rem; }
  .wf-arrow { transform: rotate(90deg); align-self: center; }
  .verticals-list { grid-template-columns: 1fr; }
  .obj-grid { grid-template-columns: 1fr; }
  .closing { padding: 5rem 1.5rem; }
  .footer-inner { flex-direction: column; gap: 0.5rem; text-align: center; }
  .nav-tagline { display: none; }
}

@media (max-width: 480px) {
  .hero-headline { font-size: 2.4rem; }
  .hero-stats { flex-wrap: wrap; }
  .wf-step { flex-direction: column; }
}