/* ==========================================================================
   PulsePromote — Corporate scrolling landing page
   Palette: #1c81ff primary, #0b1530 deep, #f5f8ff tint, white
   ========================================================================== */

:root {
  --blue: #1c81ff;
  --blue-600: #0d6df0;
  --blue-100: #e6f0ff;
  --blue-50: #f5f8ff;
  --navy: #0b1530;
  --navy-700: #1a2649;
  --ink: #07112b;
  --ink-2: #2b3558;
  --ink-3: #555f7d;
  --line: #e6eaf3;
  --line-2: #eef1f8;
  --white: #ffffff;
  --glow: rgba(28, 129, 255, 0.18);
  --shadow-sm: 0 2px 12px rgba(11, 21, 48, 0.06);
  --shadow-md: 0 12px 40px rgba(11, 21, 48, 0.08);
  --shadow-lg: 0 24px 80px rgba(11, 21, 48, 0.14);
  --shadow-blue: 0 16px 40px rgba(28, 129, 255, 0.28);
  --radius-sm: 10px;
  --radius: 18px;
  --radius-lg: 28px;
  --max: 1280px;
  --gutter: 32px;
  --pad-y: 140px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: "Manrope", system-ui, sans-serif;
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }

a { color: inherit; text-decoration: none; }

button { font: inherit; cursor: pointer; border: 0; background: transparent; color: inherit; }

.serif, h1, h2, h3, h4, .display {
  font-family: "Sora", system-ui, sans-serif;
  letter-spacing: -0.02em;
  color: var(--ink);
  line-height: 1.08;
}

h1 { font-size: clamp(44px, 5.6vw, 88px); font-weight: 700; }
h2 { font-size: clamp(36px, 4vw, 64px); font-weight: 700; line-height: 1.06; }
h3 { font-size: clamp(22px, 1.8vw, 32px); font-weight: 600; line-height: 1.18; }
h4 { font-size: clamp(18px, 1.3vw, 22px); font-weight: 600; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Manrope", system-ui, sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue);
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--blue);
  display: inline-block;
}
.eyebrow.center::after {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--blue);
}

.lead {
  font-size: clamp(16px, 1.15vw, 19px);
  color: var(--ink-2);
  max-width: 60ch;
  text-wrap: pretty;
}

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
  width: 100%;
}

.section {
  padding: var(--pad-y) 0;
  position: relative;
}

