/* Landing pages — service and industry pages.
   Scoped to .landing-* so nothing collides with homepage or admin classes.
   Surfaces follow the .faq-item idiom: translucent white on the dark ground. */

.landing-crumbs {
  font-size: var(--font-size-sm);
  color: var(--color-muted);
  margin-bottom: var(--space-xl);
}
.landing-crumbs a { color: var(--color-section-text-light); }
.landing-crumbs a:hover { color: var(--color-primary); }

/* Answer-first lead: the direct answer to the page's query, set larger. */
.landing-lead {
  font-size: var(--font-size-lg);
  line-height: 1.7;
  color: var(--color-white);
  margin-bottom: var(--space-xl);
}
.landing-prose {
  color: var(--color-section-text-light);
  line-height: 1.8;
  margin-bottom: var(--space-lg);
}
.landing-prose strong { color: var(--color-white); }
.landing-prose--spaced { margin-top: var(--space-2xl); }

.landing-subhead {
  font-size: var(--font-size-xl);
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: var(--space-lg);
}

/* Checklist — what a given industry's site actually needs. */
.landing-checklist {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(45%, 1fr));
  gap: var(--space-lg);
}
.landing-checklist__item {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
}
.landing-checklist__title {
  font-size: var(--font-size-base);
  font-weight: 600;
  color: var(--color-white);
  margin-bottom: var(--space-sm);
}
.landing-checklist__title::before {
  content: '✓';
  color: var(--color-success);
  font-weight: 700;
  margin-right: var(--space-sm);
}
.landing-checklist__desc {
  color: var(--color-section-text-light);
  font-size: var(--font-size-sm);
  line-height: 1.7;
}

/* Callout — a single fact worth stopping on (compliance note, cost math). */
.landing-callout {
  background: rgba(37, 99, 235, 0.12);
  border-left: 3px solid var(--color-primary);
  border-radius: var(--radius);
  padding: var(--space-xl);
  margin: var(--space-xl) 0;
}
.landing-callout--warn {
  background: rgba(245, 158, 11, 0.12);
  border-left-color: var(--color-accent);
}
.landing-callout__title {
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: var(--space-sm);
}
.landing-callout__body {
  color: var(--color-section-text-light);
  line-height: 1.75;
}

/* Two-panel compare — the common way vs the better way. */
.landing-split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(45%, 1fr));
  gap: var(--space-xl);
}
.landing-panel {
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
}
.landing-panel--bad  { border-top: 3px solid var(--color-danger); }
.landing-panel--good { border-top: 3px solid var(--color-success); }
.landing-panel__title {
  font-size: var(--font-size-lg);
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: var(--space-md);
}
.landing-panel__list li {
  color: var(--color-section-text-light);
  line-height: 1.7;
  padding-left: var(--space-lg);
  margin-bottom: var(--space-sm);
  position: relative;
}
.landing-panel__list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--color-muted);
}

/* Cross-link cards to the industry pages. */
.landing-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(30%, 1fr));
  gap: var(--space-xl);
}
.landing-card {
  display: block;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  transition: border-color var(--transition), transform var(--transition);
}
.landing-card:hover {
  border-color: var(--color-primary);
  transform: translateY(-2px);
}
.landing-card__title {
  font-size: var(--font-size-lg);
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: var(--space-sm);
}
.landing-card__desc {
  color: var(--color-section-text-light);
  font-size: var(--font-size-sm);
  line-height: 1.7;
  margin-bottom: var(--space-md);
}
.landing-card__more {
  color: var(--color-primary);
  font-weight: 600;
  font-size: var(--font-size-sm);
}

/* Closing call to action. */
.landing-cta {
  text-align: center;
  background: linear-gradient(135deg, var(--color-section-dark) 0%, var(--color-section-mid) 100%);
  border-radius: var(--radius-xl);
  padding: var(--space-3xl) var(--space-xl);
}
.landing-cta__title {
  font-size: var(--font-size-2xl);
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: var(--space-md);
}
.landing-cta__sub {
  color: var(--color-section-text-light);
  margin-bottom: var(--space-xl);
  line-height: 1.7;
}
.landing-cta__actions {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
  flex-wrap: wrap;
}

/* Keep media queries last — same-specificity rules resolve by source order. */
@media (max-width: 768px) {
  .landing-checklist,
  .landing-split,
  .landing-cards {
    grid-template-columns: 1fr;
  }
  .landing-cta { padding: var(--space-2xl) var(--space-lg); }
}
