/* ============================================================
   Ahmad Jadoon — Service page design system  ("svcx")
   ------------------------------------------------------------
   Loaded only on the 13 service pages. Deliberately namespaced
   svcx-* so nothing here can collide with the theme's older
   rules (or with the stale copy of style.css that lives in the
   Customizer's Additional CSS box).

   Motion budget:
     • ambient  — always running, transform/opacity only
     • scroll   — reveal + parallax, driven by assets/service.js
     • intent   — hover/open, pointer devices only
   All of it collapses under prefers-reduced-motion.
   ============================================================ */

.svcx {
  --sx-ink:      #0d0a17;
  --sx-ink-2:    #171232;
  --sx-paper:    #fbfaff;
  --sx-paper-2:  #f3f1fd;
  --sx-line:     rgba(14, 11, 24, 0.09);
  --sx-text:     #3a3650;
  --sx-muted:    #7b7795;
  --sx-violet:   #6c5ce7;
  --sx-violet-2: #a29bfe;
  --sx-indigo:   #4834d4;
  --sx-cyan:     #22d3ee;
  --sx-grad:     linear-gradient(120deg, var(--sx-violet), var(--sx-indigo) 45%, var(--sx-cyan));
  --sx-pad:      clamp(18px, 4vw, 56px);
  --sx-gap:      clamp(20px, 3vw, 40px);
  --sx-radius:   clamp(14px, 1.6vw, 22px);

  background: var(--sx-paper);
  overflow-x: clip;
}

.svcx-wrap {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding-inline: var(--sx-pad);
}

/* ============================================================
   Scroll choreography — utilities consumed by service.js
   ============================================================ */
.svcx [data-anim] {
  opacity: 0;
  /* No will-change here on purpose: these selectors match dozens of elements
     per page and permanently promoting each to its own compositing layer
     costs far more memory than the one-off transition saves. */
  transition:
    opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.75s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.75s ease;
}
/* Scroll parallax and pointer drift ride on `translate`, which composes with
   any `transform` animation already running on the element. */
.svcx [data-parallax] {
  translate: var(--sx-dx, 0px) calc(var(--sx-py, 0px) + var(--sx-dy, 0px));
  transition: translate 0.25s ease-out;
}
.svcx-chip { transition: translate 0.5s ease-out; }

.svcx [data-anim="up"]    { transform: translateY(38px); }
.svcx [data-anim="down"]  { transform: translateY(-28px); }
.svcx [data-anim="left"]  { transform: translateX(-42px); }
.svcx [data-anim="right"] { transform: translateX(42px); }
.svcx [data-anim="scale"] { transform: scale(0.93); }
.svcx [data-anim="blur"]  { filter: blur(11px); transform: translateY(22px); }
.svcx [data-anim="clip"]  { clip-path: inset(0 100% 0 0); opacity: 1; transition: clip-path 1s cubic-bezier(0.22, 1, 0.36, 1); }

.svcx [data-anim].is-in {
  opacity: 1;
  transform: none;
  filter: none;
}
/* Only the clip reveal gets a clip-path. Applying one to every revealed
   element would clip its children to its own box -- which silently hides
   anything deliberately positioned outside it, like the rail step nodes. */
.svcx [data-anim="clip"].is-in { clip-path: inset(0 0 0 0); }
/* Never let the entrance animation be why content cannot be read. */
.svcx.svcx-no-js [data-anim] { opacity: 1; transform: none; filter: none; clip-path: none; }

/* ============================================================
   HERO — no imagery. Depth comes from motion alone.
   Each page sets --sx-hue, so no two services read the same.
   ============================================================ */
.svcx-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: min(88vh, 780px);
  display: grid;
  align-items: center;
  background: radial-gradient(125% 130% at 76% 6%, #241b4d 0%, var(--sx-ink-2) 44%, var(--sx-ink) 100%);
  color: #fff;
  padding: clamp(104px, 15vh, 168px) 0 clamp(76px, 10vh, 118px);
  filter: hue-rotate(var(--sx-hue, 0deg));
}
/* Undo the hue shift on content so text and UI stay on-brand;
   only the decorative background layers get re-tinted. */
.svcx-hero > .svcx-hero-inner { filter: hue-rotate(calc(var(--sx-hue, 0deg) * -1)); }

.svcx-hero-bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }

.svcx-orb { position: absolute; border-radius: 50%; filter: blur(74px); }
.svcx-orb-1 {
  width: 44vw; aspect-ratio: 1; top: -16%; right: -6%; opacity: 0.6;
  background: radial-gradient(circle, rgba(108, 92, 231, 0.9), transparent 68%);
  animation: sxOrbA 21s ease-in-out infinite;
}
.svcx-orb-2 {
  width: 36vw; aspect-ratio: 1; bottom: -20%; left: -8%; opacity: 0.5;
  background: radial-gradient(circle, rgba(34, 211, 238, 0.75), transparent 68%);
  animation: sxOrbB 27s ease-in-out infinite;
}
.svcx-orb-3 {
  width: 26vw; aspect-ratio: 1; top: 32%; left: 42%; opacity: 0.35;
  background: radial-gradient(circle, rgba(72, 52, 212, 0.9), transparent 70%);
  animation: sxOrbA 33s ease-in-out infinite reverse;
}

.svcx-grid {
  position: absolute; inset: -60% -10%;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(circle at 50% 40%, #000 0%, transparent 74%);
  -webkit-mask-image: radial-gradient(circle at 50% 40%, #000 0%, transparent 74%);
  animation: sxGrid 44s linear infinite;
}

/* Two slowly counter-rotating rings */
.svcx-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(162, 155, 254, 0.22);
}
.svcx-ring::after {
  content: ''; position: absolute; top: -4px; left: 50%;
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--sx-cyan);
  box-shadow: 0 0 14px 3px rgba(34, 211, 238, 0.8);
  transform: translateX(-50%);
}
.svcx-ring-1 {
  width: min(58vw, 620px); aspect-ratio: 1;
  top: 50%; right: -12%; margin-top: min(-29vw, -310px);
  animation: sxRing 46s linear infinite;
}
.svcx-ring-2 {
  width: min(34vw, 360px); aspect-ratio: 1;
  top: 50%; right: 2%; margin-top: min(-17vw, -180px);
  border-style: dashed;
  border-color: rgba(34, 211, 238, 0.18);
  animation: sxRing 32s linear infinite reverse;
}

