 .rrx {
  background: #0a0e1a;
  padding: clamp(80px, 10vw, 130px) 0;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
 
/* Noise texture overlay */
.rrx::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
  opacity: 0.6;
}
 
/* Moving grid */
.rrx__grid {
  position: absolute;
  inset: -60px;
  background-image:
    linear-gradient(rgba(0,229,176,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,229,176,.04) 1px, transparent 1px);
  background-size: 56px 56px;
  animation: rrx-grid 25s linear infinite;
  z-index: 0;
}
@keyframes rrx-grid {
  from { transform: translate(0,0); }
  to   { transform: translate(56px,56px); }
}
 
/* Ambient orbs */
.rrx__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}
.rrx__orb--1 {
  width: 500px; height: 500px;
  background: rgba(0,229,176,.07);
  top: -150px; right: -100px;
  animation: rrx-orb1 12s ease-in-out infinite alternate;
}
.rrx__orb--2 {
  width: 400px; height: 400px;
  background: rgba(67,97,238,.06);
  bottom: -100px; left: -80px;
  animation: rrx-orb2 15s ease-in-out infinite alternate;
}
@keyframes rrx-orb1 { from{transform:translate(0,0) scale(1)} to{transform:translate(-40px,30px) scale(1.1)} }
@keyframes rrx-orb2 { from{transform:translate(0,0) scale(1)} to{transform:translate(30px,-40px) scale(1.15)} }
 
/* Container */
.rrx .container { position: relative; z-index: 1;  }
 
/* ─────────────────────────────────────────────────────────
   INTRO
───────────────────────────────────────────────────────── */
.rrx__intro {
  text-align: center;
  margin-bottom: clamp(48px, 6vw, 72px);
 max-width: 100%;
}
.rrx__tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0,229,176,.08);
  border: 1px solid rgba(0,229,176,.2);
  border-radius: 100px;
  padding: 6px 16px;
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #00e5b0;
  margin-bottom: 20px;
}
.rrx__tag-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #00e5b0;
  animation: rrx-blink 1.8s ease infinite;
}
@keyframes rrx-blink { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.2;transform:scale(.5)} }
 
.rrx__h2 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(1.9rem, 4vw, 3rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -.025em;
  margin: 0 0 14px;
  max-width: 100%;
  margin-bottom:30px;
}
.rrx__h2 em {
  color: #00e5b0;
  font-style: normal;
  position: relative;
}
.rrx__h2 em::after {
  content: '';
  position: absolute;
  left: 0; bottom: -2px; right: 0;
  height: 2px;
  background: linear-gradient(90deg, #00e5b0, transparent);
  border-radius: 2px;
}
.rrx__sub {
  font-size: clamp(0.9rem, 1.6vw, 1rem);
  color: rgba(255,255,255,.4);
  max-width: 1200px;
  margin: 0 auto;
  line-height: 1.7;
}
 
/* ─────────────────────────────────────────────────────────
   MAIN GRID
───────────────────────────────────────────────────────── */
.rrx__body {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}
@media (max-width: 860px) { .rrx__body { grid-template-columns: 1fr; } }
 
/* ─────────────────────────────────────────────────────────
   LEFT - FACTOR CARDS
───────────────────────────────────────────────────────── */
.rrx__cards { display: flex; flex-direction: column; gap: 10px; }
 
.rrx__card {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 20px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.06);
  background: rgba(255,255,255,.03);
  cursor: pointer;
  transition: border-color .3s, background .3s, transform .3s;
  overflow: hidden;
}
/* Shimmer on hover */
.rrx__card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(0,229,176,.06) 50%, transparent 60%);
  transform: translateX(-100%);
  transition: transform .6s ease;
}
.rrx__card:hover::before { transform: translateX(100%); }
 
/* Active glow border */
.rrx__card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid rgba(0,229,176,.0);
  transition: border-color .3s, box-shadow .3s;
  pointer-events: none;
}
.rrx__card:hover { background: rgba(255,255,255,.05); transform: translateX(4px); }
.rrx__card.is-active {
  background: rgba(0,229,176,.07);
  border-color: rgba(0,229,176,.25);
  transform: translateX(6px);
}
.rrx__card.is-active::after {
  border-color: rgba(0,229,176,.3);
  box-shadow: 0 0 20px rgba(0,229,176,.08), inset 0 0 20px rgba(0,229,176,.03);
}
 
/* Left accent bar */
.rrx__card-bar {
  position: absolute;
  left: 0; top: 20%; bottom: 20%;
  width: 3px;
  background: #00e5b0;
  border-radius: 0 3px 3px 0;
  transform: scaleY(0);
  transform-origin: center;
  transition: transform .35s cubic-bezier(.34,1.56,.64,1);
}
.rrx__card.is-active .rrx__card-bar { transform: scaleY(1); }
 
/* Icon */
.rrx__card-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
  transition: all .3s;
}
.rrx__card.is-active .rrx__card-icon {
  background: rgba(0,229,176,.15);
  border-color: rgba(0,229,176,.3);
  box-shadow: 0 0 16px rgba(0,229,176,.2);
  transform: scale(1.08);
}
 
/* Text */
.rrx__card-title {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: rgba(255,255,255,.9);
  margin: 0 0 5px;
  transition: color .2s;
}
.rrx__card.is-active .rrx__card-title { color: #fff; }
.rrx__card-text {
  font-size: 13px;
  color: rgba(255,255,255,.38);
  line-height: 1.65;
  margin: 0;
  transition: color .3s;
}
.rrx__card.is-active .rrx__card-text { color: rgba(255,255,255,.6); }
 
/* Ring badge on card */
.rrx__card-km {
  position: absolute;
  top: 14px; right: 16px;
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  font-weight: 700;
  color: rgba(0,229,176,.5);
  transition: color .3s;
}
.rrx__card.is-active .rrx__card-km { color: #00e5b0; }
 
/* Bottom note */
.rrx__note {
  margin-top: 14px;
  padding: 16px 20px;
  border-radius: 14px;
  background: rgba(0,229,176,.05);
  border: 1px solid rgba(0,229,176,.12);
  font-size: 13px;
  color: rgba(255,255,255,.5);
  line-height: 1.75;
  position: relative;
  overflow: hidden;
}
.rrx__note::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, #00e5b0, rgba(0,229,176,.2));
  border-radius: 0 3px 3px 0;
}
.rrx__note strong { color: #fff; }
 
/* ─────────────────────────────────────────────────────────
   RIGHT - RADAR VISUALISER
───────────────────────────────────────────────────────── */
.rrx__viz {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}
 
/* Header bar - terminal style */
.rrx__viz-head {
  width: 100%;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 14px 14px 0 0;
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: -1px;
}
.rrx__viz-dots { display: flex; gap: 6px; }
.rrx__viz-dots span {
  width: 10px; height: 10px;
  border-radius: 50%;
}
.rrx__viz-dots span:nth-child(1) { background: #ff5f57; }
.rrx__viz-dots span:nth-child(2) { background: #febc2e; }
.rrx__viz-dots span:nth-child(3) { background: #28c840; }
.rrx__viz-title-bar {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  color: rgba(255,255,255,.35);
  flex: 1;
  text-align: center;
}
.rrx__viz-live {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  color: #00e5b0;
  background: rgba(0,229,176,.1);
  border: 1px solid rgba(0,229,176,.2);
  border-radius: 100px;
  padding: 2px 8px;
  animation: rrx-live 2s ease infinite;
}
@keyframes rrx-live { 0%,100%{opacity:1} 50%{opacity:.5} }
 
/* Radar card */
.rrx__radar-card {
  width: 100%;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.07);
  border-top: none;
  border-radius: 0 0 20px 20px;
  padding: 32px 28px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}
 
/* ── RADAR CANVAS ──────────────────────────────────── */
.rrx__radar {
  position: relative;
  width: clamp(220px, 38vw, 300px);
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
 
/* SVG full radar */
.rrx__svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}
 
/* ring elements */
.rrx-ring {
  fill: none;
  transition: stroke .5s ease, stroke-width .4s ease, filter .4s ease;
}
.rrx-ring-1 { stroke: rgba(0,229,176,.9); stroke-width: 1.5; }
.rrx-ring-2 { stroke: rgba(0,229,176,.45); stroke-width: 1; }
.rrx-ring-3 { stroke: rgba(0,229,176,.2); stroke-width: 1; }
.rrx-ring-4 { stroke: rgba(0,229,176,.1); stroke-width: 1; stroke-dasharray: 3 6; }
 
.rrx-ring.is-lit {
  stroke-width: 2.5 !important;
  filter: drop-shadow(0 0 6px rgba(0,229,176,.8));
}
 
/* pulse wave from center */
.rrx-pulse-ring {
  fill: none;
  stroke: rgba(0,229,176,.5);
  stroke-width: 1.5;
  transform-origin: 150px 150px;
  animation: rrx-pulse-out 3s ease-out infinite;
  opacity: 0;
}
.rrx-pulse-ring:nth-child(2) { animation-delay: 1s; }
.rrx-pulse-ring:nth-child(3) { animation-delay: 2s; }
@keyframes rrx-pulse-out {
  0%   { r: 8px; opacity: .8; }
  100% { r: 155px; opacity: 0; }
}
 
/* sweep */
.rrx-sweep-g { transform-origin: 150px 150px; animation: rrx-sweep 3.5s linear infinite; }
@keyframes rrx-sweep { from{transform:rotate(0deg)} to{transform:rotate(360deg)} }
 
/* blips */
.rrx-blip {
  animation: rrx-blip-fade 5s ease-in-out infinite;
  opacity: 0;
}
.rrx-blip:nth-child(1) { animation-delay: 0s; }
.rrx-blip:nth-child(2) { animation-delay: 1.2s; }
.rrx-blip:nth-child(3) { animation-delay: 2.4s; }
.rrx-blip:nth-child(4) { animation-delay: 3.6s; }
@keyframes rrx-blip-fade { 0%,100%{opacity:0} 20%,70%{opacity:1} }
 
/* ── LEGEND ────────────────────────────────────────── */
.rrx__legend {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 16px;
}
.rrx__legend-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: rgba(255,255,255,.38);
  cursor: pointer;
  transition: color .2s;
  padding: 6px 10px;
  border-radius: 8px;
  border: 1px solid transparent;
  transition: all .2s;
}
.rrx__legend-item:hover { color: rgba(255,255,255,.7); background: rgba(255,255,255,.04); }
.rrx__legend-item.is-active {
  color: rgba(255,255,255,.9);
  background: rgba(0,229,176,.06);
  border-color: rgba(0,229,176,.15);
}
.rrx__legend-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
  transition: transform .3s, box-shadow .3s;
}
.rrx__legend-item.is-active .rrx__legend-dot {
  transform: scale(1.5);
  box-shadow: 0 0 8px rgba(0,229,176,.6);
}
 
/* ── ACTIVE KM DISPLAY ─────────────────────────────── */
.rrx__km-display {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 20px;
  background: rgba(0,229,176,.06);
  border: 1px solid rgba(0,229,176,.15);
  border-radius: 100px;
  width: fit-content;
  align-self: center;
}
.rrx__km-label {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  color: rgba(255,255,255,.4);
  text-transform: uppercase;
  letter-spacing: .1em;
}
.rrx__km-val {
  font-family: 'DM Mono', monospace;
  font-size: 22px;
  font-weight: 700;
  color: #00e5b0;
  transition: all .3s;
  min-width: 70px;
  text-align: center;
}
.rrx__km-zone {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  color: rgba(255,255,255,.35);
  text-transform: uppercase;
  letter-spacing: .08em;
  transition: all .3s;
}
 
/* ─────────────────────────────────────────────────────────
   REVEAL ANIMATIONS
───────────────────────────────────────────────────────── */
.rrx__intro,
.rrx__left,
.rrx__right {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .8s ease, transform .8s ease;
}
.rrx__right { transition-delay: .18s; transform: translateY(32px) scale(.97); }
.rrx__intro.on, .rrx__left.on, .rrx__right.on {
  opacity: 1; transform: none;
}

  /* Fix 1: AIE glow elements leaking out */
.ai-estimator__bg {
  position: absolute !important;
  overflow: hidden !important;
  width: 100% !important;
}

/* Fix 2: Popup rendering in layout flow */
.popup,
.popup-overlay {
  position: fixed !important;
  width: 100% !important;
  max-width: 100vw !important;
  overflow: hidden !important;
}

/* Fix 3: Testi track still leaking */
.testi-viewport,
.testi-track {
  max-width: 100% !important;
  width: 100% !important;
}

/* Fix 4: Carousel stage overflow */
.carousel-stage {
  overflow: hidden !important;
  max-width: 100% !important;
}
  .results-section { overflow: clip; }
  .testi-carousel-wrap { overflow: hidden; }
  .testi-viewport { width: 100%; }
/* Override app.css hero for this page */
.hero {
  min-height: unset !important;
  display: block !important;
  flex-direction: unset !important;
}
html {
  
   background: #0f1525 !important; 
}

body {
  overflow-x: hidden !important;
  max-width: 100vw !important;
}
.hero{
   min-height: 0vh !important;
}

  /* ── SECTION ── */
.results-section {
  padding: 88px 0 96px;
  background: var(--white);
  position: relative;
  overflow: hidden;
}
 
.results-section::before {
  content: '';
  position: absolute;
  top: -80px; left: 50%;
  transform: translateX(-50%);
  width: 700px; height: 400px;
  background: radial-gradient(ellipse, rgba(6,214,160,0.07) 0%, transparent 68%);
  pointer-events: none;
}
 
.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 28px;
  position: relative;
  z-index: 1;
}
 
/* ── SECTION ── */
.results-section {
  padding: 88px 0 96px;
  background: var(--white);
  position: relative;
  overflow: hidden;
}
 
.results-section::before {
  content: '';
  position: absolute;
  top: -80px; left: 50%;
  transform: translateX(-50%);
  width: 700px; height: 400px;
  background: radial-gradient(ellipse, rgba(6,214,160,0.07) 0%, transparent 68%);
  pointer-events: none;
}
 
.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 28px;
  position: relative;
  z-index: 1;
}
 