.section--tint { background: var(--blue-50); }
.section--navy {
  background: radial-gradient(1200px 600px at 80% 0%, rgba(28, 129, 255, 0.18), transparent 60%),
              linear-gradient(180deg, #0b1530 0%, #0a1227 100%);
  color: #e6eaf3;
}
.section--navy h1, .section--navy h2, .section--navy h3, .section--navy h4 { color: #fff; }
.section--navy .lead { color: #b9c2db; }

.section-head {
  max-width: 760px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 64px;
}
.section-head.center { margin-left: auto; margin-right: auto; align-items: center; text-align: center; }

/* Two-column section head — services */
.services-head {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(28px, 6vw, 80px);
  align-items: end;
  margin-bottom: 56px;
}
.services-head__left { display: flex; flex-direction: column; gap: 16px; }
.services-head__left h2 { font-size: clamp(36px, 4.6vw, 60px); line-height: 1.05; letter-spacing: -0.02em; }
.services-head__right { display: flex; flex-direction: column; gap: 22px; padding-bottom: 6px; }
.services-head__right .lead { margin: 0; max-width: 46ch; }
.services-head__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  padding: 22px 24px;
  background: linear-gradient(180deg, rgba(28,129,255,0.06), rgba(28,129,255,0.01));
  border: 1px solid rgba(28,129,255,0.14);
  border-radius: 16px;
}
.services-head__stat { display: flex; flex-direction: column; gap: 4px; position: relative; }
.services-head__stat + .services-head__stat::before {
  content: ""; position: absolute; left: -10px; top: 6px; bottom: 6px;
  width: 1px; background: rgba(28,129,255,0.18);
}
.services-head__stat b { font-family: "Sora", sans-serif; font-size: 28px; font-weight: 700; color: var(--ink); letter-spacing: -0.02em; }
.services-head__stat span { font-size: 12.5px; color: var(--ink-3); font-weight: 500; }
.services-head__chips { display: flex; flex-wrap: wrap; gap: 8px; }
.services-head__chips span {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 7px 12px;
  background: #fff;
  border: 1px solid rgba(11,21,48,0.08);
  border-radius: 999px;
  font-size: 12.5px; font-weight: 600; color: var(--ink-2);
}
.services-head__chips i {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 3px rgba(28,129,255,0.18);
}
@media (max-width: 980px) {
  .services-head { grid-template-columns: 1fr; gap: 24px; align-items: stretch; }
  .services-head__left h2 br { display: none; }
}
@media (max-width: 560px) {
  .services-head__stats { grid-template-columns: 1fr; gap: 14px; }
  .services-head__stat + .services-head__stat::before { display: none; }
}

/* ==========================================================================
   Buttons
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  height: 56px;
  padding: 0 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.01em;
  transition: transform .25s ease, box-shadow .25s ease, background .2s ease;
  position: relative;
}
.btn--primary {
  background: var(--blue);
  color: #fff;
  box-shadow: var(--shadow-blue);
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 22px 50px rgba(28, 129, 255, 0.4); }
.btn--ghost {
  color: var(--ink);
  border: 1.5px solid var(--line);
  background: #fff;
}
.btn--ghost:hover { border-color: var(--blue); color: var(--blue); }
.btn--white {
  background: #fff;
  color: var(--ink);
}
.btn--white:hover { transform: translateY(-2px); }
.btn .arrow {
  width: 28px; height: 28px;
  border-radius: 999px;
  display: inline-grid;
  place-items: center;
  background: rgba(255,255,255,0.2);
  transition: transform .25s ease;
}
.btn--ghost .arrow, .btn--white .arrow { background: var(--blue); color: #fff; }
.btn:hover .arrow { transform: translateX(4px); }

/* ==========================================================================
   Nav
   ========================================================================== */

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 0;
  transition: background .3s ease, backdrop-filter .3s ease, box-shadow .3s ease;
}
.nav.is-stuck {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgba(11, 21, 48, 0.06);
}
.nav__inner {
  display: flex;
  align-items: center;
  gap: 40px;
}
.nav__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: "Sora", sans-serif;
  font-weight: 700;
  font-size: 19px;
  letter-spacing: -0.02em;
}
.nav__brand-mark {
  width: 38px; height: 38px;
  border-radius: 11px;
  background: linear-gradient(135deg, #1c81ff, #4ea3ff);
  display: grid; place-items: center;
  position: relative;
  box-shadow: 0 8px 24px rgba(28, 129, 255, 0.4);
}
.nav__brand-mark::before {
  /* heartbeat icon */
  content: "";
  width: 22px; height: 22px;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'><path d='M2 12h4l2-6 4 12 2-6h8'/></svg>") no-repeat center / contain;
}
.nav__links {
  display: flex;
  gap: 36px;
  margin-left: auto;
  font-size: 15px;
  font-weight: 500;
  color: var(--ink-2);
}
.nav__links a { transition: color .2s ease; }
.nav__links a:hover { color: var(--blue); }
.nav__cta {
  display: flex; gap: 12px; align-items: center;
}
.nav .btn { height: 44px; padding: 0 20px; font-size: 14px; }

/* ==========================================================================
   Hero
   ========================================================================== */

.hero {
  padding: 160px 0 120px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  /* radial backdrop */
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(700px 500px at 90% 30%, rgba(28, 129, 255, 0.14), transparent 60%),
    radial-gradient(500px 400px at 10% 80%, rgba(28, 129, 255, 0.08), transparent 60%);
  pointer-events: none;
  z-index: 0;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero__copy { display: flex; flex-direction: column; gap: 28px; }
.hero h1 .accent {
  background: linear-gradient(120deg, var(--blue) 0%, #5aa3ff 60%, var(--blue) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: shimmer 6s linear infinite;
}
@keyframes shimmer { to { background-position: 200% center; } }
.hero__cta { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; }

.hero__trust {
  display: flex;
  align-items: center;
  gap: 20px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
  margin-top: 8px;
}
.hero__trust-stars {
  display: flex;
  gap: 2px;
  color: #ffb547;
  font-size: 18px;
}
.hero__trust-text { font-size: 14px; color: var(--ink-2); }
.hero__trust-text b { color: var(--ink); font-weight: 700; }

/* hero stage with heartbeat & cards */

.hero__stage {
  position: relative;
  aspect-ratio: 1 / 1;
  max-width: 620px;
  margin-left: auto;
}
.hero__pulse {
  position: absolute;
  inset: 8%;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, rgba(28, 129, 255, 0.08) 0%, transparent 70%);
}
.hero__pulse-ring {
  position: absolute;
  inset: 12%;
  border: 1.5px solid rgba(28, 129, 255, 0.18);
  border-radius: 50%;
  animation: pulse-ring 4s ease-out infinite;
}
.hero__pulse-ring:nth-child(2) { inset: 22%; animation-delay: 1s; border-color: rgba(28, 129, 255, 0.28); }
.hero__pulse-ring:nth-child(3) { inset: 32%; animation-delay: 2s; border-color: rgba(28, 129, 255, 0.4); }
.hero__pulse-ring:nth-child(4) { inset: 42%; animation-delay: 3s; border-color: rgba(28, 129, 255, 0.55); }
@keyframes pulse-ring {
  0% { transform: scale(0.85); opacity: 0; }
  20% { opacity: 1; }
  100% { transform: scale(1.5); opacity: 0; }
}
.hero__photo {
  position: absolute;
  inset: 10%;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(11, 21, 48, 0.18);
  background: #d9e6ff;
}
.hero__photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
}

/* heartbeat svg overlay */
.hero__heartbeat {
  position: absolute;
  left: -8%;
  right: -8%;
  top: 48%;
  height: 80px;
  pointer-events: none;
  opacity: 0.85;
}

/* floating cards */
.float-card {
  position: absolute;
  background: #fff;
  border-radius: 20px;
  padding: 16px 18px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 600;
  animation: float 6s ease-in-out infinite;
}
.float-card--1 {
  top: 6%;
  left: -8%;
  animation-delay: 0s;
}
.float-card--2 {
  top: 32%;
  right: -10%;
  animation-delay: 1.2s;
}
.float-card--3 {
  bottom: 14%;
  left: -4%;
  animation-delay: 2.4s;
}
.float-card--4 {
  bottom: 2%;
  right: 4%;
  animation-delay: 3s;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
.float-card .ic {
  width: 38px; height: 38px;
  border-radius: 11px;
  display: grid; place-items: center;
  color: #fff;
  font-size: 18px;
}
.float-card .ic--ig { background: linear-gradient(135deg, #f58529, #dd2a7b, #8134af); }
.float-card .ic--yt { background: #ff0000; }
.float-card .ic--g { background: #fff; border: 1.5px solid var(--line); }
.float-card .ic--up { background: var(--blue); }
.float-card small { display: block; color: var(--ink-3); font-size: 11px; font-weight: 500; letter-spacing: 0.04em; text-transform: uppercase; }
.float-card b { font-size: 16px; color: var(--ink); }
.float-card .delta { color: #16a36b; font-weight: 700; font-size: 13px; margin-left: 4px; }

/* ==========================================================================
   Hero v2 — Pulse Stage
   ========================================================================== */

.hero--v2 {
  padding: 150px 0 110px;
  background: linear-gradient(180deg, #ffffff 0%, #f5f8ff 100%);
  position: relative;
  overflow: hidden;
}
.hero--v2::before { content: none; }
.hero--v2 .hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.hero__grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at center, rgba(28, 129, 255, 0.18) 1px, transparent 1.5px);
  background-size: 28px 28px;
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 70% 50%, #000 30%, transparent 80%);
  mask-image: radial-gradient(ellipse 70% 60% at 70% 50%, #000 30%, transparent 80%);
  opacity: 0.55;
}
.hero__ecg {
  position: absolute;
  left: 0; right: 0;
  top: 60%;
  width: 100%;
  height: 200px;
  opacity: 0.6;
}
.hero__ecg .ecg-path {
  stroke-dasharray: 3200;
  stroke-dashoffset: 3200;
  animation: ecg-draw 5s ease-in-out infinite;
}
@keyframes ecg-draw {
  0% { stroke-dashoffset: 3200; }
  60% { stroke-dashoffset: 0; }
  100% { stroke-dashoffset: -3200; }
}

.hero__particles {
  position: absolute;
  inset: 0;
}
.hero__particles span {
  position: absolute;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--blue);
  opacity: 0.35;
  animation: drift linear infinite;
  filter: blur(0.5px);
  box-shadow: 0 0 12px rgba(28,129,255,0.6);
}
.hero__particles span:nth-child(1) { left: 8%; bottom: -10px; animation-duration: 14s; animation-delay: 0s; }
.hero__particles span:nth-child(2) { left: 18%; bottom: -10px; animation-duration: 18s; animation-delay: 2s; width:4px;height:4px; }
.hero__particles span:nth-child(3) { left: 28%; bottom: -10px; animation-duration: 12s; animation-delay: 4s; }
.hero__particles span:nth-child(4) { left: 38%; bottom: -10px; animation-duration: 20s; animation-delay: 1s; width:3px;height:3px; }
.hero__particles span:nth-child(5) { left: 48%; bottom: -10px; animation-duration: 16s; animation-delay: 6s; }
.hero__particles span:nth-child(6) { left: 58%; bottom: -10px; animation-duration: 13s; animation-delay: 3s; width:5px;height:5px; }
.hero__particles span:nth-child(7) { left: 66%; bottom: -10px; animation-duration: 19s; animation-delay: 5s; }
.hero__particles span:nth-child(8) { left: 74%; bottom: -10px; animation-duration: 11s; animation-delay: 7s; width:4px;height:4px; }
.hero__particles span:nth-child(9) { left: 82%; bottom: -10px; animation-duration: 17s; animation-delay: 0.5s; }
.hero__particles span:nth-child(10) { left: 88%; bottom: -10px; animation-duration: 15s; animation-delay: 2.5s; width:3px;height:3px; }
.hero__particles span:nth-child(11) { left: 92%; bottom: -10px; animation-duration: 21s; animation-delay: 4.5s; }
.hero__particles span:nth-child(12) { left: 96%; bottom: -10px; animation-duration: 13s; animation-delay: 6.5s; width:5px;height:5px; }
@keyframes drift {
  0% { transform: translateY(0) translateX(0); opacity: 0; }
  10% { opacity: 0.4; }
  90% { opacity: 0.4; }
  100% { transform: translateY(-110vh) translateX(40px); opacity: 0; }
}

.hero--v2 .hero__copy {
  display: flex;
  flex-direction: column;
  gap: 26px;
  position: relative;
  z-index: 2;
}

.hero--v2 h1 {
  font-size: clamp(48px, 5.4vw, 84px);
  line-height: 1.02;
  font-weight: 800;
  letter-spacing: -0.025em;
}

/* rotating word */
.rotator {
  display: inline-block;
  position: relative;
  height: 1.05em;
  vertical-align: bottom;
  min-width: 5ch;
  margin-left: 0.06em;
}
.rotator__word {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, var(--blue) 0%, #5aa3ff 50%, var(--blue) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  opacity: 0;
  transform: translateY(40%) rotateX(-60deg);
  filter: blur(8px);
  transform-origin: center bottom;
  transition: all .7s cubic-bezier(0.2,0.8,0.2,1);
  white-space: nowrap;
  animation: shimmer 6s linear infinite;
}
.rotator__word.is-active {
  opacity: 1;
  transform: none;
  filter: blur(0);
}
.rotator__word.is-out {
  opacity: 0;
  transform: translateY(-40%) rotateX(60deg);
  filter: blur(8px);
}
.rotator::after {
  /* underline accent */
  content: "";
  position: absolute;
  left: 0; right: 8%;
  bottom: -2px;
  height: 5px;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--blue), transparent);
  opacity: 0.5;
}

.hero--v2 .lead { max-width: 52ch; }
.hero--v2 .hero__cta { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; margin-top: 4px; }

.dot-live {
  width: 8px; height: 8px; border-radius: 50%;
  background: #16a36b;
  box-shadow: 0 0 0 0 rgba(22, 163, 107, 0.6);
  animation: live-pulse 1.6s ease-out infinite;
}
@keyframes live-pulse {
  0% { box-shadow: 0 0 0 0 rgba(22, 163, 107, 0.6); }
  100% { box-shadow: 0 0 0 12px rgba(22, 163, 107, 0); }
}

.hero__ticker {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  margin-top: 8px;
}
.hero__ticker .chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-2);
  box-shadow: var(--shadow-sm);
}
.chip b { color: var(--ink); font-weight: 700; margin-right: 4px; }
.chip__dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 3px rgba(28, 129, 255, 0.18);
}

/* Stage v2 */
.hero__stage--v2 {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  max-width: 620px;
  margin-left: auto;
  z-index: 2;
}

/* expanding rings */
.ps-ring {
  position: absolute;
  inset: 50%;
  width: 80px; height: 80px;
  margin: -40px;
  border: 1.5px solid rgba(28, 129, 255, 0.4);
  border-radius: 50%;
  animation: ps-ring 4s ease-out infinite;
}
.ps-ring:nth-child(2) { animation-delay: 1s; }
.ps-ring:nth-child(3) { animation-delay: 2s; }
.ps-ring:nth-child(4) { animation-delay: 3s; }
@keyframes ps-ring {
  0% { transform: scale(1); opacity: 0.85; border-color: rgba(28,129,255,0.55); }
  100% { transform: scale(5.6); opacity: 0; border-color: rgba(28,129,255,0.1); }
}

/* orbital rings (decorative dashed circles) */
.orbit {
  position: absolute;
  border-radius: 50%;
  border: 1.5px dashed rgba(28, 129, 255, 0.22);
  pointer-events: none;
}
.orbit--outer { inset: 8%; }
.orbit--inner {
  inset: 24%;
  border-style: solid;
  border-color: rgba(28, 129, 255, 0.16);
}

/* spokes: a 0-width arm rotating around orbit center; planet sits at the end */
.spoke {
  position: absolute;
  top: 50%; left: 50%;
  width: 0; height: 50%;
  transform-origin: top center;
  animation: spoke-spin 36s linear infinite;
  animation-delay: var(--d, 0s);
}
.spoke--inner { animation: spoke-spin 22s linear infinite reverse; animation-delay: var(--d, 0s); }
@keyframes spoke-spin { to { transform: rotate(360deg); } }

.planet {
  position: absolute;
  bottom: -30px;
  left: 50%;
  width: 60px; height: 60px;
  margin-left: -30px;
  border-radius: 18px;
  background: #fff;
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-md), 0 0 0 1px var(--line-2);
  font-family: "Sora", sans-serif;
  font-weight: 700;
  font-size: 22px;
  color: #fff;
  z-index: 3;
  animation: planet-upright 36s linear infinite reverse;
  animation-delay: var(--d, 0s);
}
.spoke--inner .planet {
  animation: planet-upright 22s linear infinite;
  animation-delay: var(--d, 0s);
}
@keyframes planet-upright { to { transform: rotate(360deg); } }

