/* ============================================================
   STYLE-SERVICES.CSS — SAF.Solutions Services Page
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --red:       #cc0000;
  --black:     #000000;
  --bg-1:      #0a0a0a;
  --bg-2:      #111111;
  --bg-3:      #181818;
  --border:    rgba(255,255,255,0.08);
  --white:     #ffffff;
  --gray:      #888888;
  --gray-lt:   #bbbbbb;
  --font:      'Inter', sans-serif;
  --display:   'Bebas Neue', sans-serif;
  --radius:    12px;
  --radius-lg: 20px;
  --max-w:     1160px;
  --transition: 0.25s ease;
}

html { scroll-behavior: smooth; }

/* Page-load red accent bar */
html::before {
  content: '';
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  width: 100%;
  background: linear-gradient(to right, #cc0000, #ff4444);
  z-index: 9999;
  transform: scaleX(0);
  transform-origin: left;
  animation: pageLoad 0.9s cubic-bezier(0.22,1,0.36,1) forwards;
}
@keyframes pageLoad {
  0%   { transform: scaleX(0); opacity: 1; }
  80%  { transform: scaleX(1); opacity: 1; }
  100% { transform: scaleX(1); opacity: 0; }
}

body {
  font-family: var(--font);
  background: var(--black);
  color: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a  { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: var(--font); }
ul { list-style: none; }

.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.red { color: var(--red); }
.eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 16px;
}
.section-header { text-align: center; margin-bottom: 64px; }
.section-header h2 {
  font-family: var(--display);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  line-height: 1.05;
  letter-spacing: 0.02em;
  margin-bottom: 16px;
}
.section-sub { font-size: 1rem; color: var(--gray-lt); max-width: 560px; margin: 0 auto; line-height: 1.75; }

.fade-in { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ============================================================
   NAVIGATION
   ============================================================ */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 24px;
  background: rgba(0,0,0,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: background var(--transition);
}
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  height: 68px;
  gap: 32px;
}
.logo {
  font-family: var(--display);
  font-size: 2rem;
  letter-spacing: 0.06em;
  color: var(--white);
  line-height: 1;
}
.logo span { color: var(--red); }
.nav-links { display: flex; gap: 28px; margin-left: auto; }
.nav-links a {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gray-lt);
  letter-spacing: 0.04em;
  transition: color var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: var(--white); }
.nav-cta-btn {
  background: var(--red);
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 700;
  padding: 10px 20px;
  border-radius: 8px;
  transition: background var(--transition), transform var(--transition);
  white-space: nowrap;
}
.nav-cta-btn:hover { background: #e60000; transform: translateY(-1px); }
.hamburger { display: none; flex-direction: column; gap: 5px; padding: 4px; }
.hamburger span { width: 22px; height: 2px; background: var(--white); border-radius: 1px; transition: all 0.3s ease; }
.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 0;
  padding: 16px 24px 20px;
  border-top: 1px solid var(--border);
}
.mobile-nav ul { display: flex; flex-direction: column; gap: 4px; margin-bottom: 16px; }
.mobile-nav a { font-size: 1rem; font-weight: 600; padding: 10px 0; display: block; color: var(--gray-lt); }
.mobile-cta { width: 100%; justify-content: center; font-size: 0.95rem; padding: 14px; border-radius: 10px; }
.mobile-nav.open { display: flex; }
.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--red); color: var(--white);
  font-size: 0.92rem; font-weight: 700; padding: 14px 28px;
  border-radius: 8px; transition: background var(--transition), transform var(--transition);
}
.btn-primary:hover { background: #e60000; transform: translateY(-2px); }

/* ============================================================
   HERO
   ============================================================ */
#sv-hero {
  padding: 140px 0 0;
  background: var(--black);
  overflow: hidden;
}
.sv-hero-inner {
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
  padding-bottom: 64px;
}
.sv-hero-inner h1 {
  font-family: var(--display);
  font-size: clamp(3rem, 7vw, 5.5rem);
  line-height: 1.0;
  letter-spacing: 0.02em;
  margin-bottom: 24px;
}
.sv-hero-sub {
  font-size: 1.1rem;
  color: var(--gray-lt);
  max-width: 620px;
  margin: 0 auto 40px;
  line-height: 1.7;
}
.sv-hero-pills {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.sv-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 40px;
  padding: 10px 20px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gray-lt);
  transition: all var(--transition);
}
.sv-pill span {
  font-family: var(--display);
  font-size: 1rem;
  color: var(--red);
  line-height: 1;
}
.sv-pill:hover {
  border-color: rgba(204,0,0,0.4);
  color: var(--white);
  background: var(--bg-3);
}
.sv-hero-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 18px 32px;
  background: linear-gradient(135deg, #0d0d0d, #161616, #0d0d0d);
  border-top: 1px solid rgba(204,0,0,0.2);
  border-bottom: 1px solid rgba(204,0,0,0.2);
  flex-wrap: wrap;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gray-lt);
  letter-spacing: 0.04em;
}
.sv-hero-bar i { color: var(--red); margin-right: 6px; }
.sv-bar-div { width: 1px; height: 18px; background: var(--border); flex-shrink: 0; }

