/* OUTSOURCE SEO PAGE — Additional styles
   Only rules not already defined in main.css.
   Loaded exclusively on template-outsource-seo.php.
   Scope: .is-outsource-seo-page
══════════════════════════════════════════════════ */

/* ── Section / layout utilities ──────────────── */
.section     { padding: clamp(72px,8vw,112px) 0; }
.section-alt { background: var(--mist); }
.section-dark{ background: var(--ink); }
.wrap        { width: var(--w); margin: 0 auto; }

/* ── Button variants ─────────────────────────── */
.btn-ghost {
  display: inline-flex; align-items: center; gap: 9px;
  background: rgba(255,255,255,.04); color: rgba(255,255,255,.8);
  font-family: var(--ff-body); font-size: .95rem; font-weight: 500;
  padding: 13px 26px; border-radius: var(--r2);
  border: 1px solid rgba(255,255,255,.15);
  transition: all .25s var(--ease);
}
.btn-ghost:hover {
  border-color: rgba(255,255,255,.35);
  color: #fff;
  transform: translateY(-2px);
}
.btn-out {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--ink);
  font-family: var(--ff-body); font-size: .88rem; font-weight: 600;
  padding: 11px 22px; border-radius: var(--r2);
  border: 1.5px solid var(--line2);
  transition: all .25s var(--ease);
}
.btn-out:hover { border-color: var(--fire); color: var(--fire); }

/* ── h2 white variant ────────────────────────── */
.h2-white { color: #fff; }

/* ──────────────────────────────────────────────
   HERO
────────────────────────────────────────────── */
.is-outsource-seo-page #hero {
  background: var(--ink);
  min-height: 90svh;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

/* Glow orbs */
.is-outsource-seo-page #hero .hero-glow {
  position: absolute; top: -80px; right: -60px;
  width: 560px; height: 560px; border-radius: 50%;
  background: radial-gradient(circle, rgba(240,98,12,.14) 0%, transparent 68%);
  pointer-events: none; z-index: 1;
}
.is-outsource-seo-page #hero .hero-glow2 {
  position: absolute; bottom: -60px; left: -80px;
  width: 420px; height: 420px; border-radius: 50%;
  background: radial-gradient(circle, rgba(22,43,71,.7) 0%, transparent 70%);
  pointer-events: none; z-index: 1;
}

/* Hero body grid */
.is-outsource-seo-page .hero-body {
  flex: 1;
  display: grid;
  grid-template-columns: 56fr 44fr;
  gap: 56px;
  align-items: center;
  padding: 88px 0 72px;
  position: relative;
  z-index: 2;
}
.admin-bar.is-outsource-seo-page .hero-body { padding-top: 120px; }
@media screen and (max-width: 782px) {
  .admin-bar.is-outsource-seo-page .hero-body { padding-top: 134px; }
}
@media (max-width: 960px) {
  .is-outsource-seo-page .hero-body {
    grid-template-columns: 1fr;
    padding-top: 72px;
  }
  .is-outsource-seo-page .hero-right-col { display: none !important; }
}

/* Pill dot */
.is-outsource-seo-page .pill-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--fire); flex-shrink: 0;
  animation: pulse 2s infinite;
}

/* h1 span variants */
.is-outsource-seo-page .h1-dim {
  display: block;
  font-style: italic;
  font-weight: 300;
  color: rgba(255,255,255,.5);
  margin-bottom: 2px;
}
.is-outsource-seo-page .h1-white { color: #fff; font-weight: 700; }
.is-outsource-seo-page .h1-fire  { color: var(--fire); font-weight: 700; }
.is-outsource-seo-page .h1-underline {
  display: block;
  color: #fff;
  font-weight: 700;
  position: relative;
  padding-bottom: 6px;
}
.is-outsource-seo-page .h1-underline::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  height: 3px; width: 0;
  background: linear-gradient(90deg, var(--fire), transparent);
  border-radius: 2px;
  transition: width 1.4s .7s var(--ease);
}
.is-outsource-seo-page .h1-underline.drawn::after { width: 100%; }

