:root {
  --blue-primary: #0052ff;
  --blue-mid: #1877f2;
  --blue-light: #3b9eff;
  --blue-glow: #60b4ff;
  --blue-dark: #0d3b7a;
  --green: #00e5a0;
  --green2: #00c980;
  --bg-hero: #f0f6ff;
  --bg-card: #ffffff;
  --text-dark: #0a1628;
  --text-mid: #2d4470;
  --text-muted: #6b82a8;
  --border: rgba(21, 96, 189, 0.12);
  --shadow-btn: 0 4px 24px rgba(21, 96, 189, 0.35);
  --dark-2: #3d4050;
  --r-sm: 12px;
  --dark: #0a0b10;
  --red: #ef4444;
}

body {
  background: var(--bg-hero);
  color: var(--text-dark);
}

/* ── URGENCY BAR ───────────────────── */
.urgency-bar {
  position: sticky;
  top: 69px;
  z-index: 100;
  background: var(--dark);
  color: var(--white);
  text-align: center;
  padding: 11px 20px;
  font-size: 13px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  animation: slideBarDown 0.5s ease both;
}

.urgency-bar strong {
  color: #fbbf24;
  font-weight: 700;
}

.urgency-bar .seats {
  background: rgba(251, 191, 36, 0.15);
  border: 1px solid rgba(251, 191, 36, 0.35);
  color: #fbbf24;
  border-radius: 20px;
  padding: 2px 10px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  animation: pulseYellow 2s ease infinite;
}
/* ── ANIMATIONS ────────────────────── */
@keyframes slideBarDown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes pulseYellow {
  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.65;
  }
}
/* ══════════════════════════════════════════════
HERO WRAPPER
══════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 90vh;
  font-family: 'Bricolage Grotesque', sans-serif;
  display: flex;
  align-items: center;
  padding: 0px 0 100px;
  overflow: hidden;
}

/* BG */
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(135deg, #eaf3ff 0%, #f7faff 55%, #e6f0ff 100%);
}

.hero__bg::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -120px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(24, 119, 242, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.hero__bg::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: 30%;
  width: 500px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(0, 229, 160, 0.07) 0%, transparent 70%);
  border-radius: 50%;
}

/* Rising lines */
.hero__lines {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}

.hero__lines span {
  position: absolute;
  bottom: -10px;
  width: 1px;
  background: linear-gradient(to top, rgba(21, 96, 189, 0.25), transparent);
  animation: riseLine 6s ease-in-out infinite;
  opacity: 0;
}

.hero__lines span:nth-child(1) {
  left: 5%;
  height: 55%;
  animation-delay: 0s;
  animation-duration: 5s;
}

.hero__lines span:nth-child(2) {
  left: 10%;
  height: 40%;
  animation-delay: 1.2s;
  animation-duration: 6s;
}

.hero__lines span:nth-child(3) {
  left: 18%;
  height: 65%;
  animation-delay: 0.4s;
  animation-duration: 7s;
}

.hero__lines span:nth-child(4) {
  left: 25%;
  height: 30%;
  animation-delay: 2s;
  animation-duration: 5.5s;
}

.hero__lines span:nth-child(5) {
  left: 35%;
  height: 50%;
  animation-delay: 0.8s;
  animation-duration: 6.5s;
}

.hero__lines span:nth-child(6) {
  left: 45%;
  height: 70%;
  animation-delay: 1.6s;
  animation-duration: 7s;
}

.hero__lines span:nth-child(7) {
  left: 55%;
  height: 45%;
  animation-delay: 0.2s;
  animation-duration: 5s;
}

.hero__lines span:nth-child(8) {
  left: 65%;
  height: 60%;
  animation-delay: 1s;
  animation-duration: 6s;
}

.hero__lines span:nth-child(9) {
  left: 75%;
  height: 35%;
  animation-delay: 2.4s;
  animation-duration: 4.5s;
}

.hero__lines span:nth-child(10) {
  left: 82%;
  height: 55%;
  animation-delay: 0.6s;
  animation-duration: 7.5s;
}

.hero__lines span:nth-child(11) {
  left: 90%;
  height: 45%;
  animation-delay: 1.8s;
  animation-duration: 5.5s;
}

.hero__lines span:nth-child(12) {
  left: 96%;
  height: 30%;
  animation-delay: 3s;
  animation-duration: 6s;
}

@keyframes riseLine {
  0% {
    opacity: 0;
    transform: scaleY(0);
    transform-origin: bottom;
  }

  20% {
    opacity: 1;
  }

  80% {
    opacity: 0.6;
  }

  100% {
    opacity: 0;
    transform: scaleY(1);
    transform-origin: bottom;
  }
}

/* Container */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 ;
  position: relative;
  z-index: 2;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

/* ══════════════════════════════════════════════
LEFT COPY
══════════════════════════════════════════════ */
.hero__copy{
    display:flex;
    flex-direction: column;
    gap:15px
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(21, 96, 189, 0.08);
  border: 1px solid rgba(21, 96, 189, 0.2);
  border-radius: 100px;
  padding: 6px 16px 6px 8px;
  font-size: 12px;
  font-weight: 600;
  color: var(--blue-primary);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 28px;
  animation: fadeInUp 0.6s ease both;
  animation-delay: 0.1s;
}

.hero__badge-dot {
  width: 22px;
  height: 22px;
  background: var(--blue-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hero__badge-dot::after {
  content: '';
  width: 6px;
  height: 6px;
  background: #fff;
  border-radius: 50%;
}

.hero__h1 {
  font-size: clamp(36px, 4.5vw, 58px);
  font-weight: 800;
  line-height: 1.1;
  color: var(--text-dark);
  letter-spacing: -0.025em;
  animation: fadeInUp 0.7s ease both;
  animation-delay: 0.2s;
}

.hero__h1 em {
  font-style: normal;
  color: var(--blue-primary);
  position: relative;
  white-space: nowrap;
}

.hero__h1 em::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue-primary), var(--green));
  border-radius: 4px;
  transform: scaleX(0);
  transform-origin: left;
  animation: underlineReveal 0.6s ease 1s forwards;
}

@keyframes underlineReveal {
  to {
    transform: scaleX(1);
  }
}

.hero__desc {
  font-size: 17px;
  font-weight: 400;
  line-height: 1.7;
  color: var(--dark-2);
  max-width: 480px;
  animation: fadeInUp 0.7s ease both;
  animation-delay: 0.35s;
}

.hero__desc strong,.hero__desc b {
  color: var(--dark);
  font-weight: 600;
}

.hero__cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  animation: fadeInUp 0.7s ease both;
  animation-delay: 0.5s;
}

.hero__proof {
  display: flex;
  align-items: center;
  gap: 20px;
  animation: fadeInUp 0.7s ease both;
  animation-delay: 0.65s;
}

.hero__proof-avatars {
  display: flex;
}

.hero__proof-avatars span {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid #fff;
  background: linear-gradient(135deg, var(--blue-light), var(--blue-dark));
  margin-left: -8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  color: #fff;
}

.hero__proof-avatars span:first-child {
  margin-left: 0;
}

.hero__proof-avatars span:nth-child(2) {
  background: linear-gradient(135deg, #36b2fa, #0d56a6);
}

.hero__proof-avatars span:nth-child(3) {
  background: linear-gradient(135deg, #00c980, #0d3b7a);
}

.hero__proof-text {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.4;
}

.hero__proof-text strong {
  color: var(--text-dark);
  font-weight: 700;
}

.hero__divider {
  width: 1px;
  height: 28px;
  background: var(--border);
}

.hero__stars {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--text-muted);
}

.hero__stars-icons {
  color: #f5b400;
  letter-spacing: 1px;
  font-size: 14px;
}

.hero__stars strong {
  color: var(--text-dark);
}

/* ══════════════════════════════════════════════
RIGHT VISUAL — CINEMATIC ANIMATION SYSTEM

Timeline (seconds from page load):
0.3  → Whole panel slides in from right
0.6  → Chrome bar drops down
0.7-0.9 → Dots pop in sequence
0.9  → Lock icon appears
1.0  → URL text types in
1.2  → SERP card fades up
1.35 → Row 1 (Blue Medya) slides in from left
1.55 → Row 2 slides in
1.70 → Row 3 slides in
2.0  → Row 1 climbs from position 3→1
1.8  → Chart card fades up
1.9-2.67 → Bars grow left to right
2.4  → %340 badge bounces in
2.7  → Scan line sweeps across chart
3.2  → Rank badge starts pulsing
3.3  → Arrow appears with spin + continuous bob
3.4  → First row continuous glow
3.5  → Latest bar tooltip fades in
3.8+ → Continuous: levitate, floatBadges, latestGlow
══════════════════════════════════════════════ */

.hero__visual {
  position: relative;
  animation: slideInRight 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.3s both;
}

/* ─ Browser shell idle levitation ─ */
.browser {
  background: #fff;
  border-radius: 18px;
  box-shadow:
    0 2px 0 rgba(255, 255, 255, 0.9) inset,
    0 40px 100px rgba(21, 96, 189, 0.18),
    0 0 0 1px rgba(21, 96, 189, 0.1);
  overflow: hidden;
  position: relative;
  animation: levitate 7s ease-in-out 1.8s infinite;
}

@keyframes levitate {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  33% {
    transform: translateY(-7px) rotate(0.25deg);
  }

  66% {
    transform: translateY(-3px) rotate(-0.15deg);
  }
}

/* Single shimmer sweep on load */
.browser::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 38%, rgba(255, 255, 255, 0.5) 50%, transparent 62%);
  z-index: 20;
  pointer-events: none;
  animation: shimmerSweep 1.2s ease 0.8s both;
}

@keyframes shimmerSweep {
  from {
    transform: translateX(-120%);
  }

  to {
    transform: translateX(220%);
  }
}