/* ============================================================
   SERVICE SECTIONS
   ============================================================ */
.sv-section {
  padding: 100px 0;
  background: var(--black);
}
.sv-section.sv-alt {
  background: var(--bg-1);
}
.sv-separator {
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(204,0,0,0.3), transparent);
}

/* Section intro */
.sv-intro {
  display: flex;
  align-items: flex-start;
  gap: 28px;
  margin-bottom: 60px;
}
.sv-num-badge {
  font-family: var(--display);
  font-size: 5rem;
  color: rgba(204,0,0,0.15);
  line-height: 1;
  letter-spacing: 0.02em;
  flex-shrink: 0;
  margin-top: -8px;
}
.sv-intro-text { flex: 1; }
.sv-intro-text h2 {
  font-family: var(--display);
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  line-height: 1.05;
  letter-spacing: 0.02em;
  margin-bottom: 16px;
}
.sv-tagline {
  font-size: 1.05rem;
  color: var(--gray-lt);
  max-width: 640px;
  line-height: 1.65;
}

/* Two-column layout */
.sv-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}
.sv-layout-rev { direction: rtl; }
.sv-layout-rev > * { direction: ltr; }

/* Problem block */
.sv-problem-block, .sv-solution-block {
  margin-bottom: 40px;
}
.sv-block-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 14px;
}
.sv-block-label i { color: var(--red); }
.sv-solution-label { color: var(--gray-lt); }
.sv-problem-block p, .sv-solution-block p {
  font-size: 0.97rem;
  color: var(--gray-lt);
  line-height: 1.75;
  margin-bottom: 14px;
}
.sv-problem-block p:last-child, .sv-solution-block p:last-child { margin-bottom: 0; }

/* Deliverables */
.sv-deliverables h4 {
  font-family: var(--display);
  font-size: 1.4rem;
  letter-spacing: 0.04em;
  margin-bottom: 20px;
  color: var(--white);
}
.sv-deliverables ul { display: flex; flex-direction: column; gap: 18px; }
.sv-deliverables li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.sv-del-icon {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: rgba(204,0,0,0.1);
  border: 1px solid rgba(204,0,0,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.88rem;
  color: var(--red);
  flex-shrink: 0;
}
.sv-deliverables li > div:last-child {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}
.sv-deliverables strong {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--white);
  display: block;
}
.sv-deliverables span {
  font-size: 0.84rem;
  color: var(--gray-lt);
  line-height: 1.55;
}

/* Outcome card */
.sv-outcome-card {
  background: var(--bg-2);
  border: 1px solid rgba(204,0,0,0.25);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 28px;
  box-shadow: 0 0 40px rgba(204,0,0,0.06);
}
.sv-oc-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 18px 24px;
  border-bottom: 1px solid var(--border);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-lt);
}
.sv-oc-header i { color: var(--red); }
.sv-oc-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
}
.sv-oc-metric {
  background: var(--bg-2);
  padding: 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.sv-oc-num {
  font-family: var(--display);
  font-size: 2rem;
  color: var(--red);
  line-height: 1;
  letter-spacing: 0.02em;
}
.sv-oc-label {
  font-size: 0.73rem;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  line-height: 1.35;
}

/* Testimonial pull-quote */
.sv-testi-pull {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 28px 24px;
  margin-bottom: 28px;
  position: relative;
}
.sv-testi-quote {
  font-family: var(--display);
  font-size: 5rem;
  color: rgba(204,0,0,0.12);
  line-height: 0.6;
  margin-bottom: 12px;
}
.sv-testi-pull p {
  font-size: 0.92rem;
  color: var(--gray-lt);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 20px;
}
.sv-testi-attr {
  display: flex;
  align-items: center;
  gap: 12px;
}
.sv-testi-initials {
  width: 40px; height: 40px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--display);
  font-size: 0.9rem;
  color: var(--white);
  flex-shrink: 0;
}
.sv-testi-attr strong { font-size: 0.88rem; font-weight: 700; display: block; }
.sv-testi-attr span { font-size: 0.76rem; color: var(--gray); }