/* Drifting motes */
.svcx-spark {
  position: absolute;
  width: 4px; height: 4px; border-radius: 50%;
  background: rgba(255, 255, 255, 0.75);
  box-shadow: 0 0 10px 2px rgba(162, 155, 254, 0.7);
  top: calc(8% + var(--i) * 12%);
  left: calc(6% + var(--i) * 13%);
  opacity: 0;
  animation: sxFloat calc(11s + var(--i) * 2.4s) ease-in-out infinite;
  animation-delay: calc(var(--i) * -1.9s);
}

/* Floating keyword chips — real benefit names from the page */
.svcx-chips {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
}
.svcx-chip {
  position: absolute;
  padding: 8px 15px;
  border-radius: 100px;
  font-family: var(--font-mono, monospace);
  font-size: 0.66rem; letter-spacing: 0.06em;
  white-space: nowrap;
  color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.07);
  box-shadow: inset 0 0 0 1px rgba(162, 155, 254, 0.26);
  backdrop-filter: blur(9px);
  -webkit-backdrop-filter: blur(9px);
}
.svcx-chip-1 { top: 17%; right: 7%;  animation: sxBob 6.5s ease-in-out infinite; }
.svcx-chip-2 { top: 34%; right: 25%; animation: sxBob 8s   ease-in-out infinite -1.4s; }
.svcx-chip-3 { top: 55%; right: 11%; animation: sxBob 7.2s ease-in-out infinite -2.7s; }
.svcx-chip-4 { top: 73%; right: 27%; animation: sxBob 9s   ease-in-out infinite -0.8s; }
.svcx-chip-5 { top: 12%; right: 33%; animation: sxBob 7.8s ease-in-out infinite -3.5s; }

.svcx-hero-inner { position: relative; z-index: 3; max-width: 1240px; }

.svcx-eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 7px 15px 7px 11px;
  border-radius: 100px;
  font-family: var(--font-mono, monospace);
  font-size: 0.68rem; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: #ded9ff;
  background: rgba(255, 255, 255, 0.07);
  box-shadow: inset 0 0 0 1px rgba(162, 155, 254, 0.36);
  backdrop-filter: blur(6px);
}
.svcx-eyebrow-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--sx-cyan);
  animation: sxBeacon 2.3s ease-out infinite;
}

.svcx-h1 {
  font-family: var(--font-display, Georgia, serif);
  font-size: clamp(3.45rem, 1.1rem + 5vw, 4.6rem);
  font-weight: 600;
  line-height: 1.22;
  letter-spacing: -0.035em;
  margin: clamp(18px, 2.2vw, 26px) 0 0;
  max-width: 16ch;
  text-wrap: balance;
  padding-top:7px;
  padding-bottom:7px;
}
/* Astra sets a colour directly on h1, and any direct rule beats the white
   inherited from .svcx-hero -- which rendered the headline black on black.
   Stated explicitly here, with a solid fallback for engines without
   background-clip:text. */
.svcx .svcx-h1 { color: #fff; }
@supports ((-webkit-background-clip: text) or (background-clip: text)) {
  .svcx .svcx-h1 {
    background: linear-gradient(96deg, #ffffff, var(--sx-violet-2) 52%, #ffffff);
    background-size: 220% 100%;
    -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent; color: transparent;
    animation: sxSheen 9s linear infinite;
  }
}
.svcx .svcx-h1 em {
  font-style: italic;
  color: var(--sx-cyan);
}
@supports ((-webkit-background-clip: text) or (background-clip: text)) {
  .svcx .svcx-h1 em {
    background: linear-gradient(96deg, var(--sx-violet-2), var(--sx-cyan) 52%, var(--sx-violet-2));
    background-size: 220% 100%;
    -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent; color: transparent;
    animation: sxSheen 7s linear infinite;
  }
}

.svcx-lead {
  max-width: 46ch;
  margin: clamp(16px, 1.9vw, 22px) 0 0;
  font-size: clamp(0.98rem, 0.9rem + 0.35vw, 1.16rem);
  line-height: 1.72;
  color: rgba(255, 255, 255, 0.76);
}

/* ── Buttons (shared by hero and closing band) ─────────────── */
.svcx-btn {
  position: relative;
  display: inline-flex; align-items: center; gap: 9px;
  padding: 14px 26px;
  border-radius: 100px;
  font-weight: 600; font-size: 0.92rem;
  overflow: hidden;
  isolation: isolate;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease;
}
.svcx-btn-solid {
  color: #fff;
  background: var(--sx-grad);
  background-size: 200% 100%;
  animation: sxSheen 6s linear infinite;
  box-shadow: 0 14px 34px -12px rgba(108, 92, 231, 0.95);
}
.svcx-btn-ghost {
  color: #fff;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.3);
}
.svcx-btn-ghost::before {
  content: ''; position: absolute; inset: 0; z-index: -1;
  background: rgba(255, 255, 255, 0.12);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}
.svcx-btn-arrow { transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1); }

/* ── Hero layout bits ──────────────────────────────────────── */
.svcx-hero-btns {
  display: flex; flex-wrap: wrap; gap: 12px;
  margin-top: clamp(24px, 3vw, 36px);
}
.svcx-hero-meta {
  display: flex; flex-wrap: wrap; gap: clamp(16px, 2.6vw, 34px);
  margin-top: clamp(30px, 3.8vw, 46px);
  padding-top: clamp(20px, 2.6vw, 28px);
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  max-width: 720px;
}
.svcx-meta-item { display: flex; flex-direction: column; gap: 2px; }
.svcx-meta-n {
  font-family: var(--font-display, Georgia, serif);
  font-size: clamp(1.2rem, 1rem + 0.7vw, 1.6rem);
  font-weight: 600; color: #fff;
}
.svcx-meta-l {
  font-family: var(--font-mono, monospace);
  font-size: 0.48rem; letter-spacing: 0.08em; text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

/* ============================================================
   BODY LAYOUT
   ============================================================ */
.svcx-body {
  position: relative;
  padding: clamp(52px, 7vw, 104px) 0 clamp(40px, 6vw, 84px);
}
.svcx-body::before {
  content: ''; position: absolute; z-index: 0; pointer-events: none;
  width: 44vw; aspect-ratio: 1; top: 4%; left: -14%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(108, 92, 231, 0.13), transparent 68%);
  filter: blur(60px);
  animation: sxOrbA 25s ease-in-out infinite;
}
.svcx-layout {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) clamp(280px, 26vw, 340px);
  gap: clamp(28px, 4vw, 62px);
  align-items: start;
}
.svcx-main { min-width: 0; }