/* ─ Chrome bar ─ */
.browser__chrome {
  background: #f3f6fb;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid var(--border);
  animation: dropChrome 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) 0.6s both;
}

@keyframes dropChrome {
  from {
    opacity: 0;
    transform: translateY(-14px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.browser__dots {
  display: flex;
  gap: 6px;
  flex-shrink: 0;
}

.browser__dots i {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  display: block;
  animation: dotPop 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

.browser__dots i:nth-child(1) {
  background: #ff5f57;
  animation-delay: 0.72s;
}

.browser__dots i:nth-child(2) {
  background: #ffbd2e;
  animation-delay: 0.82s;
}

.browser__dots i:nth-child(3) {
  background: #28c840;
  animation-delay: 0.92s;
}

@keyframes dotPop {
  from {
    transform: scale(0);
    opacity: 0;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}

.browser__url {
  flex: 1;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 6px 12px;
  font-size: 12px;
  color: var(--text-mid);
  display: flex;
  align-items: center;
  gap: 6px;
  overflow: hidden;
}

.browser__url-lock {
  width: 10px;
  height: 12px;
  background: var(--green2);
  border-radius: 2px;
  position: relative;
  flex-shrink: 0;
  animation: lockAppear 0.35s cubic-bezier(0.34, 1.56, 0.64, 1) 0.95s both;
}

@keyframes lockAppear {
  from {
    opacity: 0;
    transform: scale(0.4) rotate(-15deg);
  }

  to {
    opacity: 1;
    transform: scale(1) rotate(0);
  }
}

.browser__url-lock::before {
  content: '';
  position: absolute;
  top: -4px;
  left: 1px;
  width: 8px;
  height: 6px;
  border: 2px solid var(--green2);
  border-bottom: none;
  border-radius: 4px 4px 0 0;
}

/* Typewriter URL */
.browser__url-text {
  overflow: hidden;
  white-space: nowrap;
  width: 0;
  animation: typeURL 0.85s steps(40, end) 1.05s forwards;
}

@keyframes typeURL {
  from {
    width: 0;
  }

  to {
    width: 100%;
  }
}

.browser__body {
  padding: 20px 20px 16px;
}

/* ─ SERP card ─ */
.serp {
  background: #f8fbff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 14px 16px;
  margin-bottom: 16px;
  animation: fadeInUp 0.5s ease 1.2s both;
}

.serp__label {
  font-size: 10px;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 8px;
  animation: fadeInUp 0.4s ease 1.32s both;
}

/* Each row slides in from the left */
.serp__row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 10px;
  margin-bottom: 6px;
  transition: background 0.2s;
  animation: slideInRow 0.55s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.serp__row:last-child {
  margin-bottom: 0;
}

/* Row order in DOM: first(1st place), 2nd, 3rd — but visually they appear sequentially */
.serp__row--first {
  animation-delay: 1.38s;
}

.serp__row--2 {
  animation-delay: 1.58s;
}

.serp__row--3 {
  animation-delay: 1.72s;
}

@keyframes slideInRow {
  from {
    opacity: 0;
    transform: translateX(-18px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* After appearing, #1 row climbs UP (simulates jumping from #3 to #1) */
.serp__row--first {
  background: linear-gradient(135deg, rgba(0, 229, 160, 0.1), rgba(21, 96, 189, 0.06));
  border: 1px solid rgba(0, 229, 160, 0.25);
  animation:
    slideInRow 0.55s cubic-bezier(0.22, 1, 0.36, 1) 1.38s both,
    climbToFirst 1s cubic-bezier(0.22, 1, 0.36, 1) 1.95s both,
    glowPulse 3s ease-in-out 3.2s infinite;
}

@keyframes climbToFirst {
  /* starts below rows 2 & 3, rockets to top */
  0% {
    transform: translateY(72px) scale(0.96);
    box-shadow: none;
  }

  55% {
    transform: translateY(-5px) scale(1.02);
  }

  100% {
    transform: translateY(0) scale(1);
  }
}

@keyframes glowPulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(0, 229, 160, 0);
  }

  50% {
    box-shadow: 0 0 0 5px rgba(0, 229, 160, 0.14);
  }
}

.serp__rank {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 800;
  flex-shrink: 0;
  margin-top: 1px;
}

.serp__rank--1 {
  background: var(--green);
  color: #003d28;
  animation: rankPulse 2.5s ease-in-out 3.4s infinite;
}

@keyframes rankPulse {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(0, 229, 160, 0);
  }

  50% {
    transform: scale(1.14);
    box-shadow: 0 0 0 5px rgba(0, 229, 160, 0.2);
  }
}

.serp__rank--2 {
  background: rgba(21, 96, 189, 0.1);
  color: var(--blue-primary);
}

.serp__rank--3 {
  background: rgba(21, 96, 189, 0.08);
  color: var(--text-muted);
}

.serp__info {
  flex: 1;
  min-width: 0;
}

.serp__url {
  font-size: 10px;
  color: var(--green2);
  font-weight: 600;
  margin-bottom: 2px;
}

.serp__row--2 .serp__url,
.serp__row--3 .serp__url {
  color: var(--text-muted);
}

.serp__title {
  font-size: 12px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 3px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.serp__desc {
  font-size: 10px;
  color: var(--text-muted);
  line-height: 1.4;
}

/* Arrow: spins in, then bobs forever */
.serp__arrow {
  width: 20px;
  height: 20px;
  background: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
  animation:
    arrowSpin 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) 3.35s both,
    bobArrow 1.8s ease-in-out 3.9s infinite;
}

@keyframes arrowSpin {
  from {
    transform: scale(0) rotate(-180deg);
    opacity: 0;
  }

  to {
    transform: scale(1) rotate(0deg);
    opacity: 1;
  }
}

@keyframes bobArrow {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-4px);
  }
}

.serp__arrow svg {
  display: block;
}

/* ─ Chart ─ */
.chart-wrap {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px;
  animation: fadeInUp 0.6s ease 1.85s both;
}

.chart-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 14px;
}

.chart-title {
  font-size: 11px;
  font-weight: 700;
  color: var(--text-dark);
}

.chart-subtitle {
  font-size: 10px;
  color: var(--text-muted);
  margin-top: 2px;
}

/* Badge bounces in from the right */
.chart-badge {
  background: rgba(0, 229, 160, 0.12);
  color: var(--green2);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 4px;
  animation: badgeBounceIn 0.65s cubic-bezier(0.34, 1.56, 0.64, 1) 2.45s both;
}

@keyframes badgeBounceIn {
  from {
    transform: scale(0.3) translateX(24px);
    opacity: 0;
  }

  to {
    transform: scale(1) translateX(0);
    opacity: 1;
  }
}

/* Bar chart container */
.chart-bars {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 80px;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 8px;
  position: relative;
  overflow: visible;
}

/* Scan-line sweeps after all bars have grown */
.chart-bars::before {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 0;
  width: 3px;
  height: calc(100% - 4px);
  background: linear-gradient(to top, rgba(0, 229, 160, 0.7), transparent);
  border-radius: 2px;
  animation: scanLine 0.75s cubic-bezier(0.4, 0, 0.2, 1) 2.75s both;
}

@keyframes scanLine {
  from {
    left: 0;
    opacity: 0.9;
  }

  to {
    left: 100%;
    opacity: 0;
  }
}

.bar {
  flex: 1;
  border-radius: 4px 4px 0 0;
  position: relative;
  animation: growBar 0.65s cubic-bezier(0.22, 1, 0.36, 1) both;
  transform-origin: bottom;
}

.bar--past {
  background: rgba(21, 96, 189, 0.15);
}

.bar--recent {
  background: linear-gradient(180deg, var(--blue-light), var(--blue-primary));
}

.bar--latest {
  background: linear-gradient(180deg, var(--green), var(--green2));
  box-shadow: 0 0 16px rgba(0, 229, 160, 0.5);
  animation:
    growBar 0.65s cubic-bezier(0.22, 1, 0.36, 1) 2.72s both,
    latestGlow 2.2s ease-in-out 3.4s infinite;
}

@keyframes latestGlow {
  0%,
  100% {
    box-shadow: 0 0 14px rgba(0, 229, 160, 0.42);
  }

  50% {
    box-shadow: 0 0 30px rgba(0, 229, 160, 0.78);
  }
}

/* Tooltip above latest bar */
.bar--latest::before {
  content: '8.4K';
  position: absolute;
  top: -24px;
  left: 50%;
  transform: translateX(-50%) translateY(4px);
  background: var(--text-dark);
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  padding: 3px 6px;
  border-radius: 5px;
  white-space: nowrap;
  opacity: 0;
  animation: tooltipReveal 0.35s ease 3.6s forwards;
}

.bar--latest::after {
  content: '';
  position: absolute;
  top: -7px;
  left: 50%;
  transform: translateX(-50%) translateY(4px);
  border: 4px solid transparent;
  border-top-color: var(--text-dark);
  opacity: 0;
  animation: tooltipReveal 0.35s ease 3.6s forwards;
}

@keyframes tooltipReveal {
  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}

/* Staggered bar growth */
.bar:nth-child(1) {
  height: 22%;
  animation-delay: 1.93s;
}

.bar:nth-child(2) {
  height: 30%;
  animation-delay: 2s;
}

.bar:nth-child(3) {
  height: 28%;
  animation-delay: 2.07s;
}

.bar:nth-child(4) {
  height: 38%;
  animation-delay: 2.14s;
}

.bar:nth-child(5) {
  height: 35%;
  animation-delay: 2.21s;
}

.bar:nth-child(6) {
  height: 50%;
  animation-delay: 2.28s;
}

.bar:nth-child(7) {
  height: 55%;
  animation-delay: 2.35s;
}

.bar:nth-child(8) {
  height: 65%;
  animation-delay: 2.42s;
}

.bar:nth-child(9) {
  height: 72%;
  animation-delay: 2.49s;
}

.bar:nth-child(10) {
  height: 80%;
  animation-delay: 2.56s;
}

.bar:nth-child(11) {
  height: 88%;
  animation-delay: 2.63s;
}

.bar:nth-child(12) {
  height: 100%;
  animation-delay: 2.72s;
}

@keyframes growBar {
  from {
    transform: scaleY(0);
    opacity: 0;
  }

  to {
    transform: scaleY(1);
    opacity: 1;
  }
}

.chart-labels {
  display: flex;
  gap: 6px;
}

.chart-labels span {
  flex: 1;
  text-align: center;
  font-size: 8px;
  color: var(--text-muted);
}

/* ─ Floating badges ─ */
.badge-float {
  position: absolute;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 8px 14px;
  box-shadow: 0 8px 30px rgba(21, 96, 189, 0.18);
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  color: var(--text-dark);
  white-space: nowrap;
  z-index: 10;
}

.badge-float--tl {
  top: -18px;
  left: -10px;
  animation:
    badgeEntryTL 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) 0.9s both,
    floatBadge 4.5s ease-in-out 2.2s infinite;
}

.badge-float--br {
  bottom: -14px;
  right: -10px;
  animation:
    badgeEntryBR 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) 1.1s both,
    floatBadgeBR 4.5s ease-in-out 3.2s infinite;
}

