/* ═══════════════════════════════════════════════════════════
   SERVICE PAGE  ·  fenizo-wp-theme/assets/css/service.css
═══════════════════════════════════════════════════════════ */

/* ── SCROLL-ANIMATION BASE ─────────────────────────────── */
[data-svc-anim] {
  opacity: 0;
  transition: opacity 0.65s cubic-bezier(0.16,1,0.3,1),
              transform 0.65s cubic-bezier(0.16,1,0.3,1);
  will-change: opacity, transform;
}
[data-svc-anim="up"]    { transform: translateY(48px); }
[data-svc-anim="down"]  { transform: translateY(-32px); }
[data-svc-anim="left"]  { transform: translateX(-56px); }
[data-svc-anim="right"] { transform: translateX(56px); }
[data-svc-anim="scale"] { transform: scale(0.88); }
[data-svc-anim="zoom"]  { transform: scale(0.7) translateY(30px); }
[data-svc-anim].svc-visible {
  opacity: 1 !important;
  transform: none !important;
}
/* Stagger delays */
[data-svc-delay="1"]  { transition-delay: 0.08s; }
[data-svc-delay="2"]  { transition-delay: 0.16s; }
[data-svc-delay="3"]  { transition-delay: 0.24s; }
[data-svc-delay="4"]  { transition-delay: 0.32s; }
[data-svc-delay="5"]  { transition-delay: 0.40s; }
[data-svc-delay="6"]  { transition-delay: 0.48s; }
[data-svc-delay="7"]  { transition-delay: 0.56s; }
[data-svc-delay="8"]  { transition-delay: 0.64s; }
[data-svc-delay="9"]  { transition-delay: 0.72s; }
[data-svc-delay="10"] { transition-delay: 0.80s; }
[data-svc-delay="11"] { transition-delay: 0.88s; }
[data-svc-delay="12"] { transition-delay: 0.96s; }
[data-svc-delay="13"] { transition-delay: 1.04s; }

/* ── SHARED ─────────────────────────────────────────────── */
.svc-page-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 5%;
}
.svc-page-section { padding: 110px 0; }
.svc-page-section-head {
  text-align: center;
  margin-bottom: 64px;
}
.svc-page-section-sub {
  font-size: 1.05rem;
  max-width: 560px;
  margin: 14px auto 0;
  line-height: 1.75;
}

/* ═══════════════════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════════════════ */
.svc-page-hero {
  position: relative;
  min-height: 88vh;
  background: #06060f;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 130px 5% 90px;
}

/* animated mesh gradient */
.svc-page-hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 65% 35%,  color-mix(in srgb, var(--svc-accent) 28%, transparent), transparent 70%),
    radial-gradient(ellipse 45% 55% at 5%  75%,  color-mix(in srgb, var(--svc-accent) 14%, transparent), transparent 65%),
    radial-gradient(ellipse 30% 40% at 85% 85%,  rgba(255,255,255,0.03), transparent 50%);
  animation: svc-bg-shift 12s ease-in-out infinite alternate;
}
@keyframes svc-bg-shift {
  0%   { opacity: 1; transform: scale(1); }
  100% { opacity: 0.85; transform: scale(1.04) translateY(-6px); }
}

/* noise grain overlay */
.svc-page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 1;
}

/* animated grid lines */
.svc-page-hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 72px 72px;
  z-index: 1;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 0%, transparent 75%);
}

.svc-page-hero-inner {
  position: relative;
  z-index: 3;
  max-width: 720px;
}

/* breadcrumb */
.svc-page-breadcrumb {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.77rem;
  color: rgba(255,255,255,0.35);
  margin-bottom: 28px;
  animation: svc-fade-in 0.7s 0.1s both;
}
.svc-page-breadcrumb a {
  color: rgba(255,255,255,0.35);
  text-decoration: none;
  transition: color 0.2s;
}
.svc-page-breadcrumb a:hover { color: #fff; }
.svc-page-breadcrumb-sep { font-size: 0.55rem; opacity: 0.4; }

/* eyebrow */
.svc-page-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 22px;
  padding: 6px 14px;
  border-radius: 99px;
  background: color-mix(in srgb, var(--svc-accent) 15%, transparent);
  border: 1px solid color-mix(in srgb, var(--svc-accent) 40%, transparent);
  color: var(--svc-accent);
  animation: svc-fade-in 0.7s 0.2s both;
}
.svc-page-eyebrow-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  display: inline-block;
  animation: svc-pulse 2s ease-in-out infinite;
  box-shadow: 0 0 8px currentColor;
}
@keyframes svc-pulse {
  0%,100% { opacity:1; transform:scale(1); box-shadow:0 0 6px currentColor; }
  50%     { opacity:0.6; transform:scale(1.5); box-shadow:0 0 12px currentColor; }
}
@keyframes svc-fade-in {
  from { opacity:0; transform:translateY(14px); }
  to   { opacity:1; transform:none; }
}