.svcx-section { margin-bottom: clamp(52px, 7vw, 96px); }
.svcx-section:last-child { margin-bottom: 0; }

.svcx-kicker {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--font-mono, monospace);
  font-size: 0.66rem; font-weight: 500;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--sx-violet);
  margin-bottom: 14px;
}
.svcx-kicker-light { color: var(--sx-violet-2); }
.svcx-kicker-light::after { background: linear-gradient(90deg, rgba(162, 155, 254, 0.5), transparent); }
.svcx-kicker::after {
  content: ''; flex: 1; height: 1px;
  background: linear-gradient(90deg, rgba(108, 92, 231, 0.5), transparent);
}
.svcx-h2 {
  font-family: var(--font-display, Georgia, serif);
  font-size: clamp(1.6rem, 1.15rem + 1.9vw, 2.5rem);
  font-weight: 600; line-height: 1.14; letter-spacing: -0.03em;
  color: var(--sx-ink);
  margin: 0 0 clamp(14px, 1.8vw, 20px);
  text-wrap: balance;
}
.svcx-p {
  font-size: clamp(0.92rem, 0.88rem + 0.2vw, 1rem);
  line-height: 1.8; color: var(--sx-text);
  margin: 0 0 14px; max-width: 68ch;
}
.svcx-p:last-child { margin-bottom: 0; }

/* ── Overview ─────────────────────────────────────────────── */
.svcx-overview {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(22px, 3.2vw, 46px);
  align-items: center;
}
.svcx-overview.is-textonly { grid-template-columns: minmax(0, 1fr); }
.svcx-overview-media {
  position: relative;
  border-radius: var(--sx-radius);
  overflow: hidden;
  box-shadow: 0 26px 60px -26px rgba(23, 18, 50, 0.5);
}
.svcx-overview-media img {
  width: 100%; height: 100%; display: block;
  aspect-ratio: 4 / 3; object-fit: cover;
  transition: transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}
.svcx-overview-media::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(150deg, rgba(108, 92, 231, 0.26), transparent 55%);
  mix-blend-mode: multiply;
}

/* ============================================================
   PROCESS — a rail that fills as the page scrolls
   ============================================================ */
.svcx-rail { position: relative; isolation: isolate; padding-left: clamp(42px, 5.4vw, 66px); }
.svcx-rail::before {
  content: ''; position: absolute; z-index: 0;
  left: clamp(15px, 2vw, 23px); top: 6px; bottom: 6px;
  width: 2px; border-radius: 2px;
  background: var(--sx-line);
}
/* The filled portion — height set from JS scroll progress */
.svcx-rail-fill {
  position: absolute; z-index: 0;
  left: clamp(15px, 2vw, 23px); top: 6px;
  width: 2px; border-radius: 2px;
  height: var(--sx-progress, 0%);
  background: linear-gradient(180deg, var(--sx-violet), var(--sx-cyan));
  box-shadow: 0 0 12px rgba(108, 92, 231, 0.7);
  transition: height 0.18s linear;
}
/* A light that keeps travelling the rail */
.svcx-rail-fill::after {
  content: ''; position: absolute; left: -3px; bottom: -4px;
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--sx-cyan);
  box-shadow: 0 0 14px 3px rgba(34, 211, 238, 0.8);
  animation: sxBeacon 1.9s ease-out infinite;
}

.svcx-step { position: relative; z-index: 1; padding: 0 0 clamp(24px, 3.4vw, 40px); }
.svcx-step:last-child { padding-bottom: 0; }
.svcx-step-node {
  position: absolute; z-index: 2;
  left: calc(clamp(42px, 5.4vw, 66px) * -1 + clamp(15px, 2vw, 23px) - 14px);
  top: 2px;
  width: 30px; height: 30px;
  display: grid; place-items: center;
  border-radius: 50%;
  font-family: var(--font-mono, monospace);
  font-size: 0.7rem; font-weight: 600;
  color: var(--sx-muted);
  background: var(--sx-paper);
  box-shadow: inset 0 0 0 1.5px var(--sx-line);
  transition: color 0.45s ease, box-shadow 0.45s ease, background 0.45s ease, transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}
.svcx-step.is-in .svcx-step-node {
  color: #fff;
  background: var(--sx-grad);
  background-size: 200% 100%;
  box-shadow: 0 6px 18px -5px rgba(108, 92, 231, 0.9);
  animation: sxSheen 5s linear infinite;
}
.svcx-step-title {
  font-weight: 600;
  font-size: clamp(0.98rem, 0.92rem + 0.28vw, 1.14rem);
  color: var(--sx-ink);
  margin-bottom: 6px;
}
.svcx-step-desc {
  font-size: clamp(0.87rem, 0.84rem + 0.16vw, 0.94rem);
  line-height: 1.75; color: var(--sx-muted);
  max-width: 62ch;
}

/* ============================================================
   BENEFITS
   ============================================================ */
