/* SEO landing pages — extends style.css */

.landing-hero {
  min-height: 85vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 9rem 0 6rem;
  background-color: var(--black-1);
  background-size: cover;
  background-position: center;
}
.landing-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.72) 0%,
    rgba(0, 0, 0, 0.82) 100%
  );
  z-index: 2;
}
.landing-hero #hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  opacity: 0.45;
}
.landing-hero-inner {
  position: relative;
  z-index: 3;
  max-width: 720px;
}
.landing-hero h1 {
  font-size: clamp(2.6rem, 5.5vw, 4.5rem);
  margin-bottom: 1.25rem;
}
.landing-hero-sub {
  font-size: 1.05rem;
  max-width: 540px;
  line-height: 1.85;
  margin-bottom: 2.5rem;
}

.landing-section {
  padding: 6rem 0;
}
.landing-section.alt {
  background: var(--black-4);
}
.landing-section.dark {
  background: var(--black-2);
}

.landing-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.landing-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}
.landing-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  font-size: 0.95rem;
  color: var(--white-60);
  padding: 1rem 1.25rem;
  background: var(--black-5);
  border: 1px solid var(--white-15);
  border-radius: var(--r-md);
}
.landing-bullets li .fi {
  color: var(--gold);
  font-size: 0.7rem;
  flex-shrink: 0;
  margin-top: 4px;
}

.landing-outcomes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 2.5rem;
}
.landing-outcome-card {
  background: var(--black-5);
  border: 1px solid var(--white-15);
  border-radius: var(--r-lg);
  padding: 2rem;
  text-align: center;
}
.landing-outcome-card .fi {
  color: var(--gold);
  font-size: 1.1rem;
  display: block;
  margin-bottom: 1rem;
}
.landing-outcome-card h4 {
  color: var(--white);
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}
.landing-outcome-card p {
  font-size: 0.84rem;
}

.landing-seo-block {
  background: var(--black-5);
  border: 1px solid var(--white-15);
  border-radius: var(--r-lg);
  padding: 2.5rem;
  margin-top: 2rem;
}
.landing-seo-block p {
  font-size: 0.92rem;
  line-height: 1.9;
}

.landing-cta {
  background: var(--black-1);
  text-align: center;
  padding: 7rem 0;
  border-top: 1px solid var(--white-15);
}

@media (max-width: 860px) {
  .landing-hero {
    min-height: 75vh;
    padding: 8rem 0 4rem;
  }
  .landing-hero #hero-canvas {
    opacity: 0.22;
  }
  .landing-grid-2 {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .landing-outcomes {
    grid-template-columns: 1fr;
  }
  .landing-section {
    padding: 4.5rem 0;
  }
}
