/* ============================================================
   SEO HERO — seo-hero.css
   Prefix: seo-hero-*
   Aesthetic: Data-terminal / Authority Signal / Premium Dark
   Distinct from vid-hero: graph lines, counters, signal nodes
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=DM+Sans:ital,wght@0,300;0,400;0,500;1,300&family=DM+Mono:wght@300;400&display=swap');

/* ── Root ── */
:root {
  --red: #E50914;
  --red-dark: #B81D24;
  --ink: #0a0a0a;
  --ice: #F5F5F1;
  --glow: rgba(229, 9, 20, 0.6);

  --seo-hero-h: 100vh;
  --seo-hero-min-h: 700px;
  --seo-hero-pad-x: clamp(24px, 6vw, 100px);
}

/* ══════════════════════════════════════════════
   SECTION SHELL
══════════════════════════════════════════════ */
.seo-hero {
  position: relative;
  width: 100%;
  min-height: var(--seo-hero-min-h);
  height: var(--seo-hero-h);
  max-height: 1000px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  font-family: 'DM Sans', sans-serif;
  isolation: isolate;
}

/* ══════════════════════════════════════════════
   BACKGROUND LAYERS
══════════════════════════════════════════════ */
.seo-hero-bg {
  position: absolute;
  inset: 0; z-index: 0;
}

/* Hero image */
.seo-hero-reel {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 30%;
  transform: scale(1.04);
  animation: seo-parallax-idle 20s ease-in-out infinite alternate;
}

@keyframes seo-parallax-idle {
  from { transform: scale(1.04) translateY(0); }
  to   { transform: scale(1.08) translateY(-2%); }
}

/* Ink overlays — heavier than vid-hero to let graph elements read */
.seo-hero-ink {
  position: absolute; inset: 0;
  background:
    linear-gradient(to right, rgba(10,10,10,0.97) 0%, rgba(10,10,10,0.80) 55%, rgba(10,10,10,0.55) 100%),
    linear-gradient(to top, rgba(10,10,10,1) 0%, transparent 42%),
    linear-gradient(to bottom, rgba(10,10,10,0.9) 0%, transparent 28%);
}

/* Film grain */
.seo-hero-grain {
  position: absolute; inset: -20%; width: 140%; height: 140%;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  pointer-events: none; opacity: 0.55; mix-blend-mode: overlay;
  animation: seo-grain-drift 8s steps(2) infinite;
}

@keyframes seo-grain-drift {
  0%   { transform: translate(0,0); }
  25%  { transform: translate(-1%,1%); }
  50%  { transform: translate(1%,-1%); }
  75%  { transform: translate(-1%,-1%); }
  100% { transform: translate(0,0); }
}

/* Grid overlay — data terminal feel */
.seo-hero-grid-canvas {
  position: absolute; inset: 0;
  pointer-events: none; opacity: 0.8;
}

.seo-hero-grid-svg { width: 100%; height: 100%; }

/* ── Rising Bar Chart — bottom right ── */
.seo-hero-chart {
  position: absolute;
  right: clamp(20px, 4vw, 80px);
  bottom: 90px; /* above stats bar */
  width: clamp(180px, 20vw, 280px);
  height: clamp(120px, 18vh, 160px);
  display: flex;
  align-items: flex-end;
  gap: 6px;
  opacity: 0;
  animation: seo-chart-in 1.2s ease 0.6s forwards;
}

@keyframes seo-chart-in {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.seo-hero-bar {
  flex: 1;
  background: linear-gradient(to top, rgba(229,9,20,0.5), rgba(229,9,20,0.12));
  border-radius: 3px 3px 0 0;
  border-top: 1px solid rgba(229,9,20,0.4);
  transform-origin: bottom;
  transform: scaleY(0);
  animation: seo-bar-rise 0.8s cubic-bezier(0.16,1,0.3,1) forwards;
  animation-delay: calc(1s + var(--bar-d));
  max-height: var(--bar-h);
  height: 100%;
}

.seo-hero-bar--accent {
  background: linear-gradient(to top, rgba(229,9,20,0.9), rgba(229,9,20,0.3));
  border-top-color: var(--red);
  box-shadow: 0 0 16px rgba(229,9,20,0.4);
}

@keyframes seo-bar-rise {
  from { transform: scaleY(0); }
  to   { transform: scaleY(1); }
}

/* Trend line SVG */
.seo-hero-trend {
  position: absolute;
  inset: 0; width: 100%; height: 100%;
  pointer-events: none;
}

.seo-hero-trend-line {
  stroke-dasharray: 400;
  stroke-dashoffset: 400;
  animation: seo-line-draw 1.4s cubic-bezier(0.16,1,0.3,1) 1.4s forwards;
}

@keyframes seo-line-draw {
  to { stroke-dashoffset: 0; }
}

.seo-hero-trend-dot {
  opacity: 0;
  animation: seo-dot-pop 0.4s ease 2.8s forwards;
  filter: drop-shadow(0 0 6px var(--red));
}

@keyframes seo-dot-pop {
  from { opacity: 0; r: 0; }
  to   { opacity: 1; r: 4; }
}

/* ── Signal / Pulse Nodes ── */
.seo-hero-node {
  position: absolute;
  width: 10px; height: 10px;
}

.seo-hero-node span {
  display: block;
  width: 100%; height: 100%;
  border-radius: 50%;
  background: var(--red);
  animation: seo-node-pulse 3s ease-in-out infinite;
}

.seo-hero-node span::before {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 1px solid rgba(229,9,20,0.35);
  animation: seo-node-ring 3s ease-in-out infinite;
}

.seo-hero-node span::after {
  content: '';
  position: absolute;
  inset: -18px;
  border-radius: 50%;
  border: 1px solid rgba(229,9,20,0.15);
  animation: seo-node-ring 3s ease-in-out 0.3s infinite;
}

.seo-hero-node--1 { top: 22%; right: 18%; animation-delay: 0s; }
.seo-hero-node--2 { top: 55%; right: 38%; animation-delay: 1s; }
.seo-hero-node--3 { top: 35%; right: 30%; animation-delay: 0.5s; }

@keyframes seo-node-pulse {
  0%, 100% { transform: scale(1); box-shadow: 0 0 6px var(--glow); }
  50%       { transform: scale(1.3); box-shadow: 0 0 16px var(--glow); }
}

@keyframes seo-node-ring {
  0%   { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(2.5); opacity: 0; }
}

/* Diagonal slash */
.seo-hero-slash {
  position: absolute; top: 0; right: 28%;
  width: 2px; height: 100%;
  background: linear-gradient(to bottom, transparent 0%, var(--red) 25%, var(--red) 75%, transparent 100%);
  opacity: 0.12; transform: skewX(-12deg);
}

.seo-hero-slash::before,
.seo-hero-slash::after {
  content: ''; position: absolute; top: 0; height: 100%;
  background: inherit; opacity: 0.5;
}

.seo-hero-slash::before { left: 16px; width: 1px; }
.seo-hero-slash::after  { left: 28px; width: 1px; opacity: 0.2; }

/* Scanlines */
.seo-hero-scanlines {
  position: absolute; inset: 0;
  background: repeating-linear-gradient(
    to bottom,
    transparent 0px, transparent 3px,
    rgba(0,0,0,0.04) 3px, rgba(0,0,0,0.04) 4px
  );
  pointer-events: none; opacity: 0.7;
}

/* Corner brackets */
.seo-hero-bracket {
  position: absolute;
  width: 36px; height: 36px;
  pointer-events: none; opacity: 0;
  animation: seo-bracket-in 0.8s cubic-bezier(0.34,1.56,0.64,1) forwards;
}

.seo-hero-bracket--tl { top: 28px; left: 28px; border-top: 2px solid rgba(229,9,20,0.5); border-left: 2px solid rgba(229,9,20,0.5);  animation-delay: 1.0s; }
.seo-hero-bracket--tr { top: 28px; right: 28px; border-top: 2px solid rgba(229,9,20,0.5); border-right: 2px solid rgba(229,9,20,0.5); animation-delay: 1.1s; }
.seo-hero-bracket--bl { bottom: 28px; left: 28px; border-bottom: 2px solid rgba(229,9,20,0.5); border-left: 2px solid rgba(229,9,20,0.5); animation-delay: 1.2s; }
.seo-hero-bracket--br { bottom: 28px; right: 28px; border-bottom: 2px solid rgba(229,9,20,0.5); border-right: 2px solid rgba(229,9,20,0.5); animation-delay: 1.3s; }

@keyframes seo-bracket-in {
  from { opacity: 0; transform: scale(1.4); }
  to   { opacity: 1; transform: scale(1); }
}

/* ══════════════════════════════════════════════
   MAIN CONTENT
══════════════════════════════════════════════ */
.seo-hero-content {
  position: relative; z-index: 10;
  padding: 0 var(--seo-hero-pad-x);
  padding-top: 120px; padding-bottom: 40px;
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-grow: 1;
}

/* ── Left ── */
.seo-hero-left {
  display: flex; flex-direction: column;
  gap: 24px; flex: 1 1 auto; max-width: 700px;
}

/* ── Right ── */
.seo-hero-right {
  display: flex; flex-direction: column;
  align-items: flex-end; gap: 20px;
  flex-shrink: 0; width: 220px;
  opacity: 0;
  animation: seo-fade-up 0.7s ease 1.1s forwards;
}

.seo-hero-right-divider {
  width: 100%; height: 1px;
  background: rgba(245,245,241,0.08);
  position: relative;
}

.seo-hero-right-divider::before {
  content: '';
  position: absolute; right: 0; top: 0;
  width: 40px; height: 1px;
  background: var(--red);
  box-shadow: 0 0 6px var(--glow);
}

/* ── Breadcrumb ── */
.seo-hero-breadcrumb-list {
  list-style: none; padding: 0; margin: 0;
  display: flex; align-items: center; gap: 6px;
  opacity: 0; animation: seo-fade-up 0.6s ease 0.1s forwards;
}

.seo-hero-breadcrumb-link {
  font-size: 11px; font-weight: 400;
  letter-spacing: 0.08em;
  color: rgba(245,245,241,0.4);
  text-decoration: none;
  transition: color 0.25s;
}

.seo-hero-breadcrumb-link:hover { color: rgba(245,245,241,0.8); }

.seo-hero-breadcrumb-sep {
  color: rgba(245,245,241,0.2);
  display: flex; align-items: center;
}

.seo-hero-breadcrumb-item--active {
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.08em; color: var(--red);
}

/* ── Badge ── */
.seo-hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  opacity: 0; animation: seo-fade-up 0.6s ease 0.2s forwards;
}

.seo-hero-badge-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--red); box-shadow: 0 0 10px var(--glow);
  animation: seo-badge-pulse 2s ease-in-out infinite;
}

@keyframes seo-badge-pulse {
  0%, 100% { box-shadow: 0 0 6px var(--glow); transform: scale(1); }
  50%       { box-shadow: 0 0 16px var(--glow); transform: scale(1.25); }
}

.seo-hero-badge-text {
  font-size: 10px; font-weight: 500;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--red);
}

/* ── Headline ── */
.seo-hero-headline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(64px, 10vw, 128px);
  line-height: 0.88; letter-spacing: 0.02em;
  margin: 0;
  display: flex; flex-direction: column; gap: 0;
}

.seo-hero-headline-line { display: block; overflow: hidden; }

.seo-hero-headline-word {
  display: inline-block;
  color: var(--ice);
  opacity: 0;
  transform: translateY(110%);
  animation: seo-word-rise 0.8s cubic-bezier(0.16,1,0.3,1) forwards;
  margin-right: 0.18em;
}

.seo-hero-headline-line--1 .seo-hero-headline-word:nth-child(1) { animation-delay: 0.35s; }
.seo-hero-headline-line--1 .seo-hero-headline-word:nth-child(2) { animation-delay: 0.45s; }
.seo-hero-headline-line--2 .seo-hero-headline-word:nth-child(1) { animation-delay: 0.55s; }
.seo-hero-headline-line--3 .seo-hero-headline-word:nth-child(1) { animation-delay: 0.65s; }

@keyframes seo-word-rise {
  from { opacity: 0; transform: translateY(110%); }
  to   { opacity: 1; transform: translateY(0); }
}

.seo-hero-headline-word--accent {
  color: var(--red);
  text-shadow: 0 0 60px rgba(229,9,20,0.4);
}

.seo-hero-headline-word--outline {
  -webkit-text-stroke: 2px var(--ice);
  color: transparent;
}

/* ── Sub-headline + Typewriter ── */
.seo-hero-sub {
  font-size: clamp(14px, 1.6vw, 17px);
  font-weight: 300; font-style: italic;
  color: rgba(245,245,241,0.55);
  line-height: 1.7; letter-spacing: 0.01em;
  margin: 0; max-width: 520px;
  opacity: 0; animation: seo-fade-up 0.7s ease 0.95s forwards;
}

.seo-hero-typewriter {
  font-family: 'DM Mono', monospace;
  font-size: clamp(12px, 1.3vw, 15px);
  font-style: normal; font-weight: 400;
  color: var(--red);
  border-right: 2px solid var(--red);
  padding-right: 3px;
  animation: seo-caret-blink 1s step-end infinite;
  white-space: nowrap;
}

@keyframes seo-caret-blink {
  0%, 100% { border-color: var(--red); }
  50%       { border-color: transparent; }
}

/* ── Pills ── */
.seo-hero-pills {
  display: flex; flex-wrap: wrap; gap: 7px; justify-content: flex-end;
}

.seo-hero-pill {
  display: inline-flex; align-items: center;
  padding: 5px 13px; border-radius: 100px;
  border: 1px solid rgba(245,245,241,0.1);
  background: rgba(245,245,241,0.04);
  font-size: 10px; font-weight: 500;
  letter-spacing: 0.06em;
  color: rgba(245,245,241,0.5);
  backdrop-filter: blur(6px);
  transition: border-color 0.3s, color 0.3s, background 0.3s, box-shadow 0.3s;
  cursor: default;
}

.seo-hero-pill:hover {
  border-color: rgba(229,9,20,0.5);
  color: var(--ice);
  background: rgba(229,9,20,0.08);
  box-shadow: 0 0 12px rgba(229,9,20,0.15);
}