.svcx-benefits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 218px), 1fr));
  gap: clamp(12px, 1.6vw, 18px);
}
.svcx-benefit {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(20px, 2.4vw, 28px);
  border-radius: var(--sx-radius);
  background: #fff;
  box-shadow: inset 0 0 0 1px var(--sx-line);
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.5s ease;
}
/* Drifting colour field behind each card */
.svcx-benefit::before {
  content: ''; position: absolute; z-index: -1;
  width: 150%; aspect-ratio: 1; right: -50%; top: -70%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(108, 92, 231, 0.2), transparent 66%);
  opacity: 0.75;
  animation: sxOrbB 18s ease-in-out infinite;
  transition: opacity 0.5s ease;
}
.svcx-benefit:nth-child(3n)::before { animation-duration: 23s; background: radial-gradient(circle, rgba(34, 211, 238, 0.2), transparent 66%); }
.svcx-benefit:nth-child(3n+2)::before { animation-duration: 20s; background: radial-gradient(circle, rgba(72, 52, 212, 0.18), transparent 66%); }

.svcx-benefit-icon {
  width: 44px; height: 44px;
  display: grid; place-items: center;
  margin-bottom: 15px;
  border-radius: 13px;
  font-size: 1.24rem; line-height: 1;
  background: linear-gradient(140deg, rgba(108, 92, 231, 0.15), rgba(34, 211, 238, 0.15));
  box-shadow: inset 0 0 0 1px rgba(108, 92, 231, 0.2);
  animation: sxBob 4.6s ease-in-out infinite;
}
.svcx-benefit:nth-child(2n) .svcx-benefit-icon { animation-delay: -1.1s; }
.svcx-benefit:nth-child(3n) .svcx-benefit-icon { animation-delay: -2.2s; }
.svcx-benefit-icon.is-num {
  font-family: var(--font-mono, monospace);
  font-size: 0.76rem; font-weight: 600; color: var(--sx-violet);
}
.svcx-benefit-title {
  font-weight: 600;
  font-size: clamp(0.94rem, 0.9rem + 0.2vw, 1.03rem);
  color: var(--sx-ink);
  margin-bottom: 7px;
}
.svcx-benefit-desc {
  font-size: clamp(0.83rem, 0.81rem + 0.14vw, 0.89rem);
  line-height: 1.72; color: var(--sx-muted);
}

/* ============================================================
   PRICING — two vertical cards, or one when scoped per project
   ============================================================ */
.svcx-plans {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 22px);
  align-items: stretch;
}
.svcx-plans.is-single {
  grid-template-columns: minmax(0, 1fr);
  max-width: 460px;
}

.svcx-plan {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding: clamp(24px, 2.8vw, 34px);
  border-radius: var(--sx-radius);
  background: #fff;
  box-shadow: inset 0 0 0 1px var(--sx-line);
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.5s ease;
}
/* Drifting field behind each card */
.svcx-plan::before {
  content: ''; position: absolute; z-index: -1;
  width: 150%; aspect-ratio: 1; right: -55%; top: -68%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(108, 92, 231, 0.14), transparent 66%);
  animation: sxOrbB 20s ease-in-out infinite;
}

/* Featured card — dark, so the upsell reads at a glance */
.svcx-plan.is-featured {
  color: #fff;
  background: linear-gradient(168deg, var(--sx-ink-2), var(--sx-ink));
  box-shadow: 0 26px 60px -26px rgba(23, 18, 50, 0.7);
}
.svcx-plan.is-featured::before {
  background: radial-gradient(circle, rgba(108, 92, 231, 0.55), transparent 66%);
  animation-duration: 15s;
}
/* A gradient hairline that keeps travelling the featured card's edge */
.svcx-plan.is-featured::after {
  content: ''; position: absolute; inset: 0; z-index: -2;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(120deg, var(--sx-violet), var(--sx-cyan), var(--sx-indigo), var(--sx-violet));
  background-size: 300% 100%;
  animation: sxSheen 6s linear infinite;
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask-composite: exclude;
  -webkit-mask-composite: xor;
}

.svcx-plan-flag {
  position: absolute; top: clamp(20px, 2.4vw, 28px); right: clamp(20px, 2.4vw, 28px);
  padding: 5px 12px;
  border-radius: 100px;
  font-family: var(--font-mono, monospace);
  font-size: 0.58rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: #fff;
  background: var(--sx-grad);
  background-size: 200% 100%;
  animation: sxSheen 5s linear infinite;
}