/* ── HEADING ── */
.section-head {
  text-align: center;
  margin-bottom: 16px;
}
 
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--c-signal-d);
  margin-bottom: 14px;
}
 
.dot-pulse {
  width: 7px; height: 7px;
  background: var(--signal);
  border-radius: 50%;
  animation: blink 2s ease infinite;
}
@keyframes blink {
  0%,100% { opacity:1; transform:scale(1); }
  50%      { opacity:.45; transform:scale(.6); }
}
 
.section-title {
  font-family: var(--ff-display);
  font-size: 2.375rem;
  font-weight: 800;
  color: var(--ink);
  line-height: 1.12;
  letter-spacing: -.02em;
  margin-bottom: 18px;
}
.section-title em {
  color: var(--c-signal-d);
  font-style: normal;
}
 
.divider {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 6px;
}
.divider span {
  display: block;
  height: 3px;
  border-radius: 2px;
  width: 32px;
}
.divider span:first-child { background: var(--signal); }
.divider span:last-child  { background: var(--border); }
 
/* ── CAROUSEL SHELL ── */
.carousel-wrap {
  position: relative;
  padding: 0 60px;
}
 
.carousel-stage {
  perspective: 1400px;
  perspective-origin: 50% 46%;
  height: 450px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
 
/* ── SLIDE CARD ── */
.slide {
  position: absolute;
  width: 356px;
  height: 356px;
  border-radius: var(--r-20);
  overflow: hidden;
  cursor: pointer;
  transition:
    transform  .65s cubic-bezier(.25,.46,.45,.94),
    filter     .65s ease,
    box-shadow .65s ease,
    opacity    .5s ease;
  transform-origin: center center;
  user-select: none;
  will-change: transform, filter;
  display: block;
  text-decoration: none;
}
 
/* inset border ring */
.slide::before {
  content: '';
  position: absolute; inset: 0;
  border-radius: var(--r-20);
  border: 1px solid rgba(0,0,0,0.09);
  z-index: 3;
  pointer-events: none;
  transition: border-color .4s, box-shadow .4s;
}
 
.slide img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform .6s ease;
  pointer-events: none;
}
 
/* gradient overlay */
.slide-overlay {
  position: absolute; inset: 0; z-index: 2;
  background: linear-gradient(
    to bottom,
    rgba(15,23,42,0.05)  0%,
    rgba(15,23,42,0.10) 40%,
    rgba(6,214,160,0.28) 68%,
    rgba(6,214,160,0.82) 100%
  );
  opacity: 0.52;
  transition: opacity .4s;
}
 
/* info panel */
.slide-info {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 18px 20px 22px;
  z-index: 4;
  transform: translateY(10px);
  opacity: 0;
  transition: opacity .45s, transform .45s;
}
 
.slide-badge {
  display: none!important;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: var(--signal);
  color: var(--ink);
  font-size: 9.5px;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: var(--r-full);
  margin-bottom: 8px;
}
 
.slide-name {
  display: none;
  font-family: var(--ff-display);
  font-size: 15px;
  font-weight: 800;
  color: #fff;
  line-height: 1.3;
}
 
.slide-meta {
  display: none;
  font-size: 12px;
  color: rgba(255,255,255,.68);
  margin-top: 4px;
}
 
.slide-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 13px;
  background: rgba(255,255,255,0.14);
  border: 1.5px solid rgba(255,255,255,0.52);
  color: #fff;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .04em;
  padding: 7px 14px;
  border-radius: var(--r-full);
  text-decoration: none;
  backdrop-filter: blur(6px);
  transition: background .22s, border-color .22s, color .22s, transform .18s;
  cursor: pointer;
}
.slide-cta:hover {
  background: var(--white);
  border-color: var(--white);
  color: var(--c-signal-d);
  transform: translateY(-1px);
}
.slide-cta svg {
  width: 13px; height: 13px;
  stroke: currentColor; fill: none;
  stroke-width: 2.5; stroke-linecap: round;
  transition: transform .2s;
}
.slide-cta:hover svg { transform: translateX(2px); }
 
/* ── POSITION STATES ── */
.slide[data-pos="0"] {
  transform: translateX(0) translateZ(0) scale(1);
  z-index: 10;
  filter: none;
  box-shadow:
    0 24px 64px rgba(0,0,0,.18),
    0 0 0 2.5px rgba(6,214,160,.6),
    0 0 40px rgba(6,214,160,.16);
}
.slide[data-pos="0"]::before   { border-color: rgba(6,214,160,.6); }
.slide[data-pos="0"] .slide-info { opacity:1; transform:translateY(0); }
.slide[data-pos="0"] img         { transform:scale(1.04); }
.slide[data-pos="0"] .slide-overlay { opacity:.3; }
 
.slide[data-pos="1"] {
  transform: translateX(278px) translateZ(-200px) rotateY(-14deg) scale(.86);
  z-index:7;
  filter: brightness(.62) saturate(.58) grayscale(.18);
  box-shadow: 0 6px 24px rgba(0,0,0,.11);
}
.slide[data-pos="-1"] {
  transform: translateX(-278px) translateZ(-200px) rotateY(14deg) scale(.86);
  z-index:7;
  filter: brightness(.62) saturate(.58) grayscale(.18);
  box-shadow: 0 6px 24px rgba(0,0,0,.11);
}
 
.slide[data-pos="2"] {
  transform: translateX(494px) translateZ(-370px) rotateY(-24deg) scale(.68);
  z-index:4;
  filter: brightness(.42) saturate(.3) grayscale(.34);
  box-shadow: 0 3px 12px rgba(0,0,0,.09);
}
.slide[data-pos="-2"] {
  transform: translateX(-494px) translateZ(-370px) rotateY(24deg) scale(.68);
  z-index:4;
  filter: brightness(.42) saturate(.3) grayscale(.34);
  box-shadow: 0 3px 12px rgba(0,0,0,.09);
}
 
.slide[data-pos="3"] {
  transform: translateX(658px) translateZ(-490px) rotateY(-30deg) scale(.52);
  z-index:2;
  filter: brightness(.26) saturate(.2) grayscale(.5);
  opacity:.52;
}
.slide[data-pos="-3"] {
  transform: translateX(-658px) translateZ(-490px) rotateY(30deg) scale(.52);
  z-index:2;
  filter: brightness(.26) saturate(.2) grayscale(.5);
  opacity:.52;
}
 
.slide[data-pos="hidden"] {
  transform: translateX(0) translateZ(-700px) scale(.4);
  opacity: 0;
  pointer-events: none;
  z-index: 0;
}
 
.slide[data-pos="1"]:hover,
.slide[data-pos="-1"]:hover { filter: brightness(.8) saturate(.72) grayscale(.1); cursor:pointer; }
.slide[data-pos="2"]:hover,
.slide[data-pos="-2"]:hover { filter: brightness(.54) saturate(.38) grayscale(.24); }
 
