/* ==========================================================
   ParentLeadPilot.com — Standalone Stylesheet
   Mirrors parentlead.com design tokens and visual patterns
   ========================================================== */

/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:      #0b2240;
  --gold:      #c5a059;
  --gold-light:#f1ebd9;
  --cream:     #f5f3ee;
  --white:     #ffffff;
  --text:      #1a1a2e;
  --text-muted:#5a6272;
  --border:    #e0dbd0;
  --radius:    10px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }

/* ── UTILITY ── */
.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
}

.label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}

.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 6px;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: opacity 0.15s, transform 0.15s;
  text-decoration: none;
  line-height: 1;
}
.btn:hover { opacity: 0.88; transform: translateY(-1px); }

.btn-primary {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}
.btn-secondary {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-ghost {
  background: rgba(255,255,255,0.12);
  color: var(--white);
  border-color: rgba(255,255,255,0.30);
}
.btn-ghost:hover { background: rgba(255,255,255,0.20); }

/* ── URGENCY BAR ── */
.urgency-bar {
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 10px 24px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--navy);
  flex-wrap: wrap;
  text-align: center;
}
.urgency-bar-cta {
  background: var(--navy);
  color: var(--white);
  padding: 5px 14px;
  border-radius: 4px;
  font-size: 0.78rem;
  font-weight: 700;
  white-space: nowrap;
  transition: opacity 0.15s;
}
.urgency-bar-cta:hover { opacity: 0.85; }

/* ── NAVIGATION ── */
.site-nav {
  background: var(--navy);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 12px rgba(0,0,0,0.15);
}
.nav-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
}
.nav-logo {
  font-family: 'DM Serif Display', serif;
  font-size: 1.15rem;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.nav-logo-badge {
  background: var(--gold);
  color: var(--navy);
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 800;
  padding: 3px 6px;
  border-radius: 4px;
  letter-spacing: 0.03em;
}
.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-links a {
  color: rgba(255,255,255,0.75);
  font-size: 0.88rem;
  padding: 6px 10px;
  border-radius: 4px;
  transition: color 0.15s;
}
.nav-links a:hover { color: var(--white); }
.nav-links .nav-cta a {
  background: var(--gold);
  color: var(--navy);
  font-weight: 700;
  padding: 7px 16px;
}
.nav-links .nav-cta a:hover { opacity: 0.88; color: var(--navy); }

/* ── HERO ── */
.hero {
  background: var(--navy);
  padding: 72px 24px 80px;
}
.hero-inner {
  max-width: 1080px;
  margin: 0 auto;
}
.hero-two-col {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 56px;
  align-items: center;
}
.hero-text-col { display: flex; flex-direction: column; gap: 0; }

.hero h1 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
}
.hero-body {
  font-size: 1rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.75;
  margin-bottom: 32px;
  max-width: 520px;
}
.hero-cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.hero-subcopy-list {
  list-style: none;
  padding: 0;
  margin: 4px 0 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.hero-subcopy-list li {
  font-size: 0.83rem;
  color: rgba(255,255,255,0.55);
  display: flex;
  align-items: center;
  gap: 10px;
  line-height: 1.4;
}
.hero-subcopy-list li::before {
  content: '';
  display: inline-block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

/* ── SMS MOCKUP ── */
.sms-mockup {
  background: #1c1c1e;
  border-radius: 36px;
  padding: 18px 14px 24px;
  box-shadow: 0 28px 72px rgba(0,0,0,0.40);
  width: 100%;
  max-width: 340px;
}
.sms-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px 14px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 14px;
}
.sms-header-icon {
  width: 36px; height: 36px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--navy);
  flex-shrink: 0;
}
.sms-header-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.sms-header-number {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--white);
}
.sms-header-label {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.45);
}
.sms-body {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 0 4px;
}
.sms-bubble {
  max-width: 82%;
  padding: 10px 13px;
  border-radius: 16px;
  font-size: 0.82rem;
  line-height: 1.5;
}
.sms-bubble.system {
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.60);
  font-size: 0.75rem;
  text-align: center;
  max-width: 100%;
  border-radius: 10px;
  padding: 10px 12px;
}
.sms-bubble.incoming {
  background: #3a3a3c;
  color: var(--white);
  align-self: flex-start;
  border-bottom-left-radius: 4px;
}
.sms-bubble.outgoing {
  background: #0a84ff;
  color: var(--white);
  align-self: flex-end;
  border-bottom-right-radius: 4px;
  margin-left: auto;
}
.sms-sender {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 3px;
  letter-spacing: 0.02em;
}