.svcx-plan-head { padding-right: 92px; }
.svcx-plan-name {
  font-family: var(--font-display, Georgia, serif);
  font-size: clamp(1.15rem, 1rem + 0.55vw, 1.42rem);
  font-weight: 600; letter-spacing: -0.02em;
  color: var(--sx-ink);
  margin: 0 0 6px;
}
.svcx-plan.is-featured .svcx-plan-name { color: #fff; }
.svcx-plan-tag {
  font-size: 0.85rem; line-height: 1.6;
  color: var(--sx-muted);
  margin: 0;
}
.svcx-plan.is-featured .svcx-plan-tag { color: rgba(255, 255, 255, 0.68); }

.svcx-plan-price {
  display: flex; align-items: baseline; flex-wrap: wrap; gap: 3px;
  margin: clamp(18px, 2.2vw, 24px) 0 clamp(16px, 2vw, 20px);
  padding-bottom: clamp(16px, 2vw, 20px);
  border-bottom: 1px solid var(--sx-line);
}
.svcx-plan.is-featured .svcx-plan-price { border-bottom-color: rgba(255, 255, 255, 0.14); }
.svcx-plan-cur {
  font-family: var(--font-display, Georgia, serif);
  font-size: 1.2rem; font-weight: 600;
  color: var(--sx-violet);
  align-self: flex-start;
  margin-top: 6px;
}
.svcx-plan.is-featured .svcx-plan-cur { color: var(--sx-violet-2); }
.svcx-plan-amt {
  font-family: var(--font-display, Georgia, serif);
  font-size: clamp(2.1rem, 1.6rem + 1.9vw, 3rem);
  font-weight: 600; line-height: 1; letter-spacing: -0.04em;
  color: var(--sx-ink);
}
.svcx-plan.is-featured .svcx-plan-amt { color: #fff; }
.svcx-plan-unit {
  width: 100%;
  font-family: var(--font-mono, monospace);
  font-size: 0.68rem; letter-spacing: 0.08em;
  color: var(--sx-muted);
  margin-top: 6px;
}
.svcx-plan.is-featured .svcx-plan-unit { color: rgba(255, 255, 255, 0.55); }

.svcx-plan-feats {
  list-style: none;
  margin: 0 0 clamp(20px, 2.4vw, 26px);
  padding: 0;
  display: flex; flex-direction: column; gap: 11px;
  flex: 1;
}
.svcx-plan-feats li {
  position: relative;
  padding-left: 27px;
  font-size: 0.86rem; line-height: 1.55;
  color: var(--sx-text);
}
.svcx-plan.is-featured .svcx-plan-feats li { color: rgba(255, 255, 255, 0.84); }
.svcx-plan-feats li::before {
  content: ''; position: absolute;
  left: 0; top: 3px;
  width: 17px; height: 17px;
  border-radius: 50%;
  background: var(--sx-grad);
  background-size: 200% 100%;
  animation: sxSheen 6s linear infinite;
}
/* a real tick, not a dash */
.svcx-plan-feats li::after {
  content: ''; position: absolute;
  left: 6px; top: 7px;
  width: 4.5px; height: 8px;
  border: solid #fff;
  border-width: 0 1.7px 1.7px 0;
  transform: rotate(43deg);
}

.svcx-plan-btn {
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
  padding: 14px 22px;
  border-radius: 100px;
  font-weight: 600; font-size: 0.88rem;
  color: var(--sx-ink);
  box-shadow: inset 0 0 0 1px var(--sx-line);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s ease, background 0.4s ease, color 0.4s ease;
}
.svcx-plan-btn.is-primary {
  color: #fff;
  background: var(--sx-grad);
  background-size: 200% 100%;
  animation: sxSheen 6s linear infinite;
  box-shadow: 0 14px 32px -14px rgba(108, 92, 231, 0.95);
}
.svcx-plan-arr { transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1); }

.svcx-plans-note {
  margin: clamp(16px, 2vw, 22px) 0 0;
  font-size: 0.85rem;
  color: var(--sx-muted);
}
.svcx-plans-note a { color: var(--sx-indigo); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }

/* ============================================================
   FAQ — index-rail accordion
   Structure:  .svcx-faq-item > .svcx-faq-rail + .svcx-faq-col
   Class names are load-bearing: inc/seo.php harvests
   .svcx-faq-qt / .svcx-faq-ai to build FAQPage schema.
   ============================================================ */
.svcx-faq { position: relative; }
.svcx-faq-list {
  border-top: 1px solid var(--sx-line);
  border-radius: var(--sx-radius);
  overflow: hidden;
}
.svcx-faq-item {
  position: relative;
  display: grid;
  grid-template-columns: clamp(58px, 7vw, 92px) minmax(0, 1fr);
  border-bottom: 1px solid var(--sx-line);
  background: #fff;
  transition: background 0.45s ease;
}
.svcx-faq-item:nth-child(even) { background: var(--sx-paper); }

/* Left rail: oversized index numeral + a spine that grows on open */
.svcx-faq-rail {
  position: relative;
  display: flex; justify-content: center;
  padding: clamp(18px, 2.2vw, 26px) 0 0;
}
.svcx-faq-num {
  font-family: var(--font-display, Georgia, serif);
  font-size: clamp(1.3rem, 1rem + 1.2vw, 1.95rem);
  font-weight: 600; line-height: 1;
  letter-spacing: -0.03em;
  -webkit-text-stroke: 1px rgba(108, 92, 231, 0.42);
  color: transparent;
  transition: color 0.5s ease, -webkit-text-stroke-color 0.5s ease, transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.svcx-faq-spine {
  position: absolute;
  left: 50%; transform: translateX(-50%);
  top: calc(clamp(18px, 2.2vw, 26px) + clamp(1.3rem, 1rem + 1.2vw, 1.95rem) + 12px);
  bottom: clamp(16px, 2vw, 22px);
  width: 2px; border-radius: 2px;
  background: linear-gradient(180deg, var(--sx-violet), var(--sx-cyan), var(--sx-violet));
  background-size: 100% 260%;
  transform-origin: top;
  scale: 1 0;
  opacity: 0;
  transition: scale 0.55s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.35s ease;
  animation: sxSpine 3.4s linear infinite;
}

.svcx-faq-col { min-width: 0; padding-right: clamp(14px, 2vw, 24px); }

/* This is a <button>, so Astra paints it with its own accent background on
   :hover and :focus -- and focus persists after a click, which is why the
   colour stuck to the open row. Every state is neutralised here. */
.svcx .svcx-faq-q,
.svcx .svcx-faq-q:hover,
.svcx .svcx-faq-q:focus,
.svcx .svcx-faq-q:active,
.svcx .svcx-faq-q:focus-visible,
.svcx .svcx-faq-item.is-open .svcx-faq-q,
.svcx .svcx-faq-item.is-open .svcx-faq-q:hover,
.svcx .svcx-faq-item.is-open .svcx-faq-q:focus {
  background: none;
  background-color: transparent;
  border: none;
  box-shadow: none;
  outline: none;
}
/* Keyboard users still get a visible focus ring. */
.svcx .svcx-faq-q:focus-visible { box-shadow: 0 0 0 2px var(--sx-cyan) inset; border-radius: 8px; }

/* Astra also sets `color:#fff` on button:hover / button:focus. Neutralising
   only its background left white text on a white row. Rather than fight the
   <button> selector, the question text is coloured on its own inner <span>,
   which Astra never targets -- so the button's colour is irrelevant. The
   !important is deliberate: this is a leaf component overriding a parent
   theme whose rules cannot be inspected from here, and this exact class of
   override has already regressed twice. */
.svcx .svcx-faq-qt { color: var(--sx-ink) !important; }
.svcx .svcx-faq-item.is-open .svcx-faq-qt { color: #fff !important; }

.svcx-faq-q {
  width: 100%;
  min-height: 62px;
  display: flex; align-items: center; gap: clamp(12px, 1.8vw, 20px);
  padding: clamp(18px, 2.2vw, 26px) 0;
  text-align: left;
  font-family: inherit;
  font-weight: 600;
  font-size: clamp(0.92rem, 0.87rem + 0.28vw, 1.06rem);
  line-height: 1.5;
  color: var(--sx-ink);
  background: none; border: none; cursor: pointer;
  overflow-wrap: anywhere;
  transition: color 0.3s ease;
}
.svcx-faq-qt {
  flex: 1;
  padding-left: clamp(4px, 1.2vw, 14px);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

/* Toggle: a ring that turns forever, with a plus that becomes a minus */
.svcx-faq-plus {
  position: relative;
  flex-shrink: 0;
  margin-right: clamp(4px, 1.2vw, 14px);
  width: clamp(30px, 3.4vw, 36px);
  height: clamp(30px, 3.4vw, 36px);
  border-radius: 50%;
  background: rgba(108, 92, 231, 0.09);
  transition: background 0.4s ease, transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.svcx-faq-plus::before {
  content: ''; position: absolute; inset: -2px;
  border-radius: 50%;
  border: 1.5px solid transparent;
  border-top-color: var(--sx-violet);
  border-right-color: rgba(34, 211, 238, 0.75);
  animation: sxRing 3.6s linear infinite;
}
/* the plus bars */
.svcx-faq-plus::after {
  content: '';
  position: absolute; top: 50%; left: 50%;
  width: 11px; height: 11px;
  transform: translate(-50%, -50%);
  background:
    linear-gradient(var(--sx-violet), var(--sx-violet)) center/11px 1.8px no-repeat,
    linear-gradient(var(--sx-violet), var(--sx-violet)) center/1.8px 11px no-repeat;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), background-size 0.4s ease;
}

.svcx-faq-a {
  height: 0;
  opacity: 0;
  overflow: hidden;
  transition: height 0.55s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.4s ease;
}
.svcx-faq-ai {
  padding: 0 0 clamp(22px, 2.6vw, 30px);
  font-size: clamp(0.88rem, 0.85rem + 0.18vw, 0.95rem);
  line-height: 1.82;
  color: var(--sx-muted);
  max-width: 66ch;
}
.svcx-faq-ai > p { margin: 0 0 11px; }
.svcx-faq-ai > p:last-child { margin-bottom: 0; }
/* answer text lifts in just behind the panel opening */
.svcx-faq-item.is-open .svcx-faq-ai {
  animation: sxAnswerIn 0.65s cubic-bezier(0.22, 1, 0.36, 1) 0.06s both;
}

/* ── open state ──
   The open row goes to near-black ink so the title can be white, as asked.
   Nothing here is blue or purple. */
.svcx-faq-item.is-open,
.svcx-faq-item.is-open:nth-child(even) {
  background: linear-gradient(160deg, var(--sx-ink-2), var(--sx-ink));
}
.svcx .svcx-faq-item.is-open .svcx-faq-q { color: #fff; }
.svcx-faq-item.is-open .svcx-faq-num {
  color: #fff;
  -webkit-text-stroke-color: transparent;
  transform: scale(1.1);
}
.svcx-faq-item.is-open .svcx-faq-spine { scale: 1 1; opacity: 1; }
.svcx-faq-item.is-open .svcx-faq-a { opacity: 1; }
.svcx-faq-item.is-open .svcx-faq-ai { color: rgba(255, 255, 255, 0.74); }
.svcx-faq-item.is-open .svcx-faq-plus {
  background: rgba(255, 255, 255, 0.14);
  transform: rotate(180deg);
}
.svcx-faq-item.is-open .svcx-faq-plus::after {
  /* collapse the vertical bar → minus */
  background:
    linear-gradient(#fff, #fff) center/11px 1.8px no-repeat,
    linear-gradient(#fff, #fff) center/0 11px no-repeat;
}
.svcx-faq-item.is-open .svcx-faq-plus::before {
  border-top-color: rgba(255, 255, 255, 0.9);
  border-right-color: rgba(255, 255, 255, 0.45);
}

/* ============================================================
   SIDEBAR
   ============================================================ */
.svcx-aside { position: sticky; top: calc(var(--nav-h, 92px) + 18px); }
.svcx-card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(22px, 2.6vw, 30px);
  border-radius: var(--sx-radius);
  color: #fff;
  background: linear-gradient(165deg, var(--sx-ink-2), var(--sx-ink));
  box-shadow: 0 26px 60px -28px rgba(23, 18, 50, 0.85);
  margin-bottom: 16px;
}
.svcx-card::before {
  content: ''; position: absolute; z-index: -1;
  width: 130%; aspect-ratio: 1; top: -46%; right: -34%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(108, 92, 231, 0.55), transparent 66%);
  animation: sxOrbA 16s ease-in-out infinite;
}
.svcx-price {
  font-family: var(--font-display, Georgia, serif);
  font-size: clamp(1.8rem, 1.4rem + 1.4vw, 2.4rem);
  font-weight: 600; letter-spacing: -0.035em; line-height: 1;
}
.svcx-price span {
  font-family: var(--font-body, sans-serif);
  font-size: 0.8rem; font-weight: 400;
  color: rgba(255, 255, 255, 0.6);
  margin-left: 5px;
}
.svcx-price-note {
  font-size: 0.75rem; color: rgba(255, 255, 255, 0.5);
  margin: 7px 0 18px;
}
.svcx-feats { display: flex; flex-direction: column; gap: 9px; margin-bottom: 20px; }
.svcx-feat {
  display: flex; align-items: flex-start; gap: 9px;
  font-size: 0.84rem; line-height: 1.5;
  color: rgba(255, 255, 255, 0.82);
}
.svcx-feat { position: relative; }
.svcx-feat::before {
  content: ''; flex-shrink: 0;
  width: 16px; height: 16px; margin-top: 3px;
  border-radius: 50%;
  background: var(--sx-grad);
  background-size: 200% 100%;
  animation: sxSheen 6s linear infinite;
}
.svcx-feat::after {
  content: ''; position: absolute;
  left: 5.5px; top: 8px;
  width: 4px; height: 7.5px;
  border: solid #fff;
  border-width: 0 1.6px 1.6px 0;
  transform: rotate(43deg);
}
.svcx-cta {
  position: relative;
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
  width: 100%;
  padding: 14px 20px;
  margin-bottom: 10px;
  border-radius: 100px;
  font-weight: 600; font-size: 0.88rem;
  overflow: hidden; isolation: isolate;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.svcx-cta:last-child { margin-bottom: 0; }
.svcx-cta-primary {
  color: #fff;
  background: var(--sx-grad);
  background-size: 200% 100%;
  animation: sxSheen 6s linear infinite;
}
.svcx-cta-ghost { color: #fff; box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.24); }
.svcx-cta-arr { transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1); }

.svcx-contact {
  padding: clamp(20px, 2.4vw, 26px);
  border-radius: var(--sx-radius);
  background: #fff;
  box-shadow: inset 0 0 0 1px var(--sx-line);
}
.svcx-contact h4 {
  font-family: var(--font-display, Georgia, serif);
  font-size: 1.02rem; font-weight: 600; color: var(--sx-ink);
  margin: 0 0 13px;
}
.svcx-contact-row {
  display: flex; align-items: center; gap: 9px;
  font-size: 0.83rem; color: var(--sx-text);
  padding: 7px 0;
  overflow-wrap: anywhere;
}
.svcx-contact-row a { color: var(--sx-indigo); font-weight: 500; }

/* ============================================================
   CLOSING CTA
   ============================================================ */
.svcx-close {
  position: relative;
  isolation: isolate; overflow: hidden;
  margin-top: clamp(40px, 6vw, 76px);
  padding: clamp(38px, 5.6vw, 74px) var(--sx-pad);
  color: #fff;
  background: radial-gradient(110% 140% at 22% 0%, #291f57 0%, var(--sx-ink-2) 45%, var(--sx-ink) 100%);
}
.svcx-close::before {
  content: ''; position: absolute; z-index: -1;
  width: 52vw; aspect-ratio: 1; bottom: -46%; right: -10%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(34, 211, 238, 0.42), transparent 66%);
  filter: blur(66px);
  animation: sxOrbB 23s ease-in-out infinite;
}
.svcx-close-inner {
  max-width: 1240px; margin: 0 auto;
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: clamp(20px, 3vw, 40px);
}
.svcx-close h2 {
  color: #fff;
  font-family: var(--font-display, Georgia, serif);
  font-size: clamp(1.6rem, 1.2rem + 1.9vw, 2.6rem);
  font-weight: 600; line-height: 1.1; letter-spacing: -0.03em;
  margin: 10px 0 8px;
}
.svcx-close h2 em {
  font-style: italic;
  background: linear-gradient(96deg, var(--sx-violet-2), var(--sx-cyan) 52%, var(--sx-violet-2));
  background-size: 220% 100%;
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
  animation: sxSheen 7s linear infinite;
}
.svcx-close p { color: rgba(255, 255, 255, 0.66); font-size: 0.95rem; margin: 0; }
.svcx-close-btns { display: flex; flex-wrap: wrap; gap: 12px; }

/* ============================================================
   Hover — pointer devices only, so nothing sticks on touch
   ============================================================ */
@media (hover: hover) and (pointer: fine) {
  .svcx-btn:hover { transform: translateY(-2px); }
  .svcx-btn-solid:hover { box-shadow: 0 18px 40px -12px rgba(108, 92, 231, 1); }
  .svcx-btn:hover .svcx-btn-arrow { transform: translateX(4px); }
  .svcx-btn-ghost:hover::before { transform: scaleX(1); }
  .svcx-overview-media:hover img { transform: scale(1.05); }
  .svcx-benefit:hover {
    transform: translateY(-5px);
    box-shadow: 0 22px 46px -22px rgba(23, 18, 50, 0.42), inset 0 0 0 1px rgba(108, 92, 231, 0.3);
  }
  .svcx-benefit:hover::before { opacity: 1; }
  /* Hover is motion only -- no background or colour change, so nothing can
     end up unreadable against a tinted row. */
  .svcx-faq-item:hover:not(.is-open) .svcx-faq-num { transform: scale(1.14); }
  .svcx-faq-item:hover:not(.is-open) .svcx-faq-plus { transform: scale(1.12); }
  .svcx-faq-item:hover:not(.is-open) .svcx-faq-qt { transform: translateX(5px); }
  .svcx-plan:hover { transform: translateY(-5px); box-shadow: 0 24px 52px -22px rgba(23, 18, 50, 0.5); }
  .svcx-plan-btn:hover { transform: translateY(-2px); }
  .svcx-plan-btn:hover .svcx-plan-arr { transform: translateX(4px); }
  .svcx-chip { transition: transform 0.5s ease; }
  .svcx-cta:hover { transform: translateY(-2px); }
  .svcx-cta:hover .svcx-cta-arr { transform: translateX(4px); }
}

/* ============================================================
   Keyframes
   ============================================================ */
@keyframes sxOrbA {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%      { transform: translate(6%, 9%) scale(1.13); }
  66%      { transform: translate(-4%, 5%) scale(0.93); }
}
@keyframes sxOrbB {
  0%, 100% { transform: translate(0, 0) scale(1); }
  40%      { transform: translate(-7%, -8%) scale(1.16); }
  75%      { transform: translate(4%, -3%) scale(0.9); }
}
@keyframes sxGrid   { to { transform: translate(62px, 62px); } }
@keyframes sxSheen  { to { background-position: 200% 0; } }
@keyframes sxSpine  { to { background-position: 0 260%; } }
@keyframes sxRing   { to { transform: rotate(1turn); } }
@keyframes sxGlint  { 0%, 62% { background-position: 160% 0; } 100% { background-position: -60% 0; } }
@keyframes sxBob    { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-5px); } }
@keyframes sxBeacon {
  0%   { box-shadow: 0 0 0 0 rgba(34, 211, 238, 0.6); }
  70%  { box-shadow: 0 0 0 9px rgba(34, 211, 238, 0); }
  100% { box-shadow: 0 0 0 0 rgba(34, 211, 238, 0); }
}
@keyframes sxFloat {
  0%, 100% { transform: translate(0, 0); opacity: 0; }
  12%      { opacity: 0.9; }
  50%      { transform: translate(26px, -38px); opacity: 0.65; }
  88%      { opacity: 0.5; }
}
@keyframes sxAnswerIn {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: none; }
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1080px) {
  .svcx-layout { grid-template-columns: minmax(0, 1fr); }
  .svcx-aside { position: static; display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr)); gap: 16px; }
  .svcx-card { margin-bottom: 0; }
}
@media (max-width: 900px) {
  .svcx-hero { min-height: auto; padding: clamp(92px, 13vh, 128px) 0 clamp(64px, 9vh, 92px); }
  .svcx-chip-2, .svcx-chip-4, .svcx-chip-5 { display: none; }
  .svcx-chip-1 { top: auto; bottom: 13%; right: 6%; }
  .svcx-chip-3 { top: auto; bottom: 4%; right: 30%; }
  .svcx-ring-1 { width: 78vw; right: -34%; }
  .svcx-ring-2 { display: none; }
  .svcx-overview { grid-template-columns: minmax(0, 1fr); }
  .svcx-overview-media { max-width: 560px; }
  .svcx-plans { grid-template-columns: minmax(0, 1fr); }
  .svcx-plans.is-single { max-width: none; }
}
@media (max-width: 640px) {
  /* Fewer big blurred layers — they are the expensive part on phones */
  .svcx-orb { filter: blur(48px); }
  .svcx-orb-3 { display: none; }
  .svcx-grid { animation-duration: 60s; }
  .svcx-spark { display: none; }
  .svcx-chips { display: none; }
  .svcx-plan-head { padding-right: 0; }
  .svcx-plan-flag { position: static; display: inline-block; margin-bottom: 12px; }
  .svcx-benefits { grid-template-columns: minmax(0, 1fr); }
  .svcx-benefit::before { animation: none; opacity: 0.6; }
  .svcx-close-inner { flex-direction: column; align-items: flex-start; }
  .svcx-hero-btns .svcx-btn,
  .svcx-close-btns .svcx-btn { flex: 1 1 100%; justify-content: center; }
}
@media (max-width: 480px) {
  .svcx-faq-item { grid-template-columns: clamp(44px, 12vw, 56px) minmax(0, 1fr); }
  .svcx-faq-q { min-height: 56px; gap: 10px; }
  .svcx-rail { padding-left: 38px; }
  .svcx-step-node { left: -35px; width: 26px; height: 26px; font-size: 0.63rem; }
}

/* ============================================================
   Reduced motion — kill ambient movement, keep the interface
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  .svcx *,
  .svcx *::before,
  .svcx *::after {
    animation: none !important;
    transition-duration: 0.01ms !important;
  }
  .svcx [data-anim] { opacity: 1 !important; transform: none !important; filter: none !important; clip-path: none !important; }
}

/* Print — flatten everything, expand every answer */
@media print {
  .svcx-hero, .svcx-close { background: none !important; color: #000; }
  .svcx-orb, .svcx-grid, .svcx-aside { display: none !important; }
  .svcx [data-anim] { opacity: 1 !important; transform: none !important; }
  .svcx-faq-a { height: auto !important; opacity: 1 !important; }
  .svcx-layout { grid-template-columns: 1fr; }
}

/* ============================================================
   Filled buttons keep white text in every state. The theme's
   global a:hover colour otherwise turns these blue-on-purple.
   ============================================================ */
.svcx a.svcx-btn-solid,
.svcx a.svcx-btn-solid:hover,
.svcx a.svcx-btn-solid:focus,
.svcx a.svcx-btn-solid:active,
.svcx a.svcx-btn-solid:visited,
.svcx a.svcx-btn-solid:hover span,
.svcx a.svcx-cta-primary,
.svcx a.svcx-cta-primary:hover,
.svcx a.svcx-cta-primary:focus,
.svcx a.svcx-cta-primary:active,
.svcx a.svcx-cta-primary:visited,
.svcx a.svcx-cta-primary:hover span,
.svcx a.svcx-plan-btn.is-primary,
.svcx a.svcx-plan-btn.is-primary:hover,
.svcx a.svcx-plan-btn.is-primary:focus,
.svcx a.svcx-plan-btn.is-primary:active,
.svcx a.svcx-plan-btn.is-primary:visited,
.svcx a.svcx-plan-btn.is-primary:hover span,
.svcx a.svcx-btn-ghost,
.svcx a.svcx-btn-ghost:hover,
.svcx a.svcx-btn-ghost:focus,
.svcx a.svcx-btn-ghost:visited,
.svcx a.svcx-cta-ghost,
.svcx a.svcx-cta-ghost:hover,
.svcx a.svcx-cta-ghost:focus,
.svcx a.svcx-cta-ghost:visited { color: #fff; }

/* The outline plan button sits on white, so it stays dark until hover. */
.svcx a.svcx-plan-btn:not(.is-primary) { color: var(--sx-ink); }
.svcx a.svcx-plan-btn:not(.is-primary):hover {
  color: #fff;
  background: var(--sx-grad);
  background-size: 200% 100%;
  box-shadow: 0 14px 32px -14px rgba(108, 92, 231, 0.9);
}
.svcx .svcx-plan.is-featured a.svcx-plan-btn:not(.is-primary) { color: #fff; box-shadow: inset 0 0 0 1px rgba(255,255,255,0.28); }