/* ── CTAs ── */
.seo-hero-ctas {
  display: flex; flex-direction: column;
  align-items: stretch; gap: 10px; width: 100%;
  opacity: 0; animation: seo-fade-up 0.7s ease 1.15s forwards;
}

.seo-hero-cta {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px; padding: 13px 20px; border-radius: 8px;
  font-size: 13px; font-weight: 500;
  letter-spacing: 0.04em; text-decoration: none; width: 100%;
  transition:
    background 0.3s ease,
    border-color 0.3s ease,
    transform 0.35s cubic-bezier(0.34,1.56,0.64,1),
    box-shadow 0.3s ease;
}

.seo-hero-cta--primary {
  background: var(--red); color: var(--ice);
  border: 1px solid var(--red);
}

.seo-hero-cta--primary:hover {
  background: var(--red-dark); border-color: var(--red-dark);
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 12px 32px rgba(229,9,20,0.35);
  color: var(--ice);
}

.seo-hero-cta--primary svg { transition: transform 0.3s; }
.seo-hero-cta--primary:hover svg { transform: translateX(3px); }

.seo-hero-cta--ghost {
  background: transparent; color: rgba(245,245,241,0.8);
  border: 1px solid rgba(245,245,241,0.15);
  backdrop-filter: blur(8px);
}

.seo-hero-cta--ghost:hover {
  background: rgba(245,245,241,0.06);
  border-color: rgba(245,245,241,0.35);
  transform: translateY(-2px) scale(1.02);
  color: var(--ice);
}

.seo-hero-cta--ghost svg { transition: transform 0.3s; }
.seo-hero-cta--ghost:hover svg { transform: translateX(4px); }

/* ══════════════════════════════════════════════
   STATS BAR
══════════════════════════════════════════════ */
.seo-hero-stats {
  position: relative; z-index: 10; flex-shrink: 0;
  display: flex; align-items: stretch;
  background: rgba(10,10,10,0.8);
  backdrop-filter: blur(20px);
  border-top: 1px solid rgba(245,245,241,0.06);
  box-shadow: inset 0 1px 0 rgba(229,9,20,0.2);
  opacity: 0; transform: translateY(20px);
  animation: seo-stats-rise 0.8s cubic-bezier(0.25,0.46,0.45,0.94) 1.3s forwards;
}

@keyframes seo-stats-rise {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.seo-hero-stat {
  flex: 1;
  display: flex; flex-direction: row; flex-wrap: wrap;
  align-items: baseline; justify-content: center;
  column-gap: 0; row-gap: 2px;
  padding: 22px 16px;
  position: relative;
  transition: background 0.3s;
}

.seo-hero-stat:hover { background: rgba(229,9,20,0.05); }

.seo-hero-stat::before {
  content: '';
  position: absolute; top: 0; left: 50%;
  transform: translateX(-50%);
  width: 0; height: 2px;
  background: var(--red);
  box-shadow: 0 0 8px var(--glow);
  transition: width 0.35s ease;
}

.seo-hero-stat:hover::before { width: 40%; }

.seo-hero-stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(28px, 3.5vw, 42px);
  line-height: 1; color: var(--ice);
  letter-spacing: 0.04em;
  font-variant-numeric: tabular-nums;
  display: inline;
}

.seo-hero-stat-unit {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(18px, 2vw, 26px);
  color: var(--red); line-height: 1;
  margin-left: 2px; position: relative; top: -2px;
  display: inline;
}

.seo-hero-stat-label {
  display: block; width: 100%; text-align: center;
  font-size: 9px; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(245,245,241,0.35); margin-top: 4px;
}

.seo-hero-stat-divider {
  width: 1px; background: rgba(245,245,241,0.07);
  margin: 12px 0; align-self: stretch;
}

/* ══════════════════════════════════════════════
   SCROLL CUE
══════════════════════════════════════════════ */
.seo-hero-scroll-cue {
  position: absolute;
  bottom: 110px; right: var(--seo-hero-pad-x);
  z-index: 10;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  opacity: 0; animation: seo-fade-in 1s ease 1.6s forwards;
}

.seo-hero-scroll-line {
  width: 1px; height: 48px;
  background: linear-gradient(to bottom, transparent, rgba(245,245,241,0.3));
  position: relative; overflow: hidden;
}

.seo-hero-scroll-line::after {
  content: ''; position: absolute; top: -100%; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(to bottom, transparent, var(--red));
  animation: seo-scroll-drip 2s ease-in-out infinite;
  animation-delay: 2s;
}

@keyframes seo-scroll-drip {
  0%   { top: -100%; opacity: 0; }
  30%  { opacity: 1; }
  100% { top: 100%; opacity: 0; }
}

.seo-hero-scroll-label {
  font-size: 8px; font-weight: 500;
  letter-spacing: 0.25em; text-transform: uppercase;
  color: rgba(245,245,241,0.25);
  writing-mode: vertical-rl;
}

/* ══════════════════════════════════════════════
   SHARED KEYFRAMES
══════════════════════════════════════════════ */
@keyframes seo-fade-up {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes seo-fade-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* ══════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════ */
@media (max-width: 900px) {
  .seo-hero { height: auto; min-height: 100svh; max-height: none; }

  .seo-hero-content {
    padding-top: 120px; padding-bottom: 40px;
    flex-direction: column; align-items: flex-start;
    justify-content: center; gap: 32px;
  }

  .seo-hero-left { max-width: 100%; gap: 20px; }
  .seo-hero-right { width: 100%; align-items: flex-start; }
  .seo-hero-pills { justify-content: flex-start; }

  .seo-hero-ctas { flex-direction: row; }
  .seo-hero-cta  { flex: 1; }

  .seo-hero-headline { font-size: clamp(56px, 14vw, 90px); }
  .seo-hero-sub      { font-size: 14px; }
  .seo-hero-scroll-cue { display: none; }

  /* Reposition chart on mobile */
  .seo-hero-chart {
    position: static;
    width: 100%; height: 80px;
    order: 99;
    margin-top: 8px;
    opacity: 1; animation: none;
  }

  .seo-hero-node--2, .seo-hero-node--3 { display: none; }
}

@media (max-width: 600px) {
  .seo-hero-headline { font-size: clamp(48px, 16vw, 72px); }

  .seo-hero-stats { flex-wrap: wrap; }
  .seo-hero-stat  { flex: 0 0 50%; padding: 16px 12px; }
  .seo-hero-stat-divider { display: none; }

  .seo-hero-ctas { flex-direction: column; gap: 10px; }
  .seo-hero-cta  { width: 100%; flex: none; }

  .seo-hero-bracket { width: 24px; height: 24px; }
  .seo-hero-bracket--tl, .seo-hero-bracket--tr { top: 16px; }
  .seo-hero-bracket--bl, .seo-hero-bracket--br { bottom: 16px; }
  .seo-hero-bracket--tl, .seo-hero-bracket--bl { left: 16px; }
  .seo-hero-bracket--tr, .seo-hero-bracket--br { right: 16px; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .seo-hero-reel,
  .seo-hero-grain,
  .seo-hero-headline-word,
  .seo-hero-badge-dot,
  .seo-hero-stats,
  .seo-hero-scroll-cue,
  .seo-hero-bracket,
  .seo-hero-bar,
  .seo-hero-trend-line,
  .seo-hero-trend-dot,
  .seo-hero-node span,
  .seo-hero-scroll-line::after,
  .seo-hero-typewriter {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
    stroke-dashoffset: 0 !important;
  }
}

/* ============================================================
   SEO SERVICE DESCRIPTION — seo-desc.css
   Prefix: seo-desc-*
   Aesthetic: Data-authority / Terminal-editorial / Premium Dark
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=DM+Sans:ital,wght@0,300;0,400;0,500;0,600;1,300&family=DM+Mono:wght@300;400&display=swap');

:root {
  --red: #E50914;
  --red-dark: #B81D24;
  --ink: #0a0a0a;
  --ice: #F5F5F1;
  --glow: rgba(229, 9, 20, 0.6);
  --seo-desc-pad-x: clamp(24px, 6vw, 100px);
}

/* ══════════════════════════════════════════════
   SECTION SHELL
══════════════════════════════════════════════ */
.seo-desc {
  position: relative;
  width: 100%;
  background: #0d0d0d;
  padding: 120px 0 110px;
  overflow: hidden;
  font-family: 'DM Sans', sans-serif;
  isolation: isolate;
}

.seo-desc::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(to right, transparent, rgba(229,9,20,0.3) 50%, transparent);
  z-index: 1;
}

.seo-desc::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(to right, transparent, rgba(245,245,241,0.06) 50%, transparent);
  z-index: 1;
}

/* ══════════════════════════════════════════════
   BACKGROUND
══════════════════════════════════════════════ */
.seo-desc-bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }

.seo-desc-ambient {
  position: absolute; width: 700px; height: 700px; border-radius: 50%;
}

.seo-desc-ambient--left {
  bottom: -200px; left: -200px;
  background: radial-gradient(circle, rgba(229,9,20,0.05) 0%, transparent 65%);
}

.seo-desc-ambient--right {
  top: -200px; right: -200px;
  background: radial-gradient(circle, rgba(229,9,20,0.035) 0%, transparent 60%);
}

.seo-desc-topo {
  position: absolute; inset: 0;
  overflow: hidden;
}

.seo-desc-topo-svg {
  width: 100%; height: 100%;
  opacity: 0.7;
}

.seo-desc-scanlines {
  position: absolute; inset: 0;
  background: repeating-linear-gradient(
    to bottom, transparent 0px, transparent 3px,
    rgba(0,0,0,0.03) 3px, rgba(0,0,0,0.03) 4px
  );
  opacity: 0.6;
}

/* ══════════════════════════════════════════════
   SPINE
══════════════════════════════════════════════ */
.seo-desc-spine {
  position: absolute;
  left: clamp(14px, 2.5vw, 40px);
  top: 120px; bottom: 110px;
  display: flex; flex-direction: column;
  align-items: center; gap: 14px;
  z-index: 2; pointer-events: none;
}

.seo-desc-spine-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 11px; letter-spacing: 0.25em;
  color: rgba(229,9,20,0.4);
  writing-mode: vertical-rl; transform: rotate(180deg);
}

.seo-desc-spine-track {
  flex: 1; width: 1px; display: block;
  background: linear-gradient(to bottom, rgba(229,9,20,0.3), rgba(245,245,241,0.06) 60%, transparent);
  transform-origin: top; transform: scaleY(0);
  transition: transform 1.4s cubic-bezier(0.16,1,0.3,1);
}

.seo-desc-spine-track.seo-desc-in-view { transform: scaleY(1); }

/* ══════════════════════════════════════════════
   INNER + LAYOUT
══════════════════════════════════════════════ */
.seo-desc-inner {
  position: relative; z-index: 2;
  padding: 0 var(--seo-desc-pad-x);
  padding-left: calc(var(--seo-desc-pad-x) + 40px);
  display: flex; flex-direction: column; gap: 64px;
}

/* ══════════════════════════════════════════════
   HEADER
══════════════════════════════════════════════ */
.seo-desc-header {
  display: flex; flex-direction: column; gap: 24px;
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.seo-desc-header.seo-desc-in-view { opacity: 1; transform: translateY(0); }

/* Eyebrow */
.seo-desc-eyebrow {
  display: flex; align-items: center; gap: 12px;
}

.seo-desc-eyebrow-pip {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--red); flex-shrink: 0;
  box-shadow: 0 0 10px var(--glow);
  animation: seo-desc-pip-pulse 2.5s ease-in-out infinite;
}

@keyframes seo-desc-pip-pulse {
  0%, 100% { box-shadow: 0 0 6px var(--glow); }
  50%       { box-shadow: 0 0 18px var(--glow); }
}

.seo-desc-eyebrow-text {
  font-size: 10px; font-weight: 500;
  letter-spacing: 0.26em; text-transform: uppercase; color: var(--red);
}

.seo-desc-eyebrow-line {
  flex: 1; height: 1px;
  background: linear-gradient(to right, rgba(229,9,20,0.3), transparent);
  max-width: 200px;
}

/* Heading row */
.seo-desc-heading-row {
  display: flex; align-items: flex-end;
  justify-content: space-between; gap: 40px; flex-wrap: wrap;
}

.seo-desc-heading {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(48px, 6.5vw, 92px);
  line-height: 0.9; letter-spacing: 0.02em;
  color: var(--ice); margin: 0;
}

.seo-desc-heading-line { display: block; }

.seo-desc-heading-line--em {
  color: var(--red);
  text-shadow: 0 0 60px rgba(229,9,20,0.35);
}

.seo-desc-heading-aside {
  display: flex; flex-direction: column;
  gap: 16px; max-width: 340px;
}

.seo-desc-intro {
  font-size: clamp(14px, 1.4vw, 16px);
  font-weight: 300; line-height: 1.75; color: rgba(245,245,241,0.55); margin: 0;
}

.seo-desc-intro-cta {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 500; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--red); text-decoration: none;
  transition: gap 0.3s ease, opacity 0.3s;
}

.seo-desc-intro-cta:hover { gap: 14px; opacity: 0.8; }

/* ══════════════════════════════════════════════
   BODY — two column
══════════════════════════════════════════════ */
.seo-desc-body {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 56px;
  align-items: start;
}

/* ── Left Column ── */
.seo-desc-body-left {
  display: flex; flex-direction: column; gap: 48px;
}

