/* ============================================
   LeadLab LLC — base styles
   Fonts: Plus Jakarta Sans (headings), Inter (body)
   ============================================ */

:root {
  --primary: #0B72FF;
  --primary-dark: #0857C9;
  --accent: #14B8A6;
  --accent-dark: #0E9488;
  --text: #0B1220;
  --text-light: #475065;
  --text-faint: #667085;
  --bg: #FFFFFF;
  --bg-alt: #F5F7FA;
  --bg-dark: #0B1220;
  --border: #D0D5DD;
  --white: #FFFFFF;
  --success: #14B8A6;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 1px 2px rgba(16, 24, 40, 0.05);
  --shadow-md: 0 4px 12px rgba(16, 24, 40, 0.08);
  --shadow-lg: 0 12px 32px rgba(16, 24, 40, 0.12);
  --max-width: 1160px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--text);
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

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

.eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(28px, 4vw, 40px);
  margin-bottom: 16px;
}

.section-lead {
  font-size: 18px;
  color: var(--text-light);
  max-width: 640px;
}

.section-header {
  text-align: center;
  margin: 0 auto 56px;
  max-width: 680px;
}

.section-header .section-lead { margin: 0 auto; }

section { padding: 88px 0; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 30px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 16px;
  border: none;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  white-space: nowrap;
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
  box-shadow: var(--shadow-md);
}
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-1px); }

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--border);
}
.btn-outline:hover { border-color: var(--primary); color: var(--primary); }

.btn-block { width: 100%; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 21px;
  color: var(--text);
}

.logo-mark {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 16px;
  font-weight: 800;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links a:not(.btn) {
  font-weight: 600;
  font-size: 15px;
  color: var(--text-light);
}
.nav-links a:not(.btn):hover { color: var(--primary); }

.nav-cta { display: flex; align-items: center; gap: 20px; }
.nav-phone { font-weight: 700; font-size: 15px; }
.nav-phone span { color: var(--text-faint); font-weight: 500; display: block; font-size: 12px; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
}

/* ---------- Hero ---------- */
.hero {
  padding: 96px 0 80px;
  background:
    radial-gradient(1000px 480px at 85% -10%, rgba(11, 114, 255, 0.10), transparent),
    radial-gradient(800px 400px at 0% 100%, rgba(20, 184, 166, 0.08), transparent);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-light);
  margin-bottom: 24px;
}
.hero-badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); }

.hero h1 {
  font-size: clamp(36px, 5vw, 56px);
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.hero h1 em {
  font-style: normal;
  background: linear-gradient(135deg, var(--primary), var(--accent-dark));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero p {
  font-size: 19px;
  color: var(--text-light);
  max-width: 520px;
  margin-bottom: 32px;
}

.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 28px; }

.hero-trust {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  font-size: 14px;
  color: var(--text-faint);
  font-weight: 600;
}
.hero-trust li { display: flex; align-items: center; gap: 8px; }
.hero-trust svg { flex-shrink: 0; color: var(--accent); }

.hero-visual {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 28px;
}

.hero-visual-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; }
.hero-visual-header h3 { font-size: 16px; }
.pill { font-size: 12px; font-weight: 700; padding: 4px 10px; border-radius: 999px; background: rgba(20,184,166,0.12); color: var(--accent-dark); }

.hero-visual-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 14px 4px;
  border-bottom: 1px solid var(--bg-alt);
  font-size: 14.5px;
  font-weight: 600;
  color: var(--text-light);
}
.hero-visual-list li:last-child { border-bottom: none; }
.hero-visual-list svg { flex-shrink: 0; color: var(--accent-dark); margin-top: 1px; }

/* ---------- Trust Features ---------- */
.features { background: var(--bg-alt); }
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.feature-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  background: rgba(11, 114, 255, 0.1);
  color: var(--primary);
}
.feature-card:nth-child(2) .feature-icon { background: rgba(20,184,166,0.12); color: var(--accent-dark); }
.feature-card:nth-child(3) .feature-icon { background: rgba(11,114,255,0.1); color: var(--primary); }

.feature-card h3 { font-size: 19px; margin-bottom: 10px; }
.feature-card p { color: var(--text-light); font-size: 15px; }