/* Hero entry animations */
.is-outsource-seo-page .hero-pill    { opacity: 0; animation: fadeUp .6s .10s var(--ease) forwards; }
.is-outsource-seo-page .hero-h1      { opacity: 0; animation: fadeUp .7s .25s var(--ease) forwards; }
.is-outsource-seo-page .hero-sub     { opacity: 0; animation: fadeUp .7s .40s var(--ease) forwards; }
.is-outsource-seo-page .hero-actions { opacity: 0; animation: fadeUp .7s .55s var(--ease) forwards; }

/* Hero stats grid */
.is-outsource-seo-page .hero-stats {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
  margin-top: 48px;
  opacity: 0;
  animation: fadeUp .7s .75s var(--ease) forwards;
}
.is-outsource-seo-page .hstat { background: var(--ink); padding: 22px 0; }

/* Hero right column */
.is-outsource-seo-page .hero-right-col {
  position: relative;
  opacity: 0;
  animation: fadeIn .9s .45s var(--ease) forwards;
}

/* Ticker */
.is-outsource-seo-page .ticker-l,
.is-outsource-seo-page .ticker-r {
  position: absolute; top: 0;
  width: 100px; height: 100%;
  z-index: 2; pointer-events: none;
}
.is-outsource-seo-page .ticker-l { left: 0;  background: linear-gradient(90deg, var(--ink), transparent); }
.is-outsource-seo-page .ticker-r { right: 0; background: linear-gradient(-90deg, var(--ink), transparent); }
.is-outsource-seo-page .ticker-track {
  display: flex; align-items: center; white-space: nowrap;
  animation: tickerRun 40s linear infinite;
  font-family: var(--ff-head); font-size: 3rem; font-weight: 900;
  line-height: 1; letter-spacing: -.03em;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(255,255,255,.18);
  user-select: none;
}
.is-outsource-seo-page .ticker-track span { padding: 0 18px; }
.is-outsource-seo-page .ticker-track .sp  { color: var(--fire); -webkit-text-stroke: 0; font-size: .9rem; padding: 0 6px; }

/* ──────────────────────────────────────────────
   REPORT PANEL (hero right col)
────────────────────────────────────────────── */
.report-panel {
  background: #111827;
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 32px 70px rgba(0,0,0,.55), 0 0 0 1px rgba(255,255,255,.04);
}

