/* LeadCatch public site — same identity as the admin dashboard. */

:root {
  --navy: #0e1626;
  --navy-2: #16233a;
  --ink: #0f172a;
  --ink-2: #475569;
  --ink-3: #8a94a3;
  --bg: #f6f7f9;
  --surface: #ffffff;
  --border: #e5e8ec;
  --accent: #2563eb;
  --accent-ink: #1d4ed8;
  --cyan: #38bdf8;
  --green: #16803c;
  --green-bg: #e8f6ee;
  --radius: 14px;
  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font); color: var(--ink); background: var(--surface); font-size: 16px; line-height: 1.6; -webkit-font-smoothing: antialiased; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; }

.wrap { max-width: 1060px; margin: 0 auto; padding: 0 24px; }

/* ── Header ── */
header { background: var(--navy); color: #cbd5e1; }
.nav { display: flex; align-items: center; justify-content: space-between; padding: 18px 0; }
.brand { display: flex; align-items: center; gap: 10px; }
.logo-mark {
  width: 32px; height: 32px; border-radius: 8px; background: linear-gradient(135deg, #2563eb, #38bdf8);
  color: #fff; font-weight: 800; font-size: 17px; display: grid; place-items: center;
}
.logo-word { font-size: 19px; font-weight: 500; color: #e2e8f0; }
.logo-word b { font-weight: 750; color: #fff; }
.nav-links { display: flex; gap: 26px; align-items: center; font-size: 14.5px; font-weight: 500; }
.nav-links a:hover { color: #fff; }
.btn {
  display: inline-block; background: var(--accent); color: #fff; font-weight: 650; font-size: 15px;
  padding: 11px 22px; border-radius: 10px; transition: background .15s;
}
.btn:hover { background: var(--accent-ink); }
.btn-ghost { background: rgb(255 255 255 / 8%); }
.btn-ghost:hover { background: rgb(255 255 255 / 14%); }

/* ── Hero ── */
.hero { background: var(--navy); color: #fff; padding: 64px 0 84px; }
.hero .wrap { display: grid; grid-template-columns: 1.1fr .9fr; gap: 56px; align-items: center; }
.hero h1 { font-size: 42px; line-height: 1.15; letter-spacing: -1px; font-weight: 750; }
.hero h1 span { color: var(--cyan); }
.hero p.lead { color: #94a3b8; font-size: 18px; margin: 18px 0 28px; max-width: 46ch; }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-note { color: #64748b; font-size: 13.5px; margin-top: 16px; }

/* Phone mock */
.phone { background: var(--navy-2); border: 1px solid rgb(255 255 255 / 9%); border-radius: 22px; padding: 22px 18px; max-width: 340px; margin-left: auto; box-shadow: 0 24px 60px rgb(0 0 0 / 35%); }
.phone .from { font-size: 12px; color: #64748b; text-align: center; margin-bottom: 14px; }
.msg { max-width: 86%; padding: 10px 14px; border-radius: 16px; font-size: 13.5px; line-height: 1.45; margin-bottom: 9px; }
.msg.them { background: #273248; color: #e2e8f0; border-bottom-left-radius: 5px; }
.msg.us { background: var(--accent); color: #fff; margin-left: auto; border-bottom-right-radius: 5px; }

/* ── Sections ── */
section { padding: 72px 0; }
section.alt { background: var(--bg); }
.kicker { color: var(--accent-ink); font-weight: 700; font-size: 13px; text-transform: uppercase; letter-spacing: 1px; }
h2 { font-size: 30px; letter-spacing: -0.5px; margin: 6px 0 10px; }
.sub { color: var(--ink-2); font-size: 16.5px; max-width: 60ch; }

.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 38px; }
.step { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 26px 24px; box-shadow: 0 1px 2px rgb(15 23 42 / 4%), 0 4px 16px rgb(15 23 42 / 5%); }
.step .num { width: 34px; height: 34px; border-radius: 10px; background: var(--navy); color: var(--cyan); font-weight: 750; display: grid; place-items: center; margin-bottom: 14px; }
.step h3 { font-size: 17px; margin-bottom: 6px; }
.step p { color: var(--ink-2); font-size: 14.5px; }

.for-list { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }
.chip { background: var(--surface); border: 1px solid var(--border); border-radius: 99px; padding: 8px 18px; font-weight: 600; font-size: 14px; color: var(--ink-2); }

/* ── Pricing ── */
.price-card { background: var(--navy); color: #fff; border-radius: 18px; padding: 40px; display: grid; grid-template-columns: 1fr 1fr; gap: 36px; margin-top: 38px; align-items: center; }
.price-line { display: flex; align-items: baseline; gap: 8px; }
.price-line .big { font-size: 44px; font-weight: 750; letter-spacing: -1px; }
.price-line .per { color: #94a3b8; font-size: 15px; }
.price-note { color: #94a3b8; font-size: 14px; margin-top: 6px; }
.price-includes { list-style: none; display: grid; gap: 10px; font-size: 14.5px; color: #cbd5e1; }
.price-includes li::before { content: "✓"; color: var(--cyan); font-weight: 700; margin-right: 10px; }

/* ── Contact ── */
.contact-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 34px; margin-top: 32px; text-align: center; box-shadow: 0 1px 2px rgb(15 23 42 / 4%), 0 4px 16px rgb(15 23 42 / 5%); }
.contact-card .email { font-size: 22px; font-weight: 700; color: var(--accent-ink); }
.contact-card p { color: var(--ink-2); margin-bottom: 12px; }

/* ── Footer ── */
footer { background: var(--navy); color: #64748b; padding: 34px 0; font-size: 13.5px; }
footer .wrap { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; align-items: center; }
footer a { color: #94a3b8; }
footer a:hover { color: #fff; }
footer .links { display: flex; gap: 20px; }

/* ── Legal pages ── */
.legal { padding: 56px 0 72px; max-width: 760px; }
.legal h1 { font-size: 30px; letter-spacing: -0.5px; margin-bottom: 6px; }
.legal .updated { color: var(--ink-3); font-size: 13.5px; margin-bottom: 28px; }
.legal h2 { font-size: 19px; margin: 28px 0 8px; }
.legal p, .legal li { color: var(--ink-2); font-size: 15px; }
.legal ul { padding-left: 22px; margin: 8px 0; }

/* ── Responsive ── */
@media (max-width: 860px) {
  .hero .wrap { grid-template-columns: 1fr; gap: 40px; }
  .phone { margin: 0 auto; }
  .hero h1 { font-size: 32px; }
  .steps { grid-template-columns: 1fr; }
  .price-card { grid-template-columns: 1fr; padding: 30px 24px; }
  .nav-links { gap: 16px; }
  .nav-links .hide-m { display: none; }
  section { padding: 52px 0; }
}