/* For who / Not for */
.sv-for-who, .sv-not-for {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin-bottom: 20px;
}
.sv-fw-label, .sv-nf-label {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.sv-fw-label { color: #22c55e; }
.sv-nf-label { color: var(--gray); }
.sv-for-who ul, .sv-not-for ul { display: flex; flex-direction: column; gap: 10px; }
.sv-for-who li, .sv-not-for li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.85rem;
  line-height: 1.5;
}
.sv-for-who i { color: #22c55e; flex-shrink: 0; margin-top: 3px; }
.sv-not-for i { color: var(--gray); flex-shrink: 0; margin-top: 3px; }

/* CTA button + proof link */
.sv-cta-btn {
  width: 100%;
  background: var(--red);
  color: var(--white);
  font-size: 0.96rem;
  font-weight: 700;
  padding: 18px 28px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 16px;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  letter-spacing: 0.02em;
}
.sv-cta-btn:hover {
  background: #e60000;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(204,0,0,0.35);
}
.sv-proof-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--gray);
  transition: color var(--transition);
  text-decoration: underline;
  text-decoration-color: transparent;
  text-underline-offset: 3px;
}
.sv-proof-link:hover {
  color: var(--red);
  text-decoration-color: var(--red);
}

/* ============================================================
   COMPARISON TABLE
   ============================================================ */
#sv-compare {
  padding: 100px 0;
  background: var(--bg-1);
  border-top: 1px solid var(--border);
}
.sv-compare-wrap {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: 0 24px 64px rgba(0,0,0,0.5);
}
.sv-compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}
.sv-compare-table th, .sv-compare-table td {
  padding: 16px 24px;
  text-align: left;
  border-bottom: 1px solid var(--border);
  vertical-align: middle;
}
.sv-compare-table tr:last-child td { border-bottom: none; }
.sv-compare-table thead th {
  background: var(--bg-3);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.th-typical { color: var(--gray); }
.th-saf {
  color: var(--red);
  background: rgba(204,0,0,0.06);
  border-bottom: 2px solid rgba(204,0,0,0.3);
}
.th-saf span { color: #ffcc00; margin-left: 4px; }
.sv-compare-table td:first-child {
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--white);
  background: var(--bg-2);
  min-width: 200px;
}
.td-typical { color: var(--gray-lt); background: var(--bg-2); }
.td-saf {
  color: var(--white);
  background: rgba(204,0,0,0.03);
  font-weight: 500;
}
.sv-compare-table tr:hover td { background: var(--bg-3); }
.sv-compare-table tr:hover .td-saf { background: rgba(204,0,0,0.07); }
.pos { color: #22c55e; margin-right: 6px; }
.neg { color: #ef4444; margin-right: 6px; }

/* ============================================================
   PROCESS STEPS
   ============================================================ */
#sv-process {
  padding: 100px 0;
  background: var(--black);
}
.sv-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  justify-content: center;
  flex-wrap: nowrap;
  overflow-x: auto;
  padding-bottom: 12px;
}
.sv-step {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  min-width: 220px;
  max-width: 240px;
  position: relative;
  flex: 1;
}
.sv-step::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--red);
  border-radius: 2px 2px 0 0;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.sv-step:hover::before { transform: scaleX(1); }
.sv-step-num {
  font-family: var(--display);
  font-size: 3rem;
  color: rgba(204,0,0,0.2);
  line-height: 1;
  margin-bottom: 12px;
  letter-spacing: 0.02em;
}
.sv-step h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
  line-height: 1.3;
}
.sv-step p {
  font-size: 0.84rem;
  color: var(--gray-lt);
  line-height: 1.6;
  margin-bottom: 16px;
}
.sv-step-time {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--red);
  background: rgba(204,0,0,0.08);
  padding: 3px 10px;
  border-radius: 20px;
}
.sv-step-arrow {
  color: rgba(204,0,0,0.3);
  font-size: 1.2rem;
  padding: 0 10px;
  display: flex;
  align-items: center;
  padding-top: 48px;
  flex-shrink: 0;
}