.seo-desc-text-block {
  display: flex; flex-direction: column; gap: 18px;
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.seo-desc-text-block.seo-desc-in-view { opacity: 1; transform: translateY(0); }

.seo-desc-para {
  font-size: clamp(14px, 1.4vw, 15.5px);
  font-weight: 300; line-height: 1.85;
  color: rgba(245,245,241,0.52); margin: 0;
}

.seo-desc-para--lead {
  font-size: clamp(15px, 1.6vw, 17px);
  font-weight: 400; color: rgba(245,245,241,0.72);
  border-left: 2px solid var(--red);
  padding-left: 18px;
}

.seo-desc-para strong {
  color: rgba(245,245,241,0.85); font-weight: 600;
}

.seo-desc-para em {
  color: rgba(229,9,20,0.8); font-style: italic;
}

/* ── Audience Grid ── */
.seo-desc-audience {
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.7s ease 0.15s, transform 0.7s ease 0.15s;
}

.seo-desc-audience.seo-desc-in-view { opacity: 1; transform: translateY(0); }

.seo-desc-audience-title {
  font-size: 10px; font-weight: 500;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(245,245,241,0.3); margin: 0 0 20px;
}

.seo-desc-audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.seo-desc-audience-card {
  display: flex; flex-direction: column; gap: 8px;
  padding: 18px 16px;
  background: rgba(245,245,241,0.025);
  border: 1px solid rgba(245,245,241,0.07);
  border-radius: 12px;
  transition: background 0.3s, border-color 0.3s, transform 0.35s cubic-bezier(0.34,1.2,0.64,1);
  cursor: default;
}

.seo-desc-audience-card:hover {
  background: rgba(229,9,20,0.05);
  border-color: rgba(229,9,20,0.2);
  transform: translateY(-3px);
}

.seo-desc-audience-icon {
  width: 32px; height: 32px;
  border-radius: 8px;
  background: rgba(229,9,20,0.08);
  border: 1px solid rgba(229,9,20,0.15);
  display: flex; align-items: center; justify-content: center;
  color: var(--red);
  transition: background 0.3s, box-shadow 0.3s;
}

.seo-desc-audience-icon svg { width: 14px; height: 14px; }

.seo-desc-audience-card:hover .seo-desc-audience-icon {
  background: rgba(229,9,20,0.18);
  box-shadow: 0 0 14px rgba(229,9,20,0.25);
}

.seo-desc-audience-label {
  font-size: 12px; font-weight: 600;
  color: rgba(245,245,241,0.8); letter-spacing: -0.01em;
  transition: color 0.3s;
}

.seo-desc-audience-card:hover .seo-desc-audience-label { color: var(--ice); }

.seo-desc-audience-sub {
  font-size: 11px; font-weight: 300;
  color: rgba(245,245,241,0.35); line-height: 1.5;
  margin: 0; transition: color 0.3s;
}

.seo-desc-audience-card:hover .seo-desc-audience-sub { color: rgba(245,245,241,0.55); }

/* ── Right Column ── */
.seo-desc-body-right {
  display: flex; flex-direction: column; gap: 16px;
  position: sticky; top: 80px;
  opacity: 0; transform: translateX(20px);
  transition: opacity 0.7s ease 0.2s, transform 0.7s ease 0.2s;
}

.seo-desc-body-right.seo-desc-in-view { opacity: 1; transform: translateX(0); }

/* Terminal metric card */
.seo-desc-metric-card {
  background: rgba(245,245,241,0.03);
  border: 1px solid rgba(245,245,241,0.09);
  border-radius: 14px;
  overflow: hidden;
}

.seo-desc-metric-card-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 18px;
  border-bottom: 1px solid rgba(245,245,241,0.06);
  background: rgba(245,245,241,0.02);
}

.seo-desc-metric-card-label {
  font-family: 'DM Mono', monospace;
  font-size: 10px; font-weight: 400;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(245,245,241,0.35);
}

.seo-desc-metric-card-dots {
  display: flex; gap: 5px;
}

.seo-desc-metric-card-dots span {
  width: 8px; height: 8px; border-radius: 50%;
}

.seo-desc-metric-card-dots span:nth-child(1) { background: rgba(229,9,20,0.6); }
.seo-desc-metric-card-dots span:nth-child(2) { background: rgba(245,245,241,0.15); }
.seo-desc-metric-card-dots span:nth-child(3) { background: rgba(245,245,241,0.08); }

.seo-desc-metric-rows {
  padding: 20px 18px;
  display: flex; flex-direction: column; gap: 14px;
}

.seo-desc-metric-row {
  display: grid;
  grid-template-columns: 100px 1fr 36px;
  align-items: center; gap: 10px;
}

.seo-desc-metric-row-name {
  font-size: 11px; font-weight: 400;
  color: rgba(245,245,241,0.5); white-space: nowrap;
}

.seo-desc-metric-bar-track {
  height: 5px; border-radius: 100px;
  background: rgba(245,245,241,0.06); overflow: hidden;
}

.seo-desc-metric-bar {
  height: 100%; border-radius: 100px;
  width: 0;
  transition: width 1.2s cubic-bezier(0.16,1,0.3,1);
}

.seo-desc-metric-bar--seo {
  background: linear-gradient(to right, var(--red-dark), var(--red));
  box-shadow: 0 0 8px rgba(229,9,20,0.5);
}

.seo-desc-metric-bar--paid {
  background: rgba(245,245,241,0.2);
}

.seo-desc-body-right.seo-desc-in-view .seo-desc-metric-bar {
  width: var(--w);
}

.seo-desc-metric-pct {
  font-family: 'DM Mono', monospace;
  font-size: 11px; font-weight: 400;
  color: var(--red); text-align: right;
}

.seo-desc-metric-pct--dim { color: rgba(245,245,241,0.3); }

.seo-desc-metric-caption {
  padding: 10px 18px 14px;
  font-size: 10px; font-weight: 300; font-style: italic;
  color: rgba(245,245,241,0.25); line-height: 1.5; margin: 0;
  border-top: 1px solid rgba(245,245,241,0.05);
}

.seo-desc-metric-caption em { color: rgba(245,245,241,0.35); font-style: normal; }

/* Compound returns card */
.seo-desc-compound-card {
  background: rgba(245,245,241,0.025);
  border: 1px solid rgba(245,245,241,0.08);
  border-radius: 14px;
  padding: 22px 20px;
  display: flex; flex-direction: column; gap: 18px;
}

.seo-desc-compound-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 16px; letter-spacing: 0.08em;
  color: rgba(245,245,241,0.6); margin: 0;
}

.seo-desc-compound-list {
  display: flex; flex-direction: column; gap: 16px;
}

.seo-desc-compound-item {
  display: grid; grid-template-columns: 28px 1fr; gap: 12px;
  align-items: start;
}

.seo-desc-compound-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 13px; letter-spacing: 0.15em;
  color: rgba(229,9,20,0.45); padding-top: 2px; line-height: 1;
}

.seo-desc-compound-item-title {
  display: block; font-size: 12px; font-weight: 600;
  color: rgba(245,245,241,0.78); margin-bottom: 4px; letter-spacing: -0.01em;
}

.seo-desc-compound-item-body {
  font-size: 11px; font-weight: 300;
  color: rgba(245,245,241,0.38); line-height: 1.6; margin: 0;
}

/* ── Ticker ── */
.seo-desc-ticker {
  overflow: hidden; padding: 10px 0;
  border-top: 1px solid rgba(245,245,241,0.05);
  border-bottom: 1px solid rgba(245,245,241,0.05);
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.seo-desc-ticker-track {
  display: flex; align-items: center; gap: 18px;
  white-space: nowrap;
  animation: seo-desc-ticker-scroll 18s linear infinite;
}

.seo-desc-ticker-track span {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 11px; letter-spacing: 0.2em;
  color: rgba(245,245,241,0.18);
}

.seo-desc-ticker-dot { color: rgba(229,9,20,0.3) !important; }

@keyframes seo-desc-ticker-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ══════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .seo-desc-body {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .seo-desc-body-right {
    position: static;
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 16px;
    opacity: 1; transform: none;
  }

  .seo-desc-ticker { display: none; }
}

@media (max-width: 860px) {
  .seo-desc { padding: 80px 0; }
  .seo-desc-inner { padding-left: var(--seo-desc-pad-x); gap: 48px; }
  .seo-desc-spine { display: none; }
  .seo-desc-heading-row { flex-direction: column; align-items: flex-start; }
  .seo-desc-heading-aside { max-width: 100%; }
  .seo-desc-audience-grid { grid-template-columns: repeat(2, 1fr); }
  .seo-desc-body-right { grid-template-columns: 1fr; }
}

@media (max-width: 520px) {
  .seo-desc-audience-grid { grid-template-columns: 1fr; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .seo-desc-header,
  .seo-desc-text-block,
  .seo-desc-audience,
  .seo-desc-body-right,
  .seo-desc-spine-track,
  .seo-desc-metric-bar,
  .seo-desc-eyebrow-pip,
  .seo-desc-ticker-track {
    transition: none !important;
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
    width: var(--w, auto) !important;
  }
}

/* ============================================================
   SEO SUB-SERVICES GRID — seo-services.css
   Prefix: seo-svc-*
   Aesthetic: Clean data-cards / Breathing room / Premium Dark
   Design principle: Easy on the eyes — no visual noise
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=DM+Sans:ital,wght@0,300;0,400;0,500;0,600;1,300&family=DM+Mono:wght@300;400&display=swap');

:root {
  --red: #E50914;
  --red-dark: #B81D24;
  --ink: #0a0a0a;
  --ice: #F5F5F1;
  --glow: rgba(229, 9, 20, 0.6);
  --seo-svc-pad-x: clamp(24px, 6vw, 100px);

  /* Card surface colours */
  --seo-svc-card-bg:      #121212;
  --seo-svc-card-border:  rgba(245,245,241,0.07);
  --seo-svc-card-hover-bg: #161616;
}

/* ══════════════════════════════════════════════
   SECTION SHELL
══════════════════════════════════════════════ */
.seo-svc {
  position: relative;
  width: 100%;
  background: var(--ink);
  padding: 120px 0 110px;
  overflow: hidden;
  font-family: 'DM Sans', sans-serif;
  isolation: isolate;
}

.seo-svc::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(to right, transparent, rgba(229,9,20,0.3) 50%, transparent);
  z-index: 1;
}

.seo-svc::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(to right, transparent, rgba(245,245,241,0.05) 50%, transparent);
  z-index: 1;
}

/* ══════════════════════════════════════════════
   BACKGROUND — intentionally quiet
══════════════════════════════════════════════ */
.seo-svc-bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }

.seo-svc-ambient {
  position: absolute; width: 600px; height: 600px; border-radius: 50%;
}

.seo-svc-ambient--tl {
  top: -200px; left: -200px;
  background: radial-gradient(circle, rgba(229,9,20,0.04) 0%, transparent 60%);
}

.seo-svc-ambient--br {
  bottom: -200px; right: -200px;
  background: radial-gradient(circle, rgba(229,9,20,0.03) 0%, transparent 60%);
}

/* Subtle dot grid — barely there */
.seo-svc-dots {
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(245,245,241,0.055) 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: radial-gradient(ellipse 90% 90% at 50% 50%, black 20%, transparent 80%);
}

/* ══════════════════════════════════════════════
   SPINE
══════════════════════════════════════════════ */
.seo-svc-spine {
  position: absolute;
  left: clamp(14px, 2.5vw, 40px);
  top: 120px; bottom: 110px;
  display: flex; flex-direction: column;
  align-items: center; gap: 14px;
  z-index: 2; pointer-events: none;
}

.seo-svc-spine-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 11px; letter-spacing: 0.25em;
  color: rgba(229,9,20,0.4);
  writing-mode: vertical-rl; transform: rotate(180deg);
}

.seo-svc-spine-track {
  flex: 1; width: 1px; display: block;
  background: linear-gradient(to bottom, rgba(229,9,20,0.3), rgba(245,245,241,0.06) 60%, transparent);
  transform-origin: top; transform: scaleY(0);
  transition: transform 1.4s cubic-bezier(0.16,1,0.3,1);
}

.seo-svc-spine-track.seo-svc-in-view { transform: scaleY(1); }

/* ══════════════════════════════════════════════
   INNER
══════════════════════════════════════════════ */
.seo-svc-inner {
  position: relative; z-index: 2;
  padding: 0 var(--seo-svc-pad-x);
  padding-left: calc(var(--seo-svc-pad-x) + 40px);
  display: flex; flex-direction: column; gap: 52px;
}

/* ══════════════════════════════════════════════
   HEADER
══════════════════════════════════════════════ */
.seo-svc-header {
  display: flex; flex-direction: column; gap: 18px;
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.seo-svc-header.seo-svc-in-view { opacity: 1; transform: translateY(0); }

.seo-svc-eyebrow { display: inline-flex; align-items: center; gap: 12px; }

.seo-svc-eyebrow-line {
  display: block; width: 32px; height: 1px;
  background: var(--red); opacity: 0.7;
}

.seo-svc-eyebrow-text {
  font-size: 10px; font-weight: 500;
  letter-spacing: 0.28em; text-transform: uppercase; color: var(--red);
}

.seo-svc-header-row {
  display: flex; align-items: flex-end;
  justify-content: space-between; gap: 32px; flex-wrap: wrap;
}

.seo-svc-heading {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(48px, 6vw, 88px);
  line-height: 0.92; letter-spacing: 0.02em;
  color: var(--ice); margin: 0;
}

.seo-svc-heading-line { display: block; }

.seo-svc-heading-line--em {
  -webkit-text-stroke: 2px rgba(245,245,241,0.5);
  color: transparent;
}

.seo-svc-heading-sub {
  font-size: clamp(13px, 1.3vw, 15px);
  font-weight: 300; font-style: italic;
  color: rgba(245,245,241,0.4); line-height: 1.7;
  margin: 0; text-align: right; max-width: 280px;
}

/* ══════════════════════════════════════════════
   SERVICES GRID
   — 4 cols on wide, 2 cols on mid, 1 col on mobile
   — Featured card (01) spans 2 cols on first row
══════════════════════════════════════════════ */
.seo-svc-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto;
  gap: 14px;
}

/* ── Single Card ── */
.seo-svc-card {
  position: relative;
  background: var(--seo-svc-card-bg);
  border: 1px solid var(--seo-svc-card-border);
  border-radius: 16px;
  overflow: hidden;
  cursor: default;
  display: flex; flex-direction: column;

  /* Scroll reveal */
  opacity: 0; transform: translateY(20px) scale(0.99);
  transition:
    opacity 0.55s ease,
    transform 0.55s ease,
    background 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease;
}

.seo-svc-card.seo-svc-in-view {
  opacity: 1; transform: translateY(0) scale(1);
}

/* Stagger delays */
.seo-svc-card:nth-child(1) { transition-delay: 0s; }
.seo-svc-card:nth-child(2) { transition-delay: 0.06s; }
.seo-svc-card:nth-child(3) { transition-delay: 0.12s; }
.seo-svc-card:nth-child(4) { transition-delay: 0.18s; }
.seo-svc-card:nth-child(5) { transition-delay: 0.05s; }
.seo-svc-card:nth-child(6) { transition-delay: 0.11s; }
.seo-svc-card:nth-child(7) { transition-delay: 0.17s; }
.seo-svc-card:nth-child(8) { transition-delay: 0.08s; }

