/* ────────────────────────────────────────────────────────────────────────
   VegasBusinessAI - landing.css
   Shared components for SEO landing pages (verticals, services, money pages).
   Reuses every design token + most classes from styles.css. Load AFTER it.
   ──────────────────────────────────────────────────────────────────────── */

/* ─── Breadcrumb ────────────────────────────────────────────────────────── */
.breadcrumb {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}
.breadcrumb a { color: var(--fg-dim); transition: color .18s var(--ease); }
.breadcrumb a:hover { color: var(--red); }
.breadcrumb .sep { color: var(--fg-faint); }
.breadcrumb [aria-current="page"] { color: var(--red); }

/* ─── Landing hero (lighter than the homepage hero) ─────────────────────── */
.lp-hero { padding-block: clamp(64px, 9vw, 124px) clamp(56px, 8vw, 96px); }
.lp-hero .hero-headline {
  font-size: clamp(2.1rem, 5vw, 4.1rem);
  max-width: 18ch;
  margin-bottom: 26px;
}
.lp-hero .hero-sub { max-width: 660px; margin-bottom: 32px; }
.lp-hero .hero-cta-row { margin-bottom: 0; }

/* ─── Prose / article body ──────────────────────────────────────────────── */
.lp-section { padding-block: clamp(64px, 8vw, 110px); position: relative; }
.lp-section--edge { border-block: 1px solid var(--line); }

.lp-prose { max-width: 760px; }
.lp-prose.lp-prose--wide { max-width: 900px; }
.lp-prose h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.8vw, 2.3rem);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  font-weight: 600;
  line-height: 1.1;
  margin: 0 0 22px;
}
.lp-prose h2:not(:first-child) { margin-top: 56px; }
.lp-prose h3 {
  font-family: var(--font-display);
  font-size: 1.16rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  font-weight: 600;
  margin: 38px 0 12px;
}
.lp-prose p {
  color: var(--fg-dim);
  font-size: 1.04rem;
  line-height: 1.8;
  margin: 0 0 1.1em;
}
.lp-prose p strong { color: var(--fg); font-weight: 600; }
.lp-prose a {
  color: var(--fg);
  border-bottom: 1px solid var(--red);
  transition: color .18s var(--ease);
}
.lp-prose a:hover { color: var(--red); }
.lp-prose ul { display: flex; flex-direction: column; gap: 12px; margin: 0 0 1.4em; }
.lp-prose ul li {
  position: relative;
  padding-left: 24px;
  color: var(--fg-dim);
  font-size: 1.02rem;
  line-height: 1.65;
}
.lp-prose ul li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.65em;
  width: 12px; height: 1px;
  background: var(--red);
}
.lp-prose ul li strong { color: var(--fg); font-weight: 600; }

.lp-lede {
  font-size: clamp(1.12rem, 1.6vw, 1.32rem);
  color: var(--fg);
  font-weight: 500;
  line-height: 1.6;
  margin: 0 0 28px;
}

/* ─── Pain-point / checklist grid ───────────────────────────────────────── */
.lp-pains {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line-2);
  border: 1px solid var(--line-2);
  margin-top: 40px;
}
.lp-pain {
  background: var(--bg-elev);
  padding: 28px 28px;
  transition: background .25s var(--ease);
}
.lp-pain:hover { background: var(--bg-elev-2); }
.lp-pain .lp-pain-key {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  color: var(--red);
  text-transform: uppercase;
  margin-bottom: 12px;
  display: block;
}
.lp-pain h3 {
  font-size: 1.04rem;
  letter-spacing: 0.03em;
  margin: 0 0 10px;
  font-weight: 600;
  text-transform: uppercase;
  font-family: var(--font-display);
}
.lp-pain p { margin: 0; font-size: 0.94rem; color: var(--fg-dim); line-height: 1.65; }

