/* ============================================================
   NewPracticeLeads.com
   ============================================================ */

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

:root {
  --navy:       #0f172a;
  --navy-2:     #1e293b;
  --blue:       #2563eb;
  --blue-h:     #1d4ed8;
  --blue-50:    #eff6ff;
  --slate-400:  #94a3b8;
  --text:       #0f172a;
  --text-2:     #334155;
  --muted:      #64748b;
  --border:     #e2e8f0;
  --bg-alt:     #f8fafc;
  --white:      #ffffff;
  --green-bg:   #ecfdf5;
  --green-bd:   #6ee7b7;
  --green-tx:   #065f46;
  --r:          8px;
  --r-lg:       12px;
  --w:          860px;
  --w-sm:       580px;
}

html { scroll-behavior: smooth; }

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

/* ── Layout ──────────────────────────────────────────────── */

.container {
  max-width: var(--w);
  margin: 0 auto;
  padding: 0 24px;
}

.container-narrow { max-width: var(--w-sm); }

.section { padding: 80px 0; }
.section-alt { background: var(--bg-alt); }

/* ── Nav ─────────────────────────────────────────────────── */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
  padding: 0;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
}

.logo {
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.4px;
}

.logo-dot { color: var(--blue); }

.btn-nav {
  font-size: 14px;
  font-weight: 600;
  color: var(--blue);
  background: var(--blue-50);
  border: 1px solid #bfdbfe;
  padding: 8px 16px;
  border-radius: var(--r);
  text-decoration: none;
  transition: background 0.15s;
}

.btn-nav:hover { background: #dbeafe; }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn-nav-ghost {
  font-size: 14px;
  font-weight: 600;
  color: var(--navy-2);
  background: transparent;
  border: 1px solid var(--border);
  padding: 8px 16px;
  border-radius: var(--r);
  text-decoration: none;
  transition: border-color 0.15s, color 0.15s;
}

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

/* ── Hero ────────────────────────────────────────────────── */

.hero {
  background: linear-gradient(155deg, #0f172a 0%, #1a2744 100%);
  padding: 96px 0 88px;
  color: var(--white);
}

.hero-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--slate-400);
  margin-bottom: 20px;
}

.hero h1 {
  font-size: clamp(28px, 5.5vw, 46px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -1px;
  color: var(--white);
  max-width: 740px;
  margin-bottom: 22px;
}

.hero-sub {
  font-size: 18px;
  color: #cbd5e1;
  line-height: 1.7;
  max-width: 600px;
  margin-bottom: 36px;
}

.btn-hero {
  display: inline-block;
  background: var(--blue);
  color: var(--white);
  font-size: 16px;
  font-weight: 600;
  padding: 15px 30px;
  border-radius: var(--r);
  text-decoration: none;
  transition: background 0.15s, transform 0.1s;
  letter-spacing: -0.2px;
}

.btn-hero:hover { background: var(--blue-h); transform: translateY(-1px); }

.hero-sublink {
  display: inline-block;
  margin-top: 16px;
  margin-left: 4px;
  font-size: 14px;
  font-weight: 500;
  color: var(--slate-400);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.15s;
}

.hero-sublink:hover { color: var(--white); }

.hero-trust {
  margin-top: 24px;
  font-size: 13px;
  color: var(--slate-400);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.trust-sep { opacity: 0.4; }

/* ── Eyebrow labels ──────────────────────────────────────── */

.section-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 10px;
}

.section-eyebrow-light { color: #93c5fd; }

h2 {
  font-size: clamp(22px, 3.5vw, 32px);
  font-weight: 800;
  letter-spacing: -0.5px;
  line-height: 1.2;
  margin-bottom: 14px;
}

.section-sub {
  font-size: 17px;
  color: var(--text-2);
  max-width: 620px;
  margin-bottom: 36px;
  line-height: 1.7;
}

/* ── Data preview table ──────────────────────────────────── */

.table-outer {
  position: relative;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(15,23,42,0.07);
  margin-bottom: 32px;
}

.table-scroll { overflow-x: auto; }

.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  background: var(--white);
}

.data-table thead {
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border);
}

.data-table th {
  padding: 11px 16px;
  text-align: left;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.7px;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
}

.data-table td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
  color: var(--text);
  white-space: nowrap;
}

.data-table tbody tr:last-child td { border-bottom: none; }

.data-table tbody tr:hover { background: #f8fafc; }

.row-dim td { opacity: 0.35; filter: blur(3px); user-select: none; }

.td-name { font-weight: 600; }
.td-phone { font-variant-numeric: tabular-nums; color: var(--text-2); }
.td-date { color: var(--muted); font-variant-numeric: tabular-nums; }

.tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  padding: 3px 9px;
  background: var(--blue-50);
  color: var(--blue);
  border-radius: 20px;
  white-space: nowrap;
}

