.seo-hero {
  min-height: 680px;
  position: relative;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: #fff;
  background: var(--deep);
}

.seo-hero-bg,
.seo-hero-shade {
  position: absolute;
  inset: 0;
}

.seo-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.seo-hero-shade {
  background:
    linear-gradient(90deg, rgba(11, 16, 17, .98), rgba(11, 16, 17, .87) 54%, rgba(11, 16, 17, .35)),
    linear-gradient(180deg, rgba(11, 16, 17, .1), rgba(11, 16, 17, .55));
}

.seo-hero-grid {
  min-height: 680px;
  position: relative;
  display: grid;
  grid-template-columns: 1fr .46fr;
  align-items: center;
  gap: 76px;
  padding-block: 125px 70px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
  color: #aab7b5;
  font-size: 11px;
}

.breadcrumb a:hover {
  color: #fff;
}

.seo-hero h1 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(48px, 5.7vw, 78px);
  line-height: 1;
  letter-spacing: -.05em;
}

.seo-hero-lead {
  max-width: 720px;
  margin: 26px 0 0;
  color: #c7d2d0;
  font-size: 17px;
  line-height: 1.75;
}

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

.seo-hero-card {
  padding: 25px;
  color: var(--ink);
  background: rgba(255, 255, 255, .95);
  border-top: 4px solid var(--orange);
  border-radius: var(--radius);
  box-shadow: 0 24px 70px rgba(0, 0, 0, .35);
}

.seo-hero-card > span {
  color: var(--green);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .13em;
}

.seo-hero-card h2 {
  margin: 14px 0 16px;
  font-size: 21px;
  line-height: 1.25;
}

.seo-hero-card ul {
  display: grid;
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.seo-hero-card li {
  padding: 10px 0;
  color: #586568;
  border-bottom: 1px solid var(--line);
  font-size: 12px;
}

.seo-hero-card li::before {
  content: "+";
  margin-right: 9px;
  color: var(--orange);
  font-weight: 900;
}

.seo-intro {
  background: #fff;
}

.seo-intro-grid {
  display: grid;
  grid-template-columns: .68fr 1.32fr;
  gap: 88px;
}

.seo-intro h2,
.seo-specs h2,
.seo-related h2,
.seo-faq h2 {
  margin: 0;
  font-size: clamp(38px, 4.7vw, 60px);
  line-height: 1.05;
  letter-spacing: -.045em;
}

.seo-copy > p {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.85;
}

.seo-highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  margin-top: 48px;
}

.seo-highlights article {
  padding: 25px;
  background: var(--mist);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.seo-highlights span {
  color: var(--orange);
  font-size: 10px;
  font-weight: 900;
}

.seo-highlights h3 {
  margin: 13px 0 8px;
  font-size: 18px;
}

.seo-highlights p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.seo-specs {
  color: #fff;
  background: var(--charcoal);
}

.seo-spec-grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  align-items: center;
  gap: 82px;
}

.seo-spec-image {
  height: 610px;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.seo-spec-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.seo-specs .eyebrow {
  color: #78b8ae;
}

.seo-specs > .container p,
.seo-spec-copy > p {
  color: #aab7b5;
}

.term-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 24px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(255, 255, 255, .14);
}

.term-list li {
  padding: 13px 0;
  color: #d8e1df;
  border-bottom: 1px solid rgba(255, 255, 255, .14);
  font-size: 12px;
}

.term-list li::before {
  content: "✓";
  margin-right: 8px;
  color: #75b9ae;
  font-weight: 900;
}

.seo-related {
  background: var(--mist);
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  margin-top: 45px;
}

.related-card {
  min-height: 210px;
  display: flex;
  flex-direction: column;
  padding: 26px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform .2s ease, box-shadow .2s ease;
}

.related-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.related-card small {
  color: var(--orange);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .1em;
}

.related-card h3 {
  margin: 16px 0 8px;
  font-size: 20px;
  line-height: 1.25;
}

.related-card p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.related-card span {
  margin-top: auto;
  padding-top: 18px;
  color: var(--green);
  font-size: 11px;
  font-weight: 900;
}

.seo-faq {
  background: #fff;
}

.seo-faq-grid {
  display: grid;
  grid-template-columns: .7fr 1.3fr;
  gap: 80px;
}

.seo-cta {
  padding-block: 90px;
  color: #fff;
  background: var(--green-dark);
}

.seo-cta-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 60px;
}

.seo-cta h2 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(38px, 4.8vw, 62px);
  line-height: 1.04;
  letter-spacing: -.045em;
}

.seo-cta p {
  max-width: 760px;
  margin: 18px 0 0;
  color: #c2d9d5;
}

.seo-cta-actions {
  display: grid;
  gap: 10px;
}

.floating-consult {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 55;
  min-height: 52px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 18px;
  color: #fff;
  background: #1877f2;
  border: 0;
  border-radius: 30px;
  box-shadow: 0 15px 38px rgba(24, 119, 242, .34);
  cursor: pointer;
  font-size: 12px;
  font-weight: 900;
}

.floating-consult svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.consult-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: 22px;
  background: rgba(7, 11, 12, .82);
  backdrop-filter: blur(8px);
}

.consult-modal[hidden] {
  display: none;
}

.consult-dialog {
  width: min(520px, 100%);
  position: relative;
  padding: 34px;
  background: #fff;
  border-top: 4px solid #1877f2;
  border-radius: var(--radius);
  box-shadow: 0 30px 90px rgba(0, 0, 0, .32);
}

.consult-close {
  width: 34px;
  height: 34px;
  position: absolute;
  top: 14px;
  right: 14px;
  color: var(--muted);
  background: var(--mist);
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  font-size: 24px;
}

.consult-kicker {
  color: #1877f2;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .13em;
}

.consult-dialog h2 {
  margin: 14px 35px 12px 0;
  font-size: 32px;
  line-height: 1.1;
  letter-spacing: -.035em;
}

.consult-description {
  color: var(--muted);
  font-size: 13px;
}

.consult-actions {
  display: grid;
  gap: 9px;
  margin-top: 22px;
}

.consult-facebook:disabled {
  opacity: .55;
  cursor: not-allowed;
}

.consult-dialog small {
  display: block;
  margin-top: 18px;
  color: #7a8587;
  font-size: 10px;
}

body.consult-open {
  overflow: hidden;
}

@media (max-width: 900px) {
  .seo-hero-grid,
  .seo-intro-grid,
  .seo-spec-grid,
  .seo-faq-grid {
    grid-template-columns: 1fr;
  }

  .seo-hero-grid {
    gap: 32px;
  }

  .seo-hero-card {
    width: min(460px, 100%);
  }

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

  .seo-spec-image {
    height: 500px;
  }
}

@media (max-width: 620px) {
  .seo-hero {
    min-height: 820px;
  }

  .seo-hero-grid {
    min-height: 820px;
    padding-block: 105px 55px;
  }

  .seo-hero h1 {
    font-size: 46px;
  }

  .seo-hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .seo-highlights,
  .related-grid,
  .term-list,
  .seo-cta-grid {
    grid-template-columns: 1fr;
  }

  .seo-spec-image {
    height: 380px;
  }

  .floating-consult {
    right: 13px;
    bottom: 13px;
  }

  .floating-consult span {
    display: none;
  }

  .floating-consult {
    width: 52px;
    justify-content: center;
    padding: 0;
  }

  .consult-dialog {
    padding: 27px 21px;
  }
}