.svc-page-hero-title {
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.04em;
  margin-bottom: 22px;
  color: #fff;
  animation: svc-fade-in 0.8s 0.3s both;
}
.svc-page-hero-title .accent-word {
  background: linear-gradient(135deg, var(--svc-accent), color-mix(in srgb, var(--svc-accent) 60%, #fff));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.svc-page-hero-sub {
  font-size: 1.12rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.75;
  max-width: 580px;
  margin-bottom: 40px;
  animation: svc-fade-in 0.8s 0.45s both;
}
.svc-page-hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  animation: svc-fade-in 0.8s 0.6s both;
}
.svc-page-hero-actions .btn-out {
  color: #fff;
  border-color: rgba(255,255,255,0.25);
  backdrop-filter: blur(8px);
}
.svc-page-hero-actions .btn-out:hover { background: rgba(255,255,255,0.08); }

/* hero floating shapes */
.svc-page-hero-shapes { position:absolute; inset:0; pointer-events:none; z-index:2; }
.svc-page-shape { position:absolute; border-radius:50%; }
.svc-page-shape--1 {
  width: 440px; height: 440px;
  right: -80px; top: -100px;
  opacity: 0.1;
  animation: svc-float1 9s ease-in-out infinite;
  filter: blur(1px);
}
.svc-page-shape--2 {
  width: 240px; height: 240px;
  right: 18%; bottom: 8%;
  background: rgba(255,255,255,0.02);
  animation: svc-float2 11s ease-in-out infinite;
}
.svc-page-shape--3 {
  width: 160px; height: 160px;
  right: 7%; top: 32%;
  background: transparent;
  border: 1px solid;
  opacity: 0.18;
  animation: svc-float3 7s ease-in-out infinite;
}
/* small orbiting dot */
.svc-page-shape--4 {
  width: 10px; height: 10px;
  right: 30%; top: 25%;
  border-radius: 50%;
  opacity: 0.5;
  animation: svc-orbit 6s linear infinite;
}
@keyframes svc-float1 { 0%,100%{transform:translate(0,0) rotate(0deg);} 50%{transform:translate(-24px,24px) rotate(25deg);} }
@keyframes svc-float2 { 0%,100%{transform:translate(0,0);} 50%{transform:translate(12px,-24px);} }
@keyframes svc-float3 { 0%,100%{transform:rotate(0deg) scale(1);} 50%{transform:rotate(50deg) scale(1.12);} }
@keyframes svc-orbit  { from{transform:rotate(0deg) translateX(80px) rotate(0deg);} to{transform:rotate(360deg) translateX(80px) rotate(-360deg);} }

/* ═══════════════════════════════════════════════════════════
   HERO VISUAL (per-service right-side animations)
═══════════════════════════════════════════════════════════ */
.svc-hero-visual {
  position: absolute;
  right: 5%; top: 50%;
  transform: translateY(-50%);
  width: 420px; height: 420px;
  z-index: 3; pointer-events: none;
  display: flex; align-items: center; justify-content: center;
}
.shv { width: 100%; height: 100%; position: relative; display: flex; align-items: center; justify-content: center; }

/* shared float animation */
@keyframes shv-float-a { 0%,100%{transform:translateY(0) rotate(0deg);} 50%{transform:translateY(-12px) rotate(6deg);} }
@keyframes shv-float-b { 0%,100%{transform:translateY(0) rotate(0deg);} 50%{transform:translateY(-18px) rotate(-8deg);} }
@keyframes shv-float-c { 0%,100%{transform:translateY(0) rotate(0deg);} 50%{transform:translateY(-8px) rotate(12deg);} }
@keyframes shv-pulse-ring { 0%{transform:translate(-50%,-50%) scale(0.8); opacity:.6;} 100%{transform:translate(-50%,-50%) scale(1.6); opacity:0;} }
@keyframes shv-blink { 0%,100%{opacity:1;} 50%{opacity:.35;} }
@keyframes shv-spin-slow { from{transform:rotate(0deg);} to{transform:rotate(360deg);} }

/* ── SHARED FLOAT NODES ── */
.shv-float {
  position: absolute;
  width: 44px; height: 44px; border-radius: 12px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  display: flex; align-items: center; justify-content: center;
  color: var(--svc-accent); font-size: 1.1rem;
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}
.shv-float--1 { top: 8%;  left: 5%;   animation: shv-float-a 4s ease-in-out infinite; }
.shv-float--2 { top: 12%; right: 2%;  animation: shv-float-b 5s ease-in-out infinite 0.8s; }
.shv-float--3 { bottom: 20%; left: 2%;  animation: shv-float-c 3.5s ease-in-out infinite 0.4s; }
.shv-float--4 { bottom: 8%;  right: 8%; animation: shv-float-a 4.5s ease-in-out infinite 1.2s; }

/* ──────────────────────────────────────────
   MOBILE APP
─────────────────────────────────────────── */
.shv-mobile { }
.shv-ring {
  position: absolute; left: 50%; top: 50%;
  border-radius: 50%;
  border: 1px solid rgba(14,165,233,0.2);
  pointer-events: none;
}
.shv-ring--1 { width: 240px; height: 240px; margin: -120px 0 0 -120px; animation: shv-pulse-ring 3s ease-out infinite; }
.shv-ring--2 { width: 310px; height: 310px; margin: -155px 0 0 -155px; animation: shv-pulse-ring 3s ease-out infinite 1s; }
.shv-phone {
  width: 160px; height: 290px;
  background: rgba(255,255,255,0.04);
  border: 1.5px solid rgba(255,255,255,0.15);
  border-radius: 28px;
  backdrop-filter: blur(12px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.1);
  display: flex; flex-direction: column; align-items: center;
  padding: 12px 8px 14px;
  position: relative; z-index: 2;
  animation: shv-float-a 5s ease-in-out infinite;
}
.shv-phone-notch {
  width: 48px; height: 8px; background: rgba(255,255,255,0.12);
  border-radius: 99px; margin-bottom: 10px; flex-shrink: 0;
}
.shv-phone-screen { flex: 1; width: 100%; }
.shv-phone-bar {
  height: 6px; background: rgba(255,255,255,0.1);
  border-radius: 4px; margin-bottom: 7px; width: 75%;
}
.shv-phone-bar--sm { width: 50%; }
.shv-phone-apps {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px; margin-top: 10px;
}
.shv-app-icon {
  width: 34px; height: 34px; border-radius: 10px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  color: var(--svc-accent); font-size: 0.75rem;
  animation: shv-blink 2s ease-in-out infinite;
}
.shv-app-icon--2 { animation-delay: 0.4s; }
.shv-app-icon--3 { animation-delay: 0.8s; }
.shv-app-icon--4 { animation-delay: 1.2s; }
.shv-app-icon--5 { animation-delay: 1.6s; }
.shv-app-icon--6 { animation-delay: 2s; }

/* ──────────────────────────────────────────
   WEB DEVELOPMENT
─────────────────────────────────────────── */
.shv-browser {
  width: 340px; background: rgba(255,255,255,0.04);
  border: 1.5px solid rgba(255,255,255,0.12);
  border-radius: 16px; overflow: hidden;
  box-shadow: 0 24px 60px rgba(0,0,0,0.4);
  backdrop-filter: blur(10px);
  animation: shv-float-b 6s ease-in-out infinite;
  position: relative; z-index: 2;
}
.shv-browser-bar {
  display: flex; align-items: center; gap: 6px;
  padding: 10px 14px;
  background: rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.shv-dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }
.shv-dot--r { background: #ff5f57; }
.shv-dot--y { background: #ffbd2e; }
.shv-dot--g { background: #28c840; }
.shv-url-bar {
  flex: 1; background: rgba(255,255,255,0.06);
  border-radius: 6px; padding: 3px 8px;
  font-size: 0.62rem; color: rgba(255,255,255,0.35);
  display: flex; align-items: center; gap: 5px;
  margin-left: 6px;
}
.shv-browser-body { padding: 16px 16px 20px; font-size: 0.72rem; font-family: 'Courier New', monospace; }
.shv-code-line {
  line-height: 1.8; opacity: 0;
  animation: shv-code-appear .3s ease forwards;
}
.shv-code-line--2 { animation-delay: .5s; }
.shv-code-line--3 { animation-delay: 1s; }
.shv-code-line--4 { animation-delay: 1.5s; }
.shv-code-line--5 { animation-delay: 2s; }
.shv-indent { padding-left: 16px; }
@keyframes shv-code-appear { from{opacity:0; transform:translateX(-6px);} to{opacity:1; transform:none;} }
.shv-kw  { color: #c678dd; }
.shv-var { color: #e06c75; }
.shv-fn  { color: #61afef; }
.shv-op  { color: rgba(255,255,255,0.5); }
.shv-str { color: #98c379; }
.shv-cm  { color: rgba(255,255,255,0.3); font-style: italic; }
.shv-cursor {
  display: inline-block; width: 2px; height: 14px;
  background: var(--svc-accent); vertical-align: middle;
  animation: shv-blink 1s step-end infinite;
  margin-top: 4px;
}

/* ──────────────────────────────────────────
   CYBERSECURITY
─────────────────────────────────────────── */
.shv-cyber { }
.shv-hex-wrap {
  position: relative; width: 180px; height: 180px;
  display: flex; align-items: center; justify-content: center;
}
.shv-hex-ring {
  position: absolute; border-radius: 50%;
  border: 1.5px solid rgba(14,165,233,0.25);
}
.shv-hex-ring--1 { width: 180px; height: 180px; animation: shv-spin-slow 12s linear infinite; }
.shv-hex-ring--2 { width: 130px; height: 130px; animation: shv-spin-slow 8s linear infinite reverse; border-style: dashed; }
.shv-hex-ring--3 { width: 80px;  height: 80px;  animation: shv-spin-slow 5s linear infinite; }
.shv-shield {
  font-size: 3.2rem; color: var(--svc-accent);
  text-shadow: 0 0 30px var(--svc-accent);
  animation: shv-blink 2.5s ease-in-out infinite;
  z-index: 2;
}
.shv-scan-line {
  position: absolute; left: 0; right: 0;
  height: 2px; top: 0;
  background: linear-gradient(90deg, transparent, var(--svc-accent), transparent);
  opacity: .7;
  animation: shv-scan 2.8s ease-in-out infinite;
}
@keyframes shv-scan { 0%{top:0; opacity:0;} 15%{opacity:.7;} 85%{opacity:.7;} 100%{top:100%; opacity:0;} }
.shv-cyber-node {
  position: absolute;
  width: 46px; height: 46px; border-radius: 12px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  display: flex; align-items: center; justify-content: center;
  color: var(--svc-accent); font-size: 1rem;
  backdrop-filter: blur(8px);
}
.shv-cyber-node--1 { top: 5%;   left: 5%;   animation: shv-float-a 4s ease-in-out infinite; }
.shv-cyber-node--2 { top: 5%;   right: 5%;  animation: shv-float-b 5s ease-in-out infinite .6s; }
.shv-cyber-node--3 { bottom: 5%; left: 5%;  animation: shv-float-c 3.5s ease-in-out infinite .3s; }
.shv-cyber-node--4 { bottom: 5%; right: 5%; animation: shv-float-a 4.5s ease-in-out infinite 1s; }
.shv-cyber-beam {
  position: absolute; height: 1px; background: linear-gradient(90deg, var(--svc-accent), transparent);
  opacity: .3; transform-origin: left center;
}
.shv-cyber-beam--1 { width: 90px; top: 17%;  left: 17%;  transform: rotate(25deg);  animation: shv-blink 2s ease-in-out infinite; }
.shv-cyber-beam--2 { width: 90px; top: 17%;  right: 17%; transform: rotate(-25deg); animation: shv-blink 2s ease-in-out infinite .5s; }
.shv-cyber-beam--3 { width: 90px; bottom: 17%; left: 17%;  transform: rotate(-25deg); animation: shv-blink 2s ease-in-out infinite 1s; }
.shv-cyber-beam--4 { width: 90px; bottom: 17%; right: 17%; transform: rotate(25deg);  animation: shv-blink 2s ease-in-out infinite 1.5s; }

/* ──────────────────────────────────────────
   AI / MACHINE LEARNING
─────────────────────────────────────────── */
.shv-ai { gap: 16px; align-items: center; justify-content: center; }
/* dashboard card */
.shv-ai-card {
  width: 195px; flex-shrink: 0;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px; padding: 16px 14px;
  backdrop-filter: blur(12px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.4);
  animation: shv-float-a 6s ease-in-out infinite;
}
.shv-ai-card-head {
  display: flex; align-items: center; gap: 6px;
  margin-bottom: 14px;
}
.shv-ai-status-dot {
  width: 8px; height: 8px; border-radius: 50%; background: #22c55e;
  animation: shv-blink 1.4s ease-in-out infinite;
}
.shv-ai-status-txt { font-size: 0.68rem; font-weight: 600; color: rgba(255,255,255,0.7); flex: 1; }
.shv-ai-epoch { font-size: 0.6rem; color: rgba(255,255,255,0.3); }
/* metric rows */
.shv-ai-rows { display: flex; flex-direction: column; gap: 8px; margin-bottom: 12px; }
.shv-ai-row {
  display: flex; align-items: center; gap: 6px;
  font-size: 0.62rem; color: rgba(255,255,255,0.45);
}
.shv-ai-track {
  flex: 1; height: 4px; background: rgba(255,255,255,0.08);
  border-radius: 99px; overflow: hidden;
}
.shv-ai-fill {
  height: 100%; border-radius: 99px;
  background: linear-gradient(90deg, var(--svc-accent), #6366f1);
  animation: shv-bar-grow 1.5s ease forwards;
}
.shv-ai-f--1 { --ai-w: 98.2%; animation-delay: .2s; }
.shv-ai-f--2 { --ai-w: 96.7%; animation-delay: .4s; }
.shv-ai-f--3 { --ai-w: 94.5%; animation-delay: .6s; }
.shv-ai-f--4 { --ai-w: 95.6%; animation-delay: .8s; }
@keyframes shv-bar-grow { from{width:0;} to{width:var(--ai-w,80%);} }
.shv-ai-val { font-size: 0.6rem; font-weight: 700; color: var(--svc-accent); min-width: 32px; text-align: right; }
/* loss curve */
.shv-ai-loss-wrap {
  display: flex; align-items: center; gap: 6px;
  font-size: 0.6rem; color: rgba(255,255,255,0.35);
  margin-bottom: 10px;
}
.shv-ai-loss-svg { flex: 1; height: 28px; }
.shv-ai-loss-line {
  stroke: #22c55e; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round;
  stroke-dasharray: 300; stroke-dashoffset: 300;
  animation: shv-draw-line 2s ease 1s forwards;
}
@keyframes shv-draw-line { to { stroke-dashoffset: 0; } }
.shv-ai-loss-dot { fill: #22c55e; animation: shv-blink 1.5s ease-in-out infinite; }
.shv-ai-loss-num { color: #22c55e; font-weight: 700; white-space: nowrap; }
/* chips */
.shv-ai-chips { display: flex; gap: 4px; flex-wrap: wrap; }
.shv-ai-chip {
  font-size: 0.58rem; font-weight: 600; padding: 3px 7px; border-radius: 99px;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.45);
}
.shv-ai-chip--on {
  background: rgba(14,165,233,0.15); border-color: rgba(14,165,233,0.4);
  color: var(--svc-accent); animation: shv-blink 2s ease-in-out infinite;
}
/* brain SVG */
.shv-ai-brain { flex-shrink: 0; }
.shv-ai-brain-svg { width: 180px; height: 180px; }
.shv-ai-be {
  stroke: rgba(14,165,233,0.2); stroke-width: 1;
  animation: shv-edge-glow 3s ease-in-out infinite alternate;
}
@keyframes shv-edge-glow { 0%{stroke:rgba(255,255,255,0.06);} 100%{stroke:rgba(14,165,233,0.45);} }
.shv-ai-be--o { stroke: rgba(255,255,255,0.1); animation-delay: .5s; }
.shv-ai-bn--c {
  fill: var(--svc-accent); filter: drop-shadow(0 0 10px rgba(14,165,233,0.8));
  animation: shv-node-pulse 2s ease-in-out infinite;
}
@keyframes shv-node-pulse { 0%,100%{filter:drop-shadow(0 0 6px rgba(14,165,233,0.5));} 50%{filter:drop-shadow(0 0 18px rgba(14,165,233,1));} }
.shv-ai-brain-txt { fill: #fff; font-size: 11px; font-weight: 800; font-family: 'Inter',sans-serif; }
.shv-ai-bn--m {
  fill: rgba(14,165,233,0.18); stroke: rgba(14,165,233,0.5); stroke-width: 1;
  animation: shv-node-pulse 2.5s ease-in-out infinite;
}
.shv-ai-bn--m2 { animation-delay: .3s; }
.shv-ai-bn--m3 { animation-delay: .6s; }
.shv-ai-bn--m4 { animation-delay: .9s; }
.shv-ai-bn--m5 { animation-delay: 1.2s; }
.shv-ai-bn--m6 { animation-delay: 1.5s; }
.shv-ai-bn--o {
  fill: rgba(255,255,255,0.07); stroke: rgba(255,255,255,0.2); stroke-width: 1;
  animation: shv-blink 3s ease-in-out infinite;
}
.shv-ai-bn--o2 { animation-delay: .4s; }
.shv-ai-bn--o3 { animation-delay: .8s; }
.shv-ai-bn--o4 { animation-delay: 1.2s; }
.shv-ai-bn--o5 { animation-delay: 1.6s; }
.shv-ai-bn--o6 { animation-delay: 2s; }
.shv-ai-bn--o7 { animation-delay: 2.4s; }
.shv-ai-bn--o8 { animation-delay: 2.8s; }

/* ──────────────────────────────────────────
   IoT SOLUTIONS
─────────────────────────────────────────── */
.shv-iot { }
.shv-iot-hub {
  position: relative; width: 100px; height: 100px;
  display: flex; align-items: center; justify-content: center;
  z-index: 2;
}
.shv-iot-ring {
  position: absolute; left: 50%; top: 50%;
  border-radius: 50%;
  border: 1.5px solid rgba(14,165,233,0.3);
}
.shv-iot-ring--1 { width: 100px; height: 100px; margin: -50px 0 0 -50px; animation: shv-pulse-ring 2.5s ease-out infinite; }
.shv-iot-ring--2 { width: 160px; height: 160px; margin: -80px 0 0 -80px; animation: shv-pulse-ring 2.5s ease-out infinite .7s; }
.shv-iot-ring--3 { width: 220px; height: 220px; margin: -110px 0 0 -110px; animation: shv-pulse-ring 2.5s ease-out infinite 1.4s; }
.shv-iot-core {
  width: 60px; height: 60px; border-radius: 50%;
  background: linear-gradient(135deg, var(--svc-accent), rgba(14,165,233,0.5));
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 1.4rem;
  box-shadow: 0 0 30px rgba(14,165,233,0.5);
  z-index: 3;
}
.shv-iot-device {
  position: absolute;
  width: 48px; height: 48px; border-radius: 12px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  display: flex; align-items: center; justify-content: center;
  color: var(--svc-accent); font-size: 1rem;
  backdrop-filter: blur(8px);
  animation: shv-blink 2.5s ease-in-out infinite;
}
.shv-iot-d--1 { top: 5%;  left: 50%; transform: translateX(-50%); animation-delay: 0s; }
.shv-iot-d--2 { top: 22%; right: 6%; animation-delay: .4s; }
.shv-iot-d--3 { bottom: 22%; right: 6%; animation-delay: .8s; }
.shv-iot-d--4 { bottom: 5%; left: 50%; transform: translateX(-50%); animation-delay: 1.2s; }
.shv-iot-d--5 { bottom: 22%; left: 6%; animation-delay: 1.6s; }
.shv-iot-d--6 { top: 22%;  left: 6%; animation-delay: 2s; }

/* ──────────────────────────────────────────
   DIGITAL MARKETING
─────────────────────────────────────────── */
.shv-mkt { align-items: center; justify-content: center; }
.shv-mkt-card {
  width: 340px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 18px; padding: 18px 16px;
  backdrop-filter: blur(12px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.45);
  animation: shv-float-b 6s ease-in-out infinite;
}
.shv-mkt-head {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 14px;
}
.shv-mkt-title { font-size: 0.72rem; font-weight: 700; color: rgba(255,255,255,0.75); }
.shv-mkt-live {
  display: flex; align-items: center; gap: 5px;
  font-size: 0.6rem; font-weight: 600; color: #22c55e;
}
.shv-mkt-live-dot {
  width: 6px; height: 6px; border-radius: 50%; background: #22c55e;
  animation: shv-blink 1.3s ease-in-out infinite;
}
/* KPI row */
.shv-mkt-kpis {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 6px;
  margin-bottom: 16px;
}
.shv-mkt-kpi {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.07);
  border-radius: 10px; padding: 8px 4px; text-align: center;
}
.shv-mkt-kpi-val { font-size: 0.78rem; font-weight: 800; color: #fff; margin-bottom: 2px; }
.shv-mkt-kpi-green { color: #22c55e; }
.shv-mkt-kpi-lbl   { font-size: 0.57rem; color: rgba(255,255,255,0.35); }
/* bar chart */
.shv-mkt-bars {
  display: flex; align-items: flex-end; gap: 8px;
  height: 80px; margin-bottom: 14px;
  padding: 0 4px; border-bottom: 1px solid rgba(255,255,255,0.07);
}
.shv-mkt-bar-col {
  flex: 1; display: flex; flex-direction: column; align-items: center; gap: 5px;
}
.shv-mkt-bar-col span { font-size: 0.55rem; color: rgba(255,255,255,0.3); }
.shv-mkt-bar {
  width: 100%; border-radius: 4px 4px 0 0;
  background: rgba(14,165,233,0.3);
  animation: shv-bar-up 1s ease forwards;
}
.shv-mkt-b--1 { --bh: 36px; animation-delay: .1s; }
.shv-mkt-b--2 { --bh: 50px; animation-delay: .2s; }
.shv-mkt-b--3 { --bh: 42px; animation-delay: .3s; }
.shv-mkt-b--4 { --bh: 60px; animation-delay: .4s; }
.shv-mkt-b--5 { --bh: 54px; animation-delay: .5s; }
.shv-mkt-b--6 { --bh: 72px; animation-delay: .6s; }
.shv-mkt-b--accent { background: linear-gradient(180deg, var(--svc-accent), rgba(14,165,233,0.5)); box-shadow: 0 0 12px rgba(14,165,233,0.4); }
@keyframes shv-bar-up { from{height:0;} to{height:var(--bh,40px);} }
/* platform row */
.shv-mkt-platforms { display: flex; justify-content: space-between; }
.shv-mkt-plat {
  display: flex; flex-direction: column; align-items: center; gap: 3px;
  font-size: 0.6rem; color: rgba(255,255,255,0.35);
}
.shv-mkt-plat i { font-size: 1rem; color: var(--svc-accent); }
.shv-mkt-plat span { font-size: 0.6rem; color: #22c55e; font-weight: 600; }

/* ──────────────────────────────────────────
   MLM SOFTWARE
─────────────────────────────────────────── */
.shv-mlm {
  flex-direction: column; align-items: center;
  justify-content: center; gap: 0;
  padding-top: 10px;
}
.shv-mlm-svg { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; }
.shv-mlm-edge {
  stroke: rgba(14,165,233,0.25); stroke-width: 1.5; fill: none;
  stroke-dasharray: 5 4;
  animation: shv-mlm-flow 1.5s linear infinite;
}
.shv-mlm-e--4,.shv-mlm-e--5,.shv-mlm-e--6,.shv-mlm-e--7,.shv-mlm-e--8,.shv-mlm-e--9 { animation-delay: .5s; }
@keyframes shv-mlm-flow { to { stroke-dashoffset: -18; } }
/* root node */
.shv-mlm-root {
  position: relative; z-index: 4;
  width: 56px; height: 56px; border-radius: 50%;
  background: linear-gradient(135deg, #a855f7, #7c3aed);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 1.1rem;
  box-shadow: 0 0 28px rgba(168,85,247,0.6);
  margin-bottom: 4px;
  animation: shv-node-pulse 2s ease-in-out infinite;
}
/* level rows */
.shv-mlm-row {
  position: relative; z-index: 4;
  display: flex; align-items: flex-start; justify-content: center; gap: 38px;
  width: 100%;
}
.shv-mlm-row--2 { margin-bottom: 6px; }
.shv-mlm-node {
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  position: relative;
}
.shv-mlm-node i {
  display: flex; align-items: center; justify-content: center;
}
.shv-mlm-gold {
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(234,179,8,0.15); border: 2px solid rgba(234,179,8,0.6);
  display: flex; align-items: center; justify-content: center;
  color: #eab308; font-size: 0.8rem;
  box-shadow: 0 0 12px rgba(234,179,8,0.3);
  animation: shv-node-pulse 2.5s ease-in-out infinite;
}
.shv-mlm-silver {
  width: 32px; height: 32px; border-radius: 50%;
  background: rgba(148,163,184,0.12); border: 1.5px solid rgba(148,163,184,0.4);
  display: flex; align-items: center; justify-content: center;
  color: rgba(148,163,184,0.8); font-size: 0.65rem;
  animation: shv-blink 2.5s ease-in-out infinite;
}
.shv-mlm-silver:nth-child(2) { animation-delay: .3s; }
.shv-mlm-silver:nth-child(3) { animation-delay: .6s; }
.shv-mlm-silver:nth-child(4) { animation-delay: .9s; }
.shv-mlm-silver:nth-child(5) { animation-delay: 1.2s; }
.shv-mlm-silver:nth-child(6) { animation-delay: 1.5s; }
/* tier badges */
.shv-mlm-badge {
  font-size: 0.5rem; font-weight: 700; padding: 2px 5px; border-radius: 99px; white-space: nowrap;
}
.shv-mlm-badge--diamond { background: rgba(168,85,247,0.2); color: #c084fc; border: 1px solid rgba(168,85,247,0.4); }
.shv-mlm-badge--gold    { background: rgba(234,179,8,0.15);  color: #fbbf24; border: 1px solid rgba(234,179,8,0.35); }
/* floating earnings */
.shv-mlm-earn {
  position: absolute;
  background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12);
  color: #4ade80; font-size: 0.65rem; font-weight: 700;
  padding: 4px 10px; border-radius: 8px;
  display: flex; align-items: center; gap: 4px;
  backdrop-filter: blur(8px); white-space: nowrap;
}
.shv-mlm-earn--1 { top: 20%; right: 0%; animation: shv-float-a 3.5s ease-in-out infinite; }
.shv-mlm-earn--2 { top: 52%; left: 0%; animation: shv-float-b 4s ease-in-out infinite .5s; }
.shv-mlm-earn--3 { bottom: 2%; right: 8%; animation: shv-float-c 3.8s ease-in-out infinite 1s; color: rgba(255,255,255,0.6); }

/* ──────────────────────────────────────────
   CRYPTO WALLET
─────────────────────────────────────────── */
.shv-wallet {
  flex-direction: column; align-items: flex-end;
  gap: 14px; padding-right: 10px;
}
/* stacked cards */
.shv-wallet-stack { position: relative; width: 260px; height: 158px; flex-shrink: 0; }
.shv-wcard {
  position: absolute; width: 260px; height: 150px; border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.12);
  overflow: hidden;
}
.shv-wcard--3 {
  background: linear-gradient(135deg, rgba(99,102,241,0.25), rgba(99,102,241,0.1));
  top: 14px; left: -10px; transform: rotate(-4deg);
  animation: shv-float-c 7s ease-in-out infinite 1s;
}
.shv-wcard--2 {
  background: linear-gradient(135deg, rgba(14,165,233,0.2), rgba(14,165,233,0.08));
  top: 7px; left: -5px; transform: rotate(-2deg);
  animation: shv-float-b 6s ease-in-out infinite .5s;
}
.shv-wcard--1 {
  background: linear-gradient(135deg, rgba(14,165,233,0.35) 0%, rgba(99,102,241,0.3) 100%);
  top: 0; left: 0; z-index: 3;
  box-shadow: 0 16px 48px rgba(0,0,0,0.5);
  animation: shv-float-a 5s ease-in-out infinite;
  padding: 18px 20px;
  display: flex; flex-direction: column; justify-content: space-between;
}
.shv-wcard-glow {
  position: absolute; top: -30px; right: -30px;
  width: 120px; height: 120px; border-radius: 50%;
  background: radial-gradient(circle, rgba(14,165,233,0.35) 0%, transparent 70%);
  pointer-events: none;
}
.shv-wcard-top { display: flex; align-items: center; justify-content: space-between; }
.shv-wcard-chip { color: rgba(255,255,255,0.4); font-size: 1.1rem; }
.shv-wcard-logo { font-size: 0.6rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,0.45); }
.shv-wcard-bal { font-size: 1.4rem; font-weight: 800; color: #fff; letter-spacing: -.02em; }
.shv-wcard-bal span { font-size: 1rem; opacity: .65; }
.shv-wcard-bottom { display: flex; align-items: center; justify-content: space-between; }
.shv-wcard-addr { font-size: 0.62rem; font-family: monospace; color: rgba(255,255,255,0.3); }
/* token list */
.shv-wallet-tokens {
  width: 260px; flex-shrink: 0;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 14px; overflow: hidden;
}
.shv-wtoken {
  display: flex; align-items: center; gap: 10px;
  padding: 9px 12px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  animation: shv-wtoken-in .4s ease both;
}
.shv-wtoken--1 { animation-delay: .3s; }
.shv-wtoken--2 { animation-delay: .5s; }
.shv-wtoken--3 { animation-delay: .7s; border-bottom: none; }
@keyframes shv-wtoken-in { from{opacity:0; transform:translateX(10px);} to{opacity:1; transform:none;} }
.shv-wtoken-icon {
  width: 32px; height: 32px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem; font-weight: 800; flex-shrink: 0;
}
.shv-wtoken-btc  { background: rgba(247,147,26,0.2); color: #f7931a; }
.shv-wtoken-eth  { background: rgba(98,126,234,0.2); color: #627eea; }
.shv-wtoken-sol  { background: rgba(153,69,255,0.2); color: #9945ff; }
.shv-wtoken-info { flex: 1; }
.shv-wtoken-info span:first-child { display: block; font-size: 0.7rem; font-weight: 600; color: rgba(255,255,255,0.8); }
.shv-wtoken-info span:last-child  { display: block; font-size: 0.6rem; color: rgba(255,255,255,0.3); }
.shv-wtoken-price { text-align: right; }
.shv-wtoken-price div:first-child { font-size: 0.7rem; font-weight: 600; color: rgba(255,255,255,0.7); }
.shv-wtoken-up  { font-size: 0.6rem; color: #22c55e; font-weight: 600; }
.shv-wtoken-dn  { font-size: 0.6rem; color: #ef4444; font-weight: 600; }
/* incoming tx badge */
.shv-wallet-tx {
  display: flex; align-items: center; gap: 6px;
  background: rgba(34,197,94,0.1); border: 1px solid rgba(34,197,94,0.25);
  color: rgba(255,255,255,0.7); font-size: 0.65rem; font-weight: 600;
  padding: 5px 12px; border-radius: 99px;
  animation: shv-float-a 3s ease-in-out infinite;
}
.shv-wallet-tx-time { color: rgba(255,255,255,0.3); font-weight: 400; }

/* ──────────────────────────────────────────
   CRYPTO EXCHANGE
─────────────────────────────────────────── */
.shv-exchange { align-items: center; justify-content: center; }
.shv-ex-panel {
  width: 350px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px; overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,0.5);
  animation: shv-float-a 5s ease-in-out infinite;
}
/* top bar */
.shv-ex-topbar {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 14px;
  background: rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.shv-ex-pair { font-size: 0.82rem; font-weight: 800; color: #fff; }
.shv-ex-pair span { color: rgba(255,255,255,0.3); }
.shv-ex-price--up { font-size: 0.78rem; font-weight: 700; color: #22c55e; animation: shv-blink 2s ease-in-out infinite; }
.shv-ex-meta { margin-left: auto; display: flex; gap: 10px; font-size: 0.6rem; color: rgba(255,255,255,0.3); }
.shv-green { color: #22c55e; }
/* candle chart */
.shv-ex-chart-wrap { padding: 8px 10px; border-bottom: 1px solid rgba(255,255,255,0.07); }
.shv-ex-candles { width: 100%; }
.shv-ex-grid { stroke: rgba(255,255,255,0.05); stroke-width: 1; }
.shv-wick { stroke: rgba(255,255,255,0.35); stroke-width: 1.5; }
.shv-candle { rx: 2; }
.shv-candle--up { fill: rgba(34,197,94,0.75); }
.shv-candle--dn { fill: rgba(239,68,68,0.75); }
.shv-candle--last { animation: shv-blink 1.5s ease-in-out infinite; }
.shv-ex-vol { rx: 2; opacity: .5; }
.shv-ex-vol--up { fill: rgba(34,197,94,0.5); }
.shv-ex-vol--dn { fill: rgba(239,68,68,0.5); }
.shv-ex-vol--last { animation: shv-blink 1.5s ease-in-out infinite; opacity: .8; }
/* order book */
.shv-ex-book { padding: 8px 12px; display: flex; flex-direction: column; gap: 2px; }
.shv-ex-book-col { display: flex; flex-direction: column; gap: 2px; }
.shv-ex-book-head {
  display: flex; justify-content: space-between;
  font-size: 0.58rem; color: rgba(255,255,255,0.25);
  padding: 0 0 3px;
  text-transform: uppercase; letter-spacing: .04em;
}
.shv-ex-ask,.shv-ex-bid {
  position: relative; display: flex; justify-content: space-between;
  font-size: 0.65rem; font-family: monospace;
  padding: 3px 4px; border-radius: 3px; overflow: hidden;
}
.shv-ex-ask { color: rgba(239,68,68,0.85); }
.shv-ex-bid { color: rgba(34,197,94,0.85); }
.shv-ex-ask-fill,.shv-ex-bid-fill {
  position: absolute; top: 0; right: 0; bottom: 0;
  border-radius: 3px; animation: shv-ob-fill 2s ease-in-out infinite alternate;
}
.shv-ex-ask-fill { background: rgba(239,68,68,0.1); }
.shv-ex-bid-fill { background: rgba(34,197,94,0.1); }
.shv-ex-ask-f--1 { width: 55%; } .shv-ex-ask-f--2 { width: 35%; animation-delay: .4s; } .shv-ex-ask-f--3 { width: 20%; animation-delay: .8s; }
.shv-ex-bid-f--1 { width: 65%; } .shv-ex-bid-f--2 { width: 45%; animation-delay: .4s; } .shv-ex-bid-f--3 { width: 28%; animation-delay: .8s; }
@keyframes shv-ob-fill { 0%{opacity:.6;} 100%{opacity:1;} }
.shv-ex-spread {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 4px 0;
}
.shv-ex-spread-price { font-size: 0.78rem; font-weight: 800; color: #22c55e; animation: shv-blink 2s ease-in-out infinite; }
.shv-ex-spread-badge { font-size: 0.56rem; color: rgba(255,255,255,0.25); background: rgba(255,255,255,0.05); padding: 2px 6px; border-radius: 4px; }

/* ── DEFAULT ── */
.shv-default-icon {
  position: absolute;
  width: 56px; height: 56px; border-radius: 16px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  display: flex; align-items: center; justify-content: center;
  color: var(--svc-accent); font-size: 1.4rem;
}

/* ── RESPONSIVE ── */
@media(max-width:1100px) { .svc-hero-visual { display: none; } }

/* ═══════════════════════════════════════════════════════════
   STATS BAR
═══════════════════════════════════════════════════════════ */
.svc-page-stats {
  background: #fff;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  position: relative;
  overflow: hidden;
}
.svc-page-stats::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--svc-accent), color-mix(in srgb, var(--svc-accent) 50%, #10b981), #10b981);
}
.svc-page-stats-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 5%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.svc-page-stat-cell {
  padding: 36px 24px;
  text-align: center;
  border-right: 1px solid rgba(0,0,0,0.06);
  position: relative;
}
.svc-page-stat-cell:last-child { border-right: none; }
.svc-page-stat-num {
  font-size: 2.6rem;
  font-weight: 900;
  letter-spacing: -0.05em;
  line-height: 1;
  background: linear-gradient(135deg, var(--svc-accent), color-mix(in srgb, var(--svc-accent) 60%, #10b981));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 16px color-mix(in srgb, var(--svc-accent) 40%, transparent));
}
.svc-page-stat-lbl {
  font-size: 0.78rem;
  color: #71717a;
  margin-top: 6px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

/* ═══════════════════════════════════════════════════════════
   OVERVIEW
═══════════════════════════════════════════════════════════ */
/* ── OVERVIEW SECTION ───────────────────────────────────── */
.svc-page-overview {
  background: #f4f4f0;
  position: relative;
  overflow: hidden;
}
.svc-page-overview::before {
  content: '';
  position: absolute;
  right: -8%;
  top: -15%;
  width: 680px; height: 680px;
  border-radius: 50%;
  background: radial-gradient(ellipse, color-mix(in srgb, var(--svc-accent) 10%, transparent), transparent 68%);
  pointer-events: none;
}
.svc-page-overview::after {
  content: '';
  position: absolute;
  left: -5%;
  bottom: -10%;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(ellipse, color-mix(in srgb, var(--svc-accent) 5%, transparent), transparent 70%);
  pointer-events: none;
}
.svc-page-overview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.svc-page-overview-body {
  color: #52525b;
  line-height: 1.85;
  font-size: 1.05rem;
  margin-top: 18px;
  margin-bottom: 32px;
}

/* feature list */
.svc-page-points {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 36px;
}
.svc-page-points li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.9rem;
  font-weight: 600;
  color: #18181b;
  padding: 13px 16px;
  border-radius: 12px;
  background: #fff;
  border: 1.5px solid rgba(0,0,0,0.06);
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
  cursor: default;
}
.svc-page-points li:hover {
  border-color: color-mix(in srgb, var(--svc-accent) 35%, transparent);
  box-shadow: 0 4px 20px color-mix(in srgb, var(--svc-accent) 10%, transparent);
  transform: translateX(4px);
}
.svc-page-point-icon {
  width: 28px; height: 28px;
  min-width: 28px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--svc-accent);
  color: #fff;
  font-size: 0.65rem;
  box-shadow: 0 3px 10px color-mix(in srgb, var(--svc-accent) 45%, transparent);
}

/* ── OVERVIEW CARD (dark) ──────────────────────────────── */
.svc-page-overview-card {
  background: #0a0a14;
  border-radius: 24px;
  padding: 36px;
  box-shadow: 0 32px 80px rgba(0,0,0,0.18), 0 0 0 1px rgba(255,255,255,0.06);
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
  
}
/* top accent line */
.svc-page-overview-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--svc-accent), #10b981);
  border-radius: 24px 24px 0 0;
}
/* subtle bg glow */
.svc-page-overview-card::after {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, color-mix(in srgb, var(--svc-accent) 15%, transparent), transparent 70%);
  pointer-events: none;
}

/* card header row */
.svc-ov-card-header {
  display: flex;
  align-items: center;
  gap: 14px;
  position: relative;
  z-index: 1;
}
.svc-ov-card-avatars {
  display: flex;
  align-items: center;
}
.svc-ov-avatar {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--svc-accent);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #0a0a14;
  margin-left: -8px;
  flex-shrink: 0;
}
.svc-ov-avatar:first-child { margin-left: 0; }
.svc-ov-avatar--more {
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.7);
  font-size: 0.6rem;
  letter-spacing: -0.02em;
}
.svc-ov-card-header-text { flex: 1; }
.svc-ov-card-header-title {
  font-size: 0.88rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
}
.svc-ov-card-header-sub {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.4);
  margin-top: 2px;
}
.svc-ov-live-dot {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.7rem;
  font-weight: 700;
  color: #10b981;
  background: rgba(16,185,129,0.1);
  border: 1px solid rgba(16,185,129,0.2);
  padding: 4px 10px;
  border-radius: 99px;
  white-space: nowrap;
  flex-shrink: 0;
}
.svc-ov-live-dot span {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #10b981;
  animation: svc-ov-pulse 2s ease-in-out infinite;
  display: inline-block;
}
@keyframes svc-ov-pulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.4; transform: scale(1.4); }
}

/* stats row */
.svc-ov-stats {
  display: flex;
  align-items: center;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 16px;
  padding: 20px 0;
  position: relative;
  z-index: 1;
}
.svc-ov-stat {
  flex: 1;
  text-align: center;
  padding: 0 16px;
}
.svc-ov-stat-num {
  font-size: 1.7rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 5px;
}
.svc-ov-stat-lbl {
  font-size: 0.68rem;
  font-weight: 600;
  color: rgba(255,255,255,0.38);
  text-transform: uppercase;
  letter-spacing: 0.07em;
}
.svc-ov-stat-sep {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,0.08);
  flex-shrink: 0;
}

/* stars row */
.svc-ov-stars-row {
  display: flex;
  align-items: center;
  gap: 4px;
  position: relative;
  z-index: 1;
}
.svc-ov-stars-row i { color: #f59e0b; font-size: 0.82rem; }
.svc-ov-stars-row span {
  font-size: 0.76rem;
  color: rgba(255,255,255,0.45);
  font-weight: 600;
  margin-left: 6px;
}

/* feature tags */
.svc-page-ov-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  position: relative;
  z-index: 1;
}
.svc-page-ov-tag {
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.75);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 6px 14px;
  border-radius: 99px;
  font-size: 0.75rem;
  font-weight: 600;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.svc-page-ov-tag:hover {
  background: color-mix(in srgb, var(--svc-accent) 18%, transparent);
  border-color: color-mix(in srgb, var(--svc-accent) 40%, transparent);
  color: #fff;
}

/* floating metric badge */
.svc-page-ov-metric {
  position: absolute;
  bottom: -16px;
  right: 28px;
  background: var(--svc-accent);
  color: #fff;
  padding: 10px 20px;
  border-radius: 12px;
  font-size: 0.8rem;
  font-weight: 800;
  box-shadow: 0 10px 28px color-mix(in srgb, var(--svc-accent) 55%, transparent);
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  z-index: 2;
}

/* ═══════════════════════════════════════════════════════════
   INDUSTRIES  (dark section)
═══════════════════════════════════════════════════════════ */
.svc-page-dark {
  background: #06060f;
  position: relative;
  overflow: hidden;
}
.svc-page-dark::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 64px 64px;
  pointer-events: none;
}

.svc-page-industries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 14px;
}
.svc-page-industry-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 16px;
  padding: 26px 14px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  cursor: default;
  transition: background 0.25s, border-color 0.25s, transform 0.25s, box-shadow 0.25s;
  position: relative;
  overflow: hidden;
}
.svc-page-industry-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 80% at 50% 0%, color-mix(in srgb, var(--svc-accent) 15%, transparent), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}
.svc-page-industry-card:hover {
  background: rgba(255,255,255,0.06);
  border-color: color-mix(in srgb, var(--svc-accent) 40%, rgba(255,255,255,0.2));
  transform: translateY(-6px);
  box-shadow: 0 16px 40px color-mix(in srgb, var(--svc-accent) 20%, transparent),
              0 0 0 1px color-mix(in srgb, var(--svc-accent) 20%, transparent);
}
.svc-page-industry-card:hover::before { opacity: 1; }
.svc-page-industry-icon {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: color-mix(in srgb, var(--svc-accent) 18%, transparent);
  border: 1px solid color-mix(in srgb, var(--svc-accent) 30%, transparent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  color: var(--svc-accent);
  transition: box-shadow 0.25s, transform 0.25s;
}
.svc-page-industry-card:hover .svc-page-industry-icon {
  box-shadow: 0 0 20px color-mix(in srgb, var(--svc-accent) 50%, transparent);
  transform: scale(1.08);
}
.svc-page-industry-card span {
  font-size: 0.78rem;
  font-weight: 700;
  color: rgba(255,255,255,0.75);
  line-height: 1.3;
  position: relative;
}

/* ═══════════════════════════════════════════════════════════
   TECH INTEGRATIONS  (light section)
═══════════════════════════════════════════════════════════ */
.svc-page-tech-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.svc-page-tech-card {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: 20px;
  padding: 36px 32px;
  position: relative;
  overflow: hidden;
  transition: box-shadow 0.3s, transform 0.3s, border-color 0.3s;
}
.svc-page-tech-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--svc-accent), #10b981);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s cubic-bezier(0.16,1,0.3,1);
}
.svc-page-tech-card:hover {
  box-shadow: 0 24px 60px rgba(0,0,0,0.1), 0 0 0 1px color-mix(in srgb, var(--svc-accent) 20%, transparent);
  transform: translateY(-6px);
  border-color: color-mix(in srgb, var(--svc-accent) 20%, transparent);
}
.svc-page-tech-card:hover::after { transform: scaleX(1); }
.svc-page-tech-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 20px;
  position: relative;
}
.svc-page-tech-icon::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 20px;
  opacity: 0;
  background: inherit;
  filter: blur(12px);
  transition: opacity 0.3s;
  z-index: -1;
}
.svc-page-tech-card:hover .svc-page-tech-icon::after { opacity: 0.5; }
.svc-page-tech-name {
  font-size: 1.02rem;
  font-weight: 800;
  color: #0a0a14;
  margin-bottom: 8px;
}
.svc-page-tech-desc {
  font-size: 0.86rem;
  color: #71717a;
  line-height: 1.65;
}

/* ═══════════════════════════════════════════════════════════
   PROCESS  (dark section)
═══════════════════════════════════════════════════════════ */
.svc-page-process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.svc-page-process-card {
  position: relative;
  border-radius: 20px;
  padding: 36px 28px 32px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  overflow: hidden;
  transition: background 0.25s, border-color 0.25s, transform 0.25s;
}
.svc-page-process-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--svc-accent), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}
.svc-page-process-card:hover {
  background: rgba(255,255,255,0.055);
  border-color: rgba(255,255,255,0.12);
  transform: translateY(-4px);
}
.svc-page-process-card:hover::before { opacity: 1; }
.svc-page-process-num {
  font-size: 3rem;
  font-weight: 900;
  letter-spacing: -0.06em;
  line-height: 1;
  margin-bottom: 18px;
  background: linear-gradient(135deg, var(--svc-accent), color-mix(in srgb, var(--svc-accent) 40%, transparent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.svc-page-process-title {
  font-size: 1.1rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
}
.svc-page-process-desc {
  font-size: 0.86rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.65;
}
.svc-page-process-arrow {
  position: absolute;
  right: -10px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  background: #06060f;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.55rem;
  z-index: 2;
}

/* animated connector line */
.svc-page-process-track {
  position: relative;
  margin-bottom: 40px;
}
.svc-page-process-line {
  height: 2px;
  background: rgba(255,255,255,0.06);
  border-radius: 2px;
  position: relative;
  overflow: hidden;
}
.svc-page-process-line-fill {
  position: absolute;
  top: 0; left: 0;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--svc-accent), #10b981);
  border-radius: 2px;
  transition: width 1.4s cubic-bezier(0.16,1,0.3,1);
  box-shadow: 0 0 12px var(--svc-accent);
}
.svc-page-process-line-fill.svc-filled { width: 100%; }

/* ═══════════════════════════════════════════════════════════
   OFFERINGS  (light)
═══════════════════════════════════════════════════════════ */
.svc-page-offerings-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.svc-page-offering-card {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: 20px;
  padding: 36px 30px;
  position: relative;
  overflow: hidden;
  transition: box-shadow 0.3s, transform 0.3s;
}
.svc-page-offering-card:hover {
  box-shadow: 0 20px 56px rgba(0,0,0,0.1);
  transform: translateY(-5px);
}
.svc-page-offering-card:hover .svc-page-offering-icon {
  transform: scale(1.08) rotate(5deg);
}
.svc-page-offering-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 20px;
  transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1);
}
.svc-page-offering-title {
  font-size: 1.02rem;
  font-weight: 800;
  color: #0a0a14;
  margin-bottom: 10px;
}
.svc-page-offering-desc {
  font-size: 0.86rem;
  color: #71717a;
  line-height: 1.65;
}
/* glow stripe on hover */
.svc-page-offering-card::after {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  border-radius: 3px 0 0 3px;
  background: linear-gradient(180deg, var(--svc-accent), #10b981);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.35s cubic-bezier(0.16,1,0.3,1);
}
.svc-page-offering-card:hover::after { transform: scaleY(1); }

/* ═══════════════════════════════════════════════════════════
   TECH STACK  (dark)
═══════════════════════════════════════════════════════════ */
.svc-page-stack-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.svc-page-stack-group {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 16px;
  padding: 24px;
}
.svc-page-stack-category {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--svc-accent);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 7px;
}
.svc-page-stack-category::before {
  content: '';
  display: inline-block;
  width: 18px;
  height: 2px;
  background: var(--svc-accent);
  border-radius: 2px;
}
.svc-page-stack-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.svc-page-stack-tag {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.09);
  color: rgba(255,255,255,0.75);
  padding: 6px 13px;
  border-radius: 99px;
  font-size: 0.78rem;
  font-weight: 600;
  transition: background 0.2s, border-color 0.2s, color 0.2s, box-shadow 0.2s;
  cursor: default;
}
.svc-page-stack-tag:hover {
  background: color-mix(in srgb, var(--svc-accent) 15%, transparent);
  border-color: color-mix(in srgb, var(--svc-accent) 50%, transparent);
  color: var(--svc-accent);
  box-shadow: 0 0 12px color-mix(in srgb, var(--svc-accent) 25%, transparent);
}

/* ═══════════════════════════════════════════════════════════
   CTA BAND
═══════════════════════════════════════════════════════════ */
.svc-page-cta {
  padding: 110px 5%;
  background: #06060f;
  position: relative;
  overflow: hidden;
}
/* animated gradient orbs */
.svc-page-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 70% at 10% 50%, color-mix(in srgb, var(--svc-accent) 22%, transparent), transparent 65%),
    radial-gradient(ellipse 40% 60% at 90% 50%, rgba(16,185,129,0.18), transparent 60%);
  animation: svc-cta-pulse 8s ease-in-out infinite alternate;
  pointer-events: none;
}
@keyframes svc-cta-pulse {
  0%   { opacity: 0.7; transform: scale(1); }
  100% { opacity: 1;   transform: scale(1.06); }
}
.svc-page-cta::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 64px 64px;
  pointer-events: none;
}
.svc-page-cta-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
.svc-page-cta-text h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.04em;
  margin-bottom: 12px;
  line-height: 1.15;
}
.svc-page-cta-text h2 span {
  background: linear-gradient(135deg, var(--svc-accent), #10b981);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.svc-page-cta-text p { font-size: 1rem; color: rgba(255,255,255,0.45); }
.svc-page-cta-actions { display:flex; gap:14px; flex-wrap:wrap; }

/* ═══════════════════════════════════════════════════════════
   SECTION EYEBROW (dark variant)
═══════════════════════════════════════════════════════════ */
.svc-page-dark .sec-eyebrow {
  color: var(--svc-accent);
  border-color: color-mix(in srgb, var(--svc-accent) 30%, transparent);
  background: color-mix(in srgb, var(--svc-accent) 10%, transparent);
}
.svc-page-dark .sec-h { color: #fff; }

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════════════ */
@media (max-width:1024px) {
  .svc-page-overview-grid  { grid-template-columns: 1fr; gap: 52px; }
  .svc-page-tech-grid      { grid-template-columns: repeat(2,1fr); }
  .svc-page-process-grid   { grid-template-columns: repeat(2,1fr); }
  .svc-page-offerings-grid { grid-template-columns: repeat(2,1fr); }
  .svc-page-stack-grid     { grid-template-columns: repeat(2,1fr); }
  .svc-page-process-arrow  { display: none; }
}
@media (max-width:768px) {
  .svc-page-section        { padding: 80px 0; }
  .svc-page-hero           { min-height: 75vh; padding-top: 120px; }
  .svc-page-stats-inner    { grid-template-columns: repeat(2,1fr); }
  .svc-page-stat-cell:nth-child(2) { border-right: none; }
  .svc-page-stat-cell:nth-child(3) { border-right: 1px solid rgba(0,0,0,0.06); }
  .svc-page-tech-grid      { grid-template-columns: 1fr; }
  .svc-page-process-grid   { grid-template-columns: 1fr; }
  .svc-page-offerings-grid { grid-template-columns: 1fr; }
  .svc-page-stack-grid     { grid-template-columns: repeat(2,1fr); }
  .svc-page-cta-inner      { flex-direction: column; text-align: center; }
  .svc-page-cta-actions    { justify-content: center; }
  .svc-page-industries-grid{ grid-template-columns: repeat(3,1fr); }
}
@media (max-width:480px) {
  .svc-page-stats-inner    { grid-template-columns: repeat(2,1fr); }
  .svc-page-stack-grid     { grid-template-columns: 1fr; }
  .svc-page-industries-grid{ grid-template-columns: repeat(2,1fr); }
  .svc-page-hero-actions   { flex-direction: column; }
  .svc-page-hero-actions a,
  .svc-page-hero-actions button { width:100%; text-align:center; justify-content:center; }
}

/* ── FAQ ACCORDION ── */
.svc-faq-list { max-width: 780px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.svc-faq-item { background: #fff; border-radius: 14px; border: 1px solid rgba(0,0,0,0.07); overflow: hidden; transition: box-shadow 0.25s; }
.svc-faq-item:hover { box-shadow: 0 4px 24px rgba(0,0,0,0.07); }
.svc-faq-item.svc-faq-open { border-color: color-mix(in srgb, var(--svc-accent) 30%, transparent); box-shadow: 0 4px 24px color-mix(in srgb, var(--svc-accent) 8%, transparent); }
.svc-faq-q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 22px 28px; background: none; border: none; cursor: pointer; text-align: left; font-size: 0.96rem; font-weight: 700; color: #0a0a14; font-family: inherit; }
.svc-faq-q:hover { color: var(--svc-accent); }
.svc-faq-icon { flex-shrink: 0; font-size: 0.72rem; color: var(--svc-accent); transition: transform 0.3s; }
.svc-faq-item.svc-faq-open .svc-faq-icon { transform: rotate(180deg); }
.svc-faq-a { padding: 0 28px 22px; }
.svc-faq-a p { font-size: 0.89rem; color: #52525b; line-height: 1.75; margin: 0; }