/* Featured card — spans 2 columns */
.seo-svc-card--featured {
  grid-column: span 2;
}

/* Hover */
.seo-svc-card:hover {
  background: var(--seo-svc-card-hover-bg);
  border-color: rgba(229,9,20,0.25);
  box-shadow:
    0 0 0 1px rgba(229,9,20,0.08) inset,
    0 20px 48px rgba(0,0,0,0.4);
  transform: translateY(-4px) scale(1.005);
}

/* ── Card inner ── */
.seo-svc-card-inner {
  padding: 24px 22px 20px;
  display: flex; flex-direction: column; gap: 16px;
  flex: 1;
}

/* ── Top row: icon + index ── */
.seo-svc-card-top {
  display: flex; align-items: center;
  justify-content: space-between;
}

.seo-svc-card-icon {
  width: 44px; height: 44px; border-radius: 11px;
  background: rgba(229,9,20,0.07);
  border: 1px solid rgba(229,9,20,0.12);
  display: flex; align-items: center; justify-content: center;
  color: rgba(229,9,20,0.75);
  flex-shrink: 0;
  transition:
    background 0.35s ease,
    border-color 0.35s ease,
    color 0.35s ease,
    transform 0.4s cubic-bezier(0.34,1.56,0.64,1),
    box-shadow 0.35s ease;
}

.seo-svc-card-icon svg { width: 18px; height: 18px; }

.seo-svc-card:hover .seo-svc-card-icon {
  background: rgba(229,9,20,0.16);
  border-color: rgba(229,9,20,0.35);
  color: var(--red);
  transform: scale(1.08) rotate(-5deg);
  box-shadow: 0 0 18px rgba(229,9,20,0.2);
}

.seo-svc-card-index {
  font-family: 'DM Mono', monospace;
  font-size: 11px; font-weight: 300;
  letter-spacing: 0.15em;
  color: rgba(245,245,241,0.18);
  transition: color 0.3s;
}

.seo-svc-card:hover .seo-svc-card-index {
  color: rgba(229,9,20,0.55);
}

/* ── Body ── */
.seo-svc-card-body {
  display: flex; flex-direction: column; gap: 8px;
}

.seo-svc-card-title {
  font-size: clamp(14px, 1.3vw, 16px); font-weight: 600;
  color: rgba(245,245,241,0.85); margin: 0;
  line-height: 1.25; letter-spacing: -0.01em;
  transition: color 0.3s;
}

.seo-svc-card:hover .seo-svc-card-title { color: var(--ice); }

.seo-svc-card-desc {
  font-size: clamp(12px, 1.1vw, 13px); font-weight: 300;
  color: rgba(245,245,241,0.4); line-height: 1.7;
  margin: 0; transition: color 0.3s;
}

.seo-svc-card:hover .seo-svc-card-desc {
  color: rgba(245,245,241,0.6);
}

/* ── Deliverables list ── */
.seo-svc-card-deliverables {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 6px;
  border-top: 1px solid rgba(245,245,241,0.05);
  padding-top: 14px;
  margin-top: auto;
}

.seo-svc-card-deliverables li {
  display: flex; align-items: center; gap: 8px;
  font-size: 11.5px; font-weight: 400;
  color: rgba(245,245,241,0.38); line-height: 1.4;
  transition: color 0.3s;
}

.seo-svc-card-deliverables li::before {
  content: '';
  width: 4px; height: 4px; border-radius: 50%;
  background: rgba(229,9,20,0.4); flex-shrink: 0;
  transition: background 0.3s, box-shadow 0.3s;
}

.seo-svc-card:hover .seo-svc-card-deliverables li {
  color: rgba(245,245,241,0.6);
}

.seo-svc-card:hover .seo-svc-card-deliverables li::before {
  background: var(--red);
  box-shadow: 0 0 5px var(--glow);
}

/* Stagger deliverable items on hover */
.seo-svc-card-deliverables li:nth-child(1) { transition-delay: 0s; }
.seo-svc-card-deliverables li:nth-child(2) { transition-delay: 0.04s; }
.seo-svc-card-deliverables li:nth-child(3) { transition-delay: 0.08s; }
.seo-svc-card-deliverables li:nth-child(4) { transition-delay: 0.12s; }

/* ── Card footer: badge + cadence ── */
.seo-svc-card-footer {
  display: flex; align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  border-top: 1px solid rgba(245,245,241,0.04);
  margin-top: 4px;
}

.seo-svc-card-badge {
  display: inline-flex; align-items: center;
  padding: 3px 10px; border-radius: 100px;
  font-size: 9px; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase;
  border: 1px solid rgba(229,9,20,0.3);
  background: rgba(229,9,20,0.08);
  color: rgba(229,9,20,0.8);
}

.seo-svc-badge--gold {
  border-color: rgba(251,191,36,0.35);
  background: rgba(251,191,36,0.07);
  color: rgba(251,191,36,0.85);
}

.seo-svc-badge--blue {
  border-color: rgba(96,165,250,0.35);
  background: rgba(96,165,250,0.07);
  color: rgba(96,165,250,0.85);
}

.seo-svc-card-cadence {
  font-family: 'DM Mono', monospace;
  font-size: 9px; font-weight: 300;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(245,245,241,0.2);
  transition: color 0.3s;
}

.seo-svc-card:hover .seo-svc-card-cadence {
  color: rgba(245,245,241,0.4);
}

/* ── Bottom accent bar — grows on hover ── */
.seo-svc-card-bar {
  height: 2px;
  background: linear-gradient(to right, var(--red), rgba(229,9,20,0.2));
  transform-origin: left;
  transform: scaleX(0);
  transition: transform 0.45s cubic-bezier(0.34,1.2,0.64,1);
}

.seo-svc-card:hover .seo-svc-card-bar {
  transform: scaleX(1);
}

/* ══════════════════════════════════════════════
   BOTTOM SUMMARY STRIP
══════════════════════════════════════════════ */
.seo-svc-summary {
  display: flex; align-items: center;
  justify-content: space-between; gap: 24px; flex-wrap: wrap;
  padding: 26px 32px;
  background: rgba(245,245,241,0.025);
  border: 1px solid rgba(245,245,241,0.07);
  border-radius: 14px;
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.7s ease 0.4s, transform 0.7s ease 0.4s;
}

.seo-svc-summary.seo-svc-in-view { opacity: 1; transform: translateY(0); }

.seo-svc-summary-tags {
  display: flex; align-items: center;
  flex-wrap: wrap; gap: 12px;
}

.seo-svc-summary-tag {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(14px, 1.6vw, 18px); letter-spacing: 0.06em;
  color: rgba(245,245,241,0.5);
  transition: color 0.3s;
}

.seo-svc-summary-tag:hover { color: var(--ice); }

.seo-svc-summary-sep {
  color: rgba(229,9,20,0.4); font-size: 18px;
  line-height: 1; flex-shrink: 0;
}

.seo-svc-summary-cta {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 13px 26px; border-radius: 8px;
  background: var(--red); border: 1px solid var(--red);
  font-size: 13px; font-weight: 500; letter-spacing: 0.04em;
  color: var(--ice); text-decoration: none; flex-shrink: 0;
  transition:
    background 0.3s,
    transform 0.35s cubic-bezier(0.34,1.56,0.64,1),
    box-shadow 0.3s;
}

.seo-svc-summary-cta:hover {
  background: var(--red-dark);
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 12px 32px rgba(229,9,20,0.35);
}

.seo-svc-summary-cta svg { transition: transform 0.3s; }
.seo-svc-summary-cta:hover svg { transform: translateX(4px); }

/* ══════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════ */
@media (max-width: 1200px) {
  .seo-svc-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .seo-svc-card--featured {
    grid-column: span 2;
  }
}

@media (max-width: 860px) {
  .seo-svc { padding: 80px 0; }
  .seo-svc-inner { padding-left: var(--seo-svc-pad-x); gap: 40px; }
  .seo-svc-spine { display: none; }
  .seo-svc-header-row { flex-direction: column; align-items: flex-start; }
  .seo-svc-heading-sub { text-align: left; max-width: 100%; }

  .seo-svc-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .seo-svc-card--featured {
    grid-column: 1 / -1;
  }
}

@media (max-width: 560px) {
  .seo-svc-grid { grid-template-columns: 1fr; }
  .seo-svc-card--featured { grid-column: auto; }

  .seo-svc-summary {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 20px 18px;
  }

  .seo-svc-summary-cta {
    width: 100%; justify-content: center;
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .seo-svc-header,
  .seo-svc-card,
  .seo-svc-summary,
  .seo-svc-spine-track,
  .seo-svc-card-bar {
    transition: none !important;
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

/* ============================================================
   SEO PROCESS / WORKFLOW — seo-process.css
   Prefix: seo-proc-*
   Aesthetic: Radar / Signal / Data-driven timeline
   Unique concept: Horizontal runway with node connectors
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=DM+Sans:ital,wght@0,300;0,400;0,500;0,600;1,300&family=DM+Mono:wght@300;400&display=swap');

:root {
  --red: #E50914;
  --red-dark: #B81D24;
  --ink: #0a0a0a;
  --ice: #F5F5F1;
  --glow: rgba(229, 9, 20, 0.6);
  --seo-proc-pad-x: clamp(24px, 6vw, 100px);
}

/* ══════════════════════════════════════════════
   SECTION SHELL
══════════════════════════════════════════════ */
.seo-proc {
  position: relative;
  width: 100%;
  background: #0c0c0c;
  padding: 120px 0 110px;
  overflow: hidden;
  font-family: 'DM Sans', sans-serif;
  isolation: isolate;
}

.seo-proc::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(to right, transparent, rgba(229,9,20,0.3) 50%, transparent);
  z-index: 1;
}

.seo-proc::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(to right, transparent, rgba(245,245,241,0.05) 50%, transparent);
  z-index: 1;
}

/* ══════════════════════════════════════════════
   BACKGROUND — Radar sweep
══════════════════════════════════════════════ */
.seo-proc-bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }

.seo-proc-ambient {
  position: absolute; width: 700px; height: 700px; border-radius: 50%;
}

.seo-proc-ambient--tl {
  top: -250px; left: -250px;
  background: radial-gradient(circle, rgba(229,9,20,0.05) 0%, transparent 60%);
}

.seo-proc-ambient--br {
  bottom: -250px; right: -250px;
  background: radial-gradient(circle, rgba(229,9,20,0.04) 0%, transparent 60%);
}

/* Radar concentric rings — centered top-right */
.seo-proc-radar {
  position: absolute;
  top: -60px; right: -60px;
  width: 500px; height: 500px;
}

.seo-proc-radar-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(229,9,20,0.07);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  animation: seo-proc-radar-expand 4s ease-out infinite;
}

.seo-proc-radar-ring--1 { width: 160px; height: 160px; animation-delay: 0s; }
.seo-proc-radar-ring--2 { width: 280px; height: 280px; animation-delay: 0.8s; }
.seo-proc-radar-ring--3 { width: 400px; height: 400px; animation-delay: 1.6s; }

@keyframes seo-proc-radar-expand {
  0%   { opacity: 0.7; transform: translate(-50%, -50%) scale(0.7); }
  100% { opacity: 0;   transform: translate(-50%, -50%) scale(1.15); }
}

/* ══════════════════════════════════════════════
   SPINE
══════════════════════════════════════════════ */
.seo-proc-spine {
  position: absolute;
  left: clamp(14px, 2.5vw, 40px);
  top: 120px; bottom: 110px;
  display: flex; flex-direction: column;
  align-items: center; gap: 14px;
  z-index: 2; pointer-events: none;
}

.seo-proc-spine-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 11px; letter-spacing: 0.25em;
  color: rgba(229,9,20,0.4);
  writing-mode: vertical-rl; transform: rotate(180deg);
}

.seo-proc-spine-track {
  flex: 1; width: 1px; display: block;
  background: linear-gradient(to bottom, rgba(229,9,20,0.3), rgba(245,245,241,0.06) 60%, transparent);
  transform-origin: top; transform: scaleY(0);
  transition: transform 1.4s cubic-bezier(0.16,1,0.3,1);
}

.seo-proc-spine-track.seo-proc-in-view { transform: scaleY(1); }

/* ══════════════════════════════════════════════
   INNER
══════════════════════════════════════════════ */
.seo-proc-inner {
  position: relative; z-index: 2;
  padding: 0 var(--seo-proc-pad-x);
  padding-left: calc(var(--seo-proc-pad-x) + 40px);
  display: flex; flex-direction: column; gap: 56px;
}