/* Secondary line inside a table cell (city/phone under a name) */
.td-sub {
  display: block;
  font-size: 12px;
  font-weight: 400;
  color: var(--muted);
  margin-top: 2px;
}

/* Priority chips */
.chip {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.3px;
  padding: 3px 10px;
  border-radius: 20px;
  white-space: nowrap;
}

.chip-hot {
  background: #fee2e2;
  color: #b91c1c;
}

.chip-warm {
  background: #fef3c7;
  color: #b45309;
}

/* Medicare / status signal badges */
.signal {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  padding: 3px 9px;
  border-radius: 6px;
  white-space: nowrap;
}

.signal-green {
  background: #dcfce7;
  color: #15803d;
}

.signal-amber {
  background: #fef3c7;
  color: #b45309;
}

.table-fade {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 48px 0 20px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.97) 60%);
  text-align: center;
}

.table-cta-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--blue);
  text-decoration: none;
}

.table-cta-link:hover { text-decoration: underline; }

/* ── Data columns ────────────────────────────────────────── */

.data-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px 24px;
}

.data-col {
  font-size: 14px;
  color: var(--text-2);
  display: flex;
  align-items: center;
  gap: 6px;
}

.data-check {
  color: var(--blue);
  font-weight: 700;
  font-size: 13px;
}

/* ── Steps ───────────────────────────────────────────────── */

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 8px;
}

.step {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--blue);
  color: var(--white);
  font-weight: 800;
  font-size: 15px;
  border-radius: 50%;
  flex-shrink: 0;
}

.step h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
  letter-spacing: -0.2px;
}

.step p {
  font-size: 15px;
  color: var(--text-2);
  line-height: 1.65;
}

/* ── Buyer grid ──────────────────────────────────────────── */

.buyer-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 28px;
}

.buyer-card {
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 24px 26px;
  background: var(--white);
  transition: box-shadow 0.15s;
}

.buyer-card:hover {
  box-shadow: 0 4px 16px rgba(15,23,42,0.08);
}

.buyer-card h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
  letter-spacing: -0.2px;
}

.buyer-card p {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.6;
}

.stat-bar {
  background: var(--blue-50);
  border: 1px solid #bfdbfe;
  border-left: 4px solid var(--blue);
  border-radius: 0 var(--r) var(--r) 0;
  padding: 16px 20px;
  font-size: 15px;
  color: var(--navy-2);
  line-height: 1.5;
}

/* ── CTA section ─────────────────────────────────────────── */

.section-cta {
  background: var(--navy);
  color: var(--white);
}

.h2-light {
  color: var(--white);
}

.cta-sub {
  font-size: 17px;
  color: #cbd5e1;
  line-height: 1.7;
  margin-bottom: 28px;
}

/* ── Capture form (fallback) ─────────────────────────────── */

.capture-form {
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}

.capture-form input[type="email"] {
  flex: 1;
  min-width: 220px;
  padding: 14px 16px;
  border: 1.5px solid #334155;
  border-radius: var(--r);
  font-size: 16px;
  font-family: inherit;
  color: var(--white);
  background: #1e293b;
  outline: none;
  transition: border-color 0.15s;
}

.capture-form input[type="email"]::placeholder { color: #64748b; }

.capture-form input[type="email"]:focus { border-color: var(--blue); }

.capture-form button {
  padding: 14px 24px;
  background: var(--blue);
  color: var(--white);
  font-size: 16px;
  font-weight: 600;
  font-family: inherit;
  border: none;
  border-radius: var(--r);
  cursor: pointer;
  transition: background 0.15s;
  white-space: nowrap;
}

.capture-form button:hover { background: var(--blue-h); }

.ck-wrapper { margin-bottom: 12px; }

.fine-print {
  font-size: 13px;
  color: var(--slate-400);
  margin-top: 6px;
}

.thanks-msg {
  padding: 16px 20px;
  background: var(--green-bg);
  border: 1px solid var(--green-bd);
  border-radius: var(--r);
  font-size: 15px;
  font-weight: 500;
  color: var(--green-tx);
  margin-bottom: 12px;
}

/* ── Pricing ─────────────────────────────────────────────── */

.pricing-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  padding: 44px 40px;
  text-align: center;
  box-shadow: 0 4px 24px rgba(15,23,42,0.06);
}

.price-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--blue);
  background: var(--blue-50);
  border: 1px solid #bfdbfe;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 20px;
}

.price-row {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
  margin-bottom: 10px;
}

.price-num {
  font-size: 64px;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -3px;
  line-height: 1;
}

.price-freq {
  font-size: 22px;
  font-weight: 400;
  color: var(--muted);
}

.price-desc {
  font-size: 16px;
  color: var(--text-2);
  margin-bottom: 28px;
  line-height: 1.5;
}