/* Panel top bar */
.rp-topbar {
  padding: 11px 16px;
  background: rgba(255,255,255,.025);
  border-bottom: 1px solid rgba(255,255,255,.07);
  display: flex; align-items: center; justify-content: space-between;
}
.rp-dots { display: flex; gap: 6px; }
.rp-dot  { width: 9px; height: 9px; border-radius: 50%; }
.rp-dot.r { background: #ff5f57; }
.rp-dot.y { background: #febc2e; }
.rp-dot.g { background: #28c840; }
.rp-label { font-size: .65rem; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.35); font-weight: 500; }

/* Panel header row */
.rp-header {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 16px 12px;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.rp-logo-box {
  width: 40px; height: 20px;
  border: 1.5px dashed rgba(255,255,255,.2);
  border-radius: 4px; flex-shrink: 0;
  background: rgba(255,255,255,.03);
}
.rp-title {
  font-family: var(--ff-head);
  font-size: .9rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
}
.rp-date {
  font-size: .62rem;
  color: rgba(255,255,255,.35);
  margin-top: 2px;
  text-transform: uppercase;
  letter-spacing: .06em;
}

/* Metric rows */
.rp-metrics { padding: 8px 0; }
.rp-metric-row {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 10px;
  padding: 11px 16px;
  border-bottom: 1px solid rgba(255,255,255,.05);
  opacity: 0; transform: translateX(-8px);
  animation: slideIn .4s var(--ease) forwards;
}
.rp-metric-row:nth-child(1) { animation-delay: .55s; }
.rp-metric-row:nth-child(2) { animation-delay: .70s; }
.rp-metric-row:nth-child(3) { animation-delay: .85s; }
.rp-metric-row:last-child   { border-bottom: none; }
.rp-metric-label {
  font-size: .75rem;
  color: rgba(255,255,255,.5);
  font-weight: 500;
}
.rp-metric-val {
  display: flex; align-items: center; gap: 6px;
}
.rp-badge {
  font-size: .68rem; font-weight: 700;
  padding: 3px 7px; border-radius: 4px;
}
.rp-badge.up {
  background: rgba(34,197,94,.15);
  color: #4ade80;
  border: 1px solid rgba(34,197,94,.25);
}
.rp-trend {
  font-size: .7rem;
  color: rgba(255,255,255,.3);
}

/* Sparkline bars */
.rp-sparkline {
  display: flex; align-items: flex-end; gap: 2px;
  height: 24px; width: 48px;
}
.sp-bar {
  flex: 1;
  background: rgba(255,255,255,.12);
  border-radius: 2px 2px 0 0;
  min-height: 3px;
  transition: background .2s;
}
.sp-bar.active { background: var(--fire); }

/* Panel footer */
.rp-footer {
  display: flex; align-items: center; gap: 8px;
  padding: 11px 16px;
  background: rgba(255,255,255,.025);
  border-top: 1px solid rgba(255,255,255,.06);
  font-size: .72rem;
  color: rgba(255,255,255,.4);
}
.rp-seal { color: var(--fire); flex-shrink: 0; }
.rp-footer strong { color: rgba(255,255,255,.65); }

/* Float badge */
.is-outsource-seo-page .float-badge {
  position: absolute; right: -14px; bottom: -14px;
  background: #fff; border-radius: 10px; padding: 10px 14px;
  display: flex; align-items: center; gap: 10px;
  box-shadow: 0 12px 32px rgba(0,0,0,.45); min-width: 200px;
  animation: floatBob 4s ease-in-out infinite;
}
.is-outsource-seo-page .float-icon {
  width: 34px; height: 34px; border-radius: 7px;
  background: var(--fire);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; color: #fff;
}
.is-outsource-seo-page .float-n { font-size: .85rem; font-weight: 700; color: var(--ink); line-height: 1.2; }
.is-outsource-seo-page .float-l { font-size: .62rem; color: #6b7280; margin-top: 2px; }

/* slideIn keyframe (used by report-panel rows) */
@keyframes slideIn {
  to { opacity: 1; transform: translateX(0); }
}

/* ──────────────────────────────────────────────
   WHY NEPAL — 4-col card grid
────────────────────────────────────────────── */
.is-outsource-seo-page .why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 56px;
}
@media (max-width: 960px) {
  .is-outsource-seo-page .why-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
  .is-outsource-seo-page .why-grid { grid-template-columns: 1fr; }
}
.is-outsource-seo-page .why-card {
  background: #fff;
  border: 1px solid var(--line2);
  border-radius: var(--r2);
  padding: 28px;
  position: relative; overflow: hidden;
  transition: all .3s var(--ease);
}
.is-outsource-seo-page .why-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--fire); transform: scaleX(0); transform-origin: left;
  transition: transform .35s var(--ease);
}
.is-outsource-seo-page .why-card:hover::before { transform: scaleX(1); }
.is-outsource-seo-page .why-card:hover {
  border-color: transparent;
  box-shadow: 0 12px 40px rgba(8,17,31,.1);
  transform: translateY(-3px);
}
.is-outsource-seo-page .why-icon {
  width: 44px; height: 44px; border-radius: var(--r1);
  background: rgba(240,98,12,.1); color: var(--fire);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
}
.is-outsource-seo-page .why-num {
  font-family: var(--ff-head);
  font-size: 1.8rem; font-weight: 900;
  color: var(--fire); line-height: 1;
  margin-bottom: 8px; letter-spacing: -.03em;
}
.is-outsource-seo-page .why-card h3 {
  font-family: var(--ff-head);
  font-size: 1rem; font-weight: 800; color: var(--ink);
  margin-bottom: 8px; letter-spacing: -.01em;
}
.is-outsource-seo-page .why-card p {
  font-size: .85rem; color: #5A5550; line-height: 1.65;
}

/* ──────────────────────────────────────────────
   SERVICES — 2-col checklist grid
────────────────────────────────────────────── */
.is-outsource-seo-page .srv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 40px;
  margin-top: 52px;
}
@media (max-width: 640px) {
  .is-outsource-seo-page .srv-grid { grid-template-columns: 1fr; }
}
.is-outsource-seo-page .srv-item {
  display: flex; align-items: flex-start; gap: 14px;
  background: #fff;
  border: 1px solid var(--line2);
  border-radius: var(--r2);
  padding: 18px 20px;
  transition: all .25s var(--ease);
}
.is-outsource-seo-page .srv-item:hover {
  border-color: rgba(240,98,12,.3);
  box-shadow: 0 8px 28px rgba(8,17,31,.07);
  transform: translateY(-2px);
}
.is-outsource-seo-page .srv-check {
  width: 26px; height: 26px; border-radius: 50%; flex-shrink: 0;
  background: var(--fire); color: #fff;
  display: flex; align-items: center; justify-content: center;
  margin-top: 1px;
}
.is-outsource-seo-page .srv-name {
  font-family: var(--ff-head);
  font-size: .97rem; font-weight: 800; color: var(--ink);
  line-height: 1.3; margin-bottom: 4px;
}
.is-outsource-seo-page .srv-deliverable {
  font-size: .78rem; color: #6B7280; line-height: 1.5;
}