/* ============================================================
   FINAL CTA
   ============================================================ */
#sv-cta {
  padding: 120px 0;
  background: var(--bg-1);
  border-top: 1px solid var(--border);
}
.sv-cta-inner {
  max-width: 740px;
  margin: 0 auto;
  text-align: center;
}
.sv-cta-inner h2 {
  font-family: var(--display);
  font-size: clamp(2.8rem, 6vw, 4.8rem);
  line-height: 1.0;
  letter-spacing: 0.02em;
  margin-bottom: 24px;
}
.sv-cta-inner p {
  font-size: 1rem;
  color: var(--gray-lt);
  line-height: 1.75;
  margin-bottom: 44px;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}
.sv-cta-big {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--red);
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 700;
  padding: 22px 52px;
  border-radius: 12px;
  margin-bottom: 20px;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  letter-spacing: 0.02em;
}
.sv-cta-big:hover {
  background: #e60000;
  transform: translateY(-3px);
  box-shadow: 0 16px 48px rgba(204,0,0,0.4);
}
.sv-cta-note {
  font-size: 0.8rem !important;
  color: var(--gray) !important;
  margin-bottom: 0 !important;
}

/* ============================================================
   FOOTER
   ============================================================ */
#footer {
  padding: 48px 0;
  border-top: 1px solid var(--border);
  background: var(--black);
}
.footer-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.footer-logo {
  font-family: var(--display);
  font-size: 1.8rem;
  letter-spacing: 0.06em;
  color: var(--white);
}
.footer-logo span { color: var(--red); }
.footer-nav {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-nav a {
  font-size: 0.83rem;
  color: var(--gray);
  transition: color var(--transition);
}
.footer-nav a:hover { color: var(--white); }
.footer-copy {
  margin-left: auto;
  font-size: 0.78rem;
  color: var(--gray);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 960px) {
  .sv-layout { grid-template-columns: 1fr; gap: 40px; }
  .sv-layout-rev { direction: ltr; }
  .sv-steps { flex-wrap: wrap; gap: 16px; justify-content: flex-start; }
  .sv-step-arrow { display: none; }
  .sv-step { min-width: 200px; flex: 0 0 calc(50% - 8px); max-width: none; }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta-btn { display: none; }
  .hamburger { display: flex; }
  #sv-hero { padding: 110px 0 0; }
  .sv-hero-inner h1 { font-size: 2.8rem; }
  .sv-hero-bar { gap: 12px; font-size: 0.72rem; padding: 14px 20px; }
  .sv-bar-div { display: none; }
  .sv-section { padding: 72px 0; }
  .sv-intro { flex-direction: column; gap: 12px; }
  .sv-num-badge { font-size: 3.5rem; }
  .sv-compare-table th, .sv-compare-table td { padding: 12px 16px; font-size: 0.82rem; }
  .sv-step { flex: 0 0 100%; max-width: none; }
  #sv-compare { padding: 72px 0; }
  #sv-process { padding: 72px 0; }
  #sv-cta { padding: 80px 0; }
  .sv-cta-big { padding: 18px 32px; font-size: 0.95rem; }
  .footer-inner { flex-direction: column; align-items: flex-start; gap: 20px; }
  .footer-copy { margin-left: 0; }
}

@media (max-width: 480px) {
  .sv-hero-pills { flex-direction: column; align-items: center; }
  .sv-oc-metrics { grid-template-columns: 1fr 1fr; }
}

/* ============================================================
   DYNAMIC / ANIMATED ENHANCEMENTS
   ============================================================ */

/* ── Hero entrance stagger ── */
@keyframes heroUp {
  from { opacity: 0; transform: translateY(36px); }
  to   { opacity: 1; transform: translateY(0); }
}
.sv-hero-inner .eyebrow {
  animation: heroUp 0.7s cubic-bezier(0.22,1,0.36,1) both;
  animation-delay: 0.1s;
}
.sv-hero-inner h1 {
  animation: heroUp 0.85s cubic-bezier(0.22,1,0.36,1) both;
  animation-delay: 0.25s;
}
.sv-hero-inner > p {
  animation: heroUp 0.7s cubic-bezier(0.22,1,0.36,1) both;
  animation-delay: 0.42s;
}
.sv-hero-bar {
  animation: heroUp 0.65s cubic-bezier(0.22,1,0.36,1) both;
  animation-delay: 0.56s;
}
.sv-hero-pills {
  animation: heroUp 0.6s cubic-bezier(0.22,1,0.36,1) both;
  animation-delay: 0.7s;
}

/* Section header reveal */
.section-header.fade-in { transform: translateY(20px); }

/* Outcome card entrance */
.sv-outcome-card {
  transition: transform 0.65s cubic-bezier(0.22,1,0.36,1), opacity 0.65s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

/* Service section number badge glow on hover */
.sv-section:hover .sv-num-badge {
  color: rgba(204,0,0,0.45);
  transition: color 0.4s ease;
}

/* Eyebrow animated underline — consistent with home */
.eyebrow::after {
  content: '';
  display: block;
  height: 2px;
  background: var(--red);
  width: 0;
  margin-top: 6px;
  border-radius: 2px;
  animation: lineExpand 0.8s cubic-bezier(0.22,1,0.36,1) forwards;
  animation-delay: 0.3s;
}
@keyframes lineExpand {
  from { width: 0; }
  to   { width: 40px; }
}

/* Hero animated red glow orbs */
#sv-hero { position: relative; }
#sv-hero::before,
#sv-hero::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}
#sv-hero::before {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(204,0,0,0.06) 0%, transparent 70%);
  top: -100px; left: -200px;
  animation: orbFloat 8s ease-in-out infinite;
}
#sv-hero::after {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(204,0,0,0.05) 0%, transparent 70%);
  top: 60px; right: -100px;
  animation: orbFloat 10s ease-in-out infinite reverse;
}
#sv-hero > * { position: relative; z-index: 1; }