@keyframes badgeEntryTL {
  from {
    opacity: 0;
    transform: translate(-18px, 14px) scale(0.82);
  }

  to {
    opacity: 1;
    transform: translate(0, 0) scale(1);
  }
}

@keyframes badgeEntryBR {
  from {
    opacity: 0;
    transform: translate(18px, -14px) scale(0.82);
  }

  to {
    opacity: 1;
    transform: translate(0, 0) scale(1);
  }
}

@keyframes floatBadge {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-7px);
  }
}

@keyframes floatBadgeBR {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-5px);
  }
}

/* Live dot on tl badge */
.badge-float--tl::after {
  content: '';
  position: absolute;
  top: 7px;
  right: 8px;
  width: 7px;
  height: 7px;
  background: var(--green);
  border-radius: 50%;
  border: 1.5px solid #fff;
  animation: notifBlink 1.4s ease-in-out 3s infinite;
}

@keyframes notifBlink {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.25;
    transform: scale(0.65);
  }
}

.badge-float__icon {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
}

.badge-float__icon--green {
  background: rgba(0, 229, 160, 0.15);
}

.badge-float__icon--blue {
  background: rgba(21, 96, 189, 0.12);
}

.badge-float__sub {
  font-size: 10px;
  font-weight: 400;
  color: var(--text-muted);
  display: block;
}

/* ─ Spark particles (JS-driven, CSS-animated) ─ */
.spark {
  position: fixed;
  pointer-events: none;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--green);
  animation: sparkFly 0.7s ease forwards;
  z-index: 9999;
}

@keyframes sparkFly {
  0% {
    opacity: 1;
    transform: translate(0, 0) scale(1.2);
  }

  100% {
    opacity: 0;
    transform: var(--fly) scale(0);
  }
}

/* ══════════════════════════════════════════════
SHARED KEYFRAMES
══════════════════════════════════════════════ */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(22px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(56px) scale(0.96);
  }

  to {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

/* ══════════════════════════════════════════════
RESPONSIVE
══════════════════════════════════════════════ */
@media (max-width: 900px) {
  .hero__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .hero__visual {
    max-width: 100%;
    min-width: 0;
    margin: 0 auto;
  }

  .badge-float--tl {
    left: 0;
  }

  .badge-float--br {
    right: 0;
  }
}

@media (max-width: 560px) {
  .container {
    padding: 0 20px;
  }

  .hero {
    padding: 80px 0 60px;
  }

  .hero__cta {
    flex-direction: column;
  }

  .btn-primary,
  .btn-ghost {
    width: 100%;
    justify-content: center;
  }

  .hero__proof {
    flex-wrap: wrap;
  }

  .hero__divider {
    display: none;
  }

  .badge-float {
    display: none;
  }
}

/* ══════════════════════════════════════════
     SECTION 2 — COMPARISON
  ══════════════════════════════════════════ */
.compare {
  background: #080c14;
  padding: 120px 0 100px;
  position: relative;
  overflow: hidden;
}

/* Subtle star-field dots */
.compare::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(1px 1px at 12% 18%, rgba(255, 255, 255, 0.18) 0%, transparent 100%),
    radial-gradient(1px 1px at 34% 72%, rgba(255, 255, 255, 0.12) 0%, transparent 100%),
    radial-gradient(1px 1px at 56% 28%, rgba(255, 255, 255, 0.14) 0%, transparent 100%),
    radial-gradient(1px 1px at 78% 56%, rgba(255, 255, 255, 0.1) 0%, transparent 100%),
    radial-gradient(1px 1px at 90% 10%, rgba(255, 255, 255, 0.16) 0%, transparent 100%),
    radial-gradient(1px 1px at 22% 88%, rgba(255, 255, 255, 0.08) 0%, transparent 100%),
    radial-gradient(1px 1px at 67% 90%, rgba(255, 255, 255, 0.12) 0%, transparent 100%);
  pointer-events: none;
}

/* Divider glow top edge */
.compare::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(21, 96, 189, 0.5), rgba(0, 229, 160, 0.4), transparent);
}

/* ── Section header ── */
.compare__header {
  text-align: center;
  margin-bottom: 64px;
}

.compare__kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(21, 96, 189, 0.12);
  border: 1px solid rgba(21, 96, 189, 0.25);
  border-radius: 100px;
  padding: 5px 16px 5px 8px;
  font-size: 11px;
  font-weight: 700;
  color: #60b4ff;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 22px;
}

.compare__kicker-dot {
  width: 18px;
  height: 18px;
  background: #1560bd;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.compare__kicker-dot::after {
  content: '';
  width: 5px;
  height: 5px;
  background: #fff;
  border-radius: 50%;
}

.compare__title {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: #fff;
  margin-bottom: 16px;
}

.compare__title span {
  color: #00e5a0;
}

.compare__subtitle {
  font-size: 17px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.5);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.65;
}

/* ── Cards grid ── */
.compare__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 72px;
}

/* shared card base */
.ccard {
  border-radius: 22px;
  padding: 36px 36px 32px;
  position: relative;
  overflow: hidden;
}

/* ─ LEFT pain card ─ */
.ccard--pain {
  background: linear-gradient(145deg, #160a0a 0%, #1a0d0d 60%, #120808 100%);
  border: 1px solid rgba(220, 40, 40, 0.18);
}

.ccard--pain::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(220, 50, 50, 0.12) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

/* ─ RIGHT solution card ─ */
.ccard--solution {
  background: linear-gradient(145deg, #030d1f 0%, #061226 60%, #040e1c 100%);
  border: 1px solid rgba(21, 96, 189, 0.35);
  box-shadow:
    0 0 0 1px rgba(0, 229, 160, 0.08),
    0 32px 80px rgba(21, 96, 189, 0.22),
    0 0 60px rgba(0, 229, 160, 0.06);
}

.ccard--solution::before {
  content: '';
  position: absolute;
  top: -60px;
  left: -60px;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(0, 229, 160, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

/* Card header */
.ccard__tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 20px;
}

.ccard--pain .ccard__tag {
  background: rgba(220, 50, 50, 0.15);
  color: #f87171;
  border: 1px solid rgba(220, 50, 50, 0.2);
}

.ccard--solution .ccard__tag {
  background: rgba(0, 229, 160, 0.1);
  color: #00e5a0;
  border: 1px solid rgba(0, 229, 160, 0.2);
}

.ccard__tag-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
}

.ccard--pain .ccard__tag-dot {
  background: #f87171;
  animation: tagBlink 1.2s ease-in-out infinite;
}

.ccard--solution .ccard__tag-dot {
  background: #00e5a0;
  animation: tagBlink 1.8s ease-in-out 0.6s infinite;
}

@keyframes tagBlink {
  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.25;
  }
}

.ccard__h2 {
  font-size: clamp(20px, 2.2vw, 26px);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}

.ccard--pain .ccard__h2 {
  color: #fff;
}

.ccard--solution .ccard__h2 {
  color: #fff;
}

.ccard--solution .ccard__h2 span {
  color: #00e5a0;
}

.ccard__body {
  font-size: 14px;
  line-height: 1.75;
  margin-bottom: 28px;
}

.ccard--pain .ccard__body {
  color: rgba(255, 255, 255, 0.45);
}

.ccard--solution .ccard__body {
  color: rgba(255, 255, 255, 0.5);
}

.ccard--solution .ccard__body strong {
  color: rgba(255, 255, 255, 0.8);
  font-weight: 600;
}

/* ══ LEFT ANIMATION: Budget drain ══ */
.budget-vis {
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(220, 50, 50, 0.15);
  border-radius: 14px;
  padding: 20px 22px;
  position: relative;
  overflow: hidden;
}

.budget-vis__label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.budget-vis__label-val {
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
}

/* The drain bar track */
.budget-track {
  width: 100%;
  height: 14px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 100px;
  margin-bottom: 10px;
  overflow: hidden;
}

.budget-fill {
  height: 100%;
  border-radius: 100px;
  background: linear-gradient(90deg, #dc2626, #f97316);
  box-shadow: 0 0 12px rgba(220, 38, 38, 0.5);
  animation: drainBudget 3.5s cubic-bezier(0.4, 0, 0.6, 1) 0.5s infinite;
}

@keyframes drainBudget {
  0% {
    width: 100%;
    opacity: 1;
  }

  78% {
    width: 4%;
    opacity: 1;
  }

  85% {
    width: 0%;
    opacity: 0.6;
  }

  90% {
    width: 0%;
    opacity: 0;
  }

  95% {
    width: 100%;
    opacity: 0;
  }

  100% {
    width: 100%;
    opacity: 1;
  }
}

/* Daily cost rows */
.budget-rows {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 14px;
}

.budget-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.4);
}