/* ──────────────────────────────────────────────
   PROCESS — 4-step horizontal grid
────────────────────────────────────────────── */
.is-outsource-seo-page .process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 56px;
  position: relative;
}
/* Connecting line between steps */
.is-outsource-seo-page .process-grid::before {
  content: '';
  position: absolute;
  top: 28px; left: calc(12.5% + 14px); right: calc(12.5% + 14px);
  height: 2px;
  background: linear-gradient(90deg, var(--fire), rgba(240,98,12,.2));
  z-index: 0;
}
@media (max-width: 860px) {
  .is-outsource-seo-page .process-grid {
    grid-template-columns: 1fr 1fr;
  }
  .is-outsource-seo-page .process-grid::before { display: none; }
}
@media (max-width: 480px) {
  .is-outsource-seo-page .process-grid { grid-template-columns: 1fr; }
}
.is-outsource-seo-page .process-step {
  position: relative; z-index: 1;
  background: #fff;
  border: 1px solid var(--line2);
  border-radius: var(--r2);
  padding: 28px 24px 24px;
  transition: all .3s var(--ease);
}
.is-outsource-seo-page .process-step:hover {
  border-color: rgba(240,98,12,.25);
  box-shadow: 0 12px 36px rgba(8,17,31,.08);
  transform: translateY(-3px);
}
.is-outsource-seo-page .step-num {
  font-family: var(--ff-head);
  font-size: 4rem; font-weight: 900;
  color: var(--fire);
  opacity: .1;
  line-height: 1;
  position: absolute; top: 12px; right: 16px;
  pointer-events: none; user-select: none;
}
.is-outsource-seo-page .step-body h3 {
  font-family: var(--ff-head);
  font-size: 1rem; font-weight: 800;
  color: var(--ink); margin-bottom: 10px;
  display: flex; flex-wrap: wrap; align-items: center; gap: 8px;
}
.is-outsource-seo-page .step-time {
  font-size: .72rem; font-weight: 600;
  color: var(--fire); background: rgba(240,98,12,.1);
  padding: 2px 8px; border-radius: 20px;
  font-family: var(--ff-body);
}
.is-outsource-seo-page .step-body p {
  font-size: .86rem; color: #5A5550; line-height: 1.65;
}