.planet svg { width: 26px; height: 26px; }
.planet--ig { background: linear-gradient(135deg, #f58529, #dd2a7b, #8134af); }
.planet--g {
  background: #fff;
  color: #4285f4;
  border: 1px solid var(--line);
  font-weight: 800;
}
.planet--yt { background: #ff0000; }
.planet--seo { background: linear-gradient(135deg, #1c81ff, #5aa3ff); }
.planet--sm { width: 44px; height: 44px; margin-left: -22px; bottom: -22px; font-size: 18px; }
.planet--fb { background: #1877f2; }
.planet--li { background: #0a66c2; }

/* core */
.ps-core {
  position: absolute;
  inset: 50%;
  width: 160px; height: 160px;
  margin: -80px;
  display: grid;
  place-items: center;
  z-index: 2;
}
.ps-core__halo {
  position: absolute;
  inset: -16px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(28,129,255,0.45) 0%, rgba(28,129,255,0) 70%);
  animation: halo-pulse 2.4s ease-in-out infinite;
}
@keyframes halo-pulse {
  0%, 100% { transform: scale(0.95); opacity: 0.7; }
  50% { transform: scale(1.1); opacity: 1; }
}
.ps-core__inner {
  width: 120px; height: 120px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1c81ff 0%, #0d6df0 100%);
  display: grid; place-items: center;
  box-shadow: 0 20px 50px rgba(28, 129, 255, 0.5), inset 0 -8px 20px rgba(0,0,0,0.15), inset 0 8px 20px rgba(255,255,255,0.25);
  animation: core-beat 1.4s ease-in-out infinite;
  position: relative;
  z-index: 1;
}
.ps-core__inner svg { width: 56px; height: 56px; }
@keyframes core-beat {
  0%, 100% { transform: scale(1); }
  20% { transform: scale(1.06); }
  40% { transform: scale(1); }
  60% { transform: scale(1.04); }
  80% { transform: scale(1); }
}
.ps-core__label {
  position: absolute;
  bottom: -32px;
  font-family: "Sora", sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.18em;
  color: var(--ink);
  text-transform: uppercase;
  white-space: nowrap;
}

/* Data cards floating around the stage */
.data-card {
  position: absolute;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 14px 16px;
  box-shadow: var(--shadow-md);
  z-index: 4;
  animation: card-float 6s ease-in-out infinite;
  min-width: 180px;
}
.data-card--reach { top: 4%; left: -8%; animation-delay: 0s; }
.data-card--rank { top: 38%; right: -10%; animation-delay: 1.5s; }
.data-card--followers { bottom: 4%; left: -2%; animation-delay: 3s; min-width: 200px; }
@keyframes card-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
.data-card__head { display: flex; justify-content: space-between; align-items: center; gap: 12px; margin-bottom: 8px; }
.data-card__title { font-size: 11px; font-weight: 600; color: var(--ink-3); text-transform: uppercase; letter-spacing: 0.08em; }
.data-card__delta { font-size: 12px; font-weight: 700; color: #16a36b; background: #e6f7ee; padding: 2px 8px; border-radius: 6px; }
.data-card__bar {
  height: 8px;
  border-radius: 4px;
  background: var(--blue-50);
  overflow: hidden;
  margin-bottom: 8px;
}
.data-card__bar i {
  display: block;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--blue), #5aa3ff);
  border-radius: 4px;
  animation: bar-fill 2.4s 0.4s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}
@keyframes bar-fill { to { width: 88%; } }
.data-card__sub { font-size: 11.5px; color: var(--ink-3); font-weight: 500; }

.data-card__rank-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: "Sora", sans-serif;
  font-weight: 700;
}
.data-card__rank-old { font-size: 18px; color: var(--ink-3); text-decoration: line-through; }
.data-card__rank-arrow { color: var(--blue); }
.data-card__rank-new {
  font-size: 26px;
  color: var(--blue);
  background: var(--blue-50);
  padding: 2px 10px;
  border-radius: 8px;
  animation: rank-pop 2s 0.6s cubic-bezier(0.2, 1.4, 0.4, 1) backwards;
}
@keyframes rank-pop {
  0% { transform: scale(0.6); opacity: 0; }
  60% { transform: scale(1.15); opacity: 1; }
  100% { transform: scale(1); opacity: 1; }
}

.data-card__row { display: flex; align-items: center; gap: 12px; }
.data-card__avatars { display: flex; }
.data-card__avatars span {
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 2px solid #fff;
  margin-left: -8px;
  box-shadow: 0 2px 6px rgba(11,21,48,0.1);
}
.data-card__avatars span:first-child { margin-left: 0; }
.data-card__big {
  font-family: "Sora", sans-serif;
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.02em;
  color: var(--ink);
  line-height: 1;
}

@media (max-width: 960px) {
  .hero--v2 { padding: 110px 0 60px; }
  .hero__stage--v2 { max-width: 420px; margin: 30px auto 0; }
  .data-card--reach { left: -4%; }
  .data-card--rank { right: -4%; }
}

/* ==========================================================================
   Stats bar (navy)
   ========================================================================== */

.stats {
  background: var(--navy);
  color: #fff;
  padding: 70px 0;
  position: relative;
  overflow: hidden;
}
.stats::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(800px 300px at 50% 0%, rgba(28, 129, 255, 0.25), transparent 70%);
  pointer-events: none;
}
.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  position: relative;
}
.stat__num {
  font-family: "Sora", sans-serif;
  font-size: clamp(40px, 4vw, 64px);
  font-weight: 700;
  letter-spacing: -0.03em;
  background: linear-gradient(180deg, #fff 0%, #9ec3ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
}
.stat__label {
  margin-top: 10px;
  font-size: 14px;
  color: #9ea7c4;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 600;
}

/* ==========================================================================
   Services
   ========================================================================== */

.services__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

/* refreshed service card */
.svc {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  overflow: hidden;
  transition: transform .35s ease, box-shadow .35s ease, border-color .25s ease;
}
.svc::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(160deg, rgba(28,129,255,0.5), transparent 55%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  opacity: 0;
  transition: opacity .35s ease;
  pointer-events: none;
}
.svc:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.svc:hover::before { opacity: 1; }

.svc__top { display: flex; align-items: flex-start; justify-content: space-between; }
.svc__badge {
  width: 56px; height: 56px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--blue), #5aa3ff);
  color: #fff;
  display: grid; place-items: center;
  box-shadow: var(--shadow-blue);
}
.svc__badge svg { width: 26px; height: 26px; }
.svc__num {
  font-family: "Sora", sans-serif;
  font-weight: 700;
  font-size: 12.5px;
  letter-spacing: 0.18em;
  color: var(--ink-3);
  padding: 5px 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fafbfd;
  margin-left: 4px;
}

.svc__platforms { display: flex; align-items: center; gap: 6px; }
.svc__platforms i {
  display: block;
  width: 22px; height: 22px;
  border-radius: 50%;
  border: 2px solid #fff;
  box-shadow: 0 2px 8px -3px rgba(15,30,60,0.25);
  transition: transform .25s ease;
  margin-left: -8px;
}
.svc__platforms i:first-child { margin-left: 0; }
.svc:hover .svc__platforms i { transform: translateY(-2px); }
.svc:hover .svc__platforms i:nth-child(2) { transition-delay: 40ms; }
.svc:hover .svc__platforms i:nth-child(3) { transition-delay: 80ms; }
.svc:hover .svc__platforms i:nth-child(4) { transition-delay: 120ms; }

.svc--popular { border-color: rgba(28,129,255,0.35); background: linear-gradient(165deg, #f5f8ff 0%, #fff 55%); }
.svc__ribbon {
  position: absolute;
  top: 16px;
  right: -38px;
  background: linear-gradient(90deg, var(--blue), #5aa3ff);
  color: #fff;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 44px;
  transform: rotate(38deg);
  box-shadow: 0 6px 16px -8px rgba(28,129,255,0.6);
  z-index: 3;
}

.svc h3 { font-size: 22px; line-height: 1.2; }
.svc__desc { color: var(--ink-2); font-size: 14.5px; line-height: 1.6; }

/* viz container — shared shell, per-service contents */
.svc__viz {
  position: relative;
  border-radius: 14px;
  background: linear-gradient(180deg, #f5f8ff 0%, #fff 100%);
  border: 1px solid var(--line);
  padding: 16px;
  min-height: 150px;
  overflow: hidden;
}

/* ---- 01 SMM ---- */
.svc__viz--smm { display: flex; flex-direction: column; gap: 10px; }
.post {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 10px 12px;
  font-size: 11.5px;
  box-shadow: 0 4px 14px -8px rgba(15,30,60,0.18);
}
.post__head { display: flex; align-items: center; gap: 8px; margin-bottom: 8px; }
.post__head i { width: 22px; height: 22px; border-radius: 50%; flex-shrink: 0; }
.post__head b { font-weight: 700; color: var(--ink); flex: 1; }
.post__head em { font-style: normal; color: var(--ink-3); font-size: 10px; }
.post__media {
  height: 42px;
  border-radius: 8px;
  background: linear-gradient(135deg, #1c81ff 0%, #6cb0ff 60%, #ffd66b 100%);
  margin-bottom: 8px;
  position: relative;
  overflow: hidden;
}
.post__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 40%, rgba(255,255,255,0.45), transparent 50%);
}
.post__row { display: flex; gap: 14px; color: var(--ink-3); font-weight: 600; font-size: 11px; }
.follow-pill {
  display: flex; align-items: center; gap: 8px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 99px;
  padding: 8px 14px;
  align-self: flex-start;
  box-shadow: 0 4px 14px -8px rgba(15,30,60,0.18);
}
.follow-pill__dot { width: 7px; height: 7px; border-radius: 50%; background: #16a36b; box-shadow: 0 0 0 4px rgba(22,163,107,0.18); animation: pulse-dot 1.6s ease-in-out infinite; }
@keyframes pulse-dot { 50% { box-shadow: 0 0 0 7px rgba(22,163,107,0); } }
.follow-pill__num { font-family: "Sora", sans-serif; font-weight: 700; color: var(--ink); font-size: 13px; }
.follow-pill__lbl { font-size: 10.5px; color: var(--ink-3); font-weight: 600; }

/* ---- 02 SEO ---- */
.svc__viz--seo .serp { display: flex; flex-direction: column; gap: 8px; }
.serp__bar { display: flex; align-items: center; gap: 8px; background: #fff; border: 1px solid var(--line); border-radius: 99px; padding: 7px 12px; font-size: 11.5px; color: var(--ink-3); }
.serp__bar i { width: 12px; height: 12px; border-radius: 50%; border: 2px solid var(--blue); border-top-color: transparent; flex-shrink: 0; }
.serp__row { display: flex; align-items: center; gap: 10px; background: #fff; border: 1px solid var(--line); border-radius: 10px; padding: 8px 10px; font-size: 11.5px; position: relative; }
.serp__row em { font-style: normal; font-family: "Sora", sans-serif; font-weight: 700; font-size: 16px; min-width: 38px; }
.serp__row--prev { opacity: 0.55; }
.serp__row--prev em { color: var(--ink-3); text-decoration: line-through; }
.serp__row--prev .serp__title { color: var(--ink-3); }
.serp__row--now { border-color: rgba(28,129,255,0.4); background: linear-gradient(90deg, #eaf2ff, #fff 60%); box-shadow: 0 4px 14px -8px rgba(28,129,255,0.4); }
.serp__row--now em { color: var(--blue); }
.serp__title { color: var(--ink); font-weight: 600; flex: 1; }
.serp__delta { background: rgba(22,163,107,0.12); color: #0f7a4c; font-weight: 700; font-size: 11px; padding: 3px 8px; border-radius: 6px; }

/* ---- 03 PPC ---- */
.svc__viz--ppc { display: flex; flex-direction: column; gap: 10px; }
.ad-card { background: #fff; border: 1px solid var(--line); border-radius: 10px; padding: 10px 12px; }
.ad-card__head { display: flex; align-items: center; gap: 8px; font-size: 11px; color: var(--ink-3); margin-bottom: 4px; }
.ad-card__head b { font-style: normal; background: #16a36b; color: #fff; font-size: 9px; font-weight: 700; padding: 2px 5px; border-radius: 4px; letter-spacing: 0.1em; }
.ad-card__title { font-size: 13px; font-weight: 700; color: #1a0dab; line-height: 1.3; }
.ad-card__meta { font-size: 11px; color: #ffb547; margin-top: 4px; }
.ad-card__meta span { color: #ffb547; }
.ppc-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.ppc-stats > div { background: #fff; border: 1px solid var(--line); border-radius: 10px; padding: 8px; text-align: center; }
.ppc-stats b { font-family: "Sora", sans-serif; display: block; font-size: 16px; color: var(--blue); font-weight: 700; line-height: 1; }
.ppc-stats span { display: block; font-size: 10px; color: var(--ink-3); font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; margin-top: 4px; }

/* ---- 04 CONTENT ---- */
.svc__viz--content { display: flex; flex-direction: column; gap: 8px; }
.article { background: #fff; border: 1px solid var(--line); border-radius: 10px; padding: 10px 12px; transition: transform .3s ease; }
.article--a { transform: translateX(0); }
.article--b { transform: translateX(8px); opacity: 0.85; }
.svc:hover .article--b { transform: translateX(0); opacity: 1; }
.article__cat { font-size: 10px; font-weight: 700; color: var(--blue); text-transform: uppercase; letter-spacing: 0.1em; }
.article__title { font-size: 12.5px; font-weight: 700; color: var(--ink); line-height: 1.35; margin: 4px 0 8px; }
.article__lines { display: flex; flex-direction: column; gap: 4px; }
.article__lines i { display: block; height: 4px; background: var(--blue-50); border-radius: 99px; }

/* foot */
.svc__foot {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}
.svc__chips { display: flex; flex-wrap: wrap; gap: 6px; }
.svc__chips span {
  padding: 5px 10px;
  background: var(--blue-50);
  color: var(--blue-600);
  border-radius: 99px;
  font-size: 11.5px;
  font-weight: 600;
}
.svc__link {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--blue);
  font-weight: 700;
  font-size: 13px;
  white-space: nowrap;
}
.svc__link span { transition: transform .25s ease; display: inline-block; }
.svc:hover .svc__link span { transform: translateX(4px); }

/* ==========================================================================
   Growth journey (chart)
   ========================================================================== */

.growth__grid {
  display: grid;
  grid-template-columns: 0.95fr 1.1fr;
  gap: 80px;
  align-items: center;
}
.growth__copy { display: flex; flex-direction: column; gap: 24px; }
.growth__list {
  display: grid;
  gap: 16px;
  margin-top: 8px;
}
.growth__list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  list-style: none;
  font-size: 16px;
  color: var(--ink-2);
}
.growth__list li::before {
  content: "";
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--blue);
  flex-shrink: 0;
  margin-top: 2px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>");
  background-size: 14px;
  background-repeat: no-repeat;
  background-position: center;
}

.chart-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--line);
  position: relative;
}
.chart-card__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 28px;
}
.chart-card__title { font-size: 14px; color: var(--ink-3); font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; }
.chart-card__big {
  font-family: "Sora", sans-serif;
  font-size: 48px;
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-top: 6px;
  display: flex;
  align-items: baseline;
  gap: 10px;
}
.chart-card__big .delta {
  font-size: 14px;
  font-weight: 700;
  color: #16a36b;
  background: #e6f7ee;
  padding: 4px 10px;
  border-radius: 6px;
}
.chart-card__legend {
  display: flex;
  gap: 16px;
  font-size: 12px;
  color: var(--ink-3);
  font-weight: 600;
}
.chart-card__legend i {
  display: inline-block;
  width: 10px; height: 10px;
  border-radius: 3px;
  margin-right: 6px;
  vertical-align: middle;
}
.chart-svg { width: 100%; height: 280px; }

.chart-card__rank {
  position: absolute;
  bottom: -28px;
  right: -28px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 16px 20px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 14px;
  z-index: 2;
}
.chart-card__rank .badge {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, #ffb547, #ff8a3d);
  display: grid; place-items: center;
  color: #fff;
  font-family: "Sora", sans-serif;
  font-weight: 700;
}

/* ==========================================================================
   Process scrollytelling
   ========================================================================== */

.process__rail {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
}
.process__line {
  position: absolute;
  top: 36px;
  left: 6%;
  right: 6%;
  height: 2px;
  background: var(--line);
  z-index: 0;
}
.process__line::after {
  content: "";
  position: absolute;
  inset: 0;
  width: var(--p, 0%);
  background: linear-gradient(90deg, var(--blue), #5aa3ff);
  transition: width .6s ease;
}
.process-step {
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  z-index: 1;
}
.process-step__dot {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--line);
  display: grid; place-items: center;
  font-family: "Sora", sans-serif;
  font-weight: 700;
  font-size: 22px;
  color: var(--ink-3);
  transition: all .35s ease;
}
.process-step.is-active .process-step__dot {
  background: var(--blue);
  border-color: var(--blue);
  color: #fff;
  box-shadow: var(--shadow-blue);
  transform: scale(1.05);
}
.process-step h4 { font-size: 19px; }
.process-step p { font-size: 14.5px; color: var(--ink-2); line-height: 1.55; }

/* ==========================================================================
   Dashboard mockup (data-driven section)
   ========================================================================== */

.dashboard__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: center;
}

.dashboard {
  background: #0a1227;
  border-radius: 22px;
  padding: 22px;
  box-shadow: 0 40px 100px rgba(0,0,0,0.4), 0 0 0 1px rgba(255,255,255,0.06);
  position: relative;
  font-family: "Manrope", sans-serif;
  color: #fff;
  background-image:
    radial-gradient(400px 200px at 20% 0%, rgba(28, 129, 255, 0.2), transparent 60%);
}
.dashboard__bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 8px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 16px;
}
.dashboard__dots { display: flex; gap: 6px; }
.dashboard__dots span { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,0.2); }
.dashboard__dots span:first-child { background: #ff5f57; }
.dashboard__dots span:nth-child(2) { background: #febc2e; }
.dashboard__dots span:nth-child(3) { background: #28c840; }
.dashboard__title {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.dashboard__grid-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 12px;
}
.kpi {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
  padding: 14px;
}
.kpi__label { font-size: 11px; color: rgba(255,255,255,0.5); letter-spacing: 0.1em; text-transform: uppercase; }
.kpi__num {
  font-family: "Sora", sans-serif;
  font-size: 22px;
  font-weight: 700;
  margin-top: 4px;
}
.kpi__delta { font-size: 11px; color: #4ade80; font-weight: 700; }
.dashboard__chart {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
  padding: 16px;
}
.dashboard__chart-title { font-size: 12px; color: rgba(255,255,255,0.6); margin-bottom: 12px; display: flex; justify-content: space-between; }
.dashboard__chart-title b { color: #fff; font-size: 14px; font-weight: 600; }
.dashboard__bars {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 6px;
  height: 90px;
  align-items: end;
}
.dashboard__bars .b {
  background: linear-gradient(180deg, #5aa3ff, #1c81ff);
  border-radius: 4px 4px 0 0;
  height: 0;
  transition: height 1s cubic-bezier(0.2, 0.8, 0.2, 1);
}

/* ==========================================================================
   Testimonials (refreshed)
   ========================================================================== */

.testimonials__head {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 56px;
}
.testimonials__head h2 em { font-style: normal; color: var(--blue); }

.rating-block {
  background: linear-gradient(180deg, #fff 0%, #f5f8ff 100%);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 24px 26px;
  box-shadow: var(--shadow-sm);
}
.rating-block__top { display: flex; align-items: center; gap: 18px; margin-bottom: 16px; }
.rating-block__num {
  font-family: "Sora", sans-serif;
  font-weight: 800;
  font-size: 56px;
  letter-spacing: -0.04em;
  line-height: 1;
  background: linear-gradient(135deg, var(--ink) 0%, var(--blue) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.rating-block__stars { color: #ffb547; font-size: 18px; letter-spacing: 1px; }
.rating-block__count { font-size: 12.5px; color: var(--ink-3); margin-top: 4px; font-weight: 500; }
.rating-block__bars { display: flex; flex-direction: column; gap: 7px; padding: 14px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); margin-bottom: 14px; }
.rb-row { display: grid; grid-template-columns: 16px 1fr 36px; gap: 12px; align-items: center; font-size: 11.5px; color: var(--ink-3); font-weight: 600; }
.rb-row i { display: block; height: 6px; background: var(--blue-50); border-radius: 99px; overflow: hidden; }
.rb-row i b {
  display: block;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--blue), #5aa3ff);
  border-radius: 99px;
  animation: rb-fill 1.4s 0.4s cubic-bezier(0.2,0.8,0.2,1) forwards;
}
@keyframes rb-fill { to { width: var(--w); } }
.rb-row em { font-style: normal; text-align: right; color: var(--ink); }
.rating-block__verified { display: inline-flex; align-items: center; gap: 8px; font-size: 12.5px; font-weight: 600; color: var(--ink-2); }
.rating-block__verified svg { width: 16px; height: 16px; }

/* cards */
.testimonials__row {
  display: grid;
  grid-template-columns: 1.15fr 1fr 1fr;
  gap: 24px;
}
.tcard {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
  overflow: hidden;
}
.tcard::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(420px 200px at 100% 0%, rgba(28,129,255,0.08), transparent 70%);
  opacity: 0;
  transition: opacity .35s ease;
  pointer-events: none;
}
.tcard:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: rgba(28,129,255,0.4); }
.tcard:hover::before { opacity: 1; }
.tcard--feat {
  background: linear-gradient(160deg, #f5f8ff 0%, #fff 60%);
  border-color: rgba(28,129,255,0.25);
}
.tcard--feat::after {
  content: "Featured";
  position: absolute;
  top: 24px; right: 24px;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
  background: rgba(28,129,255,0.12);
  padding: 4px 10px;
  border-radius: 6px;
  z-index: 2;
}

.tcard__platform { display: inline-flex; align-items: center; gap: 8px; font-size: 12px; font-weight: 600; color: var(--ink-2); }
.tcard__platform svg { width: 18px; height: 18px; }

.tcard__stars { color: #ffb547; font-size: 17px; letter-spacing: 2px; }

.tcard__quote {
  font-size: 16.5px;
  color: var(--ink);
  line-height: 1.6;
  text-wrap: pretty;
  position: relative;
  padding-left: 0;
}
.tcard__quote::before {
  content: "\201C";
  font-family: "Sora", sans-serif;
  font-size: 64px;
  color: var(--blue);
  display: block;
  line-height: 0.5;
  margin-bottom: 8px;
  opacity: 0.85;
}

.tcard__metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  padding: 14px;
  background: var(--blue-50);
  border-radius: 14px;
  border: 1px dashed rgba(28,129,255,0.25);
}
.metric { display: flex; flex-direction: column; align-items: flex-start; }
.metric b {
  font-family: "Sora", sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--blue);
  letter-spacing: -0.02em;
  line-height: 1;
}
.metric span { font-size: 11.5px; color: var(--ink-3); margin-top: 4px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; }

.tcard__person {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}
.tcard__avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  color: #fff;
  display: grid;
  place-items: center;
  font-family: "Sora", sans-serif;
  font-weight: 700;
  font-size: 14px;
  flex-shrink: 0;
}
.tcard__person-meta { flex: 1; min-width: 0; }
.tcard__name { font-weight: 700; font-size: 15px; color: var(--ink); }
.tcard__loc { font-size: 12.5px; color: var(--ink-3); margin-top: 2px; }
.tcard__industry {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue);
  background: var(--blue-50);
  padding: 5px 10px;
  border-radius: 6px;
}

@media (max-width: 960px) {
  .testimonials__head { grid-template-columns: 1fr; gap: 32px; }
  .testimonials__row { grid-template-columns: 1fr; }
}

/* ==========================================================================
   Services tabs (svctabs)
   ========================================================================== */
.svctabs {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 28px;
  align-items: stretch;
}
.svctabs__rail {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.svctab {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  grid-template-rows: auto auto;
  align-items: center;
  gap: 2px 14px;
  padding: 18px 20px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  text-align: left;
  cursor: pointer;
  font: inherit;
  color: var(--ink);
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease, background .25s ease;
}
.svctab:hover { border-color: rgba(28,129,255,0.4); transform: translateX(4px); }
.svctab__num {
  grid-row: span 2;
  font-family: "Sora", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--ink-3);
  border: 1px solid var(--line);
  padding: 6px 10px;
  border-radius: 999px;
  align-self: center;
}
.svctab__label {
  font-family: "Sora", sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.1;
}
.svctab__sub {
  grid-column: 2;
  font-size: 12.5px;
  color: var(--ink-2);
  font-weight: 500;
}
.svctab__chev {
  grid-row: span 2;
  align-self: center;
  font-family: "Sora", sans-serif;
  font-size: 18px;
  color: var(--ink-3);
  transition: transform .25s ease, color .25s ease;
}
.svctab.is-active {
  background: linear-gradient(140deg, var(--blue) 0%, #0b1530 130%);
  border-color: transparent;
  box-shadow: 0 18px 38px -22px rgba(28,129,255,0.55);
  color: #fff;
  transform: translateX(0);
}
.svctab.is-active .svctab__num { color: #fff; border-color: rgba(255,255,255,0.35); background: rgba(255,255,255,0.08); }
.svctab.is-active .svctab__sub { color: rgba(255,255,255,0.78); }
.svctab.is-active .svctab__chev { color: #fff; transform: translateX(4px); }

.svctabs__panes {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 36px;
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}
.svcpane {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 36px;
  align-items: center;
  animation: pane-in .45s cubic-bezier(.2,.7,.2,1);
}
.svcpane[hidden] { display: none; }
@keyframes pane-in { from { opacity: 0; transform: translateY(8px); } }

.svcpane__title {
  font-family: "Sora", sans-serif;
  font-size: clamp(28px, 2.6vw, 42px);
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--ink);
}
.svcpane__title span { color: var(--blue); }
.svcpane__lead { color: var(--ink-2); font-size: 15px; line-height: 1.65; margin-top: 14px; max-width: 50ch; }
.svcpane__list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 18px;
  margin: 22px 0 26px;
  padding: 0;
}
.svcpane__list li {
  position: relative;
  padding: 10px 14px 10px 40px;
  font-size: 14px;
  color: var(--ink);
  font-weight: 600;
  background: linear-gradient(180deg, rgba(28,129,255,0.04), rgba(28,129,255,0));
  border: 1px solid rgba(28,129,255,0.14);
  border-radius: 10px;
  line-height: 1.4;
  transition: transform .25s ease, border-color .25s ease, background .25s ease;
}
.svcpane__list li:hover {
  transform: translateY(-2px);
  border-color: rgba(28,129,255,0.4);
  background: linear-gradient(180deg, rgba(28,129,255,0.08), rgba(28,129,255,0.02));
}
.svcpane__list li::before {
  content: "";
  position: absolute;
  left: 12px; top: 50%;
  transform: translateY(-50%);
  width: 18px; height: 18px;
  border-radius: 50%;
  background:
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='white' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'><polyline points='3.5 8.5 6.5 11.5 12.5 5'/></svg>") center/12px no-repeat,
    linear-gradient(135deg, var(--blue), #0b5fd6);
  box-shadow: 0 4px 10px -2px rgba(28,129,255,0.5);
}
.svcpane__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  background: var(--blue);
  color: #fff;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14.5px;
  text-decoration: none;
  box-shadow: 0 12px 28px -10px rgba(28,129,255,0.55);
  transition: transform .25s ease, box-shadow .25s ease;
}
.svcpane__cta:hover { transform: translateY(-2px); box-shadow: 0 18px 36px -12px rgba(28,129,255,0.7); }

.vizframe {
  position: relative;
  border-radius: 18px;
  background: linear-gradient(150deg, #0b1530 0%, #142454 70%, #1c81ff 160%);
  padding: 22px;
  min-height: 320px;
  overflow: hidden;
}
.vizframe__grid {
  position: absolute; inset: 0;
  background:
    linear-gradient(rgba(255,255,255,0.06) 1px, transparent 1px) 0 0 / 100% 36px,
    linear-gradient(90deg, rgba(255,255,255,0.06) 1px, transparent 1px) 0 0 / 36px 100%;
  pointer-events: none;
}
.vizframe svg { position: relative; width: 100%; height: 220px; display: block; }
.vp-fill { animation: vfade 1s ease both; }
.vp-line { stroke-dasharray: 700; stroke-dashoffset: 700; animation: vdraw 1.6s ease forwards; }
.vp-dot { animation: vfade 1.4s ease both; }
@keyframes vfade { from { opacity: 0; } }
@keyframes vdraw { to { stroke-dashoffset: 0; } }

.vizchip {
  position: absolute;
  background: rgba(255,255,255,0.95);
  color: var(--ink);
  border-radius: 12px;
  padding: 10px 14px;
  font-size: 12px;
  font-weight: 600;
  display: flex;
  flex-direction: column;
  gap: 2px;
  backdrop-filter: blur(6px);
  box-shadow: 0 12px 28px -12px rgba(0,0,0,0.5);
}
.vizchip b { font-family: "Sora", sans-serif; font-size: 16px; color: var(--blue); font-weight: 700; }
.vizchip--tl { top: 18px; left: 18px; }
.vizchip--br { bottom: 18px; right: 18px; }

/* SMO viz */
.igpost {
  position: relative;
  z-index: 1;
  margin: 8px auto 0;
  max-width: 240px;
  background: #fff;
  border-radius: 14px;
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  box-shadow: 0 18px 40px -16px rgba(0,0,0,0.4);
}
.igpost__head { display: flex; align-items: center; gap: 8px; font-size: 12px; }
.igpost__head i { width: 22px; height: 22px; border-radius: 50%; background: linear-gradient(135deg,#f58529,#dd2a7b 50%,#8134af); }
.igpost__head b { font-weight: 700; color: var(--ink); flex: 1; font-size: 12px; }
.igpost__head em { font-style: normal; color: var(--ink-3); font-size: 10px; }
.igpost__media { height: 110px; border-radius: 10px; background: linear-gradient(135deg, var(--blue) 0%, #0b1530 100%); }
.igpost__row { font-size: 11px; color: var(--ink-2); font-weight: 600; }

/* PPC viz */
.adcard {
  position: relative; z-index: 1;
  background: #fff; border-radius: 12px;
  padding: 14px; margin-top: 8px;
  box-shadow: 0 12px 28px -12px rgba(0,0,0,0.4);
}
.adcard__head { display: flex; align-items: center; gap: 8px; font-size: 11px; color: var(--ink-3); margin-bottom: 6px; }
.adcard__head b { background: #16a36b; color: #fff; font-style: normal; font-size: 9px; font-weight: 700; padding: 2px 6px; border-radius: 4px; letter-spacing: 0.1em; }
.adcard__title { font-size: 14px; color: #1a0dab; font-weight: 700; }
.adcard__stars { color: #ffb547; font-size: 12px; margin-top: 6px; }
.adcard__stars em { color: var(--ink-3); font-style: normal; font-weight: 600; font-size: 11px; }
.kpis { position: relative; z-index: 1; display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-top: 12px; }
.kpis > div { background: rgba(255,255,255,0.95); border-radius: 10px; padding: 10px; text-align: center; }
.kpis b { font-family: "Sora", sans-serif; display: block; color: var(--blue); font-size: 18px; font-weight: 700; line-height: 1; }
.kpis span { display: block; font-size: 10px; color: var(--ink-3); margin-top: 4px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; }

/* Content viz */
.art-stack { position: relative; z-index: 1; display: flex; flex-direction: column; gap: 10px; margin-top: 6px; }
.art-stack__card { background: #fff; border-radius: 12px; padding: 14px; box-shadow: 0 12px 28px -12px rgba(0,0,0,0.4); }
.art-stack__card span { font-size: 10px; color: var(--blue); font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; }
.art-stack__card h6 { font-family: "Sora", sans-serif; font-weight: 700; color: var(--ink); font-size: 14px; margin: 4px 0 8px; line-height: 1.3; }
.art-stack__card i { display: block; height: 4px; background: var(--blue-50); border-radius: 99px; margin-bottom: 4px; }
.art-stack__card--b { transform: translateX(20px); }

/* Influencer viz */
.creators { position: relative; z-index: 1; display: flex; flex-direction: column; gap: 10px; margin-top: 6px; }
.creator { display: flex; align-items: center; gap: 12px; background: #fff; border-radius: 14px; padding: 12px 14px; box-shadow: 0 12px 28px -12px rgba(0,0,0,0.4); transition: transform .35s ease; }
.creator:nth-child(2) { transform: translateX(18px); }
.creator:nth-child(3) { transform: translateX(36px); }
.creator__avatar { width: 36px; height: 36px; border-radius: 999px; flex-shrink: 0; box-shadow: inset 0 0 0 2px rgba(255,255,255,0.6); }
.creator__meta { display: flex; flex-direction: column; flex: 1; min-width: 0; }
.creator__meta b { font-family: "Sora", sans-serif; font-weight: 700; color: var(--ink); font-size: 13px; line-height: 1.2; }
.creator__meta span { font-size: 11px; color: var(--ink-3); margin-top: 2px; }
.creator__plat { font-family: "Sora", sans-serif; font-weight: 700; font-size: 10px; letter-spacing: 0.05em; padding: 6px 9px; border-radius: 8px; background: var(--blue-50); color: var(--blue); }

@media (max-width: 980px) {
  .svctabs { grid-template-columns: 1fr; gap: 16px; }
  .svctabs__rail { display: flex; flex-direction: row; gap: 8px; overflow-x: auto; -webkit-overflow-scrolling: touch; padding-bottom: 4px; scroll-snap-type: x mandatory; }
  .svctabs__rail::-webkit-scrollbar { display: none; }
  .svctab { padding: 12px 16px; flex: 0 0 auto; min-width: 140px; scroll-snap-align: start; }
  .svctab:hover { transform: none; }
  .svctab__num { display: none; }
  .svctab__sub { display: none; }
  .svctab__chev { display: none; }
  .svctab__chev { display: none; }
  .svctab__label { font-size: 14.5px; }
  .svcpane { grid-template-columns: 1fr; gap: 24px; }
  .svctabs__panes { padding: 24px; }
}
@media (max-width: 720px) {
  .svcpane__list { grid-template-columns: 1fr; }
}

.awards {
  position: relative;
  padding: 110px 0;
  background: linear-gradient(180deg, #fff 0%, #f4f7fd 100%);
  overflow: hidden;
}
.awards__bg { position: absolute; inset: 0; pointer-events: none; }
.awards__glow {
  position: absolute;
  width: 520px; height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(28,129,255,0.18) 0%, transparent 60%);
  top: -180px; left: -160px;
  filter: blur(8px);
}
.awards__glow--b { top: auto; bottom: -200px; left: auto; right: -180px; background: radial-gradient(circle, rgba(11,21,48,0.10) 0%, transparent 60%); }

.awards__head {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: end;
  margin-bottom: 56px;
}
.awards__head h2 { margin-top: 14px; font-size: clamp(28px, 2.6vw, 44px); max-width: 18ch; }
.awards__head .lead { margin: 0; max-width: 44ch; }

.awards__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 20px;
}
.awards__grid > .award:nth-child(1) { grid-row: span 2; }
.awards__grid > .award:nth-child(6) { grid-column: 1 / -1; }

.award {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: var(--shadow-sm);
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
  overflow: hidden;
}
.award::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, transparent 30%, rgba(28,129,255,0.5) 100%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  opacity: 0; transition: opacity .35s ease;
}
.award:hover { transform: translateY(-4px); box-shadow: 0 22px 60px -28px rgba(11,21,48,0.25); }
.award:hover::before { opacity: 1; }

.award h4 { font-size: 18px; line-height: 1.3; }
.award p { font-size: 14px; color: var(--ink-2); line-height: 1.55; }
.award__year-tag {
  align-self: flex-start;
  margin-top: auto;
  padding: 5px 10px;
  border: 1px solid var(--line);
  border-radius: 99px;
  font-family: "Sora", sans-serif;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--ink-2);
}

.award__icon {
  width: 56px; height: 56px;
  border-radius: 16px;
  display: grid; place-items: center;
  background: #f4f7fd;
}
.award__icon svg { width: 32px; height: 32px; }

/* feature card */
.award--feature {
  background: linear-gradient(155deg, #0b1530 0%, #142454 60%, #1c81ff 130%);
  color: #fff;
  border-color: transparent;
  padding: 32px;
  flex-direction: row;
  align-items: stretch;
  gap: 28px;
}
.award--feature::after {
  content: "";
  position: absolute;
  width: 280px; height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.12) 0%, transparent 65%);
  bottom: -80px; right: -60px;
}
.award__ribbon {
  flex-shrink: 0;
  width: 110px;
  display: grid; place-items: center;
  position: relative;
  z-index: 1;
}
.award__ribbon svg { width: 100%; height: auto; filter: drop-shadow(0 12px 24px rgba(28,129,255,0.45)); animation: ribbon-float 4s ease-in-out infinite; }
@keyframes ribbon-float { 50% { transform: translateY(-6px) rotate(-2deg); } }
.award__body { display: flex; flex-direction: column; gap: 12px; position: relative; z-index: 1; }
.award__year { font-family: "Sora", sans-serif; font-size: 12px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(255,255,255,0.75); }
.award--feature h3 { font-size: clamp(22px, 1.6vw, 28px); line-height: 1.2; color: #fff; }
.award--feature p { color: rgba(255,255,255,0.78); font-size: 15px; max-width: 38ch; }
.award__tags { display: flex; gap: 6px; flex-wrap: wrap; margin-top: auto; }
.award__tags span { padding: 5px 10px; border-radius: 99px; background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.18); font-size: 11.5px; font-weight: 600; letter-spacing: 0.06em; }

/* trophy & certificate scroll (replaces stat card) */
.award--stat {
  flex-direction: column;
  align-items: stretch;
  background: linear-gradient(135deg, #f4f7fd 0%, #fff 60%);
  gap: 18px;
  padding: 24px;
}
.trophy-scroll {
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
  margin: 0 -8px;
  padding: 4px 8px 12px;
}
.trophy-scroll::-webkit-scrollbar { display: none; }
.trophy-scroll__track {
  display: flex;
  gap: 16px;
  width: max-content;
}
.trophy-card {
  flex: 0 0 220px;
  scroll-snap-align: start;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: var(--shadow-sm);
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}
.trophy-card:hover { transform: translateY(-4px); border-color: rgba(28,129,255,0.4); box-shadow: 0 18px 40px -22px rgba(11,21,48,0.3); }
.trophy-card__media {
  height: 160px;
  border-radius: 12px;
  background: radial-gradient(circle at 50% 60%, #eaf2ff 0%, #f4f7fd 70%);
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
}
.trophy-card__media::before {
  content: "";
  position: absolute;
  bottom: -20px; left: 50%;
  width: 120px; height: 30px;
  background: radial-gradient(ellipse, rgba(11,21,48,0.18) 0%, transparent 70%);
  transform: translateX(-50%);
  filter: blur(2px);
}
.trophy-card__media svg.trophy-svg { height: 130px; width: auto; filter: drop-shadow(0 8px 14px rgba(11,21,48,0.18)); animation: trophy-bob 4s ease-in-out infinite; }
.trophy-card:nth-child(odd) .trophy-svg { animation-delay: .8s; }
@keyframes trophy-bob { 50% { transform: translateY(-6px); } }
.trophy-card__media--cert { background: linear-gradient(135deg, #f4f7fd 0%, #fff 100%); }
.trophy-card__media--cert svg { width: 92%; height: auto; }
.trophy-card__meta { display: flex; flex-direction: column; gap: 2px; padding: 0 4px 4px; }
.trophy-card__year {
  font-family: "Sora", sans-serif;
  font-size: 10.5px;
  letter-spacing: 0.14em;
  font-weight: 700;
  color: var(--blue);
  text-transform: uppercase;
}
.trophy-card h5 { font-family: "Sora", sans-serif; font-size: 14.5px; font-weight: 700; color: var(--ink); line-height: 1.25; margin-top: 2px; }
.trophy-card__org { font-size: 12px; color: var(--ink-2); font-weight: 500; }
.trophy-card--gold .trophy-card__media { background: radial-gradient(circle at 50% 50%, #fff5e1 0%, #f4f7fd 70%); }
.trophy-card--silver .trophy-card__media { background: radial-gradient(circle at 50% 50%, #f1f4fb 0%, #f4f7fd 70%); }
.trophy-card--bronze .trophy-card__media { background: radial-gradient(circle at 50% 50%, #ffe8d4 0%, #f4f7fd 70%); }

.trophy-scroll__hint {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 4px;
  font-family: "Sora", sans-serif;
  font-size: 11.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-2);
  font-weight: 600;
}
.trophy-scroll__hint em { font-style: normal; color: var(--blue); }

@media (max-width: 960px) {
  .awards__head { grid-template-columns: 1fr; gap: 16px; }
  .awards__grid { grid-template-columns: repeat(2, 1fr); }
  .awards__grid > .award:nth-child(1) { grid-column: span 2; grid-row: auto; }
  .awards__grid > .award:nth-child(6) { grid-column: span 2; }
  .award--feature { flex-direction: row; }
}
@media (max-width: 720px) {
  .awards { padding: 64px 0; }
  .awards__grid { grid-template-columns: 1fr; }
  .awards__grid > .award:nth-child(1),
  .awards__grid > .award:nth-child(6) { grid-column: auto; }
  .award--feature { flex-direction: column; padding: 24px; }
  .award__ribbon { width: 80px; align-self: center; }
  .award--stat { flex-direction: column; align-items: flex-start; gap: 20px; }
  .award__bars { width: 100%; justify-content: space-between; }
  .award__bars i { flex: 1; max-width: 38px; }
}

/* ==========================================================================
   Partners marquee
   ========================================================================== */

.marquee {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}
.marquee__track {
  display: flex;
  gap: 80px;
  width: max-content;
  animation: marquee 28s linear infinite;
  align-items: center;
}
.marquee__item {
  flex-shrink: 0;
  height: 56px;
  display: grid;
  place-items: center;
  font-family: "Sora", sans-serif;
  font-weight: 700;
  font-size: 22px;
  color: var(--ink-3);
  letter-spacing: -0.02em;
  opacity: 0.7;
  transition: opacity .25s ease, color .25s ease;
}
.marquee__item:hover { opacity: 1; color: var(--blue); }
@keyframes marquee {
  to { transform: translateX(-50%); }
}

/* ==========================================================================
   Partners (refreshed)
   ========================================================================== */

.partners {
  padding: 110px 0;
  background:
    radial-gradient(900px 400px at 50% 0%, rgba(28, 129, 255, 0.06), transparent 70%),
    var(--blue-50);
  position: relative;
  overflow: hidden;
}
.partners::before, .partners::after {
  content: "";
  position: absolute;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(28,129,255,0.15), transparent);
  top: 10%;
  bottom: 10%;
}
.partners::before { left: 12%; }
.partners::after { right: 12%; }

.partners__head {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 32px;
  margin-bottom: 48px;
}
.partners__head h3 {
  margin-top: 14px;
  max-width: 18ch;
  font-size: clamp(28px, 2.4vw, 40px);
}
.partners__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 14px;
  color: var(--blue);
  padding: 10px 0;
  border-bottom: 1.5px solid transparent;
  transition: gap .2s ease, border-color .2s ease;
  white-space: nowrap;
}
.partners__cta:hover { gap: 16px; border-color: var(--blue); }
.partners__cta .arrow {
  width: 28px; height: 28px;
  border-radius: 999px;
  background: var(--blue);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 12px;
}

/* stat strip */
.partners__strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 28px 0;
  margin-bottom: 56px;
  box-shadow: var(--shadow-sm);
}
.partners__stat {
  text-align: center;
  position: relative;
}
.partners__stat + .partners__stat::before {
  content: "";
  position: absolute;
  left: 0; top: 12%; bottom: 12%;
  width: 1px;
  background: var(--line);
}
.partners__stat-num {
  font-family: "Sora", sans-serif;
  font-size: clamp(28px, 2.6vw, 40px);
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--ink);
  line-height: 1;
}
.partners__stat-num span { background: linear-gradient(180deg, var(--ink) 0%, var(--blue) 140%); -webkit-background-clip: text; background-clip: text; color: transparent; }
.partners__stat-lbl {
  margin-top: 8px;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-3);
}

/* logo cards */
.partners .marquee__track { gap: 18px; animation-duration: 40s; }
.logo-card {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 28px;
  height: 76px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  font-family: "Sora", sans-serif;
  font-weight: 700;
  font-size: 19px;
  letter-spacing: -0.01em;
  color: var(--ink-3);
  transition: color .3s ease, border-color .3s ease, transform .3s ease, box-shadow .3s ease, background .3s ease;
  white-space: nowrap;
}
.logo-card svg {
  width: 28px; height: 28px;
  flex-shrink: 0;
  color: var(--ink-3);
  transition: color .3s ease;
}
.logo-card .lc-italic { font-style: italic; font-weight: 600; }
.logo-card:hover {
  color: var(--blue);
  border-color: rgba(28,129,255,0.5);
  background: linear-gradient(180deg, #fff, #f5f8ff);
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(28, 129, 255, 0.14);
}
.logo-card:hover svg { color: var(--blue); }

@media (max-width: 720px) {
  .partners__head { grid-template-columns: 1fr; align-items: start; }
  .partners__strip { grid-template-columns: repeat(2, 1fr); padding: 16px 0; gap: 16px 0; }
  .partners__stat:nth-child(3)::before { display: none; }
}

.cta {
  padding: 100px 0;
}
.cta__inner {
  background: linear-gradient(135deg, #1c81ff 0%, #0d6df0 60%, #0d4cb8 100%);
  border-radius: 32px;
  padding: 80px 64px;
  color: #fff;
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  align-items: center;
}
.cta__inner::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(600px 400px at 100% 0%, rgba(255,255,255,0.18), transparent 60%),
    radial-gradient(400px 300px at 0% 100%, rgba(255,255,255,0.08), transparent 60%);
}
.cta h2 { color: #fff; }
.cta__copy { position: relative; z-index: 1; display: flex; flex-direction: column; gap: 18px; }
.cta__copy p { color: rgba(255,255,255,0.85); }
.cta__cta { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 6px; }
.cta__pulse {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  aspect-ratio: 1;
  max-width: 320px;
  margin-left: auto;
}
.cta__pulse-dot {
  width: 90px; height: 90px;
  border-radius: 50%;
  background: #fff;
  display: grid; place-items: center;
  color: var(--blue);
  font-size: 36px;
  z-index: 2;
  box-shadow: 0 16px 40px rgba(0,0,0,0.2);
}
.cta__pulse::before, .cta__pulse::after, .cta__pulse-dot::before {
  content: "";
  position: absolute;
  inset: 50%;
  width: 90px; height: 90px;
  margin: -45px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.5);
  animation: cta-pulse 3s ease-out infinite;
}
.cta__pulse::after { animation-delay: 1s; }
.cta__pulse-dot::before { animation-delay: 2s; border-color: rgba(255,255,255,0.7); }
@keyframes cta-pulse {
  0% { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(2.6); opacity: 0; }
}

/* ==========================================================================
   Footer
   ========================================================================== */

.footer {
  background: var(--navy);
  color: #e3e9f7;
  padding: 80px 0 40px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 60px;
  margin-bottom: 60px;
}
.footer h5 {
  font-family: "Sora", sans-serif;
  font-size: 13px;
  color: #ffffff;
  color: #fff;
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.footer ul { list-style: none; display: flex; flex-direction: column; gap: 12px; font-size: 15px; font-weight: 600; }
.footer ul a { color: #f1f5ff; }
.footer ul a:hover { color: var(--blue); }
.footer__brand .lead { color: #d6deef; max-width: 36ch; font-size: 14.5px; font-weight: 500; }
.footer__brand .nav__brand { margin-bottom: 18px; color: #fff; }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
}
.footer__social {
  display: flex;
  gap: 8px;
}
.footer__social a {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: rgba(255,255,255,0.06);
  display: grid; place-items: center;
  font-size: 14px;
  transition: background .2s ease;
}
.footer__social a:hover { background: var(--blue); color: #fff; }

/* ==========================================================================
   Reveal animation primitives
   ========================================================================== */

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .9s cubic-bezier(0.2, 0.8, 0.2, 1), transform .9s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.reveal.is-in { opacity: 1; transform: none; }

.reveal--right { transform: translateX(40px); }
.reveal--right.is-in { transform: none; }
.reveal--left { transform: translateX(-40px); }
.reveal--left.is-in { transform: none; }

.stagger > * { transition-delay: calc(var(--i, 0) * 90ms); }

/* heartbeat divider */
.heartbeat-divider {
  display: block;
  margin: 0 auto;
  height: 40px;
  opacity: 0.5;
}
.heartbeat-divider path {
  stroke-dasharray: 600;
  stroke-dashoffset: 600;
  animation: hb 4s ease-in-out infinite;
}
@keyframes hb {
  0% { stroke-dashoffset: 600; }
  60% { stroke-dashoffset: 0; }
  100% { stroke-dashoffset: -600; }
}

/* ==========================================================================
   Responsive
   ========================================================================== */
/* ---------- Tablet (≤ 960px) ---------- */
@media (max-width: 960px) {
  :root { --pad-y: 80px; }
  .hero__grid, .growth__grid, .dashboard__grid, .cta__inner { grid-template-columns: 1fr; gap: 60px; }
  .stats__grid, .services__grid, .testimonials__row, .process__rail, .footer__grid { grid-template-columns: repeat(2, 1fr); }
  .nav__links { display: none; }
  .process__line { display: none; }
  h1 { font-size: clamp(36px, 7vw, 56px); }
  h2 { font-size: clamp(28px, 5vw, 44px); }
}

/* ---------- Mobile (≤ 720px) — content-first, animations off ---------- */
@media (max-width: 720px) {
  :root { --pad-y: 56px; --radius-lg: 18px; }
  .container { padding: 0 20px; }
  body { font-size: 15px; }

  /* typography */
  h1 { font-size: clamp(28px, 8vw, 36px); line-height: 1.12; letter-spacing: -0.02em; }
  .hero h1 br { display: none; }
  .hero h1 .rotator { display: inline-block; }
  h2 { font-size: clamp(24px, 6.5vw, 32px); line-height: 1.15; }
  h3 { font-size: 18px; }
  .lead { font-size: 15px; }

  /* nav — only brand, centered */
  .nav__cta { display: none !important; }
  .nav__inner { justify-content: center; gap: 0; }
  .nav__brand { margin: 0 auto; }
  .nav { padding: 12px 0; }

  /* HERO — kill animation stage, content-first */
  .hero--v2 { padding: 96px 0 48px; min-height: auto; }
  .hero__bg, .hero__stage, .hero__stage--v2 { display: none !important; }
  .hero__grid { grid-template-columns: 1fr; gap: 0; }
  .hero__copy { text-align: left; gap: 18px; }
  .hero__cta { flex-direction: column; align-items: stretch; }
  .hero__cta .btn { justify-content: center; width: 100%; }
  .hero__ticker { flex-wrap: wrap; gap: 8px; }
  .chip { font-size: 12px; padding: 6px 10px; }

  /* universal: stop all heavy decorative animations on mobile */
  .ps-ring, .ps-orbit, .hero__ecg, .hero__particles,
  .data-card, .hero__rotator,
  .cta__pulse::before, .cta__pulse::after, .cta__pulse-dot::before,
  .partners__strip-track, .marquee, .marquee__track {
    animation: none !important;
  }
  .data-card { display: none !important; }
  .cta__pulse { display: none; }
  .marquee, .marquee__track { transform: none !important; }

  /* sections: single column */
  .stats__grid { grid-template-columns: repeat(2, 1fr); gap: 28px; }
  .stat__num { font-size: 36px; }
  .stat__label { font-size: 11px; }

  .services__grid {
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: 85%;
    gap: 14px;
    overflow-x: auto;
    overflow-y: visible;
    scroll-snap-type: x mandatory;
    scroll-padding: 20px;
    padding: 4px 20px 20px;
    margin: 0 -20px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .services__grid::-webkit-scrollbar { display: none; }
  .services__grid > .svc { scroll-snap-align: start; min-width: 0; }
  .svc { padding: 24px; gap: 14px; }
  .svc__viz { min-height: 0; padding: 12px; }
  .svc__foot { flex-direction: column; align-items: flex-start; gap: 12px; }
  .svc__ribbon { font-size: 9.5px; padding: 4px 36px; right: -32px; }

  .testimonials__head { grid-template-columns: 1fr; gap: 24px; margin-bottom: 32px; }
  .testimonials__row {
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: 88%;
    gap: 14px;
    overflow-x: auto;
    overflow-y: visible;
    scroll-snap-type: x mandatory;
    scroll-padding: 20px;
    padding: 4px 20px 20px;
    margin: 0 -20px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .testimonials__row::-webkit-scrollbar { display: none; }
  .testimonials__row > .tcard { scroll-snap-align: start; min-width: 0; }
  .tcard { padding: 24px; }
  .tcard__metrics { grid-template-columns: 1fr 1fr; }
  .tcard__person { flex-wrap: wrap; }
  .rating-block__num { font-size: 44px; }

  /* growth + dashboard */
  .growth__grid, .dashboard__grid { gap: 40px; }
  .chart-card { display: none !important; }

  /* process — horizontal scroll */
  .process__rail {
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: 78%;
    gap: 14px;
    overflow-x: auto;
    overflow-y: visible;
    scroll-snap-type: x mandatory;
    scroll-padding: 20px;
    padding: 4px 20px 20px;
    margin: 0 -20px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .process__rail::-webkit-scrollbar { display: none; }
  .process__rail > .process__step { scroll-snap-align: start; min-width: 0; padding: 20px; }

  /* partners */
  .partners__head { grid-template-columns: 1fr; gap: 20px; }
  .partners__strip { grid-template-columns: repeat(2, 1fr); }
  .partners .marquee {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    -webkit-mask-image: none;
    mask-image: none;
    padding: 4px 16px 16px;
    margin: 0 -16px;
    scrollbar-width: none;
  }
  .partners .marquee::-webkit-scrollbar { display: none; }
  .partners .marquee__track {
    animation: none !important;
    width: max-content;
    gap: 12px;
  }
  .partners .marquee__track > .logo-card { scroll-snap-align: start; }
  /* hide the duplicate set used for the desktop loop so it doesn't bloat scroll */
  .partners .marquee__track > .logo-card:nth-child(n+9) { display: none; }

  /* CTA */
  .cta__inner { padding: 32px 24px; grid-template-columns: 1fr; }
  .cta__cta { flex-direction: column; }
  .cta__cta .btn { width: 100%; justify-content: center; }

  /* footer */
  .footer { padding: 56px 0 32px; }
  .footer__grid { grid-template-columns: repeat(2, 1fr); gap: 32px 24px; margin-bottom: 36px; }
  .footer__brand { grid-column: 1 / -1; }
  .footer ul { gap: 10px; font-size: 14.5px; }
  .footer__bottom { flex-direction: column; gap: 16px; align-items: flex-start; text-align: left; }

  /* dashboard cards */
  .kpi-grid { grid-template-columns: repeat(2, 1fr) !important; }

  /* dashboard — fix overflow on small screens */
  .dashboard__grid-inner { grid-template-columns: 1fr 1fr !important; gap: 10px !important; }
  .dashboard__chart { padding: 12px; }
  .dashboard__bars { gap: 4px; }
  .kpi__num { font-size: 22px !important; }
  .kpi { padding: 12px !important; }

  /* general overflow guard */
  html, body { overflow-x: hidden; }
  .section, .container { max-width: 100vw; }

  /* keep content visible without scroll-reveal animation */
  .reveal { opacity: 1 !important; transform: none !important; }
}

/* ---------- Respect prefers-reduced-motion at any width ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
}
