/* ═══════════════════════════════════════════════════
   SEO PACKAGES LANDING PAGE
   Scoped to .page-template-page-seo-packages so nothing
   here can leak into the rest of the site.
═══════════════════════════════════════════════════ */

.page-template-page-seo-packages {
  --seop-accent:  #00faff;
  --seop-deep:    #0891b2;
  --seop-grad:    linear-gradient(135deg, #00faff 0%, #0891b2 100%);
  --seop-glow:    0 0 40px rgba(0, 250, 255, 0.25);
  --seop-ink:     #0a0a0a;
  --seop-radius:  20px;
}

/* Gradient text used across the page */
.seop-grad {
  background: var(--seop-grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

/* Section headings */
.seop-head { max-width: 760px; }
.seop-head--center { margin-left: auto; margin-right: auto; text-align: center; }
.seop-head--center .eyebrow { display: inline-flex; }
.seop-head__sub {
  margin-top: 18px;
  font-size: clamp(1rem, 1.4vw, 1.1rem);
  color: var(--text2);
  line-height: 1.75;
}
.eyebrow--light { color: var(--seop-accent); }
.eyebrow--light::before { background: var(--seop-grad); }

/* ═══════════════════════════════════════════════════
   BUTTONS
═══════════════════════════════════════════════════ */
.seop-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 15px 30px; border-radius: 100px;
  font-family: var(--f-display); font-size: 0.92rem; font-weight: 600;
  letter-spacing: -0.01em; line-height: 1; white-space: nowrap;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease),
              background .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease);
  cursor: pointer;
}
.seop-btn .material-symbols-outlined { font-size: 1.1rem; transition: transform .3s var(--ease); }
.seop-btn:hover .material-symbols-outlined { transform: translateX(4px); }

.seop-btn--primary {
  background: var(--seop-grad); color: #04252b;
  box-shadow: 0 6px 22px rgba(0, 250, 255, 0.28);
}
.seop-btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 34px rgba(0, 250, 255, 0.42);
}
.seop-btn--ghost { border: 1.5px solid rgba(255,255,255,0.25); color: #fff; }
.seop-btn--ghost:hover { border-color: var(--seop-accent); color: var(--seop-accent); }

.seop-btn--outline { border: 1.5px solid var(--border); color: var(--text); background: transparent; }
.seop-btn--outline:hover {
  border-color: var(--seop-deep); color: var(--seop-deep);
  transform: translateY(-2px);
}

.seop-btn--lg { padding: 18px 38px; font-size: 1rem; }
.seop-btn--sm { padding: 11px 20px; font-size: 0.82rem; }

/* ═══════════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════════ */
.seop-hero {
  position: relative; overflow: hidden;
  background: var(--dark-bg);
  padding: clamp(130px, 16vw, 190px) 0 clamp(70px, 9vw, 110px);
  isolation: isolate;
}
.seop-hero__grid {
  position: absolute; inset: 0; z-index: 0; opacity: 0.5;
  background-image:
    linear-gradient(rgba(255,255,255,0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.045) 1px, transparent 1px);
  background-size: 68px 68px;
  mask-image: radial-gradient(ellipse 90% 65% at 50% 30%, #000 25%, transparent 78%);
  -webkit-mask-image: radial-gradient(ellipse 90% 65% at 50% 30%, #000 25%, transparent 78%);
}
.seop-hero__orb {
  position: absolute; z-index: 0; border-radius: 50%; filter: blur(90px); pointer-events: none;
}
.seop-hero__orb--a {
  width: 520px; height: 520px; top: -160px; left: -120px;
  background: radial-gradient(circle, rgba(0,250,255,0.20), transparent 68%);
}
.seop-hero__orb--b {
  width: 460px; height: 460px; bottom: -180px; right: -100px;
  background: radial-gradient(circle, rgba(8,145,178,0.24), transparent 68%);
}
.seop-hero__inner { position: relative; z-index: 1; text-align: center; }

.seop-badge {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 9px 20px; border-radius: 100px;
  border: 1px solid rgba(0,250,255,0.28);
  background: rgba(0,250,255,0.07);
  font-family: var(--f-display); font-size: 0.74rem; font-weight: 600;
  letter-spacing: 0.13em; text-transform: uppercase; color: var(--seop-accent);
}
.seop-badge__dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--seop-accent); box-shadow: 0 0 10px var(--seop-accent);
  animation: seop-pulse 2.2s ease-in-out infinite;
}
@keyframes seop-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.45; transform: scale(0.78); }
}