/* ── EDGE FADES ── */
.fade-l, .fade-r {
  position: absolute; top: 0; bottom: 0;
  width: 110px; z-index: 20; pointer-events: none;
}
.fade-l { left: 0;  background: linear-gradient(90deg,  #fff 0%, transparent 100%); }
.fade-r { right: 0; background: linear-gradient(270deg, #fff 0%, transparent 100%); }
 
/* ── NAV ARROWS ── */
.nav-arrow {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  width: 46px; height: 46px;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; z-index: 30;
  box-shadow: var(--sh-sm);
  transition: background .22s, border-color .22s, box-shadow .22s;
}
.nav-arrow:hover {
  background: var(--signal);
  border-color: var(--c-signal-d);
  box-shadow: 0 4px 20px var(--teal-glo);
}
.nav-arrow:hover svg { stroke: var(--ink); }
.nav-arrow svg {
  width: 18px; height: 18px;
  stroke: var(--muted); fill: none;
  stroke-width: 2.5; stroke-linecap: round;
  transition: stroke .2s;
}
.nav-prev { left: 6px; }
.nav-next { right: 6px; }
 
/* ── FOOTER ── */
.carousel-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-top: 34px;
}
 
.dots { display: flex; align-items: center; gap: 7px; }
 
.dot {
  width: 8px; height: 8px;
  background: #cbd5e1;
  border-radius: 4px;
  border: none; padding: 0; cursor: pointer;
  transition: width .32s, background .32s, box-shadow .32s;
}
.dot.active {
  width: 28px;
  background: var(--signal);
  box-shadow: 0 0 10px var(--teal-glo);
}
 
.counter {
  font-size: 12px; font-weight: 600;
  color: var(--muted); letter-spacing: .06em;
}
.counter strong { color: var(--c-signal-d); }
 
.view-all-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px; font-weight: 600;
  color: var(--c-signal-d);
  text-decoration: none;
  border-bottom: 1.5px solid transparent;
  transition: border-color .2s, gap .2s;
}
.view-all-link:hover { border-color: var(--c-signal-d); gap: 9px; }
.view-all-link svg {
  width: 14px; height: 14px;
  stroke: currentColor; fill: none;
  stroke-width: 2.5; stroke-linecap: round;
}
 
/* ── PLACEHOLDER IMAGES (colored gradient cards) ── */
.slide-bg {
  width: 100%; height: 100%;
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
}
.slide-bg svg { width: 60px; height: 60px; opacity: .18; }
 
/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  .carousel-stage { height: 460px; }
  .slide { width: 264px; height: 380px; }
  .slide[data-pos="1"]  { transform: translateX(228px) translateZ(-160px) rotateY(-12deg) scale(.84); }
  .slide[data-pos="-1"] { transform: translateX(-228px) translateZ(-160px) rotateY(12deg) scale(.84); }
  .slide[data-pos="2"]  { transform: translateX(414px) translateZ(-298px) rotateY(-20deg) scale(.66); }
  .slide[data-pos="-2"] { transform: translateX(-414px) translateZ(-298px) rotateY(20deg) scale(.66); }
  .slide[data-pos="3"]  { transform: translateX(558px) translateZ(-418px) rotateY(-26deg) scale(.50); }
  .slide[data-pos="-3"] { transform: translateX(-558px) translateZ(-418px) rotateY(26deg) scale(.50); }
}
 
@media (max-width: 640px) {
  .carousel-wrap { padding: 0 44px; }
  .carousel-stage { height: 390px; perspective: 900px; }
  .slide { width: 214px; height: 316px; }
  .slide[data-pos="1"]  { transform: translateX(182px) translateZ(-120px) rotateY(-10deg) scale(.82); }
  .slide[data-pos="-1"] { transform: translateX(-182px) translateZ(-120px) rotateY(10deg) scale(.82); }
  .slide[data-pos="2"]  { transform: translateX(328px) translateZ(-228px) rotateY(-18deg) scale(.62); }
  .slide[data-pos="-2"] { transform: translateX(-328px) translateZ(-228px) rotateY(18deg) scale(.62); }
  .slide[data-pos="3"],
  .slide[data-pos="-3"] { opacity: 0; pointer-events: none; }
  .fade-l, .fade-r { width: 54px; }
  .nav-prev { left: 0; } .nav-next { right: 0; }
  .slide-cta { font-size: 10.5px; padding: 6px 11px; }
}






@media (max-width: 768px) {
    .indicator-bar {
      justify-content: center;
    }
    .indicate-subhead{
      text-align:center;
    }
    .text-m-center {
    text-align: center !important;
  }
  .topbar{
    display:none;
  }
  }
  .col-space{
    gap: 0px !important;
  }
  .section-top{
    margin-top:70px !important;
  }
  .nav-arrow {
background: #06d6a0;
color:white;
  }
  .nav-arrow svg {
    stroke: white;
  }
/* Active slide: hide info by default, show on hover */
.slide[data-pos="0"] .slide-info {
  opacity: 0 !important;
  transform: translateY(10px) !important;
  pointer-events: none !important;
}
.slide[data-pos="0"] .slide-overlay {
  opacity: 0 !important;
}

/* On hover - reveal everything */
.slide[data-pos="0"]:hover .slide-info {
  opacity: 1 !important;
  transform: translateY(0) !important;
  pointer-events: auto !important;
}
.slide[data-pos="0"]:hover .slide-overlay {
  opacity: 0.3 !important;
}



/* =============================================
   DESIGN TOKENS
   ============================================= */
:root {
  --ink:#0a0e1a; --ink2:#0f1525; --ink3:#161d30;
  --surface:#f4f5f8; --white:#fff;
  --signal:#00e5b0; --signal-dim:rgba(0,229,176,.12);
  --signal-border:rgba(0,229,176,.25);
  --muted:rgba(255,255,255,.55); --muted2:rgba(255,255,255,.15);
  --gold:#f5c842; --accent2:#ff6b35;
  --border:rgba(0,0,0,.08);
  --r:16px; --r-sm:10px; --r-lg:24px;
  --t:.22s ease;
  --sh:0 20px 60px rgba(0,0,0,.18);
  --sh-signal:0 8px 28px rgba(0,229,176,.35);
  --signal-text:rgb(9, 219, 121);
}
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth;-webkit-text-size-adjust:100%}
body{color:rgba(63, 66, 74, 1);overflow-x:hidden;line-height:1.7}
img{max-width:100%;height:auto;display:block}
a{text-decoration:none;color:inherit}
ul,ol{list-style:none}
button{font-family:inherit;cursor:pointer}

/* =============================================
   TYPOGRAPHY
   ============================================= 
h1{font-size:var(--h1);font-weight:800;line-height:1.08}
h2{font-size:var(--h2);font-weight:800;line-height:1.1}
h3{font-size:clamp(1.1rem,2vw,1.45rem);font-weight:700;line-height:1.25}
h4{font-size:1rem;font-weight:700}
em{font-style:normal;color:var(--c-signal-d)}
p{line-height:1.75}*/

.eyebrow{display:inline-flex;align-items:center;gap:8px;font-family:'DM Mono',monospace;font-size:15px;font-weight:500;letter-spacing:.12em;text-transform:uppercase;color:var(--c-signal-d)}

