/* ==========================================================
   DO IT HAPPEN — seo.css
   Styles for SEO landing pages (product/service pages)
   Reuses palette + components from site.css/magic.css
   ========================================================== */

.seo-page main{
  padding: 32px 0 60px;
  position: relative;
  z-index: 1;
}

/* ----- Breadcrumb -------------------------------------------------- */
.breadcrumb{
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 22px;
  letter-spacing: .02em;
}
.breadcrumb a{
  color: var(--accent);
  border-bottom: 1px dotted rgba(88,221,255,.45);
  padding-bottom: 1px;
}
.breadcrumb a:hover{ color: #fff; border-color: #fff; }
.breadcrumb span{ color: rgba(255,255,255,.32); }

/* ----- SEO hero ---------------------------------------------------- */
.seo-hero{
  padding: 24px 0 32px;
  max-width: 920px;
}
.seo-kicker{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.03);
  color: #d8deea;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 22px;
}
.seo-kicker .dot{
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--ok);
  box-shadow: 0 0 12px rgba(86,255,157,.45);
  animation: blinkPulse 1.8s ease-in-out infinite;
}
.seo-hero h1{
  font-size: clamp(36px, 5vw, 60px);
  line-height: 1.04;
  letter-spacing: -.035em;
  margin: 0 0 18px;
  font-weight: 800;
  max-width: 880px;
}
.seo-hero .lead{
  color: #d6dbe7;
  font-size: clamp(16px, 1.6vw, 19px);
  line-height: 1.6;
  max-width: 820px;
  margin: 0 0 24px;
}
.seo-hero .cta-row{
  justify-content: flex-start;
}

/* ----- Section blocks --------------------------------------------- */
.seo-section{
  padding: 22px 0;
  border-top: 1px solid var(--line);
  max-width: 880px;
}
.seo-section:first-of-type{ border-top: none; padding-top: 12px; }
.seo-section h2{
  font-size: clamp(22px, 2.6vw, 30px);
  line-height: 1.18;
  letter-spacing: -.02em;
  margin: 0 0 12px;
  color: #fff;
}
.seo-section p{
  color: #c8d0e0;
  font-size: 16px;
  line-height: 1.7;
  margin: 0;
}
.seo-section p a,
.seo-section a{
  color: var(--accent);
  border-bottom: 1px dotted rgba(88,221,255,.45);
  padding-bottom: 1px;
}
.seo-section p a:hover{ color: #fff; border-color: #fff; }
.seo-section strong{ color: #fff; font-weight: 700; }

/* ----- Related links ---------------------------------------------- */
.seo-related{
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.seo-related h2{
  font-size: 18px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 14px;
}
.related-grid{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.related-link{
  display: inline-flex;
  align-items: center;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.03);
  color: #d8deea;
  font-size: 14px;
  font-weight: 600;
  transition: border-color .25s ease, background .25s ease, color .25s ease, transform .25s ease;
}
.related-link:hover{
  border-color: rgba(88,221,255,.45);
  background: rgba(88,221,255,.06);
  color: #fff;
  transform: translateY(-2px);
}

/* ----- Final CTA --------------------------------------------------- */
.cta-final-wrap{
  margin-top: 40px;
}

/* ----- Mobile ------------------------------------------------------ */
@media (max-width: 760px){
  .seo-hero h1{ font-size: clamp(28px, 8vw, 40px); }
  .seo-section{ padding: 18px 0; }
  .seo-section h2{ font-size: 22px; }
}