.seop-hero__title {
  margin: 26px auto 0; max-width: 15ch;
  font-size: clamp(2.5rem, 6.4vw, 5.2rem);
  color: #fff; line-height: 1.05; letter-spacing: -0.04em;
}
.seop-hero__sub {
  margin: 26px auto 0; max-width: 62ch;
  font-size: clamp(1rem, 1.6vw, 1.18rem);
  color: var(--dark-text2); line-height: 1.75;
}
.seop-hero__sub strong { color: #fff; font-weight: 600; white-space: nowrap; }

.seop-hero__actions {
  margin-top: 38px; display: flex; flex-wrap: wrap;
  gap: 14px; justify-content: center;
}
.seop-hero__reassure {
  margin-top: 18px; font-size: 0.83rem; color: var(--dark-muted);
  letter-spacing: 0.02em;
}

.seop-hero__stats {
  margin: clamp(52px, 7vw, 78px) auto 0; max-width: 940px;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
  padding-top: 40px; border-top: 1px solid var(--dark-border);
}
.seop-stat { text-align: center; }
.seop-stat__num {
  display: block; font-family: var(--f-display);
  font-size: clamp(2rem, 4vw, 3rem); font-weight: 800;
  letter-spacing: -0.03em; line-height: 1;
  background: var(--seop-grad);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.seop-stat__label {
  display: block; margin-top: 12px; font-size: 0.83rem;
  color: var(--dark-text2); line-height: 1.55; max-width: 26ch;
  margin-left: auto; margin-right: auto;
}

/* ═══════════════════════════════════════════════════
   PAIN / COST OF INVISIBILITY
═══════════════════════════════════════════════════ */
.seop-pain { padding: var(--section-y) 0; background: var(--bg); }
.seop-pain__grid {
  display: grid; gap: 22px;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
}
.seop-pain__card {
  padding: 34px 30px; border-radius: var(--seop-radius);
  background: var(--surface); border: 1px solid var(--border);
  transition: transform .35s var(--ease), border-color .35s var(--ease), box-shadow .35s var(--ease);
}
.seop-pain__card:hover {
  transform: translateY(-5px); border-color: rgba(8,145,178,0.4);
  box-shadow: 0 16px 40px rgba(0,0,0,0.07);
}
.seop-pain__icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 52px; height: 52px; border-radius: 14px; margin-bottom: 20px;
  background: var(--seop-grad); color: #04252b; font-size: 1.5rem;
}
.seop-pain__card h3 { margin-bottom: 12px; font-size: 1.16rem; }
.seop-pain__card p { font-size: 0.93rem; line-height: 1.72; }

/* ═══════════════════════════════════════════════════
   PRICING
═══════════════════════════════════════════════════ */
.seop-pricing {
  padding: var(--section-y) 0;
  background:
    radial-gradient(ellipse 70% 45% at 50% 0%, rgba(0,250,255,0.07), transparent 70%),
    var(--surface);
}

/* Launch-offer strip */
.seop-scarcity {
  display: flex; align-items: flex-start; gap: 14px;
  max-width: 720px; margin: 0 auto 30px; padding: 16px 24px;
  border-radius: 16px; border: 1px solid rgba(8,145,178,0.32);
  background: rgba(0,250,255,0.06);
}
.seop-scarcity__pulse {
  flex-shrink: 0; margin-top: 7px; width: 9px; height: 9px; border-radius: 50%;
  background: var(--seop-deep); box-shadow: 0 0 0 0 rgba(8,145,178,0.55);
  animation: seop-ring 2s infinite;
}
@keyframes seop-ring {
  0%   { box-shadow: 0 0 0 0 rgba(8,145,178,0.5); }
  70%  { box-shadow: 0 0 0 12px rgba(8,145,178,0); }
  100% { box-shadow: 0 0 0 0 rgba(8,145,178,0); }
}
.seop-scarcity p { font-size: 0.89rem; line-height: 1.65; color: var(--text2); }
.seop-scarcity strong { color: var(--text); }

/* Billing toggle */
.seop-toggle {
  display: inline-flex; gap: 4px; padding: 5px; margin: 0 auto 44px;
  border-radius: 100px; background: var(--bg); border: 1px solid var(--border);
  position: relative; left: 50%; transform: translateX(-50%);
}
.seop-toggle__btn {
  display: flex; flex-direction: column; align-items: center; gap: 2px;
  padding: 11px 24px; border-radius: 100px;
  font-family: var(--f-display); color: var(--text2);
  transition: background .3s var(--ease), color .3s var(--ease);
}
.seop-toggle__btn:hover { color: var(--text); }
.seop-toggle__btn.is-active { background: var(--seop-ink); color: #fff; }
.seop-toggle__label { font-size: 0.88rem; font-weight: 600; }
.seop-toggle__note { font-size: 0.68rem; letter-spacing: 0.06em; text-transform: uppercase; opacity: 0.75; }
.seop-toggle__btn.is-active .seop-toggle__note { color: var(--seop-accent); opacity: 1; }

/* Cards */
.seop-cards {
  display: grid; gap: 26px; align-items: start;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}
.seop-card {
  position: relative; display: flex; flex-direction: column;
  padding: 38px 32px; border-radius: 26px;
  background: var(--bg); border: 1px solid var(--border);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease);
}
.seop-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 55px rgba(0,0,0,0.09);
  border-color: rgba(8,145,178,0.38);
}