.section-intro{text-align:center;margin-bottom:64px}
.section-intro h2{margin:16px 0 20px}
.section-intro p{color:#555;max-width:760px;margin:0 auto ; font-size:clamp(var(--fs-15), 1vw, var(--fs-15));line-height:1.7}
.section-intro--light h2{color:var(--white)}
.section-intro--light p{color:var(--muted)}

/* =============================================
   LAYOUT
   ============================================= */
.container{max-width:1300px;margin:0 auto;padding:0 clamp(16px,4vw,32px)}
.section{padding:clamp(72px,9vw,100px) 0}
.section--ink{background:var(--ink)}
.section--ink2{background:var(--ink2)}
.section--ink3{background:var(--ink3)}
.section--surface{background:var(--surface)}
.section--white{background:#fff}
.two-col{display:grid;grid-template-columns:1fr 1fr;gap:clamp(32px,5vw,60px);align-items:center}
@media(max-width:768px){.two-col{grid-template-columns:1fr}}

/* =============================================
   BUTTONS
   ============================================= */
.btn{display:inline-flex;align-items:center;gap:8px;border:none;cursor:pointer;font-weight:500;font-size:15px;border-radius:100px;padding:8px 20px;text-decoration:none;transition:all var(--t)}
.btn--primary{background:var(--signal);color:var(--ink)}
.btn--primary:hover{background:#00ffca;transform:translateY(-2px);box-shadow:var(--sh-signal)}
.btn--ghost{background:transparent;border:1.5px solid rgba(255,255,255,.2);color:var(--white)}
.btn--ghost:hover{border-color:var(--c-signal-d);color:var(--c-signal-d)}
.btn--outline{background:transparent;border:1.5px solid var(--border);color:var(--ink)}
.btn--outline:hover{border-color:var(--c-signal-d);color:var(--c-signal-d)}
.btn svg{width:16px;height:16px;flex-shrink:0}

/* =============================================
   REVEAL
   ============================================= */
.reveal{opacity:0;transform:translateY(24px);transition:opacity .6s,transform .6s}
.reveal.is-visible{opacity:1;transform:none}
.reveal--right{transform:translateX(24px)}
.reveal--left{transform:translateX(-24px)}
.reveal.is-visible{transform:none}
.reveal--d1{transition-delay:.1s}
.reveal--d2{transition-delay:.2s}
.reveal--d3{transition-delay:.3s}
.reveal--d4{transition-delay:.4s}

/* =============================================
   TOPBAR
   ============================================= */
.topbar{background:var(--ink2);border-bottom:1px solid rgba(255,255,255,.06);padding:9px 0;font-size:12px}
.topbar__inner{display:flex;align-items:center;justify-content:space-between;gap:12px;flex-wrap:wrap}
.topbar__left,.topbar__right{display:flex;align-items:center;gap:16px}
.topbar a{color:rgba(255,255,255,.4);display:inline-flex;align-items:center;gap:6px;transition:color var(--t)}
.topbar a:hover{color:var(--c-signal-d)}
.topbar__socials{display:flex;gap:8px;align-items:center}
.topbar__socials img{width:18px;height:18px;opacity:.45;transition:opacity var(--t);display:inline-block}
.topbar__socials a:hover img{opacity:1}
@media(max-width:580px){.topbar{display:none}}

/* =============================================
   TOPNAV
   ============================================= */
.topnav{position:sticky;top:0;z-index:900;background:var(--ink);border-bottom:1px solid rgba(255,255,255,.07);backdrop-filter:blur(12px)}
.topnav__inner{display:flex;align-items:center;justify-content:space-between;height:64px;gap:20px}
.topnav__logo img{height:34px;width:auto}
.topnav__links{display:flex;align-items:center;gap:2px}
.topnav__links a{color:rgba(255,255,255,.6);font-size:14px;font-weight:600;padding:8px 13px;border-radius:8px;transition:all var(--t);white-space:nowrap}
.topnav__links a:hover{color:var(--white);background:rgba(255,255,255,.07)}
.topnav__cta{display:flex;align-items:center;gap:10px;flex-shrink:0}
.topnav__burger{display:none;flex-direction:column;gap:5px;padding:6px;background:none;border:none}
.topnav__burger span{width:22px;height:2px;background:var(--white);border-radius:2px;display:block;transition:all var(--t)}
.topnav__burger.is-open span:nth-child(1){transform:translateY(7px) rotate(45deg)}
.topnav__burger.is-open span:nth-child(2){opacity:0}
.topnav__burger.is-open span:nth-child(3){transform:translateY(-7px) rotate(-45deg)}
@media(max-width:900px){
  .topnav__links,.topnav__cta .btn{display:none}
  .topnav__burger{display:flex}
  .topnav__links.is-open{display:flex;flex-direction:column;position:absolute;top:64px;left:0;right:0;background:var(--ink);border-bottom:1px solid rgba(255,255,255,.08);padding:12px 20px 20px;gap:4px}
}

/* =============================================
   HERO
   ============================================= */
.hero{background:var(--ink);padding:clamp(72px,9vw,100px) 0 0;position:relative;overflow:hidden}
.hero::before{content:'';position:absolute;inset:0;background:radial-gradient(ellipse 70% 60% at 65% 40%,rgba(0,229,176,.07),transparent 70%),radial-gradient(ellipse 40% 50% at 10% 80%,rgba(67,97,238,.05),transparent 60%);pointer-events:none}
.hero__grid{display:grid;  grid-template-columns: 1fr minmax(0, 480px);max-width: 100%;gap:60px;align-items:center;position:relative;z-index:1}
.hero__left{padding-bottom:80px}
.hero__eyebrow{margin-bottom:24px}
.hero__h1{color:var(--white);margin-bottom:20px}
.hero__sub{color:var(--muted);font-size:1.1rem;line-height:1.7;margin-bottom:12px}
.hero__sub2{color:rgba(255, 255, 255, 0.86);font-size: clamp(var(--fs-15), 1vw, var(--fs-15));margin-bottom:36px}
.hero__ctas{display:flex;gap:14px;flex-wrap:wrap;margin-bottom:48px}
.hero__stats{display:grid;grid-template-columns:repeat(3,1fr);gap:0;border-top:1px solid rgba(255,255,255,.08);padding-top:32px}
.hero__stat{padding:0 24px 0 0;border-right:1px solid rgba(255,255,255,.07)}
.hero__stat:last-child{border-right:none;padding-left:24px;padding-right:0}
.hero__stat:nth-child(2){padding:0 24px}
.hero__stat-num{font-size:clamp(1.5rem,3vw,2.2rem);font-weight:800;color:var(--c-signal-d);line-height:1;margin-bottom:4px;font-family:'Bricolage Grotesque',sans-serif}
.hero__stat-label{font-size:11px;color:rgba(255,255,255,.35);font-weight:600;text-transform:uppercase;letter-spacing:.06em}

/* Google Maps UI card */
.maps-card{background:var(--ink3);border:1px solid rgba(255,255,255,.08);border-radius:20px;overflow:hidden;box-shadow:0 40px 80px rgba(0,0,0,.5);position:relative;top:40px;margin-bottom:150px}
.maps-card__bar{background:rgba(255,255,255,.04);border-bottom:1px solid rgba(255,255,255,.06);padding:14px 18px;display:flex;align-items:center;gap:10px;font-size:12px;color:var(--muted)}
.maps-card__dot{width:8px;height:8px;border-radius:50%;background:var(--signal);animation:pulse 2s infinite}
.maps-card__search{background:rgba(255,255,255,.06);border:1px solid rgba(255,255,255,.1);border-radius:100px;padding:8px 16px;font-family:'DM Mono',monospace;font-size:11px;color:rgba(255,255,255,.7);flex:1}
.maps-card__body{padding:22px}
.maps-rank-item{display:flex;align-items:center;gap:14px;padding:12px 0;border-bottom:1px solid rgba(255,255,255,.05)}
.maps-rank-item:last-child{border-bottom:none}
.maps-rank-num{width:28px;height:28px;border-radius:8px;background:var(--signal-dim);border:1px solid var(--signal-border);display:flex;align-items:center;justify-content:center;font-family:'DM Mono',monospace;font-size:11px;color:var(--c-signal-d);font-weight:700;flex-shrink:0}
.maps-rank-num--gold{background:rgba(245,200,66,.1);border-color:rgba(245,200,66,.3);color:var(--gold)}

.maps-rank-name{font-size:13px;font-weight:700;color:var(--white);margin-bottom:2px}
.maps-rank-meta{font-size:11px;color:var(--muted);font-family:'DM Mono',monospace}
.maps-rank-stars{color:var(--gold);font-size:11px;margin-left:auto;white-space:nowrap}
.maps-card__verified{padding:14px 22px;background:rgba(0,229,176,.06);border-top:1px solid var(--signal-border);display:flex;align-items:center;gap:8px;font-size:12px;color:var(--c-signal-d);font-weight:600}

@media(max-width:960px){.hero__grid{grid-template-columns:1fr}.maps-card{display:none}.hero__left{padding-bottom:40px}}
@media(max-width:480px){.hero__stats{gap:20px}.hero__stat{padding:0;border-right:none}}

/* =============================================
   TRUST BAR
   =============================================
.trust-bar{background:var(--ink2);border-top:1px solid rgba(255,255,255,.06);border-bottom:1px solid rgba(255,255,255,.06);padding:0}
.trust-bar__inner{display:grid;grid-template-columns:repeat(4,1fr);gap:1px;background:rgba(255,255,255,.06)}
.trust-item{background:var(--ink2);padding:28px 24px;text-align:center}
.trust-num{font-size:clamp(2rem,4vw,3rem);font-weight:800;color:var(--white);line-height:1;margin-bottom:6px}
.trust-num span{color:var(--c-signal-d)}
.trust-label{font-size:13px;color:var(--muted);font-weight:500}
@media(max-width:700px){.trust-bar__inner{grid-template-columns:1fr 1fr}}*/

/* =============================================
   EXPERT SECTION - white bg
   ============================================= */
.expert__prose h2{margin-bottom:20px}
.expert__prose p{color:#555;line-height:1.8;margin-bottom:16px; text-align:justify;}

/* Visibility score card */
.score-card-expert{background:var(--ink);border-radius:20px;overflow:hidden;box-shadow:0 30px 70px rgba(0,0,0,.25)}
.score-header{padding:24px 28px;border-bottom:1px solid rgba(255,255,255,.07)}
.score-header h6{color:var(--white);font-size:15px}
.score-row-vis{display:flex;align-items:center;justify-content:space-between;padding:7px 28px;border-bottom:1px solid rgba(255,255,255,.04)}
.score-row-vis:last-of-type{border-bottom:none}
.score-label{display:flex;align-items:center;gap:10px;font-size:14px;color:rgb(255, 255, 255)}
.score-dot{width:8px;height:8px;border-radius:50%}
.score-dot--on{background:var(--signal);box-shadow:0 0 8px var(--signal)}
.score-dot--dim{background:rgba(255,255,255,.2)}
.score-dot--gold{background:var(--gold)}
.score-val{font-size:12px;font-weight:700;}
.score-val--green{color:var(--signal-text)}
.score-val--gold{color:var(--gold)}
.score-val--muted{color:var(--muted)}
.score-cta-block{padding:18px 28px;text-align:center;border-top:1px solid rgba(255,255,255,.06)}
.score-cta-block p{font-size:12px;color:var(--muted);margin-bottom:12px}

/* =============================================
   CAROUSEL - 1st Rank Results
   ============================================= */

.carousel-wrap{position:relative;overflow:hidden;border-radius:var(--r)}
.carousel-track{display:flex;transition:transform .45s cubic-bezier(.4,0,.2,1);will-change:transform}
.carousel-slide{flex:0 0 calc(33.333% - 14px);margin-right:21px;border-radius:var(--r);overflow:hidden;box-shadow:0 8px 32px rgba(0,0,0,.35)}
.carousel-slide img{width:100%;display:block;aspect-ratio:4/3;object-fit:cover;transition:transform .4s}
.carousel-slide:hover img{transform:scale(1.04)}
.carousel-controls{display:flex;align-items:center;justify-content:center;gap:16px;margin-top:32px}
.carousel-btn{width:44px;height:44px;border-radius:50%;background:rgba(255,255,255,.08);border:1px solid rgba(255,255,255,.15);color:var(--white);display:flex;align-items:center;justify-content:center;cursor:pointer;transition:all var(--t);font-size:18px}
.carousel-btn:hover{background:var(--signal);border-color:var(--c-signal-d);color:var(--ink)}
.carousel-dots{display:flex;gap:8px;align-items:center}
.carousel-dot{width:8px;height:8px;border-radius:50%;background:rgba(255,255,255,.2);cursor:pointer;transition:all var(--t)}
.carousel-dot.is-active{background:var(--signal);width:24px;border-radius:4px}

@media(max-width:900px){.carousel-slide{flex:0 0 calc(50% - 10.5px)}}
@media(max-width:560px){.carousel-slide{flex:0 0 calc(100% - 0px);margin-right:21px}}

/* =============================================
   SERVICES - dark bg
   ============================================= */
.svc-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:20px}
@media(max-width:1024px){.svc-grid{grid-template-columns:1fr 1fr}}
@media(max-width:520px){.svc-grid{grid-template-columns:1fr;gap:14px}}
.svc-cards{background:var(--white);border:1px solid rgba(29, 28, 28, 0.17);border-radius:var(--r);padding:28px 24px;transition:all var(--t);position:relative;overflow:hidden}
.svc-cards::after{content:'';position:absolute;bottom:0;left:0;right:0;height:3px;background:var(--signal);transform:scaleX(0);transform-origin:left;transition:transform var(--t)}
.svc-cards:hover{border-color:var(--signal-border);transform:translateY(-4px);box-shadow:0 20px 50px rgba(0,0,0,.3)}
.svc-cards:hover::after{transform:scaleX(1)}
.svc-icon{width:48px;height:48px;border-radius:12px;background:var(--signal-dim);border:1px solid var(--signal-border);display:flex;align-items:center;justify-content:center;font-size:1.3rem;margin-bottom:16px}
.svc-cards h3{color:var(--ink);font-size:1rem;margin-bottom:10px}
.svc-cards p{color:(rgba(63, 66, 74, 1));font-size:13.5px;line-height:1.65}

/* =============================================
   RADIUS - surface bg
   ============================================= */
.radius-cards{display:flex;flex-direction:column;gap:14px}
.radius-card{background:#fff;border:1px solid var(--border);border-radius:var(--r-sm);padding:8px 22px;display:flex;gap:14px;align-items:flex-start;transition:all var(--t)}
.radius-card:hover{box-shadow:0 8px 28px rgba(0,0,0,.08);transform:translateX(4px);border-left:3px solid var(--signal)}
.radius-icon{width:40px;height:40px;border-radius:10px;background:var(--surface);border:1px solid rgba(0,0,0,.06);display:flex;align-items:center;justify-content:center;font-size:1.2rem;flex-shrink:0}
.radius-card h4{margin-bottom:4px;color:var(--ink)}
.radius-card p{color:#666;}

/* Ranking radius visual */
.radius-visual{background:var(--ink);border-radius:20px;padding:32px;position:sticky;top:100px}
.radius-visual h3{color:var(--white);font-size:1.05rem;margin-bottom:24px;text-align:center}
.radius-rings{position:relative;width:240px;height:240px;margin:0 auto 24px;display:flex;align-items:center;justify-content:center}
.ring{position:absolute;border-radius:50%;border:1.5px solid;display:flex;align-items:center;justify-content:center}
.ring-1{width:60px;height:60px;border-color:var(--c-signal-d);background:var(--signal-dim);z-index:4}
.ring-2{width:110px;height:110px;border-color:rgba(0,229,176,.4);background:rgba(0,229,176,.05);z-index:3}
.ring-3{width:170px;height:170px;border-color:rgba(0,229,176,.2);background:rgba(0,229,176,.02);z-index:2}
.ring-4{width:230px;height:230px;border-color:rgba(0,229,176,.1);background:rgba(0,229,176,.01);z-index:1}
.ring-label{position:absolute;font-family:'DM Mono',monospace;font-size:9px;color:var(--c-signal-d);font-weight:500;text-align:center;line-height:1.3}
.ring-center{font-size:1rem;z-index:5;position:relative}
.ring-legend{display:flex;flex-direction:column;gap:8px}
.ring-legend-item{display:flex;align-items:center;gap:10px;font-size:12px;color:var(--muted)}
.ring-legend-dot{width:8px;height:8px;border-radius:50%;flex-shrink:0}

/* =============================================
   GLOBAL EXPERT - ink bg
   ============================================= */
.eeat-card{background:var(--ink3);border:1px solid rgba(255,255,255,.07);border-radius:20px;overflow:hidden;box-shadow:var(--sh)}
.eeat-header{padding:24px 28px;border-bottom:1px solid rgba(255,255,255,.06)}
.eeat-title{color:var(--white);font-size:15px;font-weight:700;margin-bottom:4px}
.eeat-sub{color:var(--muted);font-size:13px}
.eeat-row-item{display:flex;align-items:center;justify-content:space-between;padding:8px 28px;border-bottom:1px solid rgba(255,255,255,.04)}
.eeat-row-item:last-child{border-bottom:none; margin-bottom:15px}
.eeat-label-text{display:flex;align-items:center;gap:10px;color:rgba(255,255,255,.7);font-size:14px}
.eeat-dot{width:8px;height:8px;border-radius:50%;background:var(--signal);flex-shrink:0}
.eeat-val{font-size:12px;font-weight:700;color:var(--c-signal-d)}
.eeat-val--gold{color:var(--gold)}
.eeat-val--orange{color:var(--accent2)}
.eeat-val--muted{color:var(--muted)}

.global-content h3{color:var(--white);text-align:left;margin-bottom:20px}
.global-content p{color:var(--white);line-height:1.8;margin-bottom:26px; text-align:justify;}
.author-pill{display:inline-flex;align-items:center;gap:8px;background:var(--signal-dim);border:1px solid var(--signal-border);border-radius:100px;padding:5px 14px;font-size:11px;font-weight:700;color:var(--c-signal-d);letter-spacing:.06em;margin-bottom:16px;font-family:'DM Mono',monospace}

/* =============================================
   LOCAL SEO CONSULTANT - white
   ============================================= */
.consultant-prose h2{margin-bottom:20px;text-align:left}
.consultant-prose p{color:var(--ink); font-size:18px;line-height:1.8;margin-bottom:16px}
.timeline-steps{display:flex;flex-direction:column;gap:0;margin:28px 0 32px}
.tl-item{display:flex;gap:16px;padding-bottom:24px;position:relative}
.tl-item:last-child{padding-bottom:0}
.tl-item::before{content:'';position:absolute;left:11px;top:24px;bottom:0;width:1px;background:rgba(0,0,0,.08)}
.tl-item:last-child::before{display:none}
.tl-dot{width:24px;height:24px;border-radius:50%;background:var(--signal-dim);border:1.5px solid var(--signal);flex-shrink:0;display:flex;align-items:center;justify-content:center;font-size:10px;color:var(--c-signal-d);font-weight:800}

.tl-content strong{color:var(--ink);font-size:14px;display:block;margin-bottom:3px}
.tl-content span{color:#666;font-size:13px;line-height:1.5}

/* method visual */
.method-card{background:var(--ink);border-radius:20px;padding:5px 20px;position:sticky;top:100px}
.method-card h3{color:var(--white);font-size:1.05rem;margin-bottom:24px}
.method-step-vis{display:flex;gap:16px;padding:8px 0;border-bottom:1px solid rgba(255,255,255,.06);transition:all var(--t)}
.method-step-vis:last-child{border-bottom:none}
.method-step-vis:hover .step-num-vis{color:var(--c-signal-d);border-color:var(--c-signal-d)}
.step-num-vis{font-family:'DM Mono',monospace;font-size:11px;font-weight:500;color:var(--muted);border:1px solid rgba(255,255,255,.15);border-radius:6px;padding:3px 8px;height:fit-content;flex-shrink:0;transition:all var(--t)}
.step-text-vis h6{color:var(--white);font-size:13px;margin-bottom:4px}
.step-text-vis p{color:rgb(212, 210, 210);font-size:12px;line-height:1.6}

/* =============================================
   BLOG - ink-deep
   ============================================= */
.blog-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:20px}
@media(max-width:900px){.blog-grid{grid-template-columns:1fr 1fr}}
@media(max-width:500px){.blog-grid{grid-template-columns:1fr}}
.blog-card{background:rgba(255,255,255,.04);border:1px solid rgba(255,255,255,.07);border-radius:var(--r);padding:24px;display:flex;flex-direction:column;gap:12px;transition:all var(--t)}
.blog-card:hover{background:rgba(255,255,255,.07);border-color:var(--signal-border);transform:translateY(-4px)}
.blog-card__label{display:inline-flex;align-items:center;gap:6px;background:var(--signal-dim);border:1px solid var(--signal-border);border-radius:100px;padding:3px 10px;font-size:12px;font-weight:600;color:var(--c-signal-d);width:fit-content}
.blog-card__title{font-size:20px;font-weight:700;color:var(--white);line-height:1.4;flex:1;margin-bottom:2px}
.blog-card__title a{color:inherit;transition:color var(--t)}
.blog-card__title a:hover{color:var(--c-signal-d)}
.blog-card__excerpt{font-size:14px;color:rgba(236, 236, 236, 0.94);line-height:1.65;margin-bottom:2px}
.blog-card__read{font-size:14px;font-weight:700;color:var(--c-signal-d);display:inline-flex;align-items:center;gap:4px;transition:gap var(--t);margin-top:auto}
.blog-card__read:hover{gap:8px}

/* =============================================
   HISTORY - surface bg
   ============================================= */
.history-prose h3{margin-bottom:20px;text-align:left}
.history-prose p{color:rgba(19, 18, 18, 0.99);line-height:1.8;margin-bottom:16px}
.history-accent{display:flex;gap:6px;margin-bottom:20px}
.history-accent span{width:32px;height:3px;border-radius:2px;display:block}
.history-accent span:first-child{background:var(--signal)}
.history-accent span:last-child{background:rgba(0,0,0,.1)}

/* Timeline horizontal */
.platform-timeline{display:grid;grid-template-columns:repeat(4,1fr);gap:0;position:relative;margin-top:48px}
.platform-timeline::before{content:'';position:absolute;top:16px;left:12.5%;right:12.5%;height:2px;background:linear-gradient(90deg,var(--signal),rgba(0,229,176,.15))}
.pt-item{display:flex;flex-direction:column;align-items:center;gap:12px;padding:0 12px;text-align:center}
.pt-dot{width:20px;height:20px;border-radius:50%;background:var(--signal);border:3px solid var(--surface);box-shadow:0 0 0 3px var(--signal-border);position:relative;z-index:1}
.pt-year{font-family:'DM Mono',monospace;font-size:14px;color:var(--ink);font-weight:500}
.pt-name{font-size:14px;font-weight:700;color:var(--ink)}
.pt-desc{font-size:14px;color:var(--ink);line-height:1.5}
@media(max-width:600px){.platform-timeline{grid-template-columns:1fr 1fr;gap:24px}.platform-timeline::before{display:none}}

/* =============================================
   LOCAL SEO OPTIMIZATION - white
   ============================================= */
.lseo-list{display:flex;flex-direction:column;gap:14px}
.lseo-item{background:var(--surface);border:1px solid var(--border);border-radius:var(--r-sm);padding:18px 22px;display:flex;gap:14px;align-items:flex-start;transition:all var(--t)}
.lseo-item:hover{border-color:rgba(0,229,176,.3);box-shadow:0 4px 18px rgba(0,0,0,.06);transform:translateX(4px)}
.lseo-check{width:22px;height:22px;border-radius:50%;background:var(--signal);display:flex;align-items:center;justify-content:center;font-size:10px;font-weight:800;color:var(--ink);flex-shrink:0;margin-top:2px}
.lseo-item h6{margin-bottom:2px}
.lseo-item p{font-size:13px;color:#666;}

/* Local SEO stats panel */
.lseo-stats-panel{background:var(--ink);border-radius:20px;padding:32px;position:sticky;top:100px}
.lseo-stats-panel h6{color:var(--white);font-size:1.05rem;margin-bottom:24px}
.lseo-stat-row{display:flex;align-items:center;justify-content:space-between;padding:14px 0;border-bottom:1px solid rgba(255,255,255,.05)}
.lseo-stat-row:last-child{border-bottom:none}
.lseo-stat-label{font-size:13px;color:rgba(255,255,255,.65)}
.lseo-stat-bar-wrap{flex:1;margin:0 16px;height:6px;background:rgba(255,255,255,.08);border-radius:3px;overflow:hidden}
.lseo-stat-bar{height:100%;border-radius:3px;background:linear-gradient(90deg,var(--signal),#00b894);transition:width 1.2s cubic-bezier(.4,0,.2,1)}
.lseo-stat-val{font-size:12px;color:var(--c-signal-d);font-weight:700;white-space:nowrap}

/* =============================================
   TESTIMONIALS
   =============================================
.testi-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:20px}
@media(max-width:1000px){.testi-grid{grid-template-columns:1fr 1fr}}
@media(max-width:520px){.testi-grid{grid-template-columns:1fr}}
.testi-card{background:#fff;border:1px solid rgba(0,0,0,.07);border-radius:var(--r);padding:28px;display:flex;flex-direction:column;gap:16px;transition:all var(--t)}
.testi-card:hover{box-shadow:0 20px 50px rgba(0,0,0,.1);transform:translateY(-4px)}
.testi-stars{color:var(--gold);font-size:.9rem;letter-spacing:2px}
.testi-body{color:#444;font-size:13px;line-height:1.75;flex:1;font-style:italic}
.testi-body::before{content:'"';font-size:2rem;color:var(--c-signal-d);line-height:0;vertical-align:-12px;margin-right:4px;font-style:normal}
.testi-footer{display:flex;align-items:center;gap:12px;padding-top:14px;border-top:1px solid rgba(0,0,0,.06)}
.testi-avi{width:40px;height:40px;border-radius:10px;background:var(--ink);display:flex;align-items:center;justify-content:center;font-size:1.1rem;flex-shrink:0}
.testi-name{font-size:13px;font-weight:700;color:var(--ink)}
.testi-biz{font-size:11px;color:#888;margin-top:2px}*/
/* ================================================================
   testi-carousel.css
   Infinite drag/swipe testimonials carousel
   it2.tv · VersaForge LLP
   ================================================================
   Variables expected from parent stylesheet:
     --signal  (accent colour, e.g. #06d6a0)
     --gold    (star colour,   e.g. #f59e0b)
     --white   (#ffffff)
     --ink     (#0a0f1e)
   ================================================================ */

/* ── Carousel outer shell ────────────────────────────────────── */
.testi-carousel-wrap {
  position: relative;
  /* side padding = room for the chevron buttons */
  padding: 0 clamp(40px, 5vw, 68px);
}

/* ── Viewport - clips the track ─────────────────────────────── */
.testi-viewport {
  overflow: hidden;
  cursor: grab;
  border-radius: 4px;
  -webkit-user-select: none;
  user-select: none;
  /* allow vertical scroll on touch devices */
  touch-action: pan-y pinch-zoom;
  outline: none;
}
.testi-viewport.is-grabbing { cursor: grabbing; }

/* ── Track - scrolling strip ────────────────────────────────── */
.testi-track {
  display: flex;
  gap: 20px;
  /* width set by JS */
  will-change: transform;
}
.testi-track.is-snapping {
  transition: transform .42s cubic-bezier(.25, 1, .5, 1);
}

/* ── Individual card ─────────────────────────────────────────── */
.testi-card {
  /* --tc-w set by JS */
  flex: 0 0 var(--tc-w, 340px);
  width: var(--tc-w, 340px);
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .09);
  border-radius: 20px;
  padding: 28px 26px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-sizing: border-box;
  position: relative;
  overflow: hidden;
  transition: border-color .3s, box-shadow .3s, transform .3s;
}

/* glowing top-edge line on hover */
.testi-card::before {
  content: '';
  position: absolute;
  top: -1px; left: 20%; right: 20%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--signal, #06d6a0), transparent);
  border-radius: 9999px;
  opacity: 0;
  transition: opacity .3s;
}
.testi-card:hover::before { opacity: 1; }
.testi-card:hover {
  border-color: rgba(6, 214, 160, .28);
  box-shadow:
    0 20px 56px rgba(0, 0, 0, .45),
    0 0 0 1px rgba(6, 214, 160, .1);
  transform: translateY(-5px);
}

/* ── Stars ───────────────────────────────────────────────────── */
.testi-stars {
  color: var(--gold, #f59e0b);
  font-size: .85rem;
  letter-spacing: 3px;
}

/* ── Review body ─────────────────────────────────────────────── */
.testi-body {
  color: rgb(255, 255, 255);
  
  line-height: 1.78;
  flex: 1;
  font-style: italic;
  letter-spacing:0.05em;
}
.testi-body::before {
  content: '\201C'; /* " */
  font-size: 2.4rem;
  color: var(--signal, #06d6a0);
  line-height: 0;
  vertical-align: -16px;
  margin-right: 4px;
  font-style: normal;
  font-family: Georgia, serif;
  opacity: .75;
}

/* ── Footer: logo + name ─────────────────────────────────────── */
.testi-footer {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, .07);
}

.testi-avi {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
  padding: 4px;
}
.testi-avi img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.testi-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--white, #fff);
}
.testi-biz {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 2px;
}

/* ── Chevron buttons ─────────────────────────────────────────── */
.testi-chevron {
  position: absolute;
  top: 50%;
  /* sits in the vertical centre of the card area, above the dots */
  transform: translateY(calc(-50% - 24px));
  z-index: 10;
  width: clamp(36px, 4vw, 48px);
  height: clamp(36px, 4vw, 48px);
  border-radius: 50%;
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .15);
  color: rgba(255, 255, 255, .8);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition:
    background .2s,
    border-color .2s,
    color .2s,
    transform .2s,
    box-shadow .2s;
  flex-shrink: 0;
}
.testi-chevron svg {
  width: clamp(16px, 2vw, 20px);
  height: clamp(16px, 2vw, 20px);
}
.testi-chevron--prev { left: 0; }
.testi-chevron--next { right: 0; }

.testi-chevron:hover {
  background: var(--signal, #06d6a0);
  border-color: var(--signal, #06d6a0);
  color: var(--ink, #0a0f1e);
  box-shadow: 0 0 0 6px rgba(6, 214, 160, .18);
  transform: translateY(calc(-50% - 24px)) scale(1.1);
}
.testi-chevron:active {
  transform: translateY(calc(-50% - 24px)) scale(.95);
}

/* ── Dot indicators ──────────────────────────────────────────── */
.testi-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.testi-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .2);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background .25s, transform .25s, width .25s, border-radius .25s;
  flex-shrink: 0;
}
.testi-dot.is-active {
  background: var(--signal, #06d6a0);
  transform: scale(1.2);
  width: 22px;
  border-radius: 4px;
}
.testi-dot:hover:not(.is-active) {
  background: rgba(255, 255, 255, .45);
  transform: scale(1.15);
}

/* ── Responsive tweaks ───────────────────────────────────────── */
/* On very small screens bring chevrons slightly closer */
@media (max-width: 480px) {
  .testi-carousel-wrap {
    padding: 0 clamp(32px, 5vw, 44px);
  }
  .testi-chevron {
    width: 34px;
    height: 34px;
  }
}

/* =============================================
   STAT RIBBON
   ============================================= */
.stat-ribbon{background:var(--signal);padding:20px 0}
.stat-ribbon__inner{display:flex;align-items:center;justify-content:center;gap:clamp(20px,5vw,60px);flex-wrap:wrap}
.stat-ribbon__item{display:flex;align-items:center;gap:10px;color:var(--ink);font-weight:700;font-size:15px}
.stat-ribbon__num{font-size:1.6rem;font-weight:800}

/* =============================================
   CTA SECTION
   ============================================= */
.cta-section{background:var(--ink);padding:100px 0;position:relative;overflow:hidden}
.cta-section::before{content:'';position:absolute;inset:0;background:radial-gradient(ellipse 60% 80% at 50% 50%,rgba(0,229,176,.08),transparent 70%);pointer-events:none}
.cta-inner{position:relative;z-index:1;display:flex;justify-content:center;align-items:center}
.cta-text h2{color:var(--white);margin:16px 0 20px}
.cta-text p{color:var(--white);line-height:1.7;font-size:1rem;margin-bottom:28px}
.cta-head{color:white;}
.cta-form{background:rgba(255,255,255,.05);border:1px solid rgba(255,255,255,.1);border-radius:20px;padding:36px;max-width:560px;width:100%}
.cta-form h4{color:var(--white);font-size:1.1rem;margin-bottom:24px}
.form-field{margin-bottom:14px}
.form-field label{display:block;font-size:11px;font-weight:700;color:var(--muted);margin-bottom:8px;text-transform:uppercase;letter-spacing:.07em}
.form-field input,.form-field select,.form-field textarea{width:100%;background:rgba(255,255,255,.06);border:1px solid rgba(255,255,255,.12);border-radius:10px;padding:13px 16px;color:var(--white);font-family:'Bricolage Grotesque',sans-serif;font-size:14px;outline:none;transition:border-color var(--t)}
.form-field input:focus,.form-field select:focus{border-color:var(--c-signal-d)}
.form-field select option{background:var(--ink2);color:var(--white)}
.form-note{font-size:12px;color:var(--muted);text-align:center;margin-top:14px}
@media(max-width:768px){.cta-inner{grid-template-columns:1fr}}
.btn--ghost-white{
  border: 1px solid white;
}

/* =============================================
   FOOTER
   ============================================= */
.footer{background:var(--ink2);border-top:1px solid rgba(255,255,255,.06);padding:clamp(48px,6vw,72px) 0 0}
.footer__top{display:grid;grid-template-columns:260px 1fr 1fr 1fr;gap:40px;padding-bottom:48px}
@media(max-width:960px){.footer__top{grid-template-columns:1fr 1fr}}
@media(max-width:520px){.footer__top{grid-template-columns:1fr}}
.footer__logo{height:34px;margin-bottom:14px;display:block}
.footer__about{font-size:13px;color:rgba(255,255,255,.3);line-height:1.7;margin-bottom:18px}
.footer__socials{display:flex;gap:8px}
.footer__socials a img{width:20px;height:20px;transition:opacity var(--t);display:inline-block}
.footer__socials a:hover img{opacity:.85}
.footer__col-title{font-family:'Bricolage Grotesque',sans-serif;font-size:13px;font-weight:700;color:var(--white);margin-bottom:14px;letter-spacing:.03em}
.footer__links{display:flex;flex-direction:column;gap:9px}
.footer__links a{font-size:13px;color:rgba(255, 255, 255, 0.75);transition:color var(--t)}
.footer__links a:hover{color:var(--c-signal-d)}
.footer__contact-items{display:flex;flex-direction:column;gap:12px}
.footer__ci{display:flex;align-items:flex-start;gap:10px}
.footer__ci img{width:15px;opacity:.35;flex-shrink:0;margin-top:3px;filter:brightness(0) invert(1)}
.footer__ci a{font-size:13px;color:rgba(255,255,255,.4);transition:color var(--t)}
.footer__ci a:hover{color:var(--c-signal-d)}
.footer__ci-note{font-size:11px;color:rgba(255,255,255,.18);margin-top:2px}
.footer__bottom{border-top:1px solid rgba(255,255,255,.06);padding:18px 0;display:flex;align-items:center;justify-content:space-between;flex-wrap:wrap;gap:10px}
.footer__bottom p,.footer__bottom a{font-size:12px;color:rgba(255,255,255,.22)}
.footer__bottom a:hover{color:var(--c-signal-d)}
.footer__bottom-links{display:flex;gap:20px}

/* =============================================
   FLOAT ACTIONS
   ============================================= */
.float-actions{position:fixed;bottom:24px;right:24px;display:flex;flex-direction:column;gap:10px;z-index:800}
.float-btn{display:flex;align-items:center;gap:10px;background:var(--ink);border:1px solid rgba(255,255,255,.12);border-radius:100px;padding:10px 18px 10px 12px;color:var(--white);font-family:'Bricolage Grotesque',sans-serif;font-size:13px;font-weight:700;box-shadow:0 4px 20px rgba(0,0,0,.3);transition:all var(--t);cursor:pointer;text-decoration:none}
.float-btn:hover{background:var(--signal);color:var(--ink);border-color:transparent;box-shadow:var(--sh-signal);transform:translateY(-2px)}
.float-btn img{width:26px;height:26px}

/* =============================================
   POPUP
   ============================================= */
.popup{position:fixed;inset:0;background:rgba(6,10,20,.9);z-index:9999;display:flex;align-items:center;justify-content:center;padding:20px;opacity:0;pointer-events:none;transition:opacity .25s;backdrop-filter:blur(6px)}
.popup.is-open{opacity:1;pointer-events:auto}
.popup__box{background:#fff;border-radius:20px;padding:36px;max-width:480px;width:100%;position:relative;transform:translateY(20px);transition:transform .3s}
.popup.is-open .popup__box{transform:none}
.popup__close{position:absolute;top:12px;right:12px;width:30px;height:30px;border-radius:50%;background:var(--surface);border:1px solid rgba(0,0,0,.08);display:flex;align-items:center;justify-content:center;font-size:16px;color:#555;cursor:pointer;transition:all var(--t)}
.popup__close:hover{background:#e5e7eb;color:var(--ink)}
.popup__title{font-size:1.3rem;font-weight:800;color:var(--ink);margin-bottom:6px}
.popup__sub{font-size:14px;color:#666;margin-bottom:24px}
.popup .form-field input,.popup .form-field select{background:var(--surface);border-color:rgba(0,0,0,.1);color:var(--ink)}
.popup .form-field input:focus,.popup .form-field select:focus{border-color:var(--c-signal-d)}
.popup .form-field label{color:#555}
.form-row{display:grid;grid-template-columns:1fr 1fr;gap:12px}
@media(max-width:440px){.form-row{grid-template-columns:1fr}}

/* =============================================
   ANIMATIONS
   ============================================= */
@keyframes pulse{0%,100%{opacity:1}50%{opacity:.4}}
@keyframes shimmer{0%{background-position:-200%}100%{background-position:200%}}
@keyframes float{0%,100%{transform:translateY(0)}50%{transform:translateY(-8px)}}

/* =============================================
   UTILS
   ============================================= */
@media(max-width:320px){h1{font-size:1.9rem}h2{font-size:1.5rem}.hero__ctas{flex-direction:column}.btn{padding:13px 20px}}
/* ═══════════════════════════════════════════════════
   EXPERT LOCAL SEO CONSULTANT - SCOPED CSS
   All rules scoped to .xelc - zero conflicts guaranteed
   Does NOT override: .container, .section, global fonts,
   global colors, global spacing, or any other page styles
═══════════════════════════════════════════════════ */
 
/* ── SECTION SHELL ─────────────────────────────── */
.xelc {
  background: #060b14;
  padding: clamp(64px,9vw,120px) 0;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
 
/* ── BACKGROUND LAYERS ─────────────────────────── */
.xelc__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.xelc__bg-grid {
  position: absolute;
  inset: -80px;
  background-image:
    linear-gradient(rgba(0,229,176,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,229,176,.035) 1px, transparent 1px);
  background-size: 56px 56px;
  animation: xelc-grid 28s linear infinite;
}
@keyframes xelc-grid { to { transform: translate(56px,56px); } }
 
.xelc__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.xelc__orb--a {
  width: min(700px,80vw); height: min(700px,80vw);
  background: radial-gradient(circle,rgba(0,229,176,.08),transparent 65%);
  top: -20%; right: -15%;
  animation: xelc-orb-a 16s ease-in-out infinite alternate;
}
.xelc__orb--b {
  width: min(500px,60vw); height: min(500px,60vw);
  background: radial-gradient(circle,rgba(67,97,238,.07),transparent 65%);
  bottom: -15%; left: -10%;
  animation: xelc-orb-b 20s ease-in-out infinite alternate;
}
@keyframes xelc-orb-a { from{transform:translate(0,0) scale(1)} to{transform:translate(-40px,50px) scale(1.15)} }
@keyframes xelc-orb-b { from{transform:translate(0,0) scale(1)} to{transform:translate(50px,-30px) scale(1.1)} }
 
.xelc__canvas {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  opacity: .45;
}
 
/* ── INNER CONTAINER - scoped, does NOT touch .container ── */
.xelc__inner {
  position: relative;
  z-index: 1;
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
  padding-left: clamp(16px,5vw,40px);
  padding-right: clamp(16px,5vw,40px);
}
 
/* ── INTRO ──────────────────────────────────────── */
.xelc__intro {
  text-align: center;
  margin-bottom: clamp(48px,6vw,80px);
  opacity: 0;
  transform: translateY(36px);
  transition: opacity .85s ease, transform .85s ease;
}
.xelc__intro.xon {
  opacity: 1;
  transform: none;
}
 
.xelc__tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0,229,176,.06);
  border: 1px solid rgba(0,229,176,.4);
  border-radius: 100px;
  padding: 6px 18px;
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #00e5b0;
  margin-bottom: 18px;
}
.xelc__tag-pulse {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #00e5b0;
  animation: xelc-pulse-dot 1.8s ease infinite;
  flex-shrink: 0;
}
@keyframes xelc-pulse-dot {
  0%,100% { opacity:1; transform:scale(1); }
  50%      { opacity:.15; transform:scale(.35); }
}
 
.xelc__h2 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(2rem,5vw,3.6rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.06;
  letter-spacing: -.03em;
  margin-top: 0;
  margin-bottom: 14px;
}
.xelc__h2 em {
  color: #00e5b0;
  font-style: normal;
  position: relative;
  display: inline-block;
}
.xelc__h2 em::after {
  content: '';
  position: absolute;
  left: 0; bottom: -4px; right: 0;
  height: 2px;
  background: linear-gradient(90deg,#00e5b0,transparent);
  border-radius: 2px;
}
.xelc__tagline {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(.875rem,1.8vw,1.05rem);
  color: rgba(255,255,255,.3);
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}
 
/* ── BODY GRID ──────────────────────────────────── */
.xelc__grid {
  display: grid;
  grid-template-columns: 1fr 1.08fr;
  gap: clamp(32px,4vw,52px);
  align-items: center;
}
@media (max-width:900px) {
  .xelc__grid {
    grid-template-columns: 1fr;
    gap: clamp(24px,3vw,36px);
  }
}
 
/* ── LEFT PROSE ─────────────────────────────────── */
.xelc__prose {
  display: flex;
  flex-direction: column;
  gap: clamp(16px,2vw,24px);
  opacity: 0;
  transform: translateY(36px);
  transition: opacity .85s ease, transform .85s ease;
}
.xelc__prose.xon {
  opacity: 1;
  transform: none;
}
 
.xelc__prose p {
 
  font-size: clamp(var(--fs-15), 1vw, var(--fs-15));
  color: rgb(255 255 255 / 92%);
  line-height: 1.85;
  margin: 0;
  text-align:justify;
}
.xelc__prose strong {
  color: #fff;
  font-weight: 700;
}
 
/* KPI strip */
.xelc__kpis {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 1px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 18px;
  overflow: hidden;
  margin-top: clamp(12px,1.5vw,18px);
}
@media (max-width:400px) {
  .xelc__kpis { grid-template-columns: 1fr 1fr; }
  .xelc__kpis .xelc__kpi:last-child { grid-column: span 2; }
}
.xelc__kpi {
  background: #0c1524;
  padding: clamp(16px,2.5vw,24px) clamp(12px,2vw,20px);
  text-align: center;
  transition: background .3s;
  cursor: default;
}
.xelc__kpi:hover { background: rgba(0,229,176,.06); }
.xelc__kpi-num {
  font-family: 'DM Mono', monospace;
  font-size: clamp(1.5rem,3vw,2.2rem);
  font-weight: 700;
  color: #00e5b0;
  line-height: 1;
  margin-bottom: 6px;
  text-shadow: 0 0 20px rgba(0,229,176,.35);
  display: block;
}
.xelc__kpi-lbl {
  font-family: 'DM Mono', monospace;
  font-size: clamp(9px,1vw,11px);
  color: rgba(255,255,255,.3);
  text-transform: uppercase;
  letter-spacing: .1em;
  display: block;
}
 
/* ── RIGHT PANEL ────────────────────────────────── */
.xelc__panel {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.07);
  box-shadow:
    0 0 0 1px rgba(0,229,176,.07),
    0 40px 80px rgba(0,0,0,.55),
    inset 0 1px 0 rgba(255,255,255,.07);
  background: #0c1524;
  position: sticky;
  top: 80px;
  opacity: 0;
  transform: translateY(36px) scale(.97);
  transition: opacity .85s ease, transform .85s ease;
  transition-delay: .18s;
}
.xelc__panel.xon {
  opacity: 1;
  transform: none;
}
 
/* Top bar */
.xelc__topbar {
  padding: clamp(10px,1.5vw,14px) clamp(14px,2.5vw,22px);
  border-bottom: 1px solid rgba(255,255,255,.07);
  background: rgba(255,255,255,.02);
  display: flex;
  align-items: center;
  gap: 10px;
}
.xelc__tb-dots { display: flex; gap: 5px; flex-shrink: 0; }
.xelc__tb-dots span { width: 9px; height: 9px; border-radius: 50%; display: block; }
.xelc__tb-dots span:nth-child(1) { background: #ff5f57; }
.xelc__tb-dots span:nth-child(2) { background: #febc2e; }
.xelc__tb-dots span:nth-child(3) { background: #28c840; }
.xelc__tb-url {
  flex: 1;
  text-align: center;
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  color: rgba(255,255,255,.22);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.xelc__tb-live {
  font-family: 'DM Mono', monospace;
  font-size: 9px;
  color: #00e5b0;
  background: rgba(0,229,176,.06);
  border: 1px solid rgba(0,229,176,.4);
  border-radius: 100px;
  padding: 2px 9px;
  flex-shrink: 0;
  animation: xelc-live-blink 2s ease infinite;
}
@keyframes xelc-live-blink { 0%,100%{opacity:1} 50%{opacity:.35} }
 
/* Hero counter */
.xelc__hero {
  padding: clamp(20px,3.5vw,36px) clamp(16px,3vw,28px) clamp(16px,2.5vw,26px);
  border-bottom: 1px solid rgba(255,255,255,.07);
  position: relative;
  overflow: hidden;
}
.xelc__hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 90% 110% at 50% -10%,rgba(0,229,176,.12),transparent 65%);
  pointer-events: none;
}
.xelc__hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  color: #00e5b0;
  text-transform: uppercase;
  letter-spacing: .14em;
  margin-bottom: clamp(8px,1.5vw,14px);
  position: relative;
  z-index: 1;
}
.xelc__hero-eyebrow::before {
  content: '';
  width: 18px; height: 1px;
  background: #00e5b0;
  flex-shrink: 0;
  display: block;
}
.xelc__hero-count {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(2rem,1.6vw,2rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -.04em;
  color: #fff;
  position: relative;
  z-index: 1;
}
.xelc__hero-count em {
  color: #00e5b0;
  font-style: normal;
  text-shadow: 0 0 50px rgba(0,229,176,.5),0 0 100px rgba(0,229,176,.2);
}
.xelc__hero-sub {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(11px,1.8vw,14px);
  font-weight: 700;
  color: rgba(255,255,255,.55);
  margin-top: clamp(6px,1vw,10px);
  line-height: 1.4;
  position: relative;
  z-index: 1;
  letter-spacing: .02em;
  text-transform: uppercase;
}
.xelc__hero-sub em { color: #00e5b0; font-style: normal; }
 
/* Ring */
.xelc__hero-ring {
  position: absolute;
  right: clamp(12px,3vw,28px);
  top: 50%;
  transform: translateY(-50%);
  width: clamp(60px,8vw,90px);
  height: clamp(60px,8vw,90px);
  z-index: 1;
}
.xelc__hero-ring svg { width: 100%; height: 100%; display: block; }
.xelc__ring-track { fill: none; stroke: rgba(0,229,176,.08); stroke-width: 4; }
.xelc__ring-fill {
  fill: none;
  stroke: #00e5b0;
  stroke-width: 4;
  stroke-linecap: round;
  stroke-dasharray: 214;
  stroke-dashoffset: 214;
  transform: rotate(-90deg);
  transform-origin: 50% 50%;
  transition: stroke-dashoffset 2s cubic-bezier(.4,0,.2,1);
  filter: drop-shadow(0 0 4px rgba(0,229,176,.7));
}
.xelc__ring-label {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.xelc__ring-num {
  font-family: 'DM Mono', monospace;
  font-size: clamp(11px,1.5vw,14px);
  font-weight: 700;
  color: #00e5b0;
  line-height: 1;
  display: block;
}
.xelc__ring-txt {
  font-family: 'DM Mono', monospace;
  font-size: clamp(8px,1vw,9px);
  color: rgba(255,255,255,.3);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-top: 2px;
  display: block;
}
 
/* Scanline */
.xelc__rows { position: relative; }
.xelc__scan {
  position: absolute;
  left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg,transparent,rgba(0,229,176,.5) 30%,rgba(0,229,176,.8) 50%,rgba(0,229,176,.5) 70%,transparent);
  pointer-events: none;
  top: 0;
  animation: xelc-scan 4.5s linear infinite;
}
@keyframes xelc-scan {
  0%   { top: 0%;   opacity: 0; }
  3%   { opacity: 1; }
  97%  { opacity: 1; }
  100% { top: 100%; opacity: 0; }
}
 
/* Rows */
.xelc__row {
  display: grid;
  grid-template-columns: clamp(36px,5vw,52px) clamp(40px,5vw,52px) 1fr clamp(48px,7vw,72px);
  align-items: stretch;
  border-bottom: 1px solid rgba(255,255,255,.07);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: background .3s;
}
.xelc__row:last-child { border-bottom: none; }
.xelc__row::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(90deg,rgba(0,229,176,.1),rgba(0,229,176,.04) 40%,transparent 80%);
  opacity: 0;
  transition: opacity .4s;
  pointer-events: none;
}
.xelc__row:hover::before  { opacity: .6; }
.xelc__row.is-active::before { opacity: 1; }
.xelc__row.is-active { background: rgba(0,229,176,.04); }
.xelc__row::after {
  content: '';
  position: absolute;
  left: 0; top: 15%; bottom: 15%;
  width: 3px;
  background: #00e5b0;
  border-radius: 0 3px 3px 0;
  transform: scaleY(0);
  transform-origin: center;
  transition: transform .4s cubic-bezier(.34,1.56,.64,1);
  box-shadow: 0 0 12px rgba(0,229,176,.6);
}
.xelc__row.is-active::after { transform: scaleY(1); }
 
.xelc__row-idx {
  display: flex;
  align-items: center;
  justify-content: center;
  border-right: 1px solid rgba(255,255,255,.07);
  padding: clamp(14px,2vw,18px) 0;
  font-family: 'DM Mono', monospace;
  font-size: clamp(9px,1.2vw,11px);
  font-weight: 700;
  color: rgba(255,255,255,.18);
  transition: color .3s, background .3s;
}
.xelc__row.is-active .xelc__row-idx {
  color: #00e5b0;
  background: rgba(0,229,176,.06);
}
 
.xelc__row-ico {
  display: flex;
  align-items: center;
  justify-content: center;
  border-right: 1px solid rgba(255,255,255,.07);
  padding: clamp(14px,2vw,18px) 0;
  font-size: clamp(1.1rem,2.5vw,1.4rem);
  transition: transform .35s cubic-bezier(.34,1.56,.64,1), filter .35s;
}
.xelc__row.is-active .xelc__row-ico {
  transform: scale(1.18);
  filter: drop-shadow(0 0 8px rgba(0,229,176,.55));
}
 
.xelc__row-body {
  padding: clamp(12px,2vw,16px) clamp(12px,2vw,18px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
}
.xelc__row-title {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(11.5px,1.4vw,13px);
  font-weight: 700;
  color: rgba(255,255,255,.42);
  line-height: 1.35;
  transition: color .3s;
  margin: 0;
}
.xelc__row.is-active .xelc__row-title { color: #fff; }
 
.xelc__row-desc {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(10.5px,1.2vw,11.5px);
  color: rgba(255,255,255,.2);
  line-height: 1.55;
  transition: color .3s;
  margin: 0;
}
.xelc__row.is-active .xelc__row-desc { color: rgba(255,255,255,.48); }
 
.xelc__row-count {
  display: flex;
  align-items: center;
  justify-content: center;
  border-left: 1px solid rgba(255,255,255,.07);
  padding: 0 clamp(8px,1.5vw,14px);
  font-family: 'DM Mono', monospace;
  font-size: clamp(11px,1.5vw,14px);
  font-weight: 700;
  color: rgba(255,255,255,.2);
  transition: color .35s;
  white-space: nowrap;
}
.xelc__row.is-active .xelc__row-count {
  color: #00e5b0;
  text-shadow: 0 0 14px rgba(0,229,176,.7);
}
 
/* Footer */
.xelc__foot {
  border-top: 1px solid rgba(255,255,255,.07);
  padding: clamp(10px,1.5vw,14px) clamp(14px,2.5vw,22px);
  display: flex;
  align-items: center;
  gap: clamp(8px,1.5vw,14px);
}
.xelc__foot-label {
  font-family: 'DM Mono', monospace;
  font-size: 9px;
  color: rgba(255,255,255,.22);
  text-transform: uppercase;
  letter-spacing: .12em;
  white-space: nowrap;
  flex-shrink: 0;
}
.xelc__foot-track {
  flex: 1;
  height: 3px;
  background: rgba(255,255,255,.05);
  border-radius: 3px;
  overflow: hidden;
  min-width: 40px;
}
.xelc__foot-bar {
  height: 100%;
  border-radius: 3px;
  width: 25%;
  background: linear-gradient(90deg,#00e5b0,rgba(0,229,176,.4));
  box-shadow: 0 0 12px rgba(0,229,176,.5);
  transition: width .8s cubic-bezier(.4,0,.2,1);
}
.xelc__foot-pct {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  font-weight: 700;
  color: #00e5b0;
  white-space: nowrap;
  flex-shrink: 0;
  min-width: 34px;
  text-align: right;
  transition: all .3s;
}

.ls{--ls-1:#06d6a0;--ls-2:#3cb878;--ls-ink:#0a0f1e;--ls-mid:#374151;--ls-muted:#6b7280;--ls-gm:linear-gradient(135deg,#06d6a0,#3cb878);--ls-ff:'Bricolage Grotesque',system-ui,sans-serif;--ls-fm:'DM Mono',ui-monospace,monospace;--ls-ease:cubic-bezier(.34,1.56,.64,1);--ls-swift:cubic-bezier(.4,0,.2,1);}
.ls{background:#fff;padding:120px 0 140px;position:relative;overflow:hidden;font-family:var(--ls-ff);}
.ls::before{content:'';position:absolute;inset:0;background-image:radial-gradient(circle,rgba(6,214,160,.12) 1px,transparent 1px);background-size:30px 30px;pointer-events:none;}
.ls::after{content:'';position:absolute;top:-140px;left:50%;transform:translateX(-50%);width:1000px;height:560px;background:radial-gradient(ellipse at 50% 0%,rgba(6,214,160,.07) 0%,transparent 65%);pointer-events:none;}
.ls-orb-r{position:absolute;top:-80px;right:-100px;width:500px;height:500px;border-radius:50%;background:radial-gradient(circle,rgba(60,184,120,.08) 0%,transparent 62%);pointer-events:none;animation:ls-drift 15s ease-in-out infinite;}
.ls-orb-l{position:absolute;bottom:-60px;left:-80px;width:380px;height:380px;border-radius:50%;background:radial-gradient(circle,rgba(6,214,160,.06) 0%,transparent 60%);pointer-events:none;animation:ls-drift 19s ease-in-out infinite reverse;}
@keyframes ls-drift{0%,100%{transform:translate(0,0);}50%{transform:translate(18px,-14px);}}
.ls-wrap{max-width:1240px;margin:0 auto;padding:0 28px;position:relative;z-index:2;}
 
/* HEADER */
.ls-head{text-align:center;margin-bottom:80px;}
.ls-eyebrow{display:inline-flex;align-items:center;gap:8px;font-family:var(--ls-fm);font-size:10px;font-weight:700;color:var(--ls-1);letter-spacing:.2em;text-transform:uppercase;background:rgba(6,214,160,.08);border:1px solid rgba(6,214,160,.2);border-radius:50px;padding:6px 18px;margin-bottom:22px;}
.ls-eyebrow-dot{width:6px;height:6px;border-radius:50%;background:var(--ls-1);animation:ls-blink 2s ease infinite;}
@keyframes ls-blink{0%,100%{opacity:1;transform:scale(1);}50%{opacity:.3;transform:scale(.6);}}
.ls-title{font-family:var(--ls-ff);font-size:clamp(40px,7vw,88px);font-weight:800;line-height:1.0;letter-spacing:-.04em;color:var(--ls-ink);margin:0 0 0;}
.ls-title em{font-style:normal;background:var(--ls-gm);-webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text;}
.ls-title-bar{display:block;width:0;height:4px;background:var(--ls-gm);border-radius:4px;margin:18px auto 0;box-shadow:0 0 16px rgba(6,214,160,.4);transition:width 1.2s cubic-bezier(.4,0,.2,1);}
.ls-title-bar.wide{width:80px;}
 
/* GRID */
.ls-grid{display:grid;grid-template-columns:1fr 440px;gap:56px;align-items:center;}
 
/* ITEMS */
.ls-items{display:flex;flex-direction:column;gap:0;}
.ls-item{display:flex;gap:20px;align-items:flex-start;padding:15px 0;border-bottom:1px solid rgba(6,214,160,.1);position:relative;overflow:hidden;cursor:default;opacity:0;transform:translateX(-32px);transition:opacity .6s var(--ls-swift),transform .6s var(--ls-swift);}
.ls-item:first-child{padding-top:0;}
.ls-item:last-child{border-bottom:none;}
.ls-item.in{opacity:1;transform:translateX(0);}
.ls-item:hover{background:rgba(6,214,160,.03);}
.ls-item::before{content:'';position:absolute;left:0;top:0;bottom:0;width:3px;background:var(--ls-gm);border-radius:0 3px 3px 0;transform:scaleY(0);transform-origin:bottom;transition:transform .35s var(--ls-ease);}
.ls-item:hover::before,.ls-item.ls-active::before{transform:scaleY(1);}
.ls-num{flex-shrink:0;width:48px;height:48px;border-radius:14px;background:rgba(6,214,160,.08);border:1.5px solid rgba(6,214,160,.2);display:flex;align-items:center;justify-content:center;font-family:var(--ls-fm);font-size:11px;font-weight:800;color:var(--ls-1);letter-spacing:.04em;transition:background .3s,border-color .3s,transform .35s var(--ls-ease);margin-top:2px;}
.ls-item:hover .ls-num,.ls-item.ls-active .ls-num{background:var(--ls-1);color:#fff;border-color:var(--ls-1);transform:rotate(-6deg) scale(1.08);}
.ls-item-body{flex:1;}
.ls-item-title{font-size:17px;font-weight:800;color:var(--ls-ink);margin-bottom:8px;line-height:1.2;display:flex;align-items:center;gap:10px;flex-wrap:wrap;}
.ls-item-tag{font-family:var(--ls-fm);font-size:8px;font-weight:700;letter-spacing:.1em;color:#fff;background:var(--ls-gm);border-radius:50px;padding:2px 10px;opacity:0;transform:translateX(-8px);transition:opacity .28s,transform .28s var(--ls-ease);}
.ls-item:hover .ls-item-tag,.ls-item.ls-active .ls-item-tag{opacity:1;transform:translateX(0);}
.ls-item-text{font-size:14.5px;line-height:1.78;color:var(--ls-muted);transition:color .28s;}
.ls-item:hover .ls-item-text,.ls-item.ls-active .ls-item-text{color:var(--ls-mid);}
 
/* PANEL */
.ls-panel{background:#0a0f1e;border-radius:24px;padding:36px;position:sticky;top:100px;overflow:hidden;opacity:0;transform:translateY(32px);transition:opacity .7s var(--ls-swift) .2s,transform .7s var(--ls-swift) .2s;}
.ls-panel.in{opacity:1;transform:translateY(0);}
.ls-panel::before{content:'';position:absolute;inset:0;background-image:linear-gradient(rgba(6,214,160,.04) 1px,transparent 1px),linear-gradient(90deg,rgba(6,214,160,.04) 1px,transparent 1px);background-size:28px 28px;pointer-events:none;}
.ls-panel::after{content:'';position:absolute;top:-60px;right:-60px;width:220px;height:220px;border-radius:50%;background:radial-gradient(circle,rgba(6,214,160,.12) 0%,transparent 70%);pointer-events:none;}
.ls-panel-head{font-family:var(--ls-fm);font-size:10px;font-weight:700;color:rgba(255,255,255,.4);letter-spacing:.16em;text-transform:uppercase;margin-bottom:6px;position:relative;z-index:1;}
.ls-panel-title{font-size:18px;font-weight:800;color:#fff;margin-bottom:28px;line-height:1.25;position:relative;z-index:1;}
.ls-panel-title span{background:var(--ls-gm);-webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text;}
.ls-stat{display:flex;align-items:center;padding:14px 0;border-bottom:1px solid rgba(255,255,255,.05);position:relative;z-index:1;}
.ls-stat:last-of-type{border-bottom:none;}
.ls-stat-label{font-size:12px;color:rgba(255,255,255,.6);min-width:152px;flex-shrink:0;}
.ls-stat-track{flex:1;height:5px;border-radius:50px;background:rgba(255,255,255,.07);overflow:hidden;margin:0 14px;position:relative;}
.ls-stat-fill{height:100%;border-radius:50px;background:linear-gradient(90deg,var(--ls-1),var(--ls-2));width:0;transition:width 1.4s cubic-bezier(.4,0,.2,1);box-shadow:0 0 8px rgba(6,214,160,.4);position:relative;}
.ls-stat-fill::after{content:'';position:absolute;right:-3px;top:50%;transform:translateY(-50%);width:9px;height:9px;border-radius:50%;background:#fff;box-shadow:0 0 6px rgba(6,214,160,.9),0 0 12px rgba(6,214,160,.5);opacity:0;transition:opacity .3s .9s;}
.ls-stat-fill.done::after{opacity:1;}
.ls-stat-val{font-family:var(--ls-fm);font-size:12px;font-weight:700;color:var(--ls-1);min-width:42px;text-align:right;white-space:nowrap;}
.ls-chips{display:flex;gap:10px;margin-top:20px;flex-wrap:wrap;}
.ls-chip{flex:1;min-width:78px;background:rgba(255,255,255,.04);border:1px solid rgba(6,214,160,.15);border-radius:10px;padding:10px 10px;text-align:center;}
.ls-chip-num{font-family:var(--ls-fm);font-size:16px;font-weight:800;color:var(--ls-1);display:block;line-height:1;margin-bottom:4px;}
.ls-chip-lbl{font-size:10px;color:rgba(255,255,255,.4);letter-spacing:.04em;display:block;line-height:1.3;}
.ls-panel-foot{margin-top:24px;padding-top:20px;border-top:1px solid rgba(255,255,255,.07);position:relative;z-index:1;}
.ls-cta-btn{display:flex;align-items:center;justify-content:center;gap:8px;width:100%;padding:15px 24px;border-radius:14px;font-family:var(--ls-ff);font-size:14px;font-weight:800;color:#0a0f1e;border:none;cursor:pointer;background:var(--ls-gm);box-shadow:0 6px 24px rgba(6,214,160,.35);position:relative;overflow:hidden;transition:transform .25s var(--ls-ease),box-shadow .25s;}
.ls-cta-btn::before{content:'';position:absolute;top:0;left:-110%;bottom:0;width:55%;background:linear-gradient(90deg,transparent,rgba(255,255,255,.3),transparent);transition:left .5s;}
.ls-cta-btn:hover{transform:translateY(-3px) scale(1.02);box-shadow:0 12px 36px rgba(6,214,160,.5);}
.ls-cta-btn:hover::before{left:140%;}
.ls-cta-btn:active{transform:translateY(0) scale(.98);}
.ls-cta-btn svg{width:16px;height:16px;flex-shrink:0;transition:transform .25s var(--ls-ease);}
.ls-cta-btn:hover svg{transform:translateX(3px);}
.ls-pts{position:absolute;inset:0;pointer-events:none;overflow:hidden;z-index:1;}
.ls-pt{position:absolute;border-radius:50%;opacity:0;animation:ls-pf var(--pd,4s) ease-in-out infinite var(--pdl,0s);}
@keyframes ls-pf{0%{opacity:0;transform:translate(0,0) scale(0);}12%{opacity:1;}88%{opacity:.18;}100%{opacity:0;transform:translate(var(--px,0px),var(--py,-60px)) scale(2);}}
 
/* RESPONSIVE */
@media(max-width:1080px){.ls-grid{grid-template-columns:1fr 380px;gap:40px;}}
@media(max-width:900px){.ls-grid{grid-template-columns:1fr;gap:48px;}.ls-panel{position:relative;top:auto;}.ls-stat-label{min-width:120px;}}
@media(max-width:560px){.ls{padding:80px 0 100px;}.ls-wrap{padding:0 16px;}.ls-head{margin-bottom:52px;}.ls-title{font-size:clamp(34px,10vw,56px);}.ls-panel{padding:26px 18px;}.ls-stat-label{min-width:100px;font-size:11px;}.ls-chips{gap:8px;}}

.cta-section__title{
  font-size:1.5vw !important;
}


/* --- GLOBAL AUTOMATIC SIZES ONLY --- */

h1 { 
  font-size: clamp(2.5rem, 8vw, 4.5rem) !important; 
} /* 72px Desktop / 40px Mobile */

h2 { 
  font-size: clamp(2rem, 5vw, 3rem) !important; 
} /* 48px Desktop / 32px Mobile */

h3 { 
  font-size: clamp(1.5rem, 3vw, 2.25rem) !important; 
} /* 36px Desktop / 24px Mobile */

h4 { 
  font-size: 1.5rem !important; 
} /* 24px */

h5 { 
  font-size: 1.25rem !important; 
} /* 20px */

h6 { 
  font-size: 1.125rem !important; 
} /* 18px */