/* ══════════════════════════════════════════════
   HEADER
══════════════════════════════════════════════ */
.seo-proc-header {
  display: flex; flex-direction: column; gap: 18px;
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.seo-proc-header.seo-proc-in-view { opacity: 1; transform: translateY(0); }

.seo-proc-eyebrow { display: inline-flex; align-items: center; gap: 12px; }

.seo-proc-eyebrow-line {
  display: block; width: 32px; height: 1px;
  background: var(--red); opacity: 0.7;
}

.seo-proc-eyebrow-text {
  font-size: 10px; font-weight: 500;
  letter-spacing: 0.28em; text-transform: uppercase; color: var(--red);
}

.seo-proc-header-row {
  display: flex; align-items: flex-end;
  justify-content: space-between; gap: 32px; flex-wrap: wrap;
}

.seo-proc-heading {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(48px, 6vw, 88px);
  line-height: 0.92; letter-spacing: 0.02em;
  color: var(--ice); margin: 0;
}

.seo-proc-heading-line { display: block; }

.seo-proc-heading-line--em {
  color: var(--red);
  text-shadow: 0 0 60px rgba(229,9,20,0.4);
}

.seo-proc-heading-sub {
  font-size: clamp(13px, 1.3vw, 15px);
  font-weight: 300; font-style: italic;
  color: rgba(245,245,241,0.4); line-height: 1.7;
  margin: 0; text-align: right; max-width: 280px;
}

/* ══════════════════════════════════════════════
   RUNWAY — horizontal timeline scroll
══════════════════════════════════════════════ */
.seo-proc-runway {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
  padding-top: 60px; /* space for nodes above cards */

  opacity: 0; transform: translateY(20px);
  transition: opacity 0.7s ease 0.1s, transform 0.7s ease 0.1s;
}

.seo-proc-runway.seo-proc-in-view { opacity: 1; transform: translateY(0); }

/* ── The connecting track line ── */
.seo-proc-track {
  position: absolute;
  top: 22px; /* center of node circles */
  left: calc(100% / 12); /* start at center of first col */
  right: calc(100% / 12); /* end at center of last col */
  height: 1px;
  background: rgba(245,245,241,0.07);
  overflow: hidden;
}

.seo-proc-track-fill {
  height: 100%;
  width: 0;
  background: linear-gradient(to right, var(--red), rgba(229,9,20,0.2) 80%, transparent);
  transition: width 2s cubic-bezier(0.16,1,0.3,1) 0.5s;
}

.seo-proc-runway.seo-proc-in-view .seo-proc-track-fill {
  width: 100%;
}

/* ══════════════════════════════════════════════
   SINGLE STEP
══════════════════════════════════════════════ */
.seo-proc-step {
  display: flex; flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 1;

  /* Stagger each step's card reveal */
  --step-delay: 0s;
}

.seo-proc-step:nth-child(2) { --step-delay: 0.08s; }
.seo-proc-step:nth-child(3) { --step-delay: 0.16s; }
.seo-proc-step:nth-child(4) { --step-delay: 0.24s; }
.seo-proc-step:nth-child(5) { --step-delay: 0.32s; }
.seo-proc-step:nth-child(6) { --step-delay: 0.40s; }

/* ── Node on the track ── */
.seo-proc-step-node {
  position: relative;
  width: 14px; height: 14px;
  flex-shrink: 0;
  margin-bottom: 28px;
  z-index: 2;
}

.seo-proc-step-node-inner {
  display: block;
  width: 100%; height: 100%; border-radius: 50%;
  background: rgba(229,9,20,0.3);
  border: 1px solid rgba(229,9,20,0.6);
  transition: background 0.35s, box-shadow 0.35s, transform 0.4s cubic-bezier(0.34,1.56,0.64,1);
}

.seo-proc-step:hover .seo-proc-step-node-inner {
  background: var(--red);
  box-shadow: 0 0 16px var(--glow);
  transform: scale(1.5);
}

.seo-proc-step-node-ring {
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 1px solid rgba(229,9,20,0.2);
  opacity: 0;
  transition: opacity 0.35s, transform 0.4s;
}

.seo-proc-step:hover .seo-proc-step-node-ring {
  opacity: 1;
  transform: scale(1.2);
}

/* ── Step Card ── */
.seo-proc-step-card {
  background: #121212;
  border: 1px solid rgba(245,245,241,0.07);
  border-radius: 14px;
  padding: 20px 18px 18px;
  display: flex; flex-direction: column; gap: 10px;
  width: 100%;
  cursor: default;

  /* Card enter animation — triggered when runway enters view */
  opacity: 0; transform: translateY(16px);
  transition:
    opacity 0.5s ease var(--step-delay),
    transform 0.5s ease var(--step-delay),
    background 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease;
}

.seo-proc-runway.seo-proc-in-view .seo-proc-step-card {
  opacity: 1; transform: translateY(0);
}

.seo-proc-step:hover .seo-proc-step-card {
  background: #161616;
  border-color: rgba(229,9,20,0.22);
  box-shadow: 0 16px 40px rgba(0,0,0,0.5), 0 0 0 1px rgba(229,9,20,0.06) inset;
}

/* ── Card header: timecode + icon ── */
.seo-proc-step-card-header {
  display: flex; align-items: center;
  justify-content: space-between; gap: 8px;
}

.seo-proc-step-tc {
  font-family: 'DM Mono', monospace;
  font-size: 9px; font-weight: 300;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(229,9,20,0.4);
  transition: color 0.3s;
}

.seo-proc-step:hover .seo-proc-step-tc {
  color: rgba(229,9,20,0.75);
}

.seo-proc-step-icon {
  width: 32px; height: 32px; border-radius: 8px;
  background: rgba(229,9,20,0.07);
  border: 1px solid rgba(229,9,20,0.12);
  display: flex; align-items: center; justify-content: center;
  color: rgba(229,9,20,0.7);
  flex-shrink: 0;
  transition:
    background 0.35s, border-color 0.35s, color 0.35s,
    transform 0.4s cubic-bezier(0.34,1.56,0.64,1);
}

.seo-proc-step-icon svg { width: 14px; height: 14px; }

.seo-proc-step:hover .seo-proc-step-icon {
  background: rgba(229,9,20,0.18);
  border-color: rgba(229,9,20,0.4);
  color: var(--red);
  transform: scale(1.1) rotate(-8deg);
}

/* Step number */
.seo-proc-step-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 11px; letter-spacing: 0.2em;
  color: rgba(229,9,20,0.3); line-height: 1;
  transition: color 0.3s;
}

.seo-proc-step:hover .seo-proc-step-num { color: var(--red); }

/* Step title */
.seo-proc-step-title {
  font-size: clamp(13px, 1.2vw, 14px); font-weight: 600;
  color: rgba(245,245,241,0.82); margin: 0;
  line-height: 1.25; letter-spacing: -0.01em;
  transition: color 0.3s;
}

.seo-proc-step:hover .seo-proc-step-title { color: var(--ice); }

/* Step description */
.seo-proc-step-desc {
  font-size: 11.5px; font-weight: 300;
  color: rgba(245,245,241,0.38); line-height: 1.65;
  margin: 0; transition: color 0.3s;
}

.seo-proc-step:hover .seo-proc-step-desc {
  color: rgba(245,245,241,0.6);
}

/* Tags */
.seo-proc-step-tags {
  display: flex; flex-wrap: wrap; gap: 5px;
  margin-top: 2px;
}

.seo-proc-step-tag {
  display: inline-flex; align-items: center;
  padding: 3px 9px; border-radius: 100px;
  border: 1px solid rgba(229,9,20,0.15);
  background: rgba(229,9,20,0.05);
  font-size: 9px; font-weight: 500;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: rgba(245,245,241,0.3);
  transition: border-color 0.3s, color 0.3s, background 0.3s;
}

.seo-proc-step:hover .seo-proc-step-tag {
  border-color: rgba(229,9,20,0.35);
  color: rgba(245,245,241,0.65);
  background: rgba(229,9,20,0.1);
}

/* ══════════════════════════════════════════════
   LEGEND
══════════════════════════════════════════════ */
.seo-proc-legend {
  display: flex; align-items: center;
  gap: 16px; flex-wrap: wrap;
  padding: 18px 24px;
  background: rgba(245,245,241,0.02);
  border: 1px solid rgba(245,245,241,0.06);
  border-radius: 10px;
  opacity: 0; transform: translateY(14px);
  transition: opacity 0.6s ease 0.3s, transform 0.6s ease 0.3s;
}

.seo-proc-legend.seo-proc-in-view { opacity: 1; transform: translateY(0); }

.seo-proc-legend-item {
  display: flex; align-items: center; gap: 8px;
}

.seo-proc-legend-pip {
  width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0;
}

.seo-proc-pip--setup   { background: rgba(229,9,20,0.7); }
.seo-proc-pip--active  { background: rgba(229,9,20,1); box-shadow: 0 0 8px var(--glow); }
.seo-proc-pip--ongoing { background: rgba(245,245,241,0.3); border: 1px solid rgba(245,245,241,0.2); }

.seo-proc-legend-label {
  font-size: 11px; font-weight: 400;
  color: rgba(245,245,241,0.4); letter-spacing: 0.02em;
}

.seo-proc-legend-label em {
  font-style: normal;
  color: rgba(245,245,241,0.22);
  font-size: 10px;
}

.seo-proc-legend-divider {
  width: 1px; height: 16px;
  background: rgba(245,245,241,0.08);
}

/* ══════════════════════════════════════════════
   FOOTER CTA
══════════════════════════════════════════════ */
.seo-proc-footer {
  display: flex; align-items: center;
  justify-content: space-between; gap: 20px;
  padding: 28px 32px;
  background: rgba(245,245,241,0.025);
  border: 1px solid rgba(245,245,241,0.07);
  border-radius: 14px;
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.7s ease 0.4s, transform 0.7s ease 0.4s;
}

.seo-proc-footer.seo-proc-in-view { opacity: 1; transform: translateY(0); }

.seo-proc-footer-left { display: flex; flex-direction: column; gap: 4px; }

.seo-proc-footer-label {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(18px, 2vw, 24px); letter-spacing: 0.04em;
  color: var(--ice); line-height: 1;
}

.seo-proc-footer-sub {
  font-size: 13px; font-weight: 300; font-style: italic;
  color: rgba(245,245,241,0.4); margin: 0;
}

.seo-proc-footer-cta {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 13px 26px; border-radius: 8px;
  background: var(--red); border: 1px solid var(--red);
  font-size: 13px; font-weight: 500; letter-spacing: 0.04em;
  color: var(--ice); text-decoration: none; flex-shrink: 0;
  transition:
    background 0.3s,
    transform 0.35s cubic-bezier(0.34,1.56,0.64,1),
    box-shadow 0.3s;
}

.seo-proc-footer-cta:hover {
  background: var(--red-dark);
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 12px 32px rgba(229,9,20,0.35);
}

.seo-proc-footer-cta svg { transition: transform 0.3s; }
.seo-proc-footer-cta:hover svg { transform: translateX(4px); }

/* ══════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════ */
@media (max-width: 1200px) {
  .seo-proc-runway {
    grid-template-columns: repeat(3, 1fr);
    row-gap: 32px;
  }

  .seo-proc-track { display: none; }
  .seo-proc-step-node { display: none; }
}

@media (max-width: 860px) {
  .seo-proc { padding: 80px 0; }
  .seo-proc-inner { padding-left: var(--seo-proc-pad-x); gap: 44px; }
  .seo-proc-spine { display: none; }
  .seo-proc-header-row { flex-direction: column; align-items: flex-start; }
  .seo-proc-heading-sub { text-align: left; max-width: 100%; }

  .seo-proc-runway {
    grid-template-columns: repeat(2, 1fr);
    padding-top: 0; gap: 12px;
  }

  .seo-proc-legend {
    flex-direction: column; align-items: flex-start; gap: 10px;
  }

  .seo-proc-legend-divider { display: none; }
}

@media (max-width: 560px) {
  .seo-proc-runway { grid-template-columns: 1fr; }

  .seo-proc-footer {
    flex-direction: column; align-items: flex-start;
    padding: 22px 20px; gap: 16px;
  }

  .seo-proc-footer-cta { width: 100%; justify-content: center; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .seo-proc-header,
  .seo-proc-runway,
  .seo-proc-step-card,
  .seo-proc-track-fill,
  .seo-proc-legend,
  .seo-proc-footer,
  .seo-proc-spine-track,
  .seo-proc-radar-ring {
    transition: none !important;
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
    width: 100% !important;
  }
}

/* ============================================================
   SEO TOOLS & TECHNOLOGY — seo-tools.css
   Prefix: seo-tools-*
   Aesthetic: Data terminal / authority grid / dark premium
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=DM+Sans:ital,wght@0,300;0,400;0,500;0,600;1,300&family=DM+Mono:wght@300;400&display=swap');

:root {
  --red: #E50914;
  --red-dark: #B81D24;
  --ink: #0a0a0a;
  --ice: #F5F5F1;
  --glow: rgba(229, 9, 20, 0.6);
  --seo-tools-pad-x: clamp(24px, 6vw, 100px);

  /* Category accents */
  --cat-research:  #FF6B00;
  --cat-backlinks: #E50914;
  --cat-technical: #4a90e2;
  --cat-tracking:  #2ecc71;
  --cat-content:   #f39c12;
}

/* ══════════════════════════════════════════════
   SECTION SHELL
══════════════════════════════════════════════ */
.seo-tools {
  position: relative;
  width: 100%;
  background: var(--ink);
  padding: 120px 0 110px;
  overflow: hidden;
  font-family: 'DM Sans', sans-serif;
  isolation: isolate;
}

.seo-tools::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(to right, transparent, rgba(229,9,20,0.3) 50%, transparent);
  z-index: 1;
}

.seo-tools::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(to right, transparent, rgba(245,245,241,0.05) 50%, transparent);
  z-index: 1;
}

/* ══════════════════════════════════════════════
   BACKGROUND
══════════════════════════════════════════════ */
.seo-tools-bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }

.seo-tools-ambient {
  position: absolute; width: 600px; height: 600px; border-radius: 50%;
}

.seo-tools-ambient--tl {
  top: -180px; left: -180px;
  background: radial-gradient(circle, rgba(229,9,20,0.045) 0%, transparent 60%);
}

.seo-tools-ambient--br {
  bottom: -180px; right: -180px;
  background: radial-gradient(circle, rgba(74,144,226,0.03) 0%, transparent 60%);
}

/* Fine grid lines — terminal feel */
.seo-tools-grid-lines {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(245,245,241,0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245,245,241,0.022) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 20%, transparent 80%);
}

/* HUD corner brackets */
.seo-tools-hud {
  position: absolute; width: 22px; height: 22px;
  opacity: 0;
  animation: seo-tools-hud-in 0.7s ease forwards;
}

.seo-tools-hud--tl { top: 18px; left: 18px; border-top: 1px solid rgba(229,9,20,0.28); border-left: 1px solid rgba(229,9,20,0.28); animation-delay: 0.8s; }
.seo-tools-hud--tr { top: 18px; right: 18px; border-top: 1px solid rgba(229,9,20,0.28); border-right: 1px solid rgba(229,9,20,0.28); animation-delay: 0.9s; }
.seo-tools-hud--bl { bottom: 18px; left: 18px; border-bottom: 1px solid rgba(229,9,20,0.28); border-left: 1px solid rgba(229,9,20,0.28); animation-delay: 1.0s; }
.seo-tools-hud--br { bottom: 18px; right: 18px; border-bottom: 1px solid rgba(229,9,20,0.28); border-right: 1px solid rgba(229,9,20,0.28); animation-delay: 1.1s; }

@keyframes seo-tools-hud-in {
  from { opacity: 0; transform: scale(1.6); }
  to   { opacity: 1; transform: scale(1); }
}