/* ---------- About ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about h2 { margin-bottom: 18px; }
.about > .about-copy > p.section-lead { margin-bottom: 28px; }

.checklist li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 20px;
}
.checklist .check {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(20,184,166,0.14);
  color: var(--accent-dark);
  display: flex;
  align-items: center;
  justify-content: center;
}
.checklist h4 { font-size: 16px; margin-bottom: 4px; }
.checklist p { color: var(--text-light); font-size: 14.5px; }

.about-panel {
  background: var(--bg-dark);
  border-radius: var(--radius-lg);
  padding: 40px;
  color: #fff;
}
.about-panel h3 { color: #fff; font-size: 22px; margin-bottom: 10px; }
.about-panel p { color: #A9B2C3; margin-bottom: 28px; font-size: 15px; }
.about-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.about-stats .num { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 30px; font-weight: 800; background: linear-gradient(135deg, #5CA6FF, #4FD9CB); -webkit-background-clip: text; background-clip: text; color: transparent; }
.about-stats .label { font-size: 13px; color: #A9B2C3; font-weight: 600; margin-top: 4px; }

/* ---------- Standards ---------- */
.standards { background: var(--bg-dark); color: #fff; }
.standards .eyebrow { color: var(--accent); }
.standards .section-title, .standards .section-lead { color: #fff; }
.standards .section-lead { color: #A9B2C3; }

.standards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.standard-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 28px;
}
.standard-card .num {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 14px;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 14px;
}
.standard-card h3 { color: #fff; font-size: 17px; margin-bottom: 8px; }
.standard-card p { color: #A9B2C3; font-size: 14.5px; }

/* ---------- How It Works ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  counter-reset: step;
  position: relative;
}

.step { position: relative; padding-left: 4px; }
.step-num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.step:nth-child(2) .step-num { background: var(--accent-dark); }
.step:nth-child(3) .step-num { background: var(--primary-dark); }
.step h3 { font-size: 19px; margin-bottom: 10px; }
.step p { color: var(--text-light); font-size: 15px; }

/* ---------- Consultation Form ---------- */
.consult { background: var(--bg-alt); }
.consult-wrap {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 0;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}

.consult-info {
  background: var(--bg-dark);
  color: #fff;
  padding: 48px 40px;
}
.consult-info h2 { color: #fff; font-size: 28px; margin-bottom: 14px; }
.consult-info p { color: #A9B2C3; margin-bottom: 32px; font-size: 15px; }
.consult-info ul li { display: flex; gap: 12px; align-items: center; margin-bottom: 16px; font-size: 14.5px; color: #E4E7EC; }
.consult-info ul li svg { color: var(--accent); flex-shrink: 0; }

.consult-form { padding: 32px; }

.ghl-form-embed { width: 100%; height: 786px; }

/* ---------- CTA banner ---------- */
.cta-banner {
  background: linear-gradient(135deg, var(--primary), var(--accent-dark));
  color: #fff;
  text-align: center;
  padding: 64px 0;
}
.cta-banner h2 { color: #fff; margin-bottom: 12px; }
.cta-banner p { color: rgba(255,255,255,0.85); margin-bottom: 28px; font-size: 17px; }
.cta-banner .btn-primary { background: #fff; color: var(--primary-dark); }
.cta-banner .btn-primary:hover { background: #F0F4FF; }

/* ---------- Footer ---------- */
.site-footer { background: var(--bg-dark); color: #A9B2C3; padding: 72px 0 28px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand .logo { color: #fff; margin-bottom: 14px; }
.footer-brand p { font-size: 14px; line-height: 1.7; max-width: 300px; }

.footer-col h4 { color: #fff; font-size: 14px; margin-bottom: 18px; letter-spacing: 0.03em; text-transform: uppercase; }
.footer-col ul li { margin-bottom: 12px; font-size: 14.5px; }
.footer-col ul li a:hover { color: #fff; }

.footer-security { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 14px; font-size: 13.5px; }
.footer-security svg { color: var(--accent); flex-shrink: 0; margin-top: 2px; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  padding-top: 28px;
  font-size: 13px;
}
.footer-bottom .legal-text { max-width: 720px; color: #6B7488; line-height: 1.6; }
.footer-links { display: flex; gap: 24px; }
.footer-links a:hover { color: #fff; }

/* ---------- Simple pages (terms/privacy) ---------- */
.legal-page { padding: 64px 0 96px; }
.legal-page h1 { font-size: 36px; margin-bottom: 8px; }
.legal-page .updated { color: var(--text-faint); font-size: 14px; margin-bottom: 40px; }
.legal-page h2 { font-size: 22px; margin: 36px 0 12px; }
.legal-page p, .legal-page li { color: var(--text-light); margin-bottom: 14px; font-size: 15.5px; }
.legal-page ul { list-style: disc; padding-left: 22px; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero-grid, .about-grid { grid-template-columns: 1fr; }
  .hero-visual { order: -1; }
  .features-grid, .standards-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: 1fr; }
  .consult-wrap { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  .nav-links { display: none; }
  .nav-toggle { display: block; }
  .nav-phone { display: none; }
  section { padding: 64px 0; }
  .features-grid, .standards-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .hero-actions .btn { width: 100%; }
}

/* Mobile nav drawer */
.nav-links.open {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 76px;
  left: 0;
  right: 0;
  background: #fff;
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
  gap: 18px;
}