.budget-row__bar {
  flex: 1;
  height: 4px;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.06);
  margin: 0 10px;
  overflow: hidden;
  position: relative;
}

.budget-row__bar-fill {
  height: 100%;
  border-radius: 100px;
  background: linear-gradient(90deg, rgba(220, 38, 38, 0.6), rgba(249, 115, 22, 0.4));
  animation: drainMini 3.5s linear 0.5s infinite;
}

.budget-row:nth-child(1) .budget-row__bar-fill {
  width: 82%;
  animation-delay: 0.6s;
}

.budget-row:nth-child(2) .budget-row__bar-fill {
  width: 61%;
  animation-delay: 0.75s;
}

.budget-row:nth-child(3) .budget-row__bar-fill {
  width: 44%;
  animation-delay: 0.9s;
}

@keyframes drainMini {
  0% {
    transform: scaleX(1);
    transform-origin: left;
  }

  78% {
    transform: scaleX(0);
    transform-origin: left;
  }

  90% {
    transform: scaleX(0);
  }

  95% {
    transform: scaleX(1);
    transform-origin: right;
  }

  100% {
    transform: scaleX(1);
    transform-origin: left;
  }
}

/* "Budget depleted" alert */
.budget-alert {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(220, 38, 38, 0.12);
  border: 1px solid rgba(220, 38, 38, 0.3);
  border-radius: 10px;
  padding: 10px 14px;
  font-size: 12px;
  font-weight: 700;
  color: #f87171;
  animation: alertPulse 3.5s ease 0.5s infinite;
}

.budget-alert__icon {
  width: 20px;
  height: 20px;
  background: rgba(220, 38, 38, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  flex-shrink: 0;
}

/* Alert syncs to drain: appears when budget hits 0 */
@keyframes alertPulse {
  0%,
  70% {
    opacity: 0;
    transform: translateY(4px);
  }

  80%,
  95% {
    opacity: 1;
    transform: translateY(0);
  }

  100% {
    opacity: 0;
  }
}

/* Coin drain particles */
.coin-particle {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: radial-gradient(circle, #fcd34d, #f97316);
  pointer-events: none;
  animation: coinFall linear infinite;
  opacity: 0;
}

.coin-particle:nth-child(1) {
  left: 15%;
  animation-delay: 0.5s;
  animation-duration: 1.8s;
}

.coin-particle:nth-child(2) {
  left: 35%;
  animation-delay: 1.1s;
  animation-duration: 2s;
}

.coin-particle:nth-child(3) {
  left: 55%;
  animation-delay: 0.7s;
  animation-duration: 1.6s;
}

.coin-particle:nth-child(4) {
  left: 72%;
  animation-delay: 1.5s;
  animation-duration: 2.2s;
}

.coin-particle:nth-child(5) {
  left: 88%;
  animation-delay: 0.9s;
  animation-duration: 1.9s;
}

@keyframes coinFall {
  0% {
    top: 24px;
    opacity: 0.9;
    transform: scale(1) rotate(0deg);
  }

  80% {
    opacity: 0.4;
    transform: scale(0.6) rotate(180deg);
  }

  100% {
    top: 90px;
    opacity: 0;
    transform: scale(0.3) rotate(270deg);
  }
}

/* ══ RIGHT ANIMATION: Organic growth line chart ══ */
.growth-vis {
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(0, 229, 160, 0.12);
  border-radius: 14px;
  padding: 20px 22px;
  position: relative;
  overflow: hidden;
}

.growth-vis__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 16px;
}

.growth-vis__title {
  font-size: 11px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.growth-vis__live {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 10px;
  font-weight: 700;
  color: #00e5a0;
}

.growth-vis__live-dot {
  width: 6px;
  height: 6px;
  background: #00e5a0;
  border-radius: 50%;
  animation: tagBlink 1s ease-in-out infinite;
}

/* SVG line chart */
.growth-chart {
  width: 100%;
  height: 90px;
  position: relative;
  margin-bottom: 10px;
}

.growth-chart svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

/* Animated line draw */
.growth-line {
  stroke: url(#lineGrad);
  stroke-width: 2.5;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 400;
  stroke-dashoffset: 400;
  animation: drawLine 2.2s cubic-bezier(0.22, 1, 0.36, 1) 0.3s forwards;
}



/* Fill area under line */
.growth-area {
  fill: url(#areaGrad);
  opacity: 0;
  animation: areaReveal 1.5s ease 1.2s forwards;
}

@keyframes areaReveal {
  to {
    opacity: 1;
  }
}

/* Pulsing dot at line end */
.growth-dot {
  animation: dotAppear 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) 2.4s both;
}

@keyframes dotAppear {
  from {
    transform: scale(0);
  }

  to {
    transform: scale(1);
  }
}

.growth-dot-ring {
  animation:
    dotAppear 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) 2.4s both,
    ringPulse 2s ease-in-out 2.8s infinite;
}

@keyframes ringPulse {
  0%,
  100% {
    r: 6;
    opacity: 0.6;
  }

  50% {
    r: 10;
    opacity: 0;
  }
}

/* Milestone badges along the line */
.growth-milestones {
  display: flex;
  justify-content: space-between;
  padding: 0 2px;
}

.milestone {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  animation: fadeInUp 0.5s ease both;
}

.milestone:nth-child(1) {
  animation-delay: 1s;
}

.milestone:nth-child(2) {
  animation-delay: 1.4s;
}

.milestone:nth-child(3) {
  animation-delay: 1.8s;
}

.milestone:nth-child(4) {
  animation-delay: 2.2s;
}

.milestone__val {
  font-size: 11px;
  font-weight: 800;
  color: #00e5a0;
  letter-spacing: -0.01em;
}

.milestone__label {
  font-size: 8px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.3);
  text-transform: uppercase;
}

/* Floating "organic visitors" counter badge */
.growth-counter {
  position: absolute;
  top: 8px;
  right: 8px;
  background: rgba(0, 229, 160, 0.12);
  border: 1px solid rgba(0, 229, 160, 0.25);
  border-radius: 10px;
  padding: 8px 12px;
  text-align: right;
  animation: counterAppear 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) 2.6s both;
}

@keyframes counterAppear {
  from {
    transform: scale(0.6) translateY(-8px);
    opacity: 0;
  }

  to {
    transform: scale(1) translateY(0);
    opacity: 1;
  }
}

.growth-counter__val {
  font-size: 18px;
  font-weight: 800;
  color: #00e5a0;
  letter-spacing: -0.02em;
  display: block;
}

.growth-counter__sub {
  font-size: 9px;
  color: rgba(255, 255, 255, 0.35);
  font-weight: 500;
}

/* ── Comparison connector (vs) ── */
.compare__vs {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) translateY(36px);
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #1560bd, #1877f2);
  border-radius: 50%;
  border: 3px solid #080c14;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 800;
  color: #fff;
  z-index: 10;
  box-shadow:
    0 0 0 1px rgba(21, 96, 189, 0.4),
    0 8px 24px rgba(21, 96, 189, 0.3);
  animation: vsPop 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) 0.4s both;
  pointer-events: none;
}

@keyframes vsPop {
  from {
    transform: translate(-50%, -50%) translateY(36px) scale(0) rotate(-45deg);
    opacity: 0;
  }

  to {
    transform: translate(-50%, -50%) translateY(36px) scale(1) rotate(0deg);
    opacity: 1;
  }
}

/* ── Closing CTA ── */
.compare__cta {
  text-align: center;
  padding-top: 8px;
}

.compare__cta-title {
  font-size: clamp(26px, 3.2vw, 40px);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.025em;
  color: #fff;
  margin-bottom: 14px;
}

.compare__cta-title em {
  font-style: normal;
  background: linear-gradient(90deg, #3b9eff, #00e5a0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.compare__cta-sub {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.42);
  margin-bottom: 36px;
  line-height: 1.6;
}

/* Electric CTA button */
.btn-electric {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #1560bd 0%, #1877f2 50%, #00c980 100%);
  background-size: 200% 100%;
  color: #fff;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 16px;
  font-weight: 800;
  padding: 16px 36px;
  border-radius: 14px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  letter-spacing: -0.01em;
  position: relative;
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(21, 96, 189, 0.5),
    0 8px 32px rgba(21, 96, 189, 0.4),
    0 0 60px rgba(0, 229, 160, 0.12);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background-position 0.4s ease;
}

.btn-electric:hover {
  transform: translateY(-3px) scale(1.02);
  background-position: 100% 0;
  box-shadow:
    0 0 0 1px rgba(0, 229, 160, 0.5),
    0 12px 40px rgba(21, 96, 189, 0.5),
    0 0 80px rgba(0, 229, 160, 0.2);
}

/* Shine on hover */
.btn-electric::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(255, 255, 255, 0.18) 50%, transparent 60%);
  transform: translateX(-100%);
  transition: transform 0.4s ease;
}

.btn-electric:hover::before {
  transform: translateX(200%);
}

.btn-electric__arrow {
  width: 28px;
  height: 28px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease;
}

.btn-electric:hover .btn-electric__arrow {
  transform: translateX(4px);
}

/* Urgency mini strip under button */
.compare__urgency {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 14px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.3);
  font-weight: 500;
}

.compare__urgency-dot {
  width: 6px;
  height: 6px;
  background: #00e5a0;
  border-radius: 50%;
  animation: tagBlink 1.2s ease-in-out infinite;
}