/* ──────────────────────────────────────────────
   PACKAGES — 3-col cards
────────────────────────────────────────────── */
.is-outsource-seo-page .pkg-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
  align-items: start;
}
@media (max-width: 960px) {
  .is-outsource-seo-page .pkg-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .is-outsource-seo-page .pkg-grid { grid-template-columns: 1fr; }
}
.is-outsource-seo-page .pkg-card {
  background: #fff;
  border: 1px solid var(--line2);
  border-radius: var(--r3);
  padding: 32px;
  transition: box-shadow .3s var(--ease), transform .25s var(--ease);
  will-change: transform;
}
.is-outsource-seo-page .pkg-card:hover {
  box-shadow: 0 18px 50px rgba(8,17,31,.1);
}
.is-outsource-seo-page .pkg-featured {
  border: 2px solid var(--fire);
  transform: scale(1.03);
  box-shadow: 0 20px 56px rgba(240,98,12,.14);
}
.is-outsource-seo-page .pkg-featured:hover {
  box-shadow: 0 24px 64px rgba(240,98,12,.2);
}
.is-outsource-seo-page .pkg-tag {
  font-family: var(--ff-head);
  font-size: 1.35rem; font-weight: 900;
  color: var(--ink); letter-spacing: -.02em;
  margin-bottom: 4px;
}
.is-outsource-seo-page .pkg-featured .pkg-tag { color: var(--fire); }
.is-outsource-seo-page .pkg-for {
  font-size: .78rem; color: #6B7280; font-weight: 500;
  margin-bottom: 18px;
  text-transform: uppercase; letter-spacing: .06em;
}
.is-outsource-seo-page .pkg-price {
  font-size: 1rem; color: var(--text2);
  margin-bottom: 8px; line-height: 1.3;
}
.is-outsource-seo-page .pkg-price strong {
  font-family: var(--ff-head);
  font-size: 2rem; font-weight: 900; color: var(--ink);
  letter-spacing: -.04em;
}
.is-outsource-seo-page .pkg-price span { font-size: .85rem; color: #9CA3AF; }
.is-outsource-seo-page .pkg-desc {
  font-size: .85rem; color: #6B7280; line-height: 1.6;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line2);
}
.is-outsource-seo-page .pkg-features {
  list-style: none; margin: 0 0 28px; padding: 0;
  display: flex; flex-direction: column; gap: 10px;
}
.is-outsource-seo-page .pkg-features li {
  font-size: .86rem; color: var(--text);
  display: flex; align-items: center; gap: 8px;
}
.is-outsource-seo-page .pkg-features li::before {
  content: '';
  width: 16px; height: 16px; flex-shrink: 0;
  border-radius: 50%;
  background: rgba(240,98,12,.12);
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='%23F0620C' stroke-width='3' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 10px 10px;
}
.is-outsource-seo-page .pkg-card .btn-out,
.is-outsource-seo-page .pkg-card .btn-fire {
  width: 100%; justify-content: center;
}

/* AdSense wrapper */
.is-outsource-seo-page .adsense-wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 24px 20px;
}

