.seo-landing-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 12% 4%, rgba(227, 24, 55, .2), transparent 30%),
    linear-gradient(180deg, #111 0%, #070707 100%);
  color: var(--white);
}

.seo-shell {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.seo-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 0;
}

.seo-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-weight: 900;
}

.seo-brand img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
}

.seo-topbar-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px 18px;
}

.seo-topbar-links a,
.seo-related a {
  color: rgba(255, 255, 255, .76);
  font-size: .86rem;
  font-weight: 800;
}

.seo-topbar-links a:hover,
.seo-related a:hover {
  color: var(--white);
}

.seo-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 44%);
  align-items: center;
  gap: 42px;
  padding: 36px 0 58px;
}

.seo-kicker {
  margin-bottom: 10px;
  color: var(--red-light);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.seo-hero h1 {
  max-width: 760px;
  margin-bottom: 20px;
  font-family: var(--font-display);
  font-size: clamp(3.4rem, 7.5vw, 6.8rem);
  line-height: .92;
  letter-spacing: .015em;
}

.seo-hero h1 span {
  color: var(--red);
}

.seo-lead {
  max-width: 720px;
  color: rgba(255, 255, 255, .76);
  font-size: clamp(1rem, 1.8vw, 1.16rem);
  line-height: 1.7;
}

.seo-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.seo-hero-media {
  position: relative;
}

.seo-hero-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.seo-hero-note {
  position: absolute;
  right: 16px;
  bottom: 16px;
  max-width: calc(100% - 32px);
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 999px;
  background: rgba(8, 8, 8, .86);
  color: var(--white);
  font-size: .76rem;
  font-weight: 900;
}

.seo-content {
  display: grid;
  gap: 24px;
  padding-bottom: 72px;
}

.local-page > .seo-section {
  margin-top: 24px;
}

.seo-section {
  padding: clamp(24px, 4vw, 38px);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, .045);
}

.seo-section h2 {
  max-width: 820px;
  margin-bottom: 14px;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1;
}

.seo-section h3 {
  margin-bottom: 8px;
  font-size: 1.05rem;
}

.seo-section p,
.seo-section li {
  color: rgba(255, 255, 255, .74);
  line-height: 1.72;
}

.seo-section p + p {
  margin-top: 14px;
}

.seo-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 22px;
}

.seo-card {
  min-height: 100%;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, .09);
  border-radius: var(--radius);
  background: rgba(0, 0, 0, .26);
}

.seo-card strong {
  display: block;
  margin-top: 10px;
  color: var(--white);
  font-size: .88rem;
}

.seo-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 28px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.seo-list li {
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.seo-faq {
  display: grid;
  gap: 10px;
  margin-top: 20px;
}

.seo-faq details {
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 12px;
  background: rgba(0, 0, 0, .22);
}

.seo-faq summary {
  color: var(--white);
  font-weight: 900;
  cursor: pointer;
}

.seo-faq details p {
  margin-top: 10px;
}

.seo-related {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-top: 18px;
}

.seo-related a {
  padding-bottom: 3px;
  border-bottom: 2px solid var(--red);
}

.seo-footer {
  padding: 28px 0 110px;
  border-top: 1px solid rgba(255, 255, 255, .1);
  color: rgba(255, 255, 255, .56);
  font-size: .8rem;
}

.seo-sticky {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 100;
  box-shadow: var(--shadow);
}

@media (max-width: 900px) {
  .seo-hero {
    grid-template-columns: 1fr;
    padding-top: 18px;
  }

  .seo-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 620px) {
  .seo-shell {
    width: min(100% - 28px, 1120px);
  }

  .seo-topbar {
    align-items: flex-start;
  }

  .seo-topbar-links {
    display: none;
  }

  .seo-hero {
    gap: 26px;
    padding-bottom: 36px;
  }

  .seo-hero h1 {
    font-size: clamp(3rem, 15vw, 4.8rem);
  }

  .seo-grid,
  .seo-list {
    grid-template-columns: 1fr;
  }

  .seo-section {
    padding: 22px 18px;
  }

  .seo-hero-actions .btn {
    width: 100%;
  }

  .seo-sticky {
    right: 14px;
    bottom: 14px;
    left: 14px;
    text-align: center;
  }
}