/* ── Scroll-triggered visibility (Intersection Observer) ── */
.compare__grid,
.compare__header,
.compare__cta {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

.compare__grid.is-visible,
.compare__header.is-visible,
.compare__cta.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.compare__cta {
  transition-delay: 0.15s;
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .compare__grid {
    grid-template-columns: 1fr;
  }

  .compare__vs {
    display: none;
  }
}

@media (max-width: 560px) {
  .compare {
    padding: 80px 0 70px;
  }

  .ccard {
    padding: 28px 22px 24px;
  }
}
/* ════════════════════════════════════════════
       SECTION 3 — PROCESS STAIRCASE  (LIGHT)
    ════════════════════════════════════════════ */

/* ── Section wrapper: light bg ── */
.process {
  background: #f4f8ff;
  padding: 130px 0 120px;
  position: relative;
  overflow: hidden;
}

/* Soft radial washes */
.process::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image:
    radial-gradient(ellipse 55% 45% at 5% 15%, rgba(21, 96, 189, 0.06) 0%, transparent 100%),
    radial-gradient(ellipse 45% 55% at 95% 85%, rgba(0, 229, 160, 0.06) 0%, transparent 100%),
    radial-gradient(ellipse 40% 40% at 50% 50%, rgba(59, 158, 255, 0.04) 0%, transparent 100%);
}

/* Top transition line from dark section above */
.process::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(21, 96, 189, 0.25) 30%,
    rgba(0, 229, 160, 0.2) 60%,
    transparent 100%
  );
}

.process .container {
  position: relative;
  z-index: 2;
}

/* ── Header ── */
.process__header {
  text-align: center;
  margin-bottom: 80px;
  opacity: 0;
  transform: translateY(36px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

.process__header.is-vis {
  opacity: 1;
  transform: translateY(0);
}

.process__kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(21, 96, 189, 0.08);
  border: 1px solid rgba(21, 96, 189, 0.18);
  border-radius: 100px;
  padding: 5px 18px 5px 8px;
  font-size: 11px;
  font-weight: 700;
  color: #1560bd;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  margin-bottom: 22px;
}

.process__kicker-dot {
  width: 18px;
  height: 18px;
  background: #1560bd;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.process__kicker-dot::after {
  content: '';
  width: 5px;
  height: 5px;
  background: #fff;
  border-radius: 50%;
}

.process__title {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: #0a1628;
  margin-bottom: 16px;
}

.process__title em {
  font-style: normal;
  color: #1560bd;
}

.process__subtitle {
  font-size: 17px;
  color: #6b82a8;
  line-height: 1.65;
  max-width: 520px;
  margin: 0 auto;
}

/* ══════════════════════════════════════
       STAIRCASE GRID
       Strategy: fixed gap columns, cards get
       margin-top to simulate the rising stairs.
       No align-items:end (that caused height bugs).
    ══════════════════════════════════════ */
.stairs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
  /* No align-items — each card manages its own top offset */
}

/* Rising offsets — each stair sits higher than the previous */
.stair:nth-child(1) {
  margin-top: 84px;
}

.stair:nth-child(2) {
  margin-top: 56px;
}

.stair:nth-child(3) {
  margin-top: 28px;
}

.stair:nth-child(4) {
  margin-top: 0px;
}

.stair {
  position: relative;
  opacity: 0;
  transform: translateY(48px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}

.stair.is-vis {
  opacity: 1;
  transform: translateY(0);
}

.stair:nth-child(1) {
  transition-delay: 0.05s;
}

.stair:nth-child(2) {
  transition-delay: 0.18s;
}

.stair:nth-child(3) {
  transition-delay: 0.31s;
}

.stair:nth-child(4) {
  transition-delay: 0.44s;
}

/* ── Step card ── */
.step {
  background: #ffffff;
  border: 1px solid rgba(21, 96, 189, 0.1);
  border-radius: 20px;
  padding: 32px 28px 28px;
  position: relative;
  overflow: hidden;
  cursor: default;
  height: 100%;
  box-shadow: 0 4px 24px rgba(21, 96, 189, 0.06);
  transition:
    border-color 0.3s ease,
    box-shadow 0.3s ease,
    transform 0.3s ease;
}

.step:hover {
  border-color: rgba(0, 229, 160, 0.4);
  box-shadow:
    0 0 0 1px rgba(0, 229, 160, 0.15),
    0 20px 56px rgba(21, 96, 189, 0.12),
    0 4px 16px rgba(0, 229, 160, 0.08);
  transform: translateY(-5px);
}

/* Ghost number filigree — very subtle on light bg */
.step__num {
  position: absolute;
  bottom: -20px;
  right: -6px;
  font-size: 110px;
  font-weight: 800;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(21, 96, 189, 0.07);
  letter-spacing: -0.04em;
  pointer-events: none;
  user-select: none;
  transition: -webkit-text-stroke 0.3s ease;
  font-family: 'Bricolage Grotesque', sans-serif;
}

.step:hover .step__num {
  -webkit-text-stroke: 1.5px rgba(0, 200, 128, 0.28);
}

/* Step badge */
.step__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 20px;
  border: 1px solid;
}

.stair:nth-child(1) .step__badge {
  background: rgba(21, 96, 189, 0.08);
  color: #1560bd;
  border-color: rgba(21, 96, 189, 0.18);
}

.stair:nth-child(2) .step__badge {
  background: rgba(124, 58, 237, 0.08);
  color: #7c3aed;
  border-color: rgba(124, 58, 237, 0.18);
}

.stair:nth-child(3) .step__badge {
  background: rgba(234, 88, 12, 0.08);
  color: #ea580c;
  border-color: rgba(234, 88, 12, 0.18);
}

.stair:nth-child(4) .step__badge {
  background: rgba(0, 200, 128, 0.1);
  color: #00c880;
  border-color: rgba(0, 200, 128, 0.22);
}

/* CSS icon area */
.step__icon {
  width: 46px;
  height: 46px;
  border-radius: 13px;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  flex-shrink: 0;
  transition:
    box-shadow 0.3s ease,
    transform 0.3s ease;
}

.step:hover .step__icon {
  transform: scale(1.08);
}

.stair:nth-child(1) .step__icon {
  background: rgba(21, 96, 189, 0.1);
  box-shadow: 0 2px 8px rgba(21, 96, 189, 0.12);
}

.stair:nth-child(2) .step__icon {
  background: rgba(124, 58, 237, 0.1);
  box-shadow: 0 2px 8px rgba(124, 58, 237, 0.12);
}

.stair:nth-child(3) .step__icon {
  background: rgba(234, 88, 12, 0.1);
  box-shadow: 0 2px 8px rgba(234, 88, 12, 0.12);
}

.stair:nth-child(4) .step__icon {
  background: rgba(0, 200, 128, 0.12);
  box-shadow: 0 2px 8px rgba(0, 200, 128, 0.14);
}

/* ── Pure CSS icons (colours adjusted for light bg) ── */

/* 01 magnifier */
.icon-audit {
  width: 18px;
  height: 18px;
  border: 2.5px solid #1560bd;
  border-radius: 50%;
  position: relative;
}

.icon-audit::after {
  content: '';
  position: absolute;
  bottom: -6px;
  right: -6px;
  width: 8px;
  height: 2.5px;
  background: #1560bd;
  border-radius: 2px;
  transform: rotate(45deg);
  transform-origin: left center;
}

/* 02 lightning */
.icon-speed {
  width: 0;
  height: 0;
  border-left: 7px solid transparent;
  border-right: 5px solid transparent;
  border-bottom: 14px solid #7c3aed;
  position: relative;
  top: -2px;
}

.icon-speed::after {
  content: '';
  position: absolute;
  top: 9px;
  left: -4px;
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 7px solid transparent;
  border-top: 11px solid #7c3aed;
}

/* 03 text lines */
.icon-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.icon-content span {
  display: block;
  height: 2.5px;
  border-radius: 2px;
  background: #ea580c;
}

.icon-content span:nth-child(1) {
  width: 18px;
}

.icon-content span:nth-child(2) {
  width: 13px;
}

.icon-content span:nth-child(3) {
  width: 16px;
}

/* 04 rising arrow */
.icon-authority {
  position: relative;
  width: 22px;
  height: 18px;
}

.icon-authority::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1.5px;
  background: rgba(0, 200, 128, 0.35);
}

.icon-authority::after {
  content: '';
  position: absolute;
  bottom: 3px;
  left: 2px;
  width: 18px;
  height: 2.5px;
  background: linear-gradient(90deg, transparent, #00c880);
  clip-path: polygon(0 100%, 100% 0, 100% 100%);
}

.icon-authority-arr {
  position: absolute;
  top: 0;
  right: 0;
  border-left: 5px solid transparent;
  border-right: 0 solid transparent;
  border-bottom: 8px solid #00c880;
  transform: rotate(45deg);
}

/* Step text */
.step__h3 {
  font-size: 16px;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: #0a1628;
  margin-bottom: 10px;
  font-family: 'Bricolage Grotesque', sans-serif;
}

.step__p {
  font-size: 13px;
  line-height: 1.7;
  color: #6b82a8;
  transition: color 0.3s ease;
}

.step:hover .step__p {
  color: #2d4470;
}

/* Hover bottom glow bar */
.step::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2.5px;
  background: linear-gradient(90deg, transparent, rgba(0, 200, 128, 0.7), transparent);
  transform: scaleX(0);
  transition: transform 0.35s ease;
  border-radius: 0 0 20px 20px;
}

.step:hover::after {
  transform: scaleX(1);
}

/* ══════════════════════════════════════
       CONNECTOR RAIL BETWEEN CARDS
       Built as an absolutely positioned SVG
       that sits *behind* the grid.
       This approach is bulletproof across
       all browsers — no overflow tricks needed.
    ══════════════════════════════════════ */
.stairs-rail-wrap {
  /* Placed outside the grid, overlaid via negative margin */
  position: relative;
  margin-bottom: -120px;
  /* pull the SVG behind the grid below */
  height: 120px;
  pointer-events: none;
  z-index: 1;
}

.stairs-rail-wrap svg {
  width: 100%;
  height: 100%;
  overflow: visible;
  display: block;
}