/* ─── Proof / stat row ──────────────────────────────────────────────────── */
.lp-stats {
  display: flex;
  flex-wrap: wrap;
  border: 1px solid var(--line-2);
  background: rgba(255,255,255,0.012);
  margin-top: 40px;
}
.lp-stat { flex: 1 1 200px; padding: 26px 30px; border-right: 1px solid var(--line); }
.lp-stat:last-child { border-right: none; }
.lp-stat .lp-stat-num {
  font-family: var(--font-display);
  font-size: 2.1rem;
  font-weight: 600;
  color: var(--fg);
  line-height: 1;
  margin-bottom: 8px;
}
.lp-stat .lp-stat-num span { color: var(--red); font-size: 1.1rem; }
.lp-stat .lp-stat-label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-muted);
  line-height: 1.5;
}

/* ─── FAQ accordion (styled, used on landing pages) ─────────────────────── */
.lp-faq { display: grid; gap: 1px; background: var(--line-2); border: 1px solid var(--line-2); margin-top: 12px; }
.lp-faq details {
  background: var(--bg-elev);
  transition: background .2s var(--ease);
}
.lp-faq details[open] { background: var(--bg-elev-2); }
.lp-faq summary {
  list-style: none;
  cursor: pointer;
  padding: 24px 28px;
  font-family: var(--font-display);
  font-size: 1.02rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--fg);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
}
.lp-faq summary::-webkit-details-marker { display: none; }
.lp-faq summary::after {
  content: "+";
  font-family: var(--font-mono);
  color: var(--red);
  font-size: 1.4rem;
  line-height: 1;
  transition: transform .2s var(--ease);
}
.lp-faq details[open] summary::after { transform: rotate(45deg); }
.lp-faq details > p {
  margin: 0;
  padding: 0 28px 26px;
  color: var(--fg-dim);
  font-size: 0.98rem;
  line-height: 1.75;
}

/* ─── Internal-link / related block (SEO interlinking) ──────────────────── */
.lp-related { background: transparent; border-top: 1px solid var(--line); padding-block: clamp(60px, 7vw, 92px); }
.lp-related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line-2);
  border: 1px solid var(--line-2);
  margin-top: 40px;
}
.lp-related-card {
  display: block;
  background: var(--bg-elev);
  padding: 30px 28px;
  transition: background .25s var(--ease), transform .2s var(--ease);
}
.lp-related-card:hover { background: var(--bg-elev-2); transform: translateY(-3px); }
.lp-related-card .lp-related-tag {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 14px;
  display: block;
}
.lp-related-card h3 {
  font-size: 1.1rem;
  letter-spacing: 0.02em;
  margin: 0 0 10px;
  font-weight: 600;
  text-transform: uppercase;
  font-family: var(--font-display);
}
.lp-related-card p { margin: 0; font-size: 0.92rem; color: var(--fg-dim); line-height: 1.6; }
.lp-related-card .lp-related-link {
  display: inline-flex;
  gap: 8px;
  margin-top: 16px;
  font-family: var(--font-mono);
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--fg);
}
.lp-related-card:hover .lp-related-link { color: var(--red); }

/* ─── Closing CTA band ──────────────────────────────────────────────────── */
.lp-cta {
  position: relative;
  background:
    linear-gradient(180deg, rgba(5, 5, 7, 0.50), rgba(5, 5, 7, 0.34)),
    url("assets/section-bg-maroon.png") center / cover no-repeat;
  padding-block: clamp(72px, 9vw, 120px);
}
.lp-cta-inner { max-width: 720px; }
.lp-cta .section-title { margin-bottom: 22px; }
.lp-cta p { color: var(--fg-dim); font-size: 1.08rem; line-height: 1.7; margin-bottom: 32px; max-width: 600px; }
.lp-cta-direct {
  margin-top: 26px;
  font-family: var(--font-mono);
  font-size: 0.9rem;
  color: var(--fg-dim);
}
.lp-cta-direct a { color: var(--fg); border-bottom: 1px solid var(--red); }
.lp-cta-direct a:hover { color: var(--red); }
.lp-cta-direct .sep { color: var(--fg-faint); padding-inline: 10px; }

/* ─── Responsive ────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .lp-related-grid { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .lp-pains { grid-template-columns: 1fr; }
  .lp-stat { flex: 1 0 100%; border-right: none; border-bottom: 1px solid var(--line); }
  .lp-stat:last-child { border-bottom: none; }
}