/* The featured tier — dark, glowing, visually dominant */
.seop-card--hot {
  background: var(--seop-ink); border-color: rgba(0,250,255,0.35);
  box-shadow: 0 20px 60px rgba(0,0,0,0.28), var(--seop-glow);
  transform: scale(1.03);
}
.seop-card--hot:hover {
  transform: scale(1.03) translateY(-6px);
  box-shadow: 0 30px 75px rgba(0,0,0,0.34), 0 0 55px rgba(0,250,255,0.32);
  border-color: rgba(0,250,255,0.55);
}
.seop-card--hot .seop-card__name,
.seop-card--hot .seop-card__amount,
.seop-card--hot .seop-card__cur { color: #fff; }
.seop-card--hot .seop-card__tagline,
.seop-card--hot .seop-card__features li,
.seop-card--hot .seop-card__for { color: var(--dark-text2); }
.seop-card--hot .seop-card__features strong { color: #fff; }
.seop-card--hot .seop-card__per,
.seop-card--hot .seop-card__term,
.seop-card--hot .seop-card__was { color: var(--dark-muted); }
.seop-card--hot .seop-card__features li { border-color: rgba(255,255,255,0.08); }
.seop-card--hot .seop-card__for { border-color: rgba(255,255,255,0.12); }
.seop-card--hot .seop-card__feature--lead { color: var(--seop-accent); }

.seop-card__ribbon {
  position: absolute; top: 0; left: 50%; transform: translate(-50%, -50%);
  padding: 8px 22px; border-radius: 100px;
  background: var(--seop-grad); color: #04252b;
  font-family: var(--f-display); font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  box-shadow: 0 6px 20px rgba(0,250,255,0.4);
  white-space: nowrap;
}

.seop-card__kicker {
  display: inline-block; font-family: var(--f-display);
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--seop-deep); margin-bottom: 10px;
}
.seop-card--hot .seop-card__kicker { color: var(--seop-accent); }
.seop-card__name { font-size: 1.65rem; letter-spacing: -0.03em; }
.seop-card__tagline {
  margin-top: 10px; font-size: 0.9rem; line-height: 1.65; color: var(--text2);
  min-height: 3.3em;
}

.seop-card__pricing { margin: 26px 0 24px; }
.seop-card__was {
  display: block; font-size: 0.85rem; color: var(--muted);
  text-decoration: line-through; text-decoration-thickness: 1.5px;
  margin-bottom: 4px;
}
.seop-card__price { display: flex; align-items: baseline; gap: 6px; flex-wrap: wrap; }
.seop-card__cur {
  font-family: var(--f-display); font-size: 1rem; font-weight: 600; color: var(--text2);
}
.seop-card__amount {
  font-family: var(--f-display); font-size: clamp(2.5rem, 4.6vw, 3.3rem);
  font-weight: 800; letter-spacing: -0.04em; line-height: 1; color: var(--text);
  font-variant-numeric: tabular-nums;
}
.seop-card__per { font-size: 0.92rem; color: var(--text2); }
.seop-card__term { margin-top: 10px; font-size: 0.8rem; color: var(--muted); }

.seop-card__cta { width: 100%; }

.seop-card__for {
  display: flex; align-items: flex-start; gap: 9px;
  margin-top: 22px; padding-top: 20px; border-top: 1px solid var(--border);
  font-size: 0.83rem; line-height: 1.55; color: var(--text2);
}
.seop-card__for .material-symbols-outlined { font-size: 1.05rem; color: var(--seop-deep); flex-shrink: 0; }
.seop-card--hot .seop-card__for .material-symbols-outlined { color: var(--seop-accent); }

.seop-card__features { margin-top: 22px; display: flex; flex-direction: column; gap: 0; }
.seop-card__features li {
  display: flex; align-items: flex-start; gap: 11px;
  padding: 11px 0; border-bottom: 1px solid var(--border);
  font-size: 0.88rem; line-height: 1.6; color: var(--text2);
}
.seop-card__features li:last-child { border-bottom: none; }
.seop-card__features strong { color: var(--text); font-weight: 600; }
.seop-card__feature--lead {
  font-family: var(--f-display); font-weight: 700; font-size: 0.82rem !important;
  letter-spacing: 0.05em; text-transform: uppercase; color: var(--seop-deep) !important;
  padding-top: 0 !important;
}

.seop-tick {
  flex-shrink: 0; font-size: 1.05rem; color: var(--seop-deep);
  font-variation-settings: 'wght' 600;
}
.seop-card--hot .seop-tick { color: var(--seop-accent); }

.seop-pricing__foot {
  margin-top: 44px; text-align: center; font-size: 0.88rem; color: var(--text2);
}
.seop-pricing__foot a { color: var(--seop-deep); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }
.seop-pricing__foot a:hover { color: var(--text); }

/* ═══════════════════════════════════════════════════
   COMPARISON TABLE
═══════════════════════════════════════════════════ */
.seop-compare { padding: var(--section-y) 0; background: var(--bg); }
.seop-table-wrap {
  overflow-x: auto; border-radius: var(--seop-radius);
  border: 1px solid var(--border); background: var(--bg);
  -webkit-overflow-scrolling: touch;
}
.seop-table-wrap:focus-visible { outline: 2px solid var(--seop-deep); outline-offset: 3px; }
.seop-table { width: 100%; min-width: 680px; border-collapse: collapse; }
.seop-table thead th {
  position: sticky; top: 0; z-index: 2;
  padding: 22px 18px; background: var(--surface);
  font-family: var(--f-display); font-size: 1rem; font-weight: 700;
  color: var(--text); text-align: center; white-space: nowrap;
  border-bottom: 1px solid var(--border);
}
.seop-table thead th.is-hot { background: var(--seop-ink); color: #fff; }
.seop-table__tag {
  display: block; margin-top: 5px; font-size: 0.62rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--seop-accent);
}
.seop-table__feature-col { text-align: left !important; min-width: 220px; }

.seop-table__group th {
  padding: 18px 18px 10px; text-align: left;
  font-family: var(--f-display); font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--seop-deep);
  background: var(--surface); border-bottom: 1px solid var(--border);
}
.seop-table tbody tr:not(.seop-table__group):hover { background: rgba(0,250,255,0.035); }
.seop-table tbody th[scope="row"] {
  padding: 15px 18px; text-align: left; font-weight: 500;
  font-size: 0.89rem; color: var(--text); border-bottom: 1px solid var(--border);
}
.seop-table tbody td {
  padding: 15px 18px; text-align: center; font-size: 0.86rem;
  color: var(--text2); border-bottom: 1px solid var(--border);
}
.seop-table tbody td.is-hot { background: rgba(0,250,255,0.05); }
.seop-table__val { font-weight: 500; color: var(--text); }
.seop-cross { color: var(--muted); font-size: 1.1rem; }