/* Dashed gradient path */
.rail-path {
  stroke: url(#railGradLight);
  stroke-width: 2;
  fill: none;
  stroke-dasharray: 10 7;
  stroke-dashoffset: 0;
  opacity: 0;
  transition: opacity 0.6s ease 0.5s;
}

.rail-path.is-vis {
  opacity: 1;
  animation: dashFlowLight 2.5s linear infinite;
}

@keyframes dashFlowLight {
  to {
    stroke-dashoffset: -51;
  }
}

/* Node dots on the rail at each step junction */
.rail-node {
  transition:
    r 0.3s ease,
    opacity 0.4s ease;
}

.rail-node.is-vis {
  animation: nodePopLight 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

.rail-node:nth-child(2) {
  animation-delay: 0.6s;
}

.rail-node:nth-child(3) {
  animation-delay: 0.75s;
}

.rail-node:nth-child(4) {
  animation-delay: 0.9s;
}

.rail-node:nth-child(5) {
  animation-delay: 1.05s;
}

@keyframes nodePopLight {
  from {
    r: 0;
    opacity: 0;
  }

  to {
    r: 5;
    opacity: 1;
  }
}

/* ── Bottom progress indicator ── */
.process__progress {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-top: 60px;
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.6s ease 0.6s,
    transform 0.6s ease 0.6s;
}

.process__progress.is-vis {
  opacity: 1;
  transform: translateY(0);
}

.prog-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  flex: 1;
  position: relative;
}

/* Connector line between prog steps */
.prog-step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 16px;
  left: calc(50% + 18px);
  right: calc(-50% + 18px);
  height: 1.5px;
  background: linear-gradient(90deg, rgba(21, 96, 189, 0.3), rgba(0, 200, 128, 0.3));
  transform: scaleX(0);
  transform-origin: left;
  animation: progLineFill3 0.7s ease both;
}

.prog-step:nth-child(1)::after {
  animation-delay: 1.1s;
}

.prog-step:nth-child(2)::after {
  animation-delay: 1.3s;
}

.prog-step:nth-child(3)::after {
  animation-delay: 1.5s;
}

@keyframes progLineFill3 {
  from {
    transform: scaleX(0);
    opacity: 0;
  }

  to {
    transform: scaleX(1);
    opacity: 1;
  }
}

.prog-dot {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 800;
  color: #fff;
  font-family: 'Bricolage Grotesque', sans-serif;
  position: relative;
  z-index: 2;
  animation: progDotIn3 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

.prog-step:nth-child(1) .prog-dot {
  background: #1560bd;
  box-shadow: 0 4px 14px rgba(21, 96, 189, 0.3);
  animation-delay: 0.7s;
}

.prog-step:nth-child(2) .prog-dot {
  background: #7c3aed;
  box-shadow: 0 4px 14px rgba(124, 58, 237, 0.3);
  animation-delay: 0.9s;
}

.prog-step:nth-child(3) .prog-dot {
  background: #ea580c;
  box-shadow: 0 4px 14px rgba(234, 88, 12, 0.3);
  animation-delay: 1.1s;
}

.prog-step:nth-child(4) .prog-dot {
  background: #00c880;
  box-shadow: 0 4px 14px rgba(0, 200, 128, 0.3);
  animation-delay: 1.3s;
}

@keyframes progDotIn3 {
  from {
    transform: scale(0) rotate(-90deg);
    opacity: 0;
  }

  to {
    transform: scale(1) rotate(0);
    opacity: 1;
  }
}

.prog-label {
  font-size: 10px;
  font-weight: 600;
  color: #6b82a8;
  text-align: center;
  letter-spacing: 0.03em;
  animation: fadeInUp3 0.5s ease both;
}

.prog-step:nth-child(1) .prog-label {
  animation-delay: 0.8s;
}

.prog-step:nth-child(2) .prog-label {
  animation-delay: 1s;
}

.prog-step:nth-child(3) .prog-label {
  animation-delay: 1.2s;
}

.prog-step:nth-child(4) .prog-label {
  animation-delay: 1.4s;
}

@keyframes fadeInUp3 {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ── Responsive ── */
@media (max-width: 960px) {
  .stairs {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .stair:nth-child(1) {
    margin-top: 28px;
  }

  .stair:nth-child(2) {
    margin-top: 0;
  }

  .stair:nth-child(3) {
    margin-top: 28px;
  }

  .stair:nth-child(4) {
    margin-top: 0;
  }

  .stairs-rail-wrap {
    display: none;
  }

  .prog-step:not(:last-child)::after {
    display: none;
  }
}

@media (max-width: 560px) {
  .stairs {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .stair {
    margin-top: 0 !important;
  }

  .process {
    padding: 80px 0 70px;
  }

  .process__progress {
    flex-direction: column;
    gap: 16px;
  }

  .prog-step {
    flex-direction: row;
    gap: 14px;
    align-items: center;
  }
}
/* ════════════════════════════════════════════
         SECTION 4 — AGENCY COMPARISON  (DARK)
      ════════════════════════════════════════════ */
.versus {
  background: #06080f;
  padding: 130px 0 120px;
  position: relative;
  overflow: hidden;
}

/* Ambient background glows */
.versus::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 50% 60% at 80% 50%, rgba(21, 96, 189, 0.09) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 20% 40%, rgba(0, 229, 160, 0.04) 0%, transparent 70%);
}

/* Top edge separator */
.versus::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(21, 96, 189, 0.4) 35%, rgba(0, 229, 160, 0.3) 65%, transparent);
}

.versus .container {
  position: relative;
  z-index: 2;
}

/* ── Header ── */
.versus__header {
  text-align: center;
  margin-bottom: 72px;
  opacity: 0;
  transform: translateY(32px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

.versus__header.vs-vis {
  opacity: 1;
  transform: translateY(0);
}

.versus__kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(21, 96, 189, 0.1);
  border: 1px solid rgba(21, 96, 189, 0.22);
  border-radius: 100px;
  padding: 5px 18px 5px 8px;
  font-size: 11px;
  font-weight: 700;
  color: #60b4ff;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  margin-bottom: 22px;
}

.versus__kicker-dot {
  width: 18px;
  height: 18px;
  background: #1560bd;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.versus__kicker-dot::after {
  content: '';
  width: 5px;
  height: 5px;
  background: #fff;
  border-radius: 50%;
}

.versus__title {
  font-size: clamp(30px, 3.8vw, 50px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: #fff;
  margin-bottom: 14px;
}

.versus__title span {
  color: #00e5a0;
}

.versus__subtitle {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.42);
  line-height: 1.65;
  max-width: 500px;
  margin: 0 auto;
}

/* ── Split layout ── */
.versus__split {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0;
  align-items: center;
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.7s ease 0.1s,
    transform 0.7s ease 0.1s;
}

.versus__split.vs-vis {
  opacity: 1;
  transform: translateY(0);
}

/* ─────────────────────────────
           LEFT CARD — Sıradan Ajanslar
        ───────────────────────────── */
.vs-card {
  border-radius: 22px;
  padding: 36px 32px 32px;
  position: relative;
  overflow: hidden;
}

.vs-card--bad {
  background: linear-gradient(145deg, #111318 0%, #0d0f14 100%);
  border: 1px solid rgba(255, 255, 255, 0.06);
  opacity: 0.72;
  /* No hover glow — intentionally dead */
  transition: opacity 0.3s ease;
  /* Slight left tilt for "lesser" feel */
  transform: scale(0.97) translateX(8px);
}

.vs-card--bad:hover {
  opacity: 0.8;
}

/* Dead inner vignette */
.vs-card--bad::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(80, 0, 0, 0.08) 0%, transparent 100%);
  pointer-events: none;
}

.vs-card--bad .vc__title {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 28px;
  font-family: 'Bricolage Grotesque', sans-serif;
}

/* ─────────────────────────────
           RIGHT CARD — Blue Medya
        ───────────────────────────── */
.vs-card--good {
  background: linear-gradient(145deg, #061428 0%, #071830 60%, #050f20 100%);
  border: 1px solid rgba(21, 96, 189, 0.5);
  /* Forward/scale prominence */
  transform: scale(1.05) translateX(-8px);
  box-shadow:
    0 0 0 1px rgba(0, 229, 160, 0.1),
    0 0 40px rgba(21, 96, 189, 0.22),
    0 0 80px rgba(0, 229, 160, 0.07),
    0 24px 60px rgba(21, 96, 189, 0.18);
  transition:
    border-color 0.35s ease,
    box-shadow 0.35s ease;
}

.vs-card--good:hover {
  border-color: rgba(0, 229, 160, 0.55);
  box-shadow:
    0 0 0 1px rgba(0, 229, 160, 0.22),
    0 0 60px rgba(21, 96, 189, 0.35),
    0 0 120px rgba(0, 229, 160, 0.14),
    0 32px 80px rgba(21, 96, 189, 0.28);
}

/* Running glow border animation */
.vs-card--good::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 23px;
  background: linear-gradient(135deg, rgba(21, 96, 189, 0.6), rgba(0, 229, 160, 0.4), rgba(21, 96, 189, 0.6));
  background-size: 300% 300%;
  animation: borderRotate 4s linear infinite;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.vs-card--good:hover::before {
  opacity: 1;
}

@keyframes borderRotate {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

.vs-card--good .vc__title {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: 28px;
  font-family: 'Bricolage Grotesque', sans-serif;
  display: flex;
  align-items: center;
  gap: 10px;
}

.vs-card--good .vc__title-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(0, 229, 160, 0.12);
  border: 1px solid rgba(0, 229, 160, 0.25);
  border-radius: 100px;
  padding: 3px 10px;
  font-size: 10px;
  font-weight: 700;
  color: #00e5a0;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  white-space: nowrap;
}

.vc__title-badge-dot {
  width: 5px;
  height: 5px;
  background: #00e5a0;
  border-radius: 50%;
  animation: vs-blink 1.4s ease-in-out infinite;
}

@keyframes vs-blink {
  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.2;
  }
}