.price-features {
  list-style: none;
  text-align: left;
  max-width: 340px;
  margin: 0 auto 32px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price-features li {
  font-size: 15px;
  color: var(--text-2);
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.price-features li::before {
  content: "✓";
  color: var(--blue);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

.btn-primary {
  display: inline-block;
  background: var(--blue);
  color: var(--white);
  font-size: 16px;
  font-weight: 600;
  font-family: inherit;
  padding: 15px 28px;
  border-radius: var(--r);
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.15s;
  letter-spacing: -0.2px;
}

.btn-primary:hover { background: var(--blue-h); }

.btn-block { display: block; text-align: center; }

.pricing-card .fine-print { margin-top: 14px; color: var(--muted); }

/* ── FAQ ─────────────────────────────────────────────────── */

.faq { display: flex; flex-direction: column; }

.faq-row {
  border-top: 1px solid var(--border);
  padding: 20px 0;
}

.faq-row:last-child { border-bottom: 1px solid var(--border); }

.faq dt {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
}

.faq dd {
  font-size: 15px;
  color: var(--text-2);
  line-height: 1.7;
}

.faq dd a { color: var(--blue); text-decoration: none; }
.faq dd a:hover { text-decoration: underline; }

/* ── Status pages (confirm / confirmed) ──────────────────── */

.status-page {
  padding: 80px 0 96px;
  text-align: center;
}

.status-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  line-height: 1;
}

.status-icon-blue { background: var(--blue-50); color: var(--blue); }
.status-icon-green { background: #dcfce7; color: #15803d; }

.status-page .section-eyebrow { display: inline-block; }

.status-h1 {
  font-size: clamp(26px, 4.5vw, 38px);
  font-weight: 800;
  letter-spacing: -0.6px;
  line-height: 1.2;
  margin-bottom: 16px;
}

.status-lead {
  font-size: 18px;
  color: var(--text-2);
  line-height: 1.7;
  max-width: 520px;
  margin: 0 auto 28px;
}

.status-soft {
  background: var(--blue-50);
  border: 1px solid #bfdbfe;
  border-radius: var(--r);
  padding: 16px 20px;
  font-size: 15px;
  color: var(--navy-2);
  max-width: 520px;
  margin: 0 auto;
}

.status-help { margin-top: 24px; }

.btn-lg {
  font-size: 17px;
  padding: 16px 32px;
}

.btn-outline {
  display: inline-block;
  background: var(--white);
  color: var(--blue);
  font-size: 15px;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: var(--r);
  border: 1.5px solid var(--blue);
  text-decoration: none;
  transition: background 0.15s;
}

.btn-outline:hover { background: var(--blue-50); }

.upsell {
  margin: 48px auto 0;
  max-width: 520px;
  padding: 28px 28px 24px;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  text-align: center;
}

.upsell-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
}

.upsell-text {
  font-size: 15px;
  color: var(--text-2);
  line-height: 1.65;
  margin-bottom: 18px;
}

.upsell .fine-print { margin-top: 14px; }

/* ── Welcome page ────────────────────────────────────────── */

.welcome-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 36px auto 32px;
  max-width: 640px;
  text-align: left;
}

.welcome-card {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 20px 20px 18px;
}

.welcome-card-icon {
  font-size: 22px;
  margin-bottom: 10px;
}

.welcome-card h3 {
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 6px;
}

.welcome-card p {
  font-size: 13px;
  color: var(--text-2);
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 520px) {
  .welcome-cards { grid-template-columns: 1fr; }
}

/* ── Footer ──────────────────────────────────────────────── */

.site-footer {
  padding: 36px 0;
  border-top: 1px solid var(--border);
  background: var(--bg-alt);
}

.footer-inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
}

.footer-right a {
  font-size: 14px;
  color: var(--blue);
  text-decoration: none;
}

.footer-right a:hover { text-decoration: underline; }

.footer-legal {
  font-size: 11px;
  color: #94a3b8;
  max-width: 440px;
  text-align: right;
  line-height: 1.5;
}

/* ── Mobile ──────────────────────────────────────────────── */

@media (max-width: 700px) {
  .section { padding: 56px 0; }
  .hero { padding: 64px 0 56px; }

  .steps { grid-template-columns: 1fr; gap: 24px; }
  .buyer-grid { grid-template-columns: 1fr; }
  .data-cols { grid-template-columns: repeat(2, 1fr); }

  .capture-form { flex-direction: column; }
  .capture-form input[type="email"],
  .capture-form button { width: 100%; }

  .btn-hero { display: block; text-align: center; }

  .pricing-card { padding: 32px 24px; }
  .price-num { font-size: 52px; }

  .footer-inner { flex-direction: column; align-items: flex-start; }
  .footer-right { align-items: flex-start; }
  .footer-legal { text-align: left; }

  .hero-trust { flex-direction: column; gap: 4px; }
  .trust-sep { display: none; }
}

@media (max-width: 460px) {
  .data-cols { grid-template-columns: 1fr; }
  /* On narrow phones, keep the header uncluttered — the buy path still
     appears in the hero sub-link and the pricing section. */
  .btn-nav-ghost { display: none; }
}