.seop-compare__hint {
  display: none; align-items: center; justify-content: center; gap: 7px;
  margin-top: 14px; font-size: 0.8rem; color: var(--muted);
}
.seop-compare__hint .material-symbols-outlined { font-size: 1.05rem; }

/* ═══════════════════════════════════════════════════
   TIMELINE + GUARANTEE
═══════════════════════════════════════════════════ */
.seop-timeline { padding: var(--section-y) 0; background: var(--surface); }
.seop-steps {
  display: grid; gap: 22px;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  counter-reset: seop-step;
}
.seop-step {
  position: relative; padding: 32px 28px; border-radius: var(--seop-radius);
  background: var(--bg); border: 1px solid var(--border);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.seop-step:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,0.07); }
.seop-step__when {
  display: inline-block; padding: 6px 14px; border-radius: 100px;
  background: var(--seop-grad); color: #04252b;
  font-family: var(--f-display); font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 16px;
}
.seop-step h3 { font-size: 1.14rem; margin-bottom: 11px; }
.seop-step p { font-size: 0.9rem; line-height: 1.7; }
.seop-step__see {
  display: block; margin-top: 16px; padding-top: 15px;
  border-top: 1px dashed var(--border);
  font-size: 0.81rem; line-height: 1.6; color: var(--seop-deep); font-weight: 500;
}