/* ── Row items ── */
.vc__list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.vc__item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 12px;
  transition: background 0.25s ease;
}

/* Bad card items */
.vs-card--bad .vc__item {
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.04);
}

.vs-card--bad .vc__item:hover {
  background: rgba(255, 255, 255, 0.04);
}

/* Good card items */
.vs-card--good .vc__item {
  background: rgba(21, 96, 189, 0.08);
  border: 1px solid rgba(21, 96, 189, 0.12);
}

.vs-card--good .vc__item:hover {
  background: rgba(0, 229, 160, 0.07);
  border-color: rgba(0, 229, 160, 0.18);
}

/* Icon */
.vc__icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 800;
  flex-shrink: 0;
  margin-top: 1px;
}

.vs-card--bad .vc__icon {
  background: rgba(239, 68, 68, 0.15);
  color: #f87171;
}

.vs-card--good .vc__icon {
  background: rgba(0, 229, 160, 0.15);
  color: #00e5a0;
}

/* Item text */
.vc__text {
  font-size: 13.5px;
  line-height: 1.6;
  font-weight: 500;
}

.vs-card--bad .vc__text {
  color: rgba(255, 255, 255, 0.38);
}

.vs-card--good .vc__text {
  color: rgba(255, 255, 255, 0.75);
}

.vs-card--good .vc__text strong {
  color: #fff;
  font-weight: 700;
}

/* ── Center VS badge ── */
.versus__badge {
  width: 60px;
  height: 60px;
  flex-shrink: 0;
  background: linear-gradient(135deg, #1560bd 0%, #1877f2 50%, #0d3b7a 100%);
  border-radius: 50%;
  border: 3px solid #06080f;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 800;
  color: #fff;
  font-family: 'Bricolage Grotesque', sans-serif;
  letter-spacing: -0.01em;
  position: relative;
  z-index: 10;
  box-shadow:
    0 0 0 1px rgba(21, 96, 189, 0.5),
    0 0 24px rgba(21, 96, 189, 0.4),
    0 0 48px rgba(0, 229, 160, 0.12);
  animation: vsBadgePulse 3s ease-in-out infinite;
  opacity: 0;
  transition: opacity 0.5s ease 0.4s;
}

.versus__badge.vs-vis {
  opacity: 1;
}

@keyframes vsBadgePulse {
  0%,
  100% {
    box-shadow:
      0 0 0 1px rgba(21, 96, 189, 0.5),
      0 0 24px rgba(21, 96, 189, 0.4),
      0 0 48px rgba(0, 229, 160, 0.12);
  }

  50% {
    box-shadow:
      0 0 0 1px rgba(0, 229, 160, 0.5),
      0 0 36px rgba(21, 96, 189, 0.55),
      0 0 72px rgba(0, 229, 160, 0.2);
  }
}

/* Label under badge */
.versus__badge::after {
  content: 'Farkı Görün';
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  font-size: 9px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.3);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
  font-family: 'Bricolage Grotesque', sans-serif;
}

/* ── Bottom CTA strip ── */
.versus__cta {
  text-align: center;
  margin-top: 80px;
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.7s ease 0.2s,
    transform 0.7s ease 0.2s;
}

.versus__cta.vs-vis {
  opacity: 1;
  transform: translateY(0);
}

.versus__cta-text {
  font-size: clamp(22px, 2.8vw, 36px);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: 12px;
}

.versus__cta-text em {
  font-style: normal;
  background: linear-gradient(90deg, #3b9eff, #00e5a0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.versus__cta-sub {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 32px;
}

/* Stat chips row */
.versus__stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.vstat {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 100px;
  padding: 8px 18px;
  font-size: 13px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.7);
  animation: vs-fadeup 0.5s ease both;
}

.vstat:nth-child(1) {
  animation-delay: 0.8s;
}

.vstat:nth-child(2) {
  animation-delay: 1s;
}

.vstat:nth-child(3) {
  animation-delay: 1.2s;
}

@keyframes vs-fadeup {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.vstat-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
}

.vstat-dot--green {
  background: #00e5a0;
  box-shadow: 0 0 8px rgba(0, 229, 160, 0.5);
}

.vstat-dot--blue {
  background: #3b9eff;
  box-shadow: 0 0 8px rgba(59, 158, 255, 0.5);
}

.vstat-dot--gold {
  background: #fcd34d;
  box-shadow: 0 0 8px rgba(252, 211, 77, 0.5);
}

/* Reuse btn-electric from section 2 — no redeclaration needed */

/* ── Responsive ── */
@media (max-width: 900px) {
  .versus__split {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .vs-card--bad {
    transform: scale(1) translateX(0);
    order: 2;
    opacity: 0.65;
  }

  .vs-card--good {
    transform: scale(1) translateX(0);
    order: 1;
  }

  .versus__badge {
    display: none;
  }
}

@media (max-width: 560px) {
  .versus {
    padding: 80px 0 70px;
  }

  .vs-card {
    padding: 28px 22px 24px;
  }
}

/* ════════════════════════════════════════════
           SECTION 5 — ONBOARDING + FINAL CTA  (LIGHT)
        ════════════════════════════════════════════ */
.onboard {
  background: #f0f6ff;
  padding: 130px 0 0;
  position: relative;
  overflow: hidden;
}

/* Background washes */
.onboard::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 55% 45% at 0% 20%, rgba(21, 96, 189, 0.07) 0%, transparent 100%),
    radial-gradient(ellipse 45% 55% at 100% 80%, rgba(0, 229, 160, 0.06) 0%, transparent 100%),
    radial-gradient(ellipse 35% 50% at 55% 10%, rgba(59, 158, 255, 0.05) 0%, transparent 100%);
}

/* Top separator from dark section above */
.onboard::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(21, 96, 189, 0.2) 30%, rgba(0, 229, 160, 0.15) 65%, transparent);
}

.onboard .container {
  position: relative;
  z-index: 2;
}

/* ── Header ── */
.onboard__header {
  text-align: center;
  margin-bottom: 72px;
  opacity: 0;
  transform: translateY(32px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

.onboard__header.ob-vis {
  opacity: 1;
  transform: translateY(0);
}

.onboard__kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(21, 96, 189, 0.08);
  border: 1px solid rgba(21, 96, 189, 0.18);
  border-radius: 100px;
  padding: 5px 18px 5px 8px;
  font-size: 11px;
  font-weight: 700;
  color: #1560bd;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  margin-bottom: 22px;
}

.onboard__kicker-dot {
  width: 18px;
  height: 18px;
  background: #1560bd;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.onboard__kicker-dot::after {
  content: '';
  width: 5px;
  height: 5px;
  background: #fff;
  border-radius: 50%;
}

.onboard__title {
  font-size: clamp(30px, 3.8vw, 50px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: #0a1628;
  margin-bottom: 14px;
}

.onboard__title em {
  font-style: normal;
  color: #1560bd;
}

.onboard__subtitle {
  font-size: 16px;
  color: #6b82a8;
  line-height: 1.65;
  max-width: 480px;
  margin: 0 auto;
}

/* ── 3-card glassmorphism grid ── */
.ob-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 0;
}

.ob-card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(21, 96, 189, 0.12);
  border-radius: 24px;
  padding: 40px 32px 36px;
  position: relative;
  overflow: hidden;
  box-shadow:
    0 4px 24px rgba(21, 96, 189, 0.07),
    0 1px 0 rgba(255, 255, 255, 0.9) inset;
  transition:
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.35s ease,
    border-color 0.35s ease;
  opacity: 0;
  transform: translateY(44px);
}

.ob-card.ob-vis {
  opacity: 1;
  transform: translateY(0);
}

.ob-card:nth-child(1) {
  transition-delay: 0.05s;
}

.ob-card:nth-child(2) {
  transition-delay: 0.18s;
}

.ob-card:nth-child(3) {
  transition-delay: 0.31s;
}

.ob-card:hover {
  transform: translateY(-8px);
  border-color: rgba(21, 96, 189, 0.25);
  box-shadow:
    0 0 0 1px rgba(59, 158, 255, 0.15),
    0 20px 56px rgba(21, 96, 189, 0.14),
    0 4px 16px rgba(0, 229, 160, 0.08),
    0 1px 0 rgba(255, 255, 255, 0.9) inset;
}

/* Hover glow bar */
.ob-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  border-radius: 0 0 24px 24px;
  transform: scaleX(0);
  transition: transform 0.35s ease;
}

.ob-card:nth-child(1)::after {
  background: linear-gradient(90deg, #1560bd, #3b9eff);
}

.ob-card:nth-child(2)::after {
  background: linear-gradient(90deg, #3b9eff, #00c880);
}

.ob-card:nth-child(3)::after {
  background: linear-gradient(90deg, #00c880, #1560bd);
}

.ob-card:hover::after {
  transform: scaleX(1);
}

/* Glassy inner light reflection */
.ob-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.55) 0%, transparent 100%);
  border-radius: 24px 24px 0 0;
  pointer-events: none;
}

/* ── Big CSS step number ── */
.ob-num {
  font-size: 80px;
  font-weight: 800;
  line-height: 0.9;
  letter-spacing: -0.04em;
  margin-bottom: 24px;
  display: block;
  font-family: 'Bricolage Grotesque', sans-serif;
  /* Gradient fill */
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
  width: fit-content;
}