/* ──────────────────────────────────────────────
   WHO IS THIS FOR — Yes / No grid
────────────────────────────────────────────── */
.is-outsource-seo-page .fit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 56px;
}
@media (max-width: 640px) {
  .is-outsource-seo-page .fit-grid { grid-template-columns: 1fr; }
}
.is-outsource-seo-page .fit-col {
  background: #fff;
  border: 1px solid var(--line2);
  border-radius: var(--r2);
  padding: 32px;
}
.is-outsource-seo-page .fit-yes { border-top: 3px solid #22c55e; }
.is-outsource-seo-page .fit-no  { border-top: 3px solid #9CA3AF; }
.is-outsource-seo-page .fit-col-head {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 24px;
}
.is-outsource-seo-page .fit-badge {
  width: 30px; height: 30px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.is-outsource-seo-page .fit-badge-yes { background: rgba(34,197,94,.12); color: #22c55e; }
.is-outsource-seo-page .fit-badge-no  { background: rgba(156,163,175,.12); color: #9CA3AF; }
.is-outsource-seo-page .fit-col-head h3 {
  font-family: var(--ff-head);
  font-size: 1rem; font-weight: 800; color: var(--ink);
}
.is-outsource-seo-page .fit-col ul {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-direction: column; gap: 12px;
}
.is-outsource-seo-page .fit-col li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: .9rem; color: var(--text); line-height: 1.55;
}
.is-outsource-seo-page .fit-icon { flex-shrink: 0; margin-top: 2px; }
.is-outsource-seo-page .fit-icon.yes { color: #22c55e; }
.is-outsource-seo-page .fit-icon.no  { color: #9CA3AF; }

/* ──────────────────────────────────────────────
   FAQ (scoped, uses shared .fitem/.fq/.fa from main.css)
────────────────────────────────────────────── */
.is-outsource-seo-page .faq-list-outsource {
  max-width: 760px;
  margin: 48px auto 0;
}

/* ──────────────────────────────────────────────
   CTA STRIP — Fire background
────────────────────────────────────────────── */
.is-outsource-seo-page #cta {
  background: var(--fire);
  padding: 96px 0;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.is-outsource-seo-page #cta::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 20% 50%, rgba(255,255,255,.07), transparent),
    radial-gradient(ellipse 50% 70% at 80% 50%, rgba(0,0,0,.1), transparent);
  pointer-events: none;
}
.is-outsource-seo-page #cta::after {
  content: 'OUTSOURCE';
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--ff-head);
  font-size: clamp(4rem, 15vw, 14rem);
  font-weight: 900;
  color: transparent;
  -webkit-text-stroke: 2px rgba(255,255,255,.07);
  letter-spacing: -.06em; line-height: 1;
  pointer-events: none; user-select: none; white-space: nowrap;
}
.is-outsource-seo-page .cta-inner {
  position: relative; z-index: 1;
  width: var(--w); margin: 0 auto;
}
.is-outsource-seo-page .cta-h {
  font-family: var(--ff-head);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 900; color: #fff;
  line-height: 1.15; letter-spacing: -.03em;
  margin-bottom: 18px;
}
.is-outsource-seo-page .cta-sub {
  font-size: 1.05rem; color: rgba(255,255,255,.85);
  line-height: 1.75; max-width: 600px;
  margin: 0 auto 36px;
}
.is-outsource-seo-page .cta-btns {
  display: flex; justify-content: center; gap: 14px; flex-wrap: wrap;
}
.btn-cta-white {
  display: inline-flex; align-items: center; gap: 9px;
  background: #fff; color: var(--fire);
  font-family: var(--ff-body); font-size: .95rem; font-weight: 700;
  padding: 14px 30px; border-radius: var(--r2);
  border: 2px solid transparent;
  box-shadow: 0 8px 28px rgba(0,0,0,.18);
  transition: all .25s var(--ease);
}
.btn-cta-white:hover {
  background: var(--ink); color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 14px 40px rgba(0,0,0,.28);
}

/* ──────────────────────────────────────────────
   REDUCED MOTION
────────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  .is-outsource-seo-page .hero-pill,
  .is-outsource-seo-page .hero-h1,
  .is-outsource-seo-page .hero-sub,
  .is-outsource-seo-page .hero-actions,
  .is-outsource-seo-page .hero-stats,
  .is-outsource-seo-page .hero-right-col {
    opacity: 1; animation: none;
  }
  .is-outsource-seo-page .pill-dot,
  .is-outsource-seo-page .ticker-track,
  .is-outsource-seo-page .float-badge {
    animation: none;
  }
  .rp-metric-row {
    opacity: 1; transform: none; animation: none;
  }
  .is-outsource-seo-page .h1-underline::after {
    transition: none;
  }
}
