/* Hot-Leads Automation — brand stylesheet
   Dark navy / near-black, ember/coral accents, white type. */
:root {
  --bg: #0b0e17;
  --panel: #12172a;
  --panel-2: #0f1424;
  --line: rgba(255, 255, 255, 0.08);
  --accent: #ff5a3c;
  --accent-soft: #ff8a5c;
  --text: #f5f7fa;
  --muted: #9aa3b2;
  --radius: 14px;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; }

.wrap { max-width: 1120px; margin: 0 auto; padding: 0 20px; }

/* ── Header ─────────────────────────────────────── */
header {
  border-bottom: 1px solid var(--line);
  background: rgba(11, 14, 23, 0.92);
  backdrop-filter: blur(8px);
  position: sticky; top: 0; z-index: 50;
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 20px; max-width: 1120px; margin: 0 auto;
}
.brand { display: flex; flex-direction: column; }
.brand .name {
  font-weight: 800; letter-spacing: 0.02em; font-size: 15px;
  color: var(--text); text-transform: uppercase;
}
.brand .tag { font-size: 11px; color: var(--accent); font-weight: 600; letter-spacing: 0.06em; }
.nav-links { display: flex; gap: 22px; align-items: center; }
.nav-links a { color: var(--muted); font-size: 14px; font-weight: 500; }
.nav-links a:hover, .nav-links a.active { color: var(--text); }
.nav-cta {
  background: var(--accent); color: #fff; font-weight: 700; font-size: 13px;
  padding: 9px 16px; border-radius: 999px;
}
.nav-cta:hover { background: #e94c2f; }
@media (max-width: 760px) {
  .nav-links { gap: 12px; flex-wrap: wrap; }
  .nav-links a:not(.nav-cta) { display: none; }
}

/* ── Hero ───────────────────────────────────────── */
.hero {
  padding: 96px 0 72px;
  text-align: center;
  background:
    radial-gradient(900px 420px at 50% -80px, rgba(255, 90, 60, 0.16), transparent 65%),
    var(--bg);
}
.hero h1 {
  font-size: clamp(34px, 5.4vw, 58px);
  font-weight: 800; letter-spacing: -0.02em; line-height: 1.12;
  max-width: 820px; margin: 0 auto 20px;
}
.hero h1 .ember { color: var(--accent); }
.hero p.sub {
  font-size: 18px; color: var(--muted); max-width: 680px; margin: 0 auto 32px;
}
.cta-row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.btn {
  display: inline-block; font-weight: 700; font-size: 15px;
  padding: 14px 28px; border-radius: 999px; border: 1px solid transparent;
  transition: all .15s ease;
}
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: #e94c2f; transform: translateY(-1px); }
.btn-ghost { border-color: var(--line); color: var(--text); background: rgba(255,255,255,0.03); }
.btn-ghost:hover { border-color: rgba(255,90,60,.5); }
.trust-row {
  margin-top: 34px; display: flex; gap: 26px; justify-content: center; flex-wrap: wrap;
  color: var(--muted); font-size: 13.5px;
}
.trust-row span::before { content: "✓"; color: var(--accent); margin-right: 7px; font-weight: 700; }

/* ── Sections ───────────────────────────────────── */
section { padding: 76px 0; }
section.alt { background: var(--panel-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.kicker {
  color: var(--accent); font-size: 12.5px; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; margin-bottom: 12px;
}
h2.section {
  font-size: clamp(26px, 3.6vw, 38px); font-weight: 800; letter-spacing: -0.015em;
  margin-bottom: 14px; line-height: 1.2;
}
.lead { color: var(--muted); font-size: 16.5px; max-width: 720px; margin-bottom: 38px; }

/* ── Cards grid ─────────────────────────────────── */
.grid { display: grid; gap: 18px; }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
.card {
  background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px;
}
.card h3 { font-size: 17px; font-weight: 700; margin-bottom: 8px; }
.card p { color: var(--muted); font-size: 14.5px; }

/* ── Steps ──────────────────────────────────────── */
.steps { display: grid; gap: 14px; }
.step {
  display: flex; gap: 18px; align-items: flex-start;
  background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius); padding: 22px;
}
.step .num {
  flex: 0 0 44px; height: 44px; border-radius: 12px; display: grid; place-items: center;
  background: rgba(255, 90, 60, 0.14); color: var(--accent); font-weight: 800; font-size: 17px;
}
.step h3 { font-size: 16.5px; margin-bottom: 5px; }
.step p { color: var(--muted); font-size: 14.5px; }

/* ── Pricing cards ──────────────────────────────── */
.price-card {
  background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px 26px; display: flex; flex-direction: column; gap: 14px; position: relative;
}
.price-card.featured { border-color: rgba(255, 90, 60, 0.55); box-shadow: 0 0 0 1px rgba(255,90,60,0.25); }
.price-card .flag {
  position: absolute; top: -11px; left: 22px; background: var(--accent); color: #fff;
  font-size: 11px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase;
  padding: 4px 12px; border-radius: 999px;
}
.price-card h3 { font-size: 18px; }
.price { font-size: 26px; font-weight: 800; }
.price small { color: var(--muted); font-size: 13px; font-weight: 500; }
.price-card ul { list-style: none; display: grid; gap: 9px; color: var(--muted); font-size: 14px; flex: 1; }
.price-card ul li::before { content: "✓"; color: var(--accent); margin-right: 8px; font-weight: 700; }
.price-card .btn { text-align: center; }

/* ── Tables ─────────────────────────────────────── */
table { width: 100%; border-collapse: collapse; background: var(--panel); border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); }
th, td { text-align: left; padding: 13px 16px; border-bottom: 1px solid var(--line); font-size: 14.5px; }
th { color: var(--muted); font-size: 12.5px; text-transform: uppercase; letter-spacing: .06em; background: var(--panel-2); }
tr:last-child td { border-bottom: none; }
td.num, th.num { text-align: right; font-variant-numeric: tabular-nums; }

/* ── Chips / industries ─────────────────────────── */
.chips { display: flex; flex-wrap: wrap; gap: 10px; }
.chip {
  border: 1px solid var(--line); background: var(--panel); border-radius: 999px;
  padding: 8px 16px; font-size: 13.5px; color: var(--text);
}

/* ── FAQ ────────────────────────────────────────── */
.faq-item {
  background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 22px 24px; margin-bottom: 12px;
}
.faq-item h3 { font-size: 16px; margin-bottom: 8px; }
.faq-item p { color: var(--muted); font-size: 14.5px; }

/* ── Final CTA band ─────────────────────────────── */
.cta-band {
  text-align: center; padding: 84px 0;
  background: radial-gradient(700px 340px at 50% 0%, rgba(255, 90, 60, 0.2), transparent 70%);
}
.cta-band h2 { font-size: clamp(28px, 4.4vw, 44px); font-weight: 800; letter-spacing: -0.02em; margin-bottom: 14px; }
.cta-band p { color: var(--muted); font-size: 16.5px; max-width: 620px; margin: 0 auto 30px; }

/* ── Footer ─────────────────────────────────────── */
footer {
  border-top: 1px solid var(--line); background: var(--panel-2);
  padding: 52px 0 36px; color: var(--muted); font-size: 13.5px;
}
.foot-grid { display: grid; gap: 30px; grid-template-columns: 2fr 1fr 1fr 1fr; margin-bottom: 34px; }
.foot-grid h4 { color: var(--text); font-size: 13px; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 12px; }
.foot-grid a { display: block; margin-bottom: 8px; }
.foot-grid a:hover { color: var(--accent); }
.foot-brand .name { color: var(--text); font-weight: 800; text-transform: uppercase; font-size: 15px; }
.foot-brand .tag { color: var(--accent); font-weight: 600; margin-bottom: 10px; }
.copyright { border-top: 1px solid var(--line); padding-top: 22px; text-align: center; font-size: 12.5px; }
@media (max-width: 760px) { .foot-grid { grid-template-columns: 1fr 1fr; } }
