/* landing.css — shared styles for SEO landing pages */

/* ── Landing hero ───────────────────────────────────────────── */
.lp-hero {
  background: var(--navy);
  padding: 80px 0 64px;
  position: relative;
  overflow: hidden;
}
.lp-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold) 20%, var(--gold) 80%, transparent);
}
.lp-hero .container { position: relative; z-index: 1; }
.lp-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(212,175,55,.12);
  border: 1px solid rgba(212,175,55,.35);
  border-radius: 99px;
  padding: 5px 14px;
  font-size: .82rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: .04em;
  text-transform: uppercase;
  margin-bottom: 22px;
}
.lp-hero h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  margin: 0 0 20px;
  max-width: 700px;
}
.lp-hero h1 em {
  font-style: normal;
  background: linear-gradient(90deg, var(--gold), #f0d060);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.lp-hero p {
  font-size: 1.1rem;
  color: rgba(255,255,255,.75);
  line-height: 1.75;
  max-width: 620px;
  margin: 0 0 32px;
}
.lp-hero-cta { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }

/* ── Section layout ─────────────────────────────────────────── */
.lp-section { padding: 72px 0; }
.lp-section-alt { background: var(--bg-alt, #f8fafc); }
[data-theme="dark"] .lp-section-alt { background: #0d1525; }
.lp-section-title {
  font-size: clamp(1.5rem, 3.5vw, 2.2rem);
  font-weight: 700;
  color: var(--text-dark);
  margin: 0 0 12px;
}
.lp-section-sub {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 640px;
  line-height: 1.7;
  margin: 0 0 48px;
}

/* ── Feature grid ───────────────────────────────────────────── */
.lp-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}
.lp-card {
  background: var(--bg-card, #fff);
  border: 1px solid var(--border, #e5e7eb);
  border-radius: 14px;
  padding: 28px 24px;
  transition: box-shadow .2s, transform .2s;
}
[data-theme="dark"] .lp-card { background: var(--navy-mid); border-color: #1e3558; }
.lp-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,.10); transform: translateY(-3px); }
.lp-card-icon {
  width: 48px; height: 48px;
  background: rgba(99,155,246,.10);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
  font-size: 1.5rem;
}
.lp-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0 0 10px;
}
.lp-card p {
  font-size: .93rem;
  color: var(--text-light);
  line-height: 1.7;
  margin: 0;
}

/* ── Stats strip ────────────────────────────────────────────── */
.lp-stats {
  background: var(--navy-mid);
  padding: 56px 0;
}
.lp-stats-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-around;
  text-align: center;
}
.lp-stat-value {
  display: block;
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}
.lp-stat-label {
  font-size: .88rem;
  color: rgba(255,255,255,.7);
  line-height: 1.5;
}

/* ── FAQ ────────────────────────────────────────────────────── */
.lp-faq { max-width: 780px; margin: 0 auto; }
.lp-faq-item {
  border-bottom: 1px solid var(--border, #e5e7eb);
  padding: 20px 0;
}
[data-theme="dark"] .lp-faq-item { border-color: #243455; }
.lp-faq-item:last-child { border-bottom: none; }
.lp-faq-q {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0 0 10px;
  cursor: default;
}
.lp-faq-a {
  font-size: .95rem;
  color: var(--text-light);
  line-height: 1.75;
  margin: 0;
}

/* ── CTA band ───────────────────────────────────────────────── */
.lp-cta {
  background: var(--navy-mid);
  padding: 72px 0;
  text-align: center;
}
.lp-cta h2 {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 800;
  color: #fff;
  margin: 0 0 16px;
}
.lp-cta p {
  font-size: 1.05rem;
  color: rgba(255,255,255,.8);
  max-width: 560px;
  margin: 0 auto 32px;
  line-height: 1.7;
}
.lp-cta-actions { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; }

/* ── Breadcrumb ─────────────────────────────────────────────── */
.lp-breadcrumb {
  font-size: .84rem;
  color: rgba(255,255,255,.5);
  margin-bottom: 28px;
}
.lp-breadcrumb a { color: rgba(255,255,255,.6); text-decoration: none; }
.lp-breadcrumb a:hover { color: #fff; }
.lp-breadcrumb span { margin: 0 6px; }

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 768px) {
  .lp-hero { padding: 56px 0 44px; }
  .lp-section { padding: 48px 0; }
  .lp-cta { padding: 48px 0; }
  .lp-grid { grid-template-columns: 1fr; }
}