/* ══════════════════════════════════════════════
   SPINE
══════════════════════════════════════════════ */
.seo-tools-spine {
  position: absolute;
  left: clamp(14px, 2.5vw, 40px);
  top: 120px; bottom: 110px;
  display: flex; flex-direction: column;
  align-items: center; gap: 14px;
  z-index: 2; pointer-events: none;
}

.seo-tools-spine-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 11px; letter-spacing: 0.25em;
  color: rgba(229,9,20,0.4);
  writing-mode: vertical-rl; transform: rotate(180deg);
}

.seo-tools-spine-track {
  flex: 1; width: 1px; display: block;
  background: linear-gradient(to bottom, rgba(229,9,20,0.3), rgba(245,245,241,0.06) 60%, transparent);
  transform-origin: top; transform: scaleY(0);
  transition: transform 1.4s cubic-bezier(0.16,1,0.3,1);
}

.seo-tools-spine-track.seo-tools-in-view { transform: scaleY(1); }

/* ══════════════════════════════════════════════
   INNER
══════════════════════════════════════════════ */
.seo-tools-inner {
  position: relative; z-index: 2;
  padding: 0 var(--seo-tools-pad-x);
  padding-left: calc(var(--seo-tools-pad-x) + 40px);
  display: flex; flex-direction: column; gap: 48px;
}

/* ══════════════════════════════════════════════
   HEADER
══════════════════════════════════════════════ */
.seo-tools-header {
  display: flex; flex-direction: column; gap: 18px;
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.seo-tools-header.seo-tools-in-view { opacity: 1; transform: translateY(0); }

.seo-tools-eyebrow { display: inline-flex; align-items: center; gap: 12px; }

.seo-tools-eyebrow-line {
  display: block; width: 32px; height: 1px;
  background: var(--red); opacity: 0.7;
}

.seo-tools-eyebrow-text {
  font-size: 10px; font-weight: 500;
  letter-spacing: 0.28em; text-transform: uppercase; color: var(--red);
}

.seo-tools-header-row {
  display: flex; align-items: flex-end;
  justify-content: space-between; gap: 32px; flex-wrap: wrap;
}

.seo-tools-heading {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(48px, 6vw, 88px);
  line-height: 0.92; letter-spacing: 0.02em;
  color: var(--ice); margin: 0;
}

.seo-tools-heading-line { display: block; }

.seo-tools-heading-line--em {
  -webkit-text-stroke: 2px rgba(245,245,241,0.5);
  color: transparent;
}

.seo-tools-heading-sub {
  font-size: clamp(13px, 1.3vw, 15px);
  font-weight: 300; font-style: italic;
  color: rgba(245,245,241,0.4); line-height: 1.7;
  margin: 0; text-align: right; max-width: 280px;
}

/* ══════════════════════════════════════════════
   CATEGORY FILTER BAR
══════════════════════════════════════════════ */
.seo-tools-cat-bar {
  display: flex; flex-wrap: wrap; gap: 6px;
  opacity: 0; transform: translateY(14px);
  transition: opacity 0.6s ease 0.1s, transform 0.6s ease 0.1s;
}

.seo-tools-cat-bar.seo-tools-in-view { opacity: 1; transform: translateY(0); }

.seo-tools-cat-btn {
  padding: 8px 18px; border-radius: 100px;
  border: 1px solid rgba(245,245,241,0.1);
  background: transparent;
  font-family: 'DM Sans', sans-serif;
  font-size: 12px; font-weight: 500;
  letter-spacing: 0.05em; color: rgba(245,245,241,0.4);
  cursor: pointer;
  transition: color 0.3s, border-color 0.3s, background 0.3s, box-shadow 0.3s;
}

.seo-tools-cat-btn:hover {
  color: rgba(245,245,241,0.75);
  border-color: rgba(245,245,241,0.2);
}

.seo-tools-cat-btn--active,
.seo-tools-cat-btn[aria-selected="true"] {
  background: var(--red); border-color: var(--red);
  color: var(--ice); box-shadow: 0 0 18px rgba(229,9,20,0.28);
}

/* ══════════════════════════════════════════════
   TOOLS GRID
══════════════════════════════════════════════ */
.seo-tools-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 12px;
}

/* ── Single Card ── */
.seo-tools-card {
  position: relative;
  background: #121212;
  border: 1px solid rgba(245,245,241,0.07);
  border-radius: 14px;
  padding: 20px 18px 16px;
  display: flex; flex-direction: column; gap: 12px;
  overflow: hidden; cursor: default;

  /* Scroll reveal */
  opacity: 0; transform: translateY(18px) scale(0.99);
  transition:
    opacity 0.55s ease,
    transform 0.55s ease,
    background 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease;
}

.seo-tools-card.seo-tools-in-view {
  opacity: 1; transform: translateY(0) scale(1);
}

/* stagger */
.seo-tools-card:nth-child(1)  { transition-delay: 0.00s; }
.seo-tools-card:nth-child(2)  { transition-delay: 0.05s; }
.seo-tools-card:nth-child(3)  { transition-delay: 0.10s; }
.seo-tools-card:nth-child(4)  { transition-delay: 0.04s; }
.seo-tools-card:nth-child(5)  { transition-delay: 0.09s; }
.seo-tools-card:nth-child(6)  { transition-delay: 0.03s; }
.seo-tools-card:nth-child(7)  { transition-delay: 0.08s; }
.seo-tools-card:nth-child(8)  { transition-delay: 0.13s; }
.seo-tools-card:nth-child(9)  { transition-delay: 0.06s; }
.seo-tools-card:nth-child(10) { transition-delay: 0.11s; }
.seo-tools-card:nth-child(11) { transition-delay: 0.05s; }
.seo-tools-card:nth-child(12) { transition-delay: 0.10s; }

.seo-tools-card:hover {
  background: #161616;
  border-color: rgba(245,245,241,0.13);
  box-shadow: 0 20px 44px rgba(0,0,0,0.45);
  transform: translateY(-4px) scale(1.005);
}

/* ── Category stripe — left edge ── */
.seo-tools-card-stripe {
  position: absolute; left: 0; top: 0; bottom: 0;
  width: 3px; border-radius: 14px 0 0 14px;
  opacity: 0.6; transition: opacity 0.3s;
}

.seo-tools-card:hover .seo-tools-card-stripe { opacity: 1; }

.seo-tools-stripe--research  { background: var(--cat-research);  box-shadow: 0 0 8px var(--cat-research); }
.seo-tools-stripe--backlinks { background: var(--cat-backlinks); box-shadow: 0 0 8px var(--cat-backlinks); }
.seo-tools-stripe--technical { background: var(--cat-technical); box-shadow: 0 0 8px var(--cat-technical); }
.seo-tools-stripe--tracking  { background: var(--cat-tracking);  box-shadow: 0 0 8px var(--cat-tracking); }
.seo-tools-stripe--content   { background: var(--cat-content);   box-shadow: 0 0 8px var(--cat-content); }

/* ── Card top: logo + badge ── */
.seo-tools-card-top {
  display: flex; align-items: center;
  justify-content: space-between; gap: 8px;
}

.seo-tools-logo { display: flex; flex-direction: column; }

.seo-tools-logo-brand {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px; letter-spacing: 0.06em; line-height: 1;
  color: var(--lc, var(--ice));
  text-shadow: 0 0 24px color-mix(in srgb, var(--lc, var(--ice)) 35%, transparent);
  transition: text-shadow 0.3s;
}

.seo-tools-card:hover .seo-tools-logo-brand {
  text-shadow: 0 0 32px color-mix(in srgb, var(--lc, var(--ice)) 55%, transparent);
}

/* Badge */
.seo-tools-card-badge {
  font-size: 9px; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase;
  padding: 3px 9px; border-radius: 100px; flex-shrink: 0;

  /* default: orange/research */
  border: 1px solid rgba(255,107,0,0.28);
  background: rgba(255,107,0,0.07);
  color: rgba(255,107,0,0.75);
}

.seo-tools-badge--red {
  border-color: rgba(229,9,20,0.28);
  background: rgba(229,9,20,0.07);
  color: rgba(229,9,20,0.8);
}

.seo-tools-badge--blue {
  border-color: rgba(74,144,226,0.28);
  background: rgba(74,144,226,0.07);
  color: rgba(74,144,226,0.85);
}

.seo-tools-badge--green {
  border-color: rgba(46,204,113,0.28);
  background: rgba(46,204,113,0.07);
  color: rgba(46,204,113,0.85);
}

.seo-tools-badge--amber {
  border-color: rgba(243,156,18,0.28);
  background: rgba(243,156,18,0.07);
  color: rgba(243,156,18,0.85);
}

/* ── Card body ── */
.seo-tools-card-body { display: flex; flex-direction: column; gap: 4px; }

.seo-tools-card-name {
  font-size: 14px; font-weight: 600;
  color: rgba(245,245,241,0.85); margin: 0;
  letter-spacing: -0.01em; line-height: 1.2;
  transition: color 0.3s;
}

.seo-tools-card:hover .seo-tools-card-name { color: var(--ice); }

.seo-tools-card-spec {
  font-family: 'DM Mono', monospace;
  font-size: 10px; font-weight: 300;
  color: rgba(245,245,241,0.3); line-height: 1.55;
  margin: 0; letter-spacing: 0.02em;
  transition: color 0.3s;
}

.seo-tools-card:hover .seo-tools-card-spec { color: rgba(245,245,241,0.52); }

/* ── Use case line ── */
.seo-tools-card-use {
  font-size: 11px; font-weight: 400;
  font-style: italic;
  color: rgba(245,245,241,0.28); line-height: 1.4;
  padding-top: 8px;
  border-top: 1px solid rgba(245,245,241,0.05);
  transition: color 0.3s;
}

.seo-tools-card:hover .seo-tools-card-use { color: rgba(245,245,241,0.5); }

/* ── Aperture ring ── */
.seo-tools-card-ring {
  position: absolute; bottom: -16px; right: -16px;
  width: 60px; height: 60px; border-radius: 50%;
  border: 1px solid rgba(245,245,241,0.04);
  box-shadow: 0 0 0 12px rgba(245,245,241,0.015);
  pointer-events: none;
  transition: border-color 0.4s, transform 0.6s;
}

.seo-tools-card:hover .seo-tools-card-ring {
  border-color: rgba(245,245,241,0.08);
  transform: rotate(45deg) scale(1.1);
}

/* ── Hidden via filter ── */
.seo-tools-card--hidden { display: none; }

/* ══════════════════════════════════════════════
   SUPPORTING STACK STRIP
══════════════════════════════════════════════ */
.seo-tools-also {
  display: flex; align-items: center; gap: 28px; flex-wrap: wrap;
  padding: 22px 26px;
  background: rgba(245,245,241,0.02);
  border: 1px solid rgba(245,245,241,0.06);
  border-radius: 12px;
  opacity: 0; transform: translateY(16px);
  transition: opacity 0.6s ease 0.3s, transform 0.6s ease 0.3s;
}

.seo-tools-also.seo-tools-in-view { opacity: 1; transform: translateY(0); }

.seo-tools-also-label {
  display: flex; flex-direction: column; gap: 2px; flex-shrink: 0;
}

.seo-tools-also-eyebrow {
  font-size: 9px; font-weight: 500;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(229,9,20,0.5);
}

.seo-tools-also-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 15px; letter-spacing: 0.08em;
  color: rgba(245,245,241,0.5); white-space: nowrap;
}

.seo-tools-also-pills {
  display: flex; flex-wrap: wrap; gap: 7px;
}

.seo-tools-also-pill {
  display: inline-flex; align-items: center;
  padding: 5px 12px; border-radius: 100px;
  border: 1px solid rgba(245,245,241,0.07);
  background: rgba(245,245,241,0.03);
  font-family: 'DM Mono', monospace;
  font-size: 10px; font-weight: 400;
  letter-spacing: 0.05em; color: rgba(245,245,241,0.35);
  cursor: default;
  transition: border-color 0.3s, color 0.3s, background 0.3s;
}

.seo-tools-also-pill:hover {
  border-color: rgba(229,9,20,0.22);
  color: rgba(245,245,241,0.65);
  background: rgba(229,9,20,0.05);
}

/* ══════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════ */
.seo-tools-footer {
  display: flex; align-items: center;
  justify-content: space-between; gap: 20px;
  padding: 26px 32px;
  background: rgba(245,245,241,0.025);
  border: 1px solid rgba(245,245,241,0.07);
  border-radius: 14px;
  opacity: 0; transform: translateY(16px);
  transition: opacity 0.7s ease 0.4s, transform 0.7s ease 0.4s;
}

.seo-tools-footer.seo-tools-in-view { opacity: 1; transform: translateY(0); }

.seo-tools-footer-text {
  font-size: clamp(13px, 1.3vw, 15px);
  font-weight: 300; font-style: italic;
  color: rgba(245,245,241,0.42); margin: 0;
}

.seo-tools-footer-cta {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 12px 24px; border-radius: 8px;
  background: var(--red); border: 1px solid var(--red);
  font-size: 13px; font-weight: 500; letter-spacing: 0.04em;
  color: var(--ice); text-decoration: none; flex-shrink: 0;
  transition: background 0.3s, transform 0.35s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.3s;
}

.seo-tools-footer-cta:hover {
  background: var(--red-dark);
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 12px 32px rgba(229,9,20,0.35);
}

.seo-tools-footer-cta svg { transition: transform 0.3s; }
.seo-tools-footer-cta:hover svg { transform: translateX(4px); }

/* ══════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════ */
@media (max-width: 900px) {
  .seo-tools { padding: 80px 0; }
  .seo-tools-inner { padding-left: var(--seo-tools-pad-x); gap: 36px; }
  .seo-tools-spine { display: none; }
  .seo-tools-header-row { flex-direction: column; align-items: flex-start; }
  .seo-tools-heading-sub { text-align: left; max-width: 100%; }
  .seo-tools-also { flex-direction: column; align-items: flex-start; gap: 14px; }
}

@media (max-width: 600px) {
  .seo-tools-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .seo-tools-card { padding: 14px 12px; gap: 10px; }
  .seo-tools-footer { flex-direction: column; align-items: flex-start; gap: 14px; padding: 20px 18px; }
  .seo-tools-footer-cta { width: 100%; justify-content: center; }
}

