
/* SEO video landing pages */
.seo-landing-page .page {
  gap: 18px;
}

.seo-hero {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(380px, 0.78fr);
  gap: 24px;
  align-items: stretch;
  border: 1px solid rgba(56, 189, 248, 0.22);
  border-radius: 14px;
  background:
    radial-gradient(circle at 10% 5%, rgba(34, 197, 94, 0.18), transparent 34%),
    radial-gradient(circle at 88% 12%, rgba(56, 189, 248, 0.16), transparent 34%),
    linear-gradient(135deg, rgba(8, 17, 31, 0.94), rgba(8, 47, 73, 0.76));
  padding: clamp(22px, 4vw, 42px);
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.26);
}

.seo-hero h1 {
  margin: 8px 0 14px;
  max-width: 780px;
  font-size: clamp(34px, 4.8vw, 58px);
  line-height: 1.02;
  letter-spacing: 0;
}

.seo-hero .lead {
  max-width: 760px;
  color: #dbeafe;
  font-size: clamp(17px, 1.8vw, 21px);
  line-height: 1.55;
}

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

.seo-hero-actions a,
.seo-related-actions a,
.seo-inline-cta a {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0 18px;
  text-decoration: none;
  font-weight: 900;
}

.seo-primary-cta {
  color: #052e16;
  background: linear-gradient(135deg, #22c55e, #38bdf8);
  box-shadow: 0 12px 34px rgba(34, 197, 94, 0.24);
}

.seo-secondary-cta {
  color: #e0f2fe;
  border: 1px solid rgba(125, 211, 252, 0.34);
  background: rgba(15, 23, 42, 0.72);
}

.video-shell {
  align-self: center;
  border: 1px solid rgba(34, 197, 94, 0.34);
  border-radius: 14px;
  padding: 10px;
  background: rgba(2, 6, 23, 0.72);
  box-shadow: 0 20px 54px rgba(0, 0, 0, 0.28);
}

.video-frame {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
  border-radius: 10px;
  display: block;
  background: #020617;
}

.seo-info-grid {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 18px;
}

.seo-panel,
.transcript-section {
  border: 1px solid rgba(56, 189, 248, 0.24);
  border-radius: 12px;
  background: rgba(15, 23, 42, 0.86);
  padding: clamp(20px, 3vw, 28px);
}

.seo-panel h2,
.transcript-section h2 {
  margin: 6px 0 12px;
  font-size: clamp(24px, 3vw, 34px);
}

.seo-panel p,
.transcript-section p,
.seo-panel li {
  color: #cbd5e1;
  line-height: 1.65;
  font-size: 17px;
}

.seo-panel ul {
  display: grid;
  gap: 10px;
  margin: 14px 0 0;
  padding-left: 20px;
}

.seo-pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.seo-pill-row span {
  border: 1px solid rgba(134, 239, 172, 0.3);
  border-radius: 999px;
  background: rgba(22, 163, 74, 0.14);
  color: #bbf7d0;
  padding: 8px 12px;
  font-weight: 900;
  font-size: 14px;
}

.transcript-section {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto 24px;
}

.transcript-copy {
  display: grid;
  gap: 14px;
  max-width: 980px;
}

.seo-inline-cta {
  margin-top: 22px;
  border-top: 1px solid rgba(125, 211, 252, 0.18);
  padding-top: 20px;
}

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

  .seo-hero {
    width: min(100% - 24px, 720px);
    padding: 20px;
  }

  .seo-info-grid,
  .transcript-section {
    width: min(100% - 24px, 720px);
  }

  .seo-hero h1 {
    font-size: clamp(32px, 10vw, 48px);
  }
}