@media (max-width: 860px) {
  .hero-two-col {
    grid-template-columns: 1fr;
    gap: 44px;
  }
  .sms-mockup { max-width: 300px; margin: 0 auto; }
}

/* ── WHY A PILOT ── */
.section-why {
  background: var(--cream);
  padding: 80px 24px;
}
.why-inner {
  max-width: 1080px;
  margin: 0 auto;
}
.why-header {
  text-align: center;
  margin-bottom: 52px;
}
.why-header h2 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  color: var(--navy);
  margin: 8px 0 16px;
  line-height: 1.2;
}
.why-header p {
  color: var(--text-muted);
  font-size: 1rem;
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.75;
}
.why-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.why-card {
  background: var(--white);
  border-radius: 12px;
  padding: 32px 26px;
  border-top: 4px solid var(--navy);
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.why-card-num {
  font-family: 'DM Serif Display', serif;
  font-size: 2.4rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 12px;
}
.why-card h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 1.05rem;
  color: var(--navy);
  margin-bottom: 10px;
  line-height: 1.3;
}
.why-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0;
}
@media (max-width: 720px) {
  .why-cards { grid-template-columns: 1fr; }
}

/* ── PILOT EXPLAINER ── */
.section-explainer {
  background: var(--white);
  padding: 80px 24px;
}
.explainer-inner {
  max-width: 740px;
  margin: 0 auto;
  text-align: center;
}
.explainer-inner h2 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  color: var(--navy);
  margin: 8px 0 20px;
  line-height: 1.2;
}
.explainer-inner p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 16px;
}
.no-risk-row {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  margin-top: 36px;
}
.no-risk-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--text-muted);
  font-weight: 500;
}
.no-risk-item::before {
  content: '✓';
  display: inline-flex;
  width: 22px; height: 22px;
  background: var(--gold-light);
  color: var(--navy);
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  flex-shrink: 0;
}

/* ── FINAL CTA ── */
.section-cta {
  background: var(--navy);
  padding: 80px 24px;
  text-align: center;
}
.section-cta h2 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  color: var(--white);
  margin: 8px 0 16px;
  line-height: 1.2;
}
.section-cta p {
  color: rgba(255,255,255,0.62);
  font-size: 0.95rem;
  margin-bottom: 36px;
  line-height: 1.7;
}
.cta-btn-row {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ── FOOTER ── */
.site-footer {
  background: #07172d;
  padding: 48px 24px 32px;
  color: rgba(255,255,255,0.50);
}
.footer-inner {
  max-width: 1080px;
  margin: 0 auto;
}
.footer-trust {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 8px;
  padding: 18px 22px;
  margin-bottom: 32px;
  font-size: 0.82rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.55);
}
.footer-trust strong { color: rgba(255,255,255,0.80); }
.footer-links {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 22px;
}
.footer-links a {
  color: rgba(255,255,255,0.50);
  font-size: 0.82rem;
  transition: color 0.15s;
}
.footer-links a:hover { color: var(--gold); }
.footer-link-group {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-copy {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.30);
}

/* ── SECTION DIVIDER ── */
.section-divider {
  height: 1px;
  background: var(--border);
}

/* ── MOBILE NAV ── */
.nav-hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  flex-direction: column;
  gap: 5px;
}
.nav-hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: rgba(255,255,255,0.75);
  border-radius: 2px;
  transition: background 0.15s;
}
@media (max-width: 680px) {
  .nav-hamburger { display: flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: 60px; left: 0; right: 0;
    background: var(--navy);
    flex-direction: column;
    padding: 16px 24px 24px;
    gap: 4px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.20);
  }
  .nav-links.open { display: flex; }
  .nav-links a { display: block; padding: 10px 0; font-size: 1rem; }
  .site-nav { position: relative; }
}