@media (max-width: 400px) {
  .seo-tools-grid { grid-template-columns: 1fr; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .seo-tools-header, .seo-tools-cat-bar, .seo-tools-card,
  .seo-tools-also, .seo-tools-footer, .seo-tools-spine-track,
  .seo-tools-hud {
    transition: none !important; animation: none !important;
    opacity: 1 !important; transform: none !important;
  }
}

/* ============================================================
   SEO FAQ — seo-faq.css
   Prefix: seo-faq-*
   Aesthetic: Radar / Signal / Data-driven (matches seo-proc)
   Unique concept: Accordion with signal / data terminal vibe
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=DM+Sans:ital,wght@0,300;0,400;0,500;0,600;1,300&family=DM+Mono:wght@300;400&display=swap');

:root {
  --red: #E50914;
  --red-dark: #B81D24;
  --ink: #0a0a0a;
  --ice: #F5F5F1;
  --glow: rgba(229, 9, 20, 0.6);
  --seo-faq-pad-x: clamp(24px, 6vw, 100px);
}

/* ══════════════════════════════════════════════
   SECTION SHELL
══════════════════════════════════════════════ */
.seo-faq {
  position: relative;
  width: 100%;
  background: #0a0a0a;
  padding: 120px 0 110px;
  overflow: hidden;
  font-family: 'DM Sans', sans-serif;
  isolation: isolate;
}

.seo-faq::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(to right, transparent, rgba(229,9,20,0.25) 50%, transparent);
  z-index: 1;
}

.seo-faq::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(to right, transparent, rgba(245,245,241,0.05) 50%, transparent);
  z-index: 1;
}

/* ══════════════════════════════════════════════
   BACKGROUND
══════════════════════════════════════════════ */
.seo-faq-bg {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
}

.seo-faq-ambient {
  position: absolute; width: 700px; height: 700px; border-radius: 50%;
}

.seo-faq-ambient--tl {
  top: -200px; left: -200px;
  background: radial-gradient(circle, rgba(229,9,20,0.04) 0%, transparent 65%);
}

.seo-faq-ambient--br {
  bottom: -200px; right: -150px;
  background: radial-gradient(circle, rgba(229,9,20,0.035) 0%, transparent 60%);
}

/* Subtle dot-grid overlay */
.seo-faq-grid-overlay {
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle, rgba(245,245,241,0.035) 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.5) 20%, rgba(0,0,0,0.5) 80%, transparent 100%);
}

/* ══════════════════════════════════════════════
   SPINE  (mirrors seo-proc)
══════════════════════════════════════════════ */
.seo-faq-spine {
  position: absolute;
  left: clamp(14px, 2.5vw, 40px);
  top: 120px; bottom: 110px;
  display: flex; flex-direction: column;
  align-items: center; gap: 14px;
  z-index: 2; pointer-events: none;
}

.seo-faq-spine-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 11px; letter-spacing: 0.25em;
  color: rgba(229,9,20,0.4);
  writing-mode: vertical-rl; transform: rotate(180deg);
}

.seo-faq-spine-track {
  flex: 1; width: 1px; display: block;
  background: linear-gradient(to bottom, rgba(229,9,20,0.3), rgba(245,245,241,0.06) 60%, transparent);
  transform-origin: top; transform: scaleY(0);
  transition: transform 1.4s cubic-bezier(0.16,1,0.3,1);
}

.seo-faq-spine-track.seo-faq-in-view { transform: scaleY(1); }

/* ══════════════════════════════════════════════
   INNER
══════════════════════════════════════════════ */
.seo-faq-inner {
  position: relative; z-index: 2;
  padding: 0 var(--seo-faq-pad-x);
  padding-left: calc(var(--seo-faq-pad-x) + 40px);
  display: flex; flex-direction: column; gap: 52px;
}

/* ══════════════════════════════════════════════
   HEADER (same pattern as seo-proc)
══════════════════════════════════════════════ */
.seo-faq-header {
  display: flex; flex-direction: column; gap: 18px;
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.seo-faq-header.seo-faq-in-view { opacity: 1; transform: translateY(0); }

.seo-faq-eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
}

.seo-faq-eyebrow-line {
  display: block; width: 32px; height: 1px;
  background: var(--red); opacity: 0.7;
}

.seo-faq-eyebrow-text {
  font-size: 10px; font-weight: 500;
  letter-spacing: 0.28em; text-transform: uppercase; color: var(--red);
}

.seo-faq-header-row {
  display: flex; align-items: flex-end;
  justify-content: space-between; gap: 32px; flex-wrap: wrap;
}

.seo-faq-heading {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(48px, 6vw, 88px);
  line-height: 0.92; letter-spacing: 0.02em;
  color: var(--ice); margin: 0;
}

.seo-faq-heading-line { display: block; }

.seo-faq-heading-line--em {
  color: var(--red);
  text-shadow: 0 0 60px rgba(229,9,20,0.4);
}

.seo-faq-heading-sub {
  font-size: clamp(13px, 1.3vw, 15px);
  font-weight: 300; font-style: italic;
  color: rgba(245,245,241,0.4); line-height: 1.7;
  margin: 0; text-align: right; max-width: 280px;
}

/* ══════════════════════════════════════════════
   BODY
══════════════════════════════════════════════ */
.seo-faq-body {
  display: flex; flex-direction: column; gap: 24px;
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.7s ease 0.1s, transform 0.7s ease 0.1s;
}

.seo-faq-body.seo-faq-in-view { opacity: 1; transform: translateY(0); }

/* ══════════════════════════════════════════════
   CATEGORY FILTERS
══════════════════════════════════════════════ */
.seo-faq-filters {
  display: flex; flex-wrap: wrap; gap: 8px;
}

.seo-faq-filter {
  display: inline-flex; align-items: center;
  padding: 7px 18px; border-radius: 100px;
  border: 1px solid rgba(245,245,241,0.1);
  background: transparent;
  font-family: 'DM Sans', sans-serif;
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: rgba(245,245,241,0.35);
  cursor: pointer;
  transition: border-color 0.3s, color 0.3s, background 0.3s, box-shadow 0.3s;
}

.seo-faq-filter:hover {
  border-color: rgba(229,9,20,0.35);
  color: rgba(245,245,241,0.7);
  background: rgba(229,9,20,0.06);
}

.seo-faq-filter--active {
  border-color: var(--red) !important;
  color: var(--ice) !important;
  background: rgba(229,9,20,0.12) !important;
  box-shadow: 0 0 12px rgba(229,9,20,0.15);
}

/* ══════════════════════════════════════════════
   FAQ LIST
══════════════════════════════════════════════ */
.seo-faq-list {
  display: flex; flex-direction: column; gap: 2px;
}

/* ── Single FAQ Item ── */
.seo-faq-item {
  border: 1px solid rgba(245,245,241,0.07);
  border-radius: 12px;
  background: #111111;
  overflow: hidden;
  transition: border-color 0.3s, background 0.3s, box-shadow 0.3s;

  /* stagger on enter */
  opacity: 0; transform: translateX(-12px);
  transition:
    opacity 0.45s ease,
    transform 0.45s ease,
    border-color 0.3s,
    background 0.3s,
    box-shadow 0.3s;
}

/* Stagger delays */
.seo-faq-item:nth-child(1) { transition-delay: 0s; }
.seo-faq-item:nth-child(2) { transition-delay: 0.04s; }
.seo-faq-item:nth-child(3) { transition-delay: 0.08s; }
.seo-faq-item:nth-child(4) { transition-delay: 0.12s; }
.seo-faq-item:nth-child(5) { transition-delay: 0.16s; }
.seo-faq-item:nth-child(6) { transition-delay: 0.20s; }
.seo-faq-item:nth-child(7) { transition-delay: 0.24s; }
.seo-faq-item:nth-child(8) { transition-delay: 0.28s; }
.seo-faq-item:nth-child(9) { transition-delay: 0.32s; }
.seo-faq-item:nth-child(10){ transition-delay: 0.36s; }

.seo-faq-body.seo-faq-in-view .seo-faq-item {
  opacity: 1; transform: translateX(0);
}

.seo-faq-item:hover {
  border-color: rgba(229,9,20,0.2);
  background: #141414;
}

.seo-faq-item--open {
  border-color: rgba(229,9,20,0.3) !important;
  background: #141414 !important;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4), 0 0 0 1px rgba(229,9,20,0.05) inset;
}

/* ── Trigger button ── */
.seo-faq-trigger {
  width: 100%; background: none; border: none;
  padding: 20px 22px;
  display: flex; align-items: center; gap: 16px;
  cursor: pointer; text-align: left;
}

.seo-faq-trigger-index {
  font-family: 'DM Mono', monospace;
  font-size: 10px; font-weight: 300;
  letter-spacing: 0.2em; color: rgba(229,9,20,0.35);
  flex-shrink: 0; min-width: 24px;
  transition: color 0.3s;
}

.seo-faq-item--open .seo-faq-trigger-index,
.seo-faq-trigger:hover .seo-faq-trigger-index {
  color: var(--red);
}

.seo-faq-trigger-text {
  flex: 1;
  font-size: clamp(13px, 1.3vw, 15px); font-weight: 500;
  color: rgba(245,245,241,0.7); line-height: 1.4;
  transition: color 0.3s;
}

.seo-faq-item--open .seo-faq-trigger-text,
.seo-faq-trigger:hover .seo-faq-trigger-text {
  color: var(--ice);
}

.seo-faq-trigger-icon {
  width: 28px; height: 28px; border-radius: 7px;
  flex-shrink: 0; display: flex; align-items: center; justify-content: center;
  background: rgba(229,9,20,0.07);
  border: 1px solid rgba(229,9,20,0.12);
  color: rgba(229,9,20,0.5);
  transition:
    background 0.35s, border-color 0.35s, color 0.35s,
    transform 0.4s cubic-bezier(0.34,1.56,0.64,1);
}

.seo-faq-trigger-icon svg {
  width: 12px; height: 12px;
  transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1);
}

.seo-faq-item--open .seo-faq-trigger-icon {
  background: rgba(229,9,20,0.18);
  border-color: rgba(229,9,20,0.4);
  color: var(--red);
  transform: rotate(90deg);
}

.seo-faq-item--open .seo-faq-trigger-icon svg {
  transform: rotate(90deg);
}

/* ── Panel ── */
.seo-faq-panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.42s cubic-bezier(0.16,1,0.3,1);
}

.seo-faq-item--open .seo-faq-panel {
  grid-template-rows: 1fr;
}

.seo-faq-panel-inner {
  overflow: hidden;
  padding: 0 22px 0 62px; /* aligns with text after the index */
  display: flex; flex-direction: column; gap: 14px;
}

.seo-faq-item--open .seo-faq-panel-inner {
  padding-bottom: 22px;
}

.seo-faq-panel-inner p {
  font-size: 13.5px; font-weight: 300;
  color: rgba(245,245,241,0.5); line-height: 1.75;
  margin: 0;
  border-left: 2px solid rgba(229,9,20,0.25);
  padding-left: 14px;
}

/* ── Panel tags ── */
.seo-faq-panel-tags {
  display: flex; flex-wrap: wrap; gap: 5px;
}

.seo-faq-panel-tag {
  display: inline-flex; align-items: center;
  padding: 3px 9px; border-radius: 100px;
  border: 1px solid rgba(229,9,20,0.15);
  background: rgba(229,9,20,0.05);
  font-size: 9px; font-weight: 500;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: rgba(245,245,241,0.3);
}

/* ══════════════════════════════════════════════
   HIDDEN ITEMS (filter)
══════════════════════════════════════════════ */
.seo-faq-item--hidden {
  display: none;
}

/* ══════════════════════════════════════════════
   SIGNAL BAR (decorative footer element)
══════════════════════════════════════════════ */
.seo-faq-signal {
  display: flex; align-items: center; gap: 14px;
  opacity: 0; transform: translateY(14px);
  transition: opacity 0.6s ease 0.4s, transform 0.6s ease 0.4s;
}

.seo-faq-signal.seo-faq-in-view { opacity: 1; transform: translateY(0); }

.seo-faq-signal-label,
.seo-faq-signal-value {
  font-family: 'DM Mono', monospace;
  font-size: 9px; font-weight: 300;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(245,245,241,0.2);
}

.seo-faq-signal-value {
  color: rgba(229,9,20,0.4);
}

.seo-faq-signal-bars {
  display: flex; align-items: flex-end; gap: 3px;
}

.seo-faq-signal-bar {
  display: block; width: 3px; border-radius: 2px;
  background: rgba(229,9,20,0.15);
  transition: background 0.3s, height 0.3s;
}

.seo-faq-signal-bar--1 { height: 6px; }
.seo-faq-signal-bar--2 { height: 9px; }
.seo-faq-signal-bar--3 { height: 13px; }
.seo-faq-signal-bar--4 { height: 17px; }
.seo-faq-signal-bar--5 { height: 21px; }

/* animate when open items > 0 */
.seo-faq--has-open .seo-faq-signal-bar {
  background: var(--red);
}

/* ══════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════ */
@media (max-width: 860px) {
  .seo-faq { padding: 80px 0; }
  .seo-faq-inner { padding-left: var(--seo-faq-pad-x); gap: 40px; }
  .seo-faq-spine { display: none; }
  .seo-faq-header-row { flex-direction: column; align-items: flex-start; }
  .seo-faq-heading-sub { text-align: left; max-width: 100%; }
}