.seop-guarantee {
  display: flex; align-items: flex-start; gap: 22px;
  margin-top: 34px; padding: 32px 34px; border-radius: var(--seop-radius);
  background: var(--seop-ink); border: 1px solid rgba(0,250,255,0.28);
  box-shadow: 0 18px 48px rgba(0,0,0,0.18);
}
.seop-guarantee__icon {
  flex-shrink: 0; font-size: 2.4rem;
  background: var(--seop-grad);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.seop-guarantee h3 { color: #fff; font-size: 1.2rem; margin-bottom: 9px; }
.seop-guarantee p { color: var(--dark-text2); font-size: 0.92rem; line-height: 1.72; }

/* ═══════════════════════════════════════════════════
   FREE AUDIT
═══════════════════════════════════════════════════ */
.seop-audit {
  position: relative; overflow: hidden;
  padding: var(--section-y) 0; background: var(--dark-bg);
}
.seop-audit__glow {
  position: absolute; top: -180px; left: 50%; transform: translateX(-50%);
  width: 780px; height: 520px; border-radius: 50%; filter: blur(110px);
  background: radial-gradient(circle, rgba(0,250,255,0.16), transparent 70%);
  pointer-events: none;
}
.seop-audit__inner {
  position: relative; z-index: 1;
  display: grid; gap: clamp(38px, 5vw, 66px);
  grid-template-columns: 1fr 1fr; align-items: start;
}
.seop-audit__copy h2 { color: #fff; margin-top: 6px; }
.seop-audit__copy > p {
  margin-top: 20px; color: var(--dark-text2);
  font-size: 1rem; line-height: 1.78;
}
.seop-audit__list { margin-top: 28px; display: flex; flex-direction: column; gap: 13px; }
.seop-audit__list li {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 0.92rem; line-height: 1.6; color: var(--dark-text2);
}
.seop-audit__list .seop-tick { color: var(--seop-accent); }
.seop-audit__meta {
  display: flex; align-items: center; gap: 9px; margin-top: 28px;
  padding-top: 22px; border-top: 1px solid var(--dark-border);
  font-size: 0.85rem; color: var(--dark-muted);
}
.seop-audit__meta .material-symbols-outlined { font-size: 1.05rem; color: var(--seop-accent); }

/* Form card */
.seop-audit__form-wrap { position: relative; }
.seop-form {
  padding: 34px 32px; border-radius: 24px;
  background: var(--bg); border: 1px solid var(--border);
  box-shadow: 0 24px 64px rgba(0,0,0,0.34);
}
.seop-form__title {
  font-family: var(--f-display); font-size: 1.28rem; font-weight: 700;
  color: var(--text); letter-spacing: -0.02em; margin-bottom: 22px;
}
.seop-form__row { margin-bottom: 16px; }
.seop-form__row label {
  display: block; margin-bottom: 7px;
  font-family: var(--f-display); font-size: 0.79rem; font-weight: 600;
  letter-spacing: 0.03em; color: var(--text);
}
.seop-form__row label span[aria-hidden] { color: var(--seop-deep); }
.seop-form__opt { font-weight: 400; color: var(--muted); letter-spacing: 0; }
.seop-form__row input,
.seop-form__row select,
.seop-form__row textarea {
  width: 100%; padding: 13px 16px; border-radius: 12px;
  border: 1.5px solid var(--border); background: var(--surface);
  font-family: var(--f-body); font-size: 0.92rem; color: var(--text);
  transition: border-color .25s var(--ease), background .25s var(--ease), box-shadow .25s var(--ease);
}
.seop-form__row textarea { resize: vertical; min-height: 84px; }
.seop-form__row input::placeholder,
.seop-form__row textarea::placeholder { color: var(--muted); }
.seop-form__row input:focus,
.seop-form__row select:focus,
.seop-form__row textarea:focus {
  outline: none; border-color: var(--seop-deep); background: var(--bg);
  box-shadow: 0 0 0 4px rgba(8,145,178,0.12);
}
.seop-form__submit { width: 100%; margin-top: 8px; }
.seop-form__fine {
  margin-top: 14px; text-align: center; font-size: 0.76rem;
  line-height: 1.55; color: var(--muted);
}

/* Honeypot — visually and semantically hidden, but not display:none
   (some bots skip display:none fields) */
.seop-hp {
  position: absolute; left: -9999px; width: 1px; height: 1px;
  overflow: hidden; opacity: 0; pointer-events: none;
}

/* Success / error notices */
.seop-note {
  display: flex; align-items: flex-start; gap: 13px;
  margin-bottom: 18px; padding: 17px 20px; border-radius: 14px;
  font-size: 0.89rem; line-height: 1.6;
}
.seop-note .material-symbols-outlined { flex-shrink: 0; font-size: 1.25rem; }
.seop-note--ok {
  background: rgba(34,197,94,0.12); border: 1px solid rgba(34,197,94,0.4); color: #bbf7d0;
}
.seop-note--ok .material-symbols-outlined { color: #22c55e; }
.seop-note--ok strong { color: #fff; display: block; }
.seop-note--err {
  background: rgba(239,68,68,0.12); border: 1px solid rgba(239,68,68,0.4); color: #fecaca;
}
.seop-note--err .material-symbols-outlined { color: #ef4444; }
.seop-note--err strong { color: #fff; display: block; }

/* ═══════════════════════════════════════════════════
   FAQ (extends the theme's .faq-item)
═══════════════════════════════════════════════════ */
.seop-faq { padding: var(--section-y) 0; background: var(--bg); }
.seop-faq__list { max-width: 860px; margin: 0 auto; }
/* The theme caps answers at 400px; these answers are longer. */
.seop-faq__list .faq-item.is-active .faq-item__answer { max-height: 620px; }

/* ═══════════════════════════════════════════════════
   EDITOR CONTENT
═══════════════════════════════════════════════════ */
.seop-editor { padding: 0 0 var(--section-y); background: var(--bg); }
.seop-editor .entry-content { max-width: 780px; margin: 0 auto; }

/* ═══════════════════════════════════════════════════
   CLOSING CTA
═══════════════════════════════════════════════════ */
.seop-cta {
  position: relative; overflow: hidden; text-align: center;
  padding: clamp(80px, 10vw, 130px) 0; background: var(--dark-bg);
}
.seop-cta__deco {
  position: absolute; border-radius: 50%; filter: blur(100px); pointer-events: none;
}
.seop-cta__deco--a {
  width: 460px; height: 460px; top: -180px; left: -80px;
  background: radial-gradient(circle, rgba(0,250,255,0.20), transparent 68%);
}
.seop-cta__deco--b {
  width: 400px; height: 400px; bottom: -160px; right: -70px;
  background: radial-gradient(circle, rgba(8,145,178,0.26), transparent 68%);
}
.seop-cta__inner { position: relative; z-index: 1; }
.seop-cta h2 { color: #fff; margin-top: 8px; }
.seop-cta > .container > p {
  margin: 22px auto 0; max-width: 60ch;
  color: var(--dark-text2); font-size: 1.02rem; line-height: 1.78;
}
.seop-cta__actions {
  margin-top: 36px; display: flex; flex-wrap: wrap; gap: 14px; justify-content: center;
}
.seop-cta__fine { margin-top: 26px; font-size: 0.82rem; color: var(--dark-muted); }

/* ═══════════════════════════════════════════════════
   STICKY MOBILE CTA
═══════════════════════════════════════════════════ */
.seop-sticky {
  position: fixed; left: 12px; right: 12px; bottom: 12px; z-index: 900;
  display: none; align-items: center; justify-content: space-between; gap: 14px;
  padding: 12px 14px 12px 20px; border-radius: 100px;
  background: rgba(10,10,10,0.94);
  border: 1px solid rgba(0,250,255,0.28);
  box-shadow: 0 12px 34px rgba(0,0,0,0.35);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  transform: translateY(140%); transition: transform .45s var(--ease);
}
.seop-sticky.is-visible { transform: translateY(0); }
.seop-sticky__copy { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.seop-sticky__label {
  font-family: var(--f-display); font-size: 0.86rem; font-weight: 700; color: #fff;
}
.seop-sticky__price { font-size: 0.72rem; color: var(--seop-accent); }

/* ═══════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .seop-audit__inner { grid-template-columns: 1fr; }
  .seop-card--hot { transform: none; }
  .seop-card--hot:hover { transform: translateY(-6px); }
}

@media (max-width: 900px) {
  .seop-hero__stats { grid-template-columns: 1fr; gap: 30px; }
  .seop-compare__hint { display: flex; }
  .seop-sticky { display: flex; }
  .seop-guarantee { flex-direction: column; gap: 16px; padding: 28px 26px; }
}

@media (max-width: 640px) {
  .seop-hero { padding-top: 110px; }
  .seop-hero__actions .seop-btn,
  .seop-cta__actions .seop-btn { width: 100%; }
  .seop-toggle { flex-direction: column; width: 100%; left: 0; transform: none; border-radius: 20px; }
  .seop-toggle__btn { border-radius: 16px; }
  .seop-card { padding: 32px 24px; }
  .seop-card__tagline { min-height: 0; }
  .seop-form { padding: 28px 22px; }
  .seop-scarcity { padding: 15px 18px; }
  .seop-faq__list .faq-item.is-active .faq-item__answer { max-height: 900px; }
}

/* ═══════════════════════════════════════════════════
   MOTION PREFERENCES
═══════════════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  .seop-badge__dot,
  .seop-scarcity__pulse { animation: none; }
  .seop-card,
  .seop-step,
  .seop-pain__card,
  .seop-btn,
  .seop-sticky { transition: none; }
}