@keyframes orbFloat {
  0%,100% { transform: translateY(0) scale(1); }
  50%      { transform: translateY(-30px) scale(1.05); }
}

/* Outcome card — counter pulse on visible */
.sv-oc-num {
  transition: color 0.3s ease;
}
.sv-oc-metric:hover .sv-oc-num {
  color: #ff2222;
  text-shadow: 0 0 20px rgba(204,0,0,0.4);
}

/* Deliverables — stagger fade-in + hover left-border */
.sv-deliverables li {
  opacity: 0;
  transform: translateX(-12px);
  transition: opacity 0.45s ease, transform 0.45s ease;
  position: relative;
  padding-left: 0;
}
.sv-deliverables li.del-visible {
  opacity: 1;
  transform: translateX(0);
}
.sv-deliverables li::before {
  content: '';
  position: absolute;
  left: -12px; top: 0; bottom: 0;
  width: 2px;
  background: var(--red);
  border-radius: 2px;
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.35s ease 0.1s;
}
.sv-deliverables li.del-visible::before { transform: scaleY(1); }

/* CTA section animated bg line */
#sv-cta { position: relative; overflow: hidden; }
#sv-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(204,0,0,0.07) 0%, transparent 70%);
  pointer-events: none;
}

/* Comparison table SAF column glow */
.td-saf {
  position: relative;
}
.sv-compare-table tbody tr:hover .td-saf {
  box-shadow: inset 3px 0 0 var(--red);
}

/* Pill hover animation */
.sv-pill {
  position: relative;
  overflow: hidden;
}
.sv-pill::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(204,0,0,0.07);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
  border-radius: inherit;
}
.sv-pill:hover::after { transform: scaleX(1); }

/* Process step hover lift */
.sv-step {
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.sv-step:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 48px rgba(0,0,0,0.5);
  border-color: rgba(204,0,0,0.2);
}

/* Hero pills number spin on hover */
.sv-pill:hover span {
  animation: numSpin 0.4s ease;
}
@keyframes numSpin {
  0%   { transform: rotateX(0deg); }
  50%  { transform: rotateX(90deg); }
  100% { transform: rotateX(0deg); }
}

/* Outcome metric number count-up effect: numbers get a subtle flash */
.sv-oc-metric.counted .sv-oc-num {
  animation: numFlash 0.5s ease;
}
@keyframes numFlash {
  0%   { color: var(--red); }
  50%  { color: #ff6666; text-shadow: 0 0 14px rgba(204,0,0,0.5); }
  100% { color: var(--red); }
}