@media (max-width: 560px) {
  .seo-faq-trigger { padding: 16px 16px; gap: 12px; }
  .seo-faq-panel-inner { padding: 0 16px 0 16px; }
  .seo-faq-item--open .seo-faq-panel-inner { padding-bottom: 18px; }
  .seo-faq-panel-inner p { padding-left: 12px; }

  .seo-faq-signal {
    flex-wrap: wrap; gap: 10px;
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .seo-faq-header,
  .seo-faq-body,
  .seo-faq-item,
  .seo-faq-panel,
  .seo-faq-signal,
  .seo-faq-spine-track {
    transition: none !important;
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }

  .seo-faq-panel {
    grid-template-rows: 0fr;
  }

  .seo-faq-item--open .seo-faq-panel {
    grid-template-rows: 1fr;
  }
}

/* ============================================================
   SEO RELATED SERVICES — seo-related.css
   Prefix: seo-related-*
   Aesthetic: Radar / Signal / Data-driven (matches seo-proc, seo-faq)
   Unique concept: Cards with layered glow reveal on hover
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=DM+Sans:ital,wght@0,300;0,400;0,500;0,600;1,300&family=DM+Mono:wght@300;400&display=swap');

:root {
  --red: #E50914;
  --red-dark: #B81D24;
  --ink: #0a0a0a;
  --ice: #F5F5F1;
  --glow: rgba(229, 9, 20, 0.6);
  --seo-related-pad-x: clamp(24px, 6vw, 100px);
}

/* ══════════════════════════════════════════════
   SECTION SHELL
══════════════════════════════════════════════ */
.seo-related {
  position: relative;
  width: 100%;
  background: #0e0e0e;
  padding: 120px 0 110px;
  overflow: hidden;
  font-family: 'DM Sans', sans-serif;
  isolation: isolate;
}

.seo-related::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(to right, transparent, rgba(229,9,20,0.2) 50%, transparent);
  z-index: 1;
}

.seo-related::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(to right, transparent, rgba(245,245,241,0.05) 50%, transparent);
  z-index: 1;
}

/* ══════════════════════════════════════════════
   BACKGROUND
══════════════════════════════════════════════ */
.seo-related-bg {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
}

.seo-related-ambient {
  position: absolute; width: 800px; height: 800px; border-radius: 50%;
}

.seo-related-ambient--tl {
  top: -300px; left: -250px;
  background: radial-gradient(circle, rgba(229,9,20,0.04) 0%, transparent 60%);
}

.seo-related-ambient--br {
  bottom: -300px; right: -200px;
  background: radial-gradient(circle, rgba(229,9,20,0.035) 0%, transparent 60%);
}

/* Subtle moving scan line */
.seo-related-scan-line {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(to right, transparent 10%, rgba(229,9,20,0.12) 50%, transparent 90%);
  animation: seo-related-scan 8s ease-in-out infinite;
  opacity: 0.6;
}

@keyframes seo-related-scan {
  0%   { top: 0%;   opacity: 0; }
  10%  { opacity: 0.6; }
  90%  { opacity: 0.6; }
  100% { top: 100%; opacity: 0; }
}

/* ══════════════════════════════════════════════
   SPINE
══════════════════════════════════════════════ */
.seo-related-spine {
  position: absolute;
  left: clamp(14px, 2.5vw, 40px);
  top: 120px; bottom: 110px;
  display: flex; flex-direction: column;
  align-items: center; gap: 14px;
  z-index: 2; pointer-events: none;
}

.seo-related-spine-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 11px; letter-spacing: 0.25em;
  color: rgba(229,9,20,0.4);
  writing-mode: vertical-rl; transform: rotate(180deg);
}

.seo-related-spine-track {
  flex: 1; width: 1px; display: block;
  background: linear-gradient(to bottom, rgba(229,9,20,0.3), rgba(245,245,241,0.06) 60%, transparent);
  transform-origin: top; transform: scaleY(0);
  transition: transform 1.4s cubic-bezier(0.16,1,0.3,1);
}

.seo-related-spine-track.seo-related-in-view { transform: scaleY(1); }

/* ══════════════════════════════════════════════
   INNER
══════════════════════════════════════════════ */
.seo-related-inner {
  position: relative; z-index: 2;
  padding: 0 var(--seo-related-pad-x);
  padding-left: calc(var(--seo-related-pad-x) + 40px);
  display: flex; flex-direction: column; gap: 56px;
}

/* ══════════════════════════════════════════════
   HEADER
══════════════════════════════════════════════ */
.seo-related-header {
  display: flex; flex-direction: column; gap: 18px;
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.seo-related-header.seo-related-in-view { opacity: 1; transform: translateY(0); }

.seo-related-eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
}

.seo-related-eyebrow-line {
  display: block; width: 32px; height: 1px;
  background: var(--red); opacity: 0.7;
}

.seo-related-eyebrow-text {
  font-size: 10px; font-weight: 500;
  letter-spacing: 0.28em; text-transform: uppercase; color: var(--red);
}

.seo-related-header-row {
  display: flex; align-items: flex-end;
  justify-content: space-between; gap: 32px; flex-wrap: wrap;
}

.seo-related-heading {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(48px, 6vw, 88px);
  line-height: 0.92; letter-spacing: 0.02em;
  color: var(--ice); margin: 0;
}

.seo-related-heading-line { display: block; }

.seo-related-heading-line--em {
  color: var(--red);
  text-shadow: 0 0 60px rgba(229,9,20,0.4);
}

.seo-related-heading-sub {
  font-size: clamp(13px, 1.3vw, 15px);
  font-weight: 300; font-style: italic;
  color: rgba(245,245,241,0.4); line-height: 1.7;
  margin: 0; text-align: right; max-width: 300px;
}

/* ══════════════════════════════════════════════
   CARDS GRID
══════════════════════════════════════════════ */
.seo-related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.7s ease 0.1s, transform 0.7s ease 0.1s;
}

.seo-related-grid.seo-related-in-view { opacity: 1; transform: translateY(0); }

/* ══════════════════════════════════════════════
   SINGLE CARD
══════════════════════════════════════════════ */
.seo-related-card {
  position: relative;
  display: flex; flex-direction: column; gap: 20px;
  padding: 28px 24px 24px;
  background: #111111;
  border: 1px solid rgba(245,245,241,0.07);
  border-radius: 16px;
  text-decoration: none;
  overflow: hidden;
  cursor: pointer;

  /* stagger */
  opacity: 0; transform: translateY(20px);
  transition:
    opacity 0.5s ease,
    transform 0.5s ease,
    border-color 0.35s ease,
    background 0.35s ease,
    box-shadow 0.35s ease;
}

.seo-related-grid.seo-related-in-view .seo-related-card:nth-child(1) { opacity: 1; transform: translateY(0); transition-delay: 0.05s; }
.seo-related-grid.seo-related-in-view .seo-related-card:nth-child(2) { opacity: 1; transform: translateY(0); transition-delay: 0.14s; }
.seo-related-grid.seo-related-in-view .seo-related-card:nth-child(3) { opacity: 1; transform: translateY(0); transition-delay: 0.23s; }

.seo-related-card:hover {
  border-color: rgba(229,9,20,0.3);
  background: #151515;
  box-shadow:
    0 20px 60px rgba(0,0,0,0.55),
    0 0 0 1px rgba(229,9,20,0.06) inset;
}

/* ── Radial glow on hover (positioned via JS mouse) ── */
.seo-related-card-glow {
  position: absolute;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(229,9,20,0.1) 0%, transparent 65%);
  pointer-events: none;
  opacity: 0;
  transform: translate(-50%, -50%);
  transition: opacity 0.4s ease;
  top: 0; left: 0;
  z-index: 0;
}

.seo-related-card:hover .seo-related-card-glow { opacity: 1; }

/* ensure all children are above the glow */
.seo-related-card-top,
.seo-related-card-body,
.seo-related-card-services,
.seo-related-card-footer { position: relative; z-index: 1; }

/* ── Card top: icon + timecode ── */
.seo-related-card-top {
  display: flex; align-items: flex-start;
  justify-content: space-between; gap: 12px;
}

.seo-related-card-icon-wrap {
  width: 44px; height: 44px; border-radius: 11px;
  background: rgba(229,9,20,0.07);
  border: 1px solid rgba(229,9,20,0.14);
  display: flex; align-items: center; justify-content: center;
  color: rgba(229,9,20,0.65);
  flex-shrink: 0;
  transition:
    background 0.35s, border-color 0.35s, color 0.35s,
    transform 0.4s cubic-bezier(0.34,1.56,0.64,1);
}

.seo-related-card-icon svg { width: 20px; height: 20px; }

.seo-related-card:hover .seo-related-card-icon-wrap {
  background: rgba(229,9,20,0.16);
  border-color: rgba(229,9,20,0.4);
  color: var(--red);
  transform: scale(1.08) rotate(-6deg);
}

.seo-related-card-tc {
  font-family: 'DM Mono', monospace;
  font-size: 9px; font-weight: 300;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(229,9,20,0.3);
  transition: color 0.3s;
}

.seo-related-card:hover .seo-related-card-tc { color: rgba(229,9,20,0.65); }

/* ── Card body ── */
.seo-related-card-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(26px, 2.5vw, 34px);
  letter-spacing: 0.03em; line-height: 1;
  color: rgba(245,245,241,0.85); margin: 0 0 10px;
  transition: color 0.3s;
}

.seo-related-card:hover .seo-related-card-title { color: var(--ice); }

.seo-related-card-desc {
  font-size: 13px; font-weight: 300;
  color: rgba(245,245,241,0.38); line-height: 1.7; margin: 0;
  transition: color 0.3s;
}

.seo-related-card:hover .seo-related-card-desc { color: rgba(245,245,241,0.58); }

/* ── Service tags cloud ── */
.seo-related-card-services {
  display: flex; flex-wrap: wrap; gap: 5px;
}

.seo-related-svc-tag {
  display: inline-flex; align-items: center;
  padding: 4px 10px; border-radius: 100px;
  border: 1px solid rgba(245,245,241,0.09);
  background: rgba(245,245,241,0.03);
  font-size: 10px; font-weight: 400;
  letter-spacing: 0.04em;
  color: rgba(245,245,241,0.28);
  transition: border-color 0.3s, color 0.3s, background 0.3s;
}

.seo-related-card:hover .seo-related-svc-tag {
  border-color: rgba(229,9,20,0.2);
  color: rgba(245,245,241,0.5);
  background: rgba(229,9,20,0.05);
}

.seo-related-svc-tag--more {
  border-style: dashed;
  color: rgba(229,9,20,0.35);
}

.seo-related-card:hover .seo-related-svc-tag--more {
  color: var(--red);
  border-color: rgba(229,9,20,0.35);
  background: rgba(229,9,20,0.08);
}

/* ── Card footer ── */
.seo-related-card-footer {
  display: flex; align-items: center;
  justify-content: space-between; gap: 12px;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid rgba(245,245,241,0.06);
  transition: border-color 0.3s;
}

.seo-related-card:hover .seo-related-card-footer {
  border-color: rgba(229,9,20,0.1);
}

.seo-related-card-pills {
  display: flex; flex-wrap: wrap; gap: 5px;
}

.seo-related-card-pill {
  display: inline-flex; align-items: center;
  padding: 3px 9px; border-radius: 100px;
  border: 1px solid rgba(229,9,20,0.2);
  background: rgba(229,9,20,0.06);
  font-size: 9px; font-weight: 500;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: rgba(229,9,20,0.55);
  transition: border-color 0.3s, color 0.3s, background 0.3s;
}

.seo-related-card:hover .seo-related-card-pill {
  border-color: rgba(229,9,20,0.45);
  color: var(--red);
  background: rgba(229,9,20,0.12);
}

.seo-related-card-arrow {
  width: 30px; height: 30px; border-radius: 8px;
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(229,9,20,0.07);
  border: 1px solid rgba(229,9,20,0.14);
  color: rgba(229,9,20,0.5);
  transition:
    background 0.35s, border-color 0.35s, color 0.35s,
    transform 0.4s cubic-bezier(0.34,1.56,0.64,1);
}

.seo-related-card-arrow svg { width: 12px; height: 12px; }

.seo-related-card:hover .seo-related-card-arrow {
  background: var(--red);
  border-color: var(--red);
  color: var(--ice);
  transform: translateX(4px);
  box-shadow: 0 4px 16px rgba(229,9,20,0.4);
}

/* ══════════════════════════════════════════════
   BOTTOM PROMPT
══════════════════════════════════════════════ */
.seo-related-prompt {
  display: flex; align-items: center; gap: 20px;
  flex-wrap: wrap;
  opacity: 0; transform: translateY(14px);
  transition: opacity 0.6s ease 0.35s, transform 0.6s ease 0.35s;
}

.seo-related-prompt.seo-related-in-view { opacity: 1; transform: translateY(0); }

.seo-related-prompt-line {
  flex: 1; min-width: 40px;
  height: 1px;
  background: linear-gradient(to right, rgba(229,9,20,0.3), rgba(245,245,241,0.06));
}

.seo-related-prompt-text {
  font-size: 13px; font-weight: 300; font-style: italic;
  color: rgba(245,245,241,0.3);
  white-space: nowrap;
}

.seo-related-prompt-cta {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 22px; border-radius: 8px;
  background: transparent;
  border: 1px solid rgba(229,9,20,0.3);
  font-family: 'DM Sans', sans-serif;
  font-size: 12px; font-weight: 500; letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(229,9,20,0.7); text-decoration: none;
  flex-shrink: 0;
  transition:
    background 0.3s, border-color 0.3s, color 0.3s,
    transform 0.35s cubic-bezier(0.34,1.56,0.64,1),
    box-shadow 0.3s;
}

.seo-related-prompt-cta svg { width: 12px; height: 12px; transition: transform 0.3s; }

.seo-related-prompt-cta:hover {
  background: var(--red);
  border-color: var(--red);
  color: var(--ice);
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 10px 28px rgba(229,9,20,0.3);
}

.seo-related-prompt-cta:hover svg { transform: translateX(4px); }

/* ══════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════ */
@media (max-width: 1000px) {
  .seo-related-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .seo-related-grid .seo-related-card:nth-child(3) {
    grid-column: 1 / -1;
  }
}

@media (max-width: 860px) {
  .seo-related { padding: 80px 0; }
  .seo-related-inner { padding-left: var(--seo-related-pad-x); gap: 44px; }
  .seo-related-spine { display: none; }
  .seo-related-header-row { flex-direction: column; align-items: flex-start; }
  .seo-related-heading-sub { text-align: left; max-width: 100%; }
}

@media (max-width: 600px) {
  .seo-related-grid {
    grid-template-columns: 1fr;
  }
  .seo-related-grid .seo-related-card:nth-child(3) {
    grid-column: auto;
  }
  .seo-related-prompt {
    flex-direction: column; align-items: flex-start; gap: 12px;
  }
  .seo-related-prompt-line { display: none; }
  .seo-related-prompt-cta { width: 100%; justify-content: center; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .seo-related-header,
  .seo-related-grid,
  .seo-related-card,
  .seo-related-prompt,
  .seo-related-spine-track,
  .seo-related-scan-line {
    transition: none !important;
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}