.ob-card:nth-child(1) .ob-num {
  background-image: linear-gradient(135deg, #1560bd 0%, #3b9eff 100%);
}

.ob-card:nth-child(2) .ob-num {
  background-image: linear-gradient(135deg, #3b9eff 0%, #00c880 100%);
}

.ob-card:nth-child(3) .ob-num {
  background-image: linear-gradient(135deg, #00c880 0%, #1560bd 100%);
}

/* Glow behind number */
.ob-num::after {
  content: attr(data-n);
  position: absolute;
  inset: 0;
  font-size: inherit;
  font-weight: inherit;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: blur(20px);
  opacity: 0.35;
  z-index: -1;
}

.ob-card:nth-child(1) .ob-num::after {
  background-image: linear-gradient(135deg, #1560bd, #3b9eff);
}

.ob-card:nth-child(2) .ob-num::after {
  background-image: linear-gradient(135deg, #3b9eff, #00c880);
}

.ob-card:nth-child(3) .ob-num::after {
  background-image: linear-gradient(135deg, #00c880, #1560bd);
}

.ob-card__tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 3px 12px;
  border-radius: 100px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 14px;
  border: 1px solid;
}

.ob-card:nth-child(1) .ob-card__tag {
  background: rgba(21, 96, 189, 0.08);
  color: #1560bd;
  border-color: rgba(21, 96, 189, 0.18);
}

.ob-card:nth-child(2) .ob-card__tag {
  background: rgba(59, 158, 255, 0.08);
  color: #1877f2;
  border-color: rgba(59, 158, 255, 0.18);
}

.ob-card:nth-child(3) .ob-card__tag {
  background: rgba(0, 200, 128, 0.1);
  color: #00a06a;
  border-color: rgba(0, 200, 128, 0.22);
}

.ob-card__h3 {
  font-size: 18px;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: #0a1628;
  margin-bottom: 10px;
  font-family: 'Bricolage Grotesque', sans-serif;
}

.ob-card__p {
  font-size: 14px;
  line-height: 1.72;
  color: #6b82a8;
  transition: color 0.3s ease;
}

.ob-card:hover .ob-card__p {
  color: #2d4470;
}

/* Step connector arrows between cards */
.ob-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

/* We put arrows in the grid as extra elements — hidden on mobile */
.ob-connector {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 60px;
  /* align with card midpoint */
}

.ob-connector__icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(21, 96, 189, 0.08);
  border: 1px solid rgba(21, 96, 189, 0.14);
  display: flex;
  align-items: center;
  justify-content: center;
}

.ob-connector__icon svg {
  display: block;
}

/* ════════════════════════════════════════════
               FINAL CTA STRIP  (still light bg, dramatic)
            ════════════════════════════════════════════ */
.final-cta {
  background: linear-gradient(160deg, #ebf3ff 0%, #f7faff 40%, #e4f2ff 100%);
  padding: 110px 0 120px;
  position: relative;
  overflow: hidden;
  margin-top: 100px;
}

/* Background decorative circles */
.final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 60% 55% at 50% -10%, rgba(21, 96, 189, 0.1) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 90% 90%, rgba(0, 200, 128, 0.08) 0%, transparent 70%);
}

/* Floating decorative rings */
.final-cta__ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(21, 96, 189, 0.08);
  pointer-events: none;
  animation: ringFloat 8s ease-in-out infinite;
}

.final-cta__ring:nth-child(1) {
  width: 480px;
  height: 480px;
  top: -160px;
  right: -120px;
  animation-delay: 0s;
}

.final-cta__ring:nth-child(2) {
  width: 320px;
  height: 320px;
  bottom: -100px;
  left: -60px;
  animation-delay: 3s;
}

.final-cta__ring:nth-child(3) {
  width: 180px;
  height: 180px;
  top: 50%;
  left: 8%;
  transform: translateY(-50%);
  border-color: rgba(0, 200, 128, 0.1);
  animation-delay: 5s;
}

@keyframes ringFloat {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }

  50% {
    transform: translateY(-12px) scale(1.02);
  }
}

.final-cta .container {
  position: relative;
  z-index: 2;
  text-align: center;
}

.final-cta__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(21, 96, 189, 0.08);
  border: 1px solid rgba(21, 96, 189, 0.16);
  border-radius: 100px;
  padding: 5px 18px 5px 8px;
  font-size: 11px;
  font-weight: 700;
  color: #1560bd;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  margin-bottom: 28px;
}

.final-cta__eyebrow-dot {
  width: 18px;
  height: 18px;
  background: #1560bd;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.final-cta__eyebrow-dot::after {
  content: '';
  width: 5px;
  height: 5px;
  background: #fff;
  border-radius: 50%;
}

.final-cta__title {
  font-size: clamp(28px, 4.2vw, 56px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: #0a1628;
  max-width: 780px;
  margin: 0 auto 20px;
}

.final-cta__title .hi-blue {
  color: #1560bd;
}

.final-cta__title .hi-green {
  color: #00a06a;
  position: relative;
}

/* Animated underline on green word */
.final-cta__title .hi-green::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #00a06a, #1560bd);
  border-radius: 3px;
  transform: scaleX(0);
  transform-origin: left;
  animation: ctaUnderline 0.8s ease 0.6s forwards;
}

@keyframes ctaUnderline {
  to {
    transform: scaleX(1);
  }
}

.final-cta__sub {
  font-size: 18px;
  color: #6b82a8;
  line-height: 1.65;
  max-width: 540px;
  margin: 0 auto 48px;
}

/* ── The star button ── */
.btn-finale {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, #1560bd 0%, #1877f2 45%, #0d6efd 100%);
  background-size: 200% 200%;
  color: #fff;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 18px;
  font-weight: 800;
  padding: 20px 44px;
  border-radius: 16px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  letter-spacing: -0.015em;
  position: relative;
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(21, 96, 189, 0.35),
    0 8px 32px rgba(21, 96, 189, 0.35),
    0 24px 60px rgba(21, 96, 189, 0.2);
  animation: finalBtnPulse 3s ease-in-out infinite;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background-position 0.4s ease;
}

.btn-finale:hover {
  transform: translateY(-4px) scale(1.02);
  background-position: 100% 0;
  box-shadow:
    0 0 0 1px rgba(0, 200, 128, 0.4),
    0 12px 48px rgba(21, 96, 189, 0.45),
    0 32px 80px rgba(0, 200, 128, 0.18);
  animation: none;
}

@keyframes finalBtnPulse {
  0%,
  100% {
    box-shadow:
      0 0 0 1px rgba(21, 96, 189, 0.35),
      0 8px 32px rgba(21, 96, 189, 0.35),
      0 24px 60px rgba(21, 96, 189, 0.2);
  }

  50% {
    box-shadow:
      0 0 0 3px rgba(21, 96, 189, 0.2),
      0 8px 40px rgba(21, 96, 189, 0.5),
      0 24px 80px rgba(21, 96, 189, 0.3);
  }
}

/* Shimmer sweep */
.btn-finale::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 35%, rgba(255, 255, 255, 0.22) 50%, transparent 65%);
  transform: translateX(-100%);
  animation: finalShimmer 3.5s ease-in-out 1s infinite;
}

@keyframes finalShimmer {
  0%,
  100% {
    transform: translateX(-100%);
  }

  35% {
    transform: translateX(200%);
  }
}

.btn-finale__rocket {
  font-size: 22px;
  line-height: 1;
  animation: rocketBob 2s ease-in-out infinite;
}

@keyframes rocketBob {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  25% {
    transform: translateY(-4px) rotate(-5deg);
  }

  75% {
    transform: translateY(2px) rotate(3deg);
  }
}

/* Urgency note */
.final-cta__urgency {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
  font-size: 13px;
  color: #6b82a8;
  font-weight: 500;
}

.final-cta__urgency-dot {
  width: 7px;
  height: 7px;
  background: #00c880;
  border-radius: 50%;
  animation: ob-blink 1.2s ease-in-out infinite;
}

@keyframes ob-blink {
  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.2;
  }
}

/* Trust strip */
.final-cta__trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid rgba(21, 96, 189, 0.1);
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.trust-item__val {
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.025em;
  font-family: 'Bricolage Grotesque', sans-serif;
}

.trust-item:nth-child(1) .trust-item__val {
  color: #1560bd;
}

.trust-item:nth-child(2) .trust-item__val {
  color: #00a06a;
}

.trust-item:nth-child(3) .trust-item__val {
  color: #1877f2;
}

.trust-item:nth-child(4) .trust-item__val {
  color: #0d6efd;
}

.trust-item__label {
  font-size: 11px;
  font-weight: 600;
  color: #6b82a8;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-align: center;
}

.trust-divider {
  width: 1px;
  height: 40px;
  background: rgba(21, 96, 189, 0.12);
}

/* scroll-trigger init states */
.final-cta__inner {
  opacity: 0;
  transform: translateY(36px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}

.final-cta__inner.ob-vis {
  opacity: 1;
  transform: translateY(0);
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .ob-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .ob-connector {
    display: none;
  }

  .final-cta__trust {
    gap: 20px;
  }

  .trust-divider {
    display: none;
  }
}

@media (max-width: 560px) {
  .onboard {
    padding: 80px 0 0;
  }

  .ob-card {
    padding: 28px 22px 24px;
  }

  .ob-num {
    font-size: 60px;
  }

  .final-cta {
    padding: 80px 0 90px;
    margin-top: 60px;
  }

  .btn-finale {
    font-size: 16px;
    padding: 17px 32px;
  }
}

/* FOMO banner */
.fomo-banner {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.07), rgba(245, 158, 11, 0.05));
  border: 1.5px solid rgba(239, 68, 68, 0.18);
  border-radius: var(--r-sm);
  padding: 11px 14px;
  animation: pulseBorder 2.5s ease-in-out infinite;
}
@keyframes pulseBorder {
  0%,
  100% {
    border-color: rgba(239, 68, 68, 0.18);
  }
  50% {
    border-color: rgba(239, 68, 68, 0.42);
  }
}
.fomo-dot {
  width: 9px;
  height: 9px;
  background: var(--red);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 3px;
  animation: blink-red 1.4s ease-in-out infinite;
}
@keyframes blink-red {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.3;
  }
}
.fomo-text {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--dark);
  line-height: 1.5;
  white-space:normal;
}
.fomo-text em {
  color: var(--red);
  font-style: normal;
  font-weight: 800;
}
