/* ==========================================================================
   LANDING PAGE STYLES — /diagnostic & /ai-procurement
   Shared by all LP templates (page-diagnostic, page-ai-procurement, etc.)
   ========================================================================== */

/* ── Hero ── */
.lp-hero {
  position: relative;
  padding: 160px 0 80px;
  text-align: center;
  overflow: hidden;
}
.lp-hero h1 {
  font-family: var(--font-display);
  font-size: 3rem;
  margin-bottom: 16px;
}
.lp-hero h1 .teal { color: var(--teal); }
.lp-hero-label {
  color: var(--teal);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: .82rem;
  margin-bottom: 12px;
}
.lp-hero-sub {
  font-size: 1.15rem;
  color: var(--off-white);
  max-width: 650px;
  margin: 0 auto 30px;
  line-height: 1.8;
}

/* ── Sections ── */
.lp-section {
  padding: 80px 0;
}
.lp-section-alt {
  background: linear-gradient(180deg, rgba(30,44,61,.5) 0%, var(--navy) 100%);
}
.lp-content-block h2 {
  font-family: var(--font-display);
  font-size: 2.2rem;
  margin-bottom: 12px;
}
.lp-content-block p {
  color: var(--off-white);
  line-height: 1.8;
  font-size: 1rem;
}

/* ── Icon Grid ── */
.lp-icon-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 40px;
}
.lp-icon-grid-3 {
  grid-template-columns: repeat(3, 1fr);
}
.lp-icon-item {
  background: var(--navy-card);
  border: 1px solid rgba(43,188,192,.1);
  border-radius: 16px;
  padding: 30px 24px;
  text-align: center;
  transition: all .4s ease;
}
.lp-icon-item:hover {
  transform: translateY(-4px);
  border-color: rgba(43,188,192,.25);
  box-shadow: 0 12px 40px rgba(0,0,0,.25);
}
.lp-icon {
  font-size: 2.2rem;
  margin-bottom: 14px;
}
.lp-icon-item h3 {
  font-size: .95rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}
.lp-icon-item p {
  font-size: .88rem;
  color: var(--grey);
  line-height: 1.6;
}

/* ── Checklist ── */
.lp-checklist {
  list-style: none;
  padding: 0;
  margin-top: 24px;
  max-width: 600px;
}
.lp-checklist li {
  position: relative;
  padding-left: 32px;
  margin-bottom: 16px;
  color: var(--off-white);
  font-size: 1rem;
  line-height: 1.7;
}
.lp-checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--teal);
  font-weight: 700;
  font-size: 1.1rem;
}

/* ── Bio Row ── */
.lp-bio-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 40px;
  align-items: center;
  max-width: 750px;
  margin: 0 auto;
}
.lp-bio-photo img {
  width: 260px;
  height: 260px;
  border-radius: 20px;
  object-fit: cover;
  object-position: center top;
  border: 2px solid rgba(43,188,192,.2);
  box-shadow: 0 12px 40px rgba(0,0,0,.3);
}
.lp-bio-text h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  margin-bottom: 10px;
}
.lp-bio-text p {
  color: var(--off-white);
  line-height: 1.8;
}
.lp-bio-text p strong {
  color: var(--white);
}

/* ── Stat Callout (AI page) ── */
.lp-stat-callout {
  text-align: center;
  padding: 40px 0 20px;
}
.lp-stat-big {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 4px;
}
.lp-stat-callout p {
  font-size: 1.1rem;
  margin-bottom: 24px;
}
.lp-stat-callout p strong {
  color: var(--white);
}

/* ── Calendly Wrapper ── */
.lp-calendly-wrapper {
  max-width: 800px;
  margin: 0 auto;
  background: var(--navy-card);
  border: 1px solid rgba(43,188,192,.12);
  border-radius: 20px;
  overflow: hidden;
  min-height: 700px;
}
.lp-calendly-wrapper iframe {
  width: 100%;
  height: 700px;
  border: none;
}

/* ── Final CTA ── */
.lp-final-cta {
  padding: 80px 0;
  text-align: center;
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-light) 100%);
}
.lp-final-cta h2 {
  font-family: var(--font-display);
  font-size: 2.2rem;
  margin-bottom: 16px;
}
.lp-final-cta p {
  color: var(--grey);
  max-width: 550px;
  margin: 0 auto 30px;
  line-height: 1.7;
}

/* ── Stats Bar (Below Hero on Homepage) ── */
.stats-bar-hero {
  padding: 30px 0;
  background: rgba(30,44,61,.6);
  border-top: 1px solid rgba(43,188,192,.08);
  border-bottom: 1px solid rgba(43,188,192,.08);
}
.stats-bar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}
.stats-bar-num {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.2;
}
.stats-bar-label {
  font-size: .78rem;
  color: var(--grey);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .lp-hero { padding: 120px 0 60px; }
  .lp-hero h1 { font-size: 2.2rem; }
  .lp-hero-sub { font-size: 1rem; }
  .lp-icon-grid,
  .lp-icon-grid-3 { grid-template-columns: 1fr; }
  .lp-bio-row {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 24px;
  }
  .lp-bio-photo { display: flex; justify-content: center; }
  .lp-stat-big { font-size: 3rem; }
  .lp-calendly-wrapper { min-height: 600px; }
  .lp-calendly-wrapper iframe { height: 600px; }
  .stats-bar-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .stats-bar-num { font-size: 1.5rem; }
  .lp-content-block h2 { font-size: 1.8rem; }
  .lp-final-cta h2 { font-size: 1.8rem; }
}

@media (max-width: 480px) {
  .stats-bar-grid { grid-template-columns: 1fr 1fr; }
}
