:root {
  --blue: #0052ff;
  --blue-lt: #3b7bff;
  --blue-bg: #e8effe;
  --green: #10b981;
  --green-bg: #d1fae5;
  --dark: #0d0f1c;
  --mid: #4b5068;
  --light: #9ba3bf;
  --bg: #f4f6fb;
  --white: #ffffff;
  --card-sh: 0 4px 24px rgba(0, 82, 255, 0.08), 0 1px 4px rgba(0, 0, 0, 0.04);
  --card-sh-hover: 0 12px 48px rgba(0, 82, 255, 0.18), 0 2px 8px rgba(0, 0, 0, 0.06);
  --blue-d: #0f57d4;
  --blue-glow: rgba(26, 108, 240, 0.28);
  --navy: #0c1a3a;
  --body: #3d4a66;
  --muted: #6b7a99;
  --gold: #f9a825;
  --cs: 0 20px 60px rgba(12, 26, 58, 0.11), 0 4px 14px rgba(12, 26, 58, 0.07);
  --blue-hover: #1463ff;
  --blue-tint: #eef2ff;
  --blue-border: rgba(0, 82, 255, 0.15);
  --ink: #0b0f1a;
  --ink-mid: #374060;
  --ink-mute: #8892aa;
  --card-border: #e4e8f2;
  --card-row: #f8f9fd;
  --blue-light: #3375ff;
  --blue-glow: rgba(0, 82, 255, 0.1);
  --green-light: rgba(16, 185, 129, 0.12);
  --red: #ef4444;
  --orange: #f59e0b;
  --dark-2: #3d4050;
  --border: rgba(0, 82, 255, 0.1);
  --shadow-soft: 0 4px 32px rgba(0, 0, 0, 0.06), 0 1px 4px rgba(0, 0, 0, 0.04);
  --shadow-blue: 0 8px 40px rgba(0, 82, 255, 0.18);
  --r-sm: 12px;
  --r-lg: 24px;
}

html {
  font-size: 16px;
}

body {
  background: var(--bg);
  color: var(--dark);
  min-height: 100vh;
  overflow-x: hidden;
}

/* ── 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 SECTION ─── */
.meta-ads-hero {
  position: relative;
  font-family: 'Bricolage Grotesque', sans-serif;
  min-height: 90vh;
  display: flex;
  align-items: center;
  padding: 9px 5vw 60px;
  overflow: hidden;
}

/* soft radial glow behind content */
.meta-ads-hero::before {
  content: '';
  position: absolute;
  top: -10%;
  left: -5%;
  width: 60%;
  height: 80%;
  background: radial-gradient(ellipse at 30% 40%, rgba(0, 82, 255, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.meta-ads-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: -5%;
  width: 55%;
  height: 60%;
  background: radial-gradient(ellipse at 70% 60%, rgba(16, 185, 129, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

/* subtle dot-grid texture */
.hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(0, 82, 255, 0.07) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
}

/* ───────────────────────
   LEFT – Copy
─────────────────────── */
.hero-copy {
  display: flex;
  flex-direction: column;
  gap: 15px;
  animation: fadeUp 0.7s ease both;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }

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

/* pill badge */
.pill-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1.5px solid rgba(0, 82, 255, 0.18);
  border-radius: 100px;
  padding: 6px 14px 6px 8px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue);
  width: fit-content;
  box-shadow: 0 2px 10px rgba(0, 82, 255, 0.1);
  animation: fadeUp 0.7s 0.05s ease both;
}

.pill-badge .meta-icon {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  background: linear-gradient(135deg, #0081fb 0%, #0064e0 50%, #0052ff 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.pill-badge .meta-icon svg {
  width: 13px;
  height: 13px;
}

.pill-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 3px var(--green-bg);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%,
  100% {
    box-shadow: 0 0 0 3px var(--green-bg);
  }

  50% {
    box-shadow: 0 0 0 6px rgba(16, 185, 129, 0.15);
  }
}

/* H1 */
.hero-h1 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(2.4rem, 4.2vw, 3.6rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--dark);
  animation: fadeUp 0.7s 0.1s ease both;
}

.hero-h1 .accent {
  color: var(--blue);
  position: relative;
  display: inline-block;
}

.hero-h1 .accent::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0;
  width: 100%;
  height: 4px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--blue) 0%, var(--blue-lt) 100%);
  opacity: 0.3;
}

.hero-h1 .accent2 {
  color: var(--green);
}

/* sub-copy */
.hero-sub {
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--dark-2);
  max-width: 480px;
  animation: fadeUp 0.7s 0.18s ease both;
}

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

/* CTAs */
.hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  animation: fadeUp 0.7s 0.26s ease both;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 24px;
  border-radius: 12px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
  white-space: nowrap;
}

/* trust bar */
.trust-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  animation: fadeUp 0.7s 0.34s ease both;
}

.avatars {
  display: flex;
  align-items: center;
}

.avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2.5px solid var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.68rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
  margin-left: -8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}

.avatar:first-child {
  margin-left: 0;
}

.av1 {
  background: linear-gradient(135deg, #ff6b6b, #ff3860);
}

.av2 {
  background: linear-gradient(135deg, #fdcb6e, #f39c12);
}

.av3 {
  background: linear-gradient(135deg, #6c5ce7, #a29bfe);
}

.trust-text {
  font-size: 0.8rem;
  color: var(--mid);
  line-height: 1.4;
}

.trust-text strong {
  color: var(--dark);
  font-weight: 600;
}

/* divider dot */
.trust-divider {
  width: 1px;
  height: 28px;
  background: rgba(0, 0, 0, 0.08);
}

.trust-stars {
  display: flex;
  gap: 2px;
}

.star {
  color: #fbbf24;
  font-size: 0.85rem;
}

/* ───────────────────────
   RIGHT – CSS Dashboard
─────────────────────── */
.hero-dashboard {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeUp 0.7s 0.15s ease both;
}

/* main card */
.dash-card {
  background: var(--white);
  border-radius: 22px;
  box-shadow: var(--card-sh);
  padding: 22px 24px;
  width: 100%;
  max-width: 420px;
  border: 1px solid rgba(0, 82, 255, 0.07);
  transition: box-shadow 0.3s ease;
}

.dash-card:hover {
  box-shadow: var(--card-sh-hover);
}

.dash-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.dash-title {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--light);
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: var(--green-bg);
  color: #047857;
  border-radius: 100px;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 10px;
}

.status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  animation: pulse 2s infinite;
}

/* KPI row */
.kpi-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 20px;
}

.kpi-box {
  background: var(--bg);
  border-radius: 14px;
  padding: 12px 10px;
  text-align: center;
  border: 1px solid rgba(0, 82, 255, 0.06);
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}

.kpi-box:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 82, 255, 0.1);
}

.kpi-val {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.kpi-val.blue {
  color: var(--blue);
}

.kpi-val.green {
  color: var(--green);
}

.kpi-val.dark {
  color: var(--dark);
}

.kpi-label {
  font-size: 0.65rem;
  color: var(--light);
  font-weight: 500;
  margin-top: 3px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.kpi-change {
  font-size: 0.65rem;
  font-weight: 700;
  margin-top: 4px;
}

.kpi-change.up {
  color: var(--green);
}

.kpi-change.down {
  color: #ef4444;
}

/* CHART */
.chart-area {
  position: relative;
  height: 110px;
  margin-bottom: 16px;
  border-radius: 12px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(0, 82, 255, 0.03) 0%, rgba(0, 82, 255, 0) 100%);
}

/* SVG line chart */
.chart-svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

.chart-line {
  fill: none;
  stroke: var(--blue);
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 600;
  stroke-dashoffset: 600;
  animation: drawLine 1.8s 0.4s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.chart-fill {
  fill: url(#blueGrad);
  opacity: 0;
  animation: fadeFill 0.6s 2.2s ease forwards;
}

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

.chart-dot {
  fill: var(--blue);
  stroke: #fff;
  stroke-width: 2;
  r: 4;
  opacity: 0;
  animation: popDot 0.3s ease forwards;
}

.chart-dot:nth-child(1) {
  animation-delay: 2.1s;
}

.chart-dot:nth-child(2) {
  animation-delay: 2.2s;
}

.chart-dot:nth-child(3) {
  animation-delay: 2.3s;
}

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

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

/* x-axis labels */
.chart-labels {
  display: flex;
  justify-content: space-between;
  padding: 0 4px;
  margin-bottom: 14px;
}

.chart-label {
  font-size: 0.62rem;
  color: var(--light);
  font-weight: 500;
}

/* campaign row */
.camp-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.camp-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.camp-thumb {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  flex-shrink: 0;
}

.ct-blue {
  background: var(--blue-bg);
}

.ct-green {
  background: var(--green-bg);
}

.ct-warn {
  background: #fef3c7;
}

.camp-info {
  flex: 1;
  min-width: 0;
}

.camp-name {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--dark);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.camp-meta {
  font-size: 0.68rem;
  color: var(--light);
}

.camp-bar-wrap {
  flex: 1;
}

.camp-bar-bg {
  height: 5px;
  background: var(--bg);
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 3px;
}

.camp-bar-fill {
  height: 100%;
  border-radius: 3px;
  transform-origin: left;
  transform: scaleX(0);
  animation: growBar 0.9s ease forwards;
}

.camp-bar-fill.b1 {
  background: var(--blue);
  animation-delay: 0.5s;
  width: 82%;
}

.camp-bar-fill.b2 {
  background: var(--green);
  animation-delay: 0.7s;
  width: 67%;
}

.camp-bar-fill.b3 {
  background: #f59e0b;
  animation-delay: 0.9s;
  width: 45%;
}

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

.camp-roas {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--green);
  white-space: nowrap;
}

/* ─── Floating badges ─── */
.float-badge {
  position: absolute;
  background: var(--white);
  border-radius: 14px;
  padding: 8px 12px;
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.72rem;
  font-weight: 700;
  box-shadow: 0 6px 28px rgba(0, 0, 0, 0.1);
  white-space: nowrap;
  border: 1px solid rgba(0, 0, 0, 0.06);
  animation: floatAnim 4s ease-in-out infinite;
}

.float-badge .badge-icon {
  font-size: 1rem;
}

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

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

.fb-roas {
  top: -18px;
  right: 10px;
  color: var(--blue);
  animation-delay: 0s;
}

.fb-roas .badge-icon-wrap {
  width: 26px;
  height: 26px;
  background: var(--blue-bg);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
}

.fb-order {
  bottom: 60px;
  left: -24px;
  color: #047857;
  background: #f0fdf4;
  border-color: rgba(16, 185, 129, 0.15);
  animation-delay: 1.2s;
}

.fb-cost {
  bottom: -16px;
  right: 20px;
  color: #b45309;
  background: #fffbeb;
  border-color: rgba(245, 158, 11, 0.15);
  animation-delay: 2.1s;
}

/* notification pop */
.notif-pop {
  position: absolute;
  top: 50%;
  left: -30px;
  transform: translateY(-50%);
  background: var(--white);
  border-radius: 16px;
  padding: 10px 14px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  border-left: 3px solid var(--green);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.75rem;
  animation:
    slideInLeft 0.5s 2.5s ease both,
    floatAnim 5s 3s ease-in-out infinite;
  opacity: 0;
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translate(-20px, -50%);
  }

  to {
    opacity: 1;
    transform: translate(0, -50%);
  }
}

.notif-ico {
  width: 30px;
  height: 30px;
  background: var(--green-bg);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.notif-title {
  font-weight: 700;
  color: var(--dark);
  line-height: 1.2;
}

.notif-sub {
  color: var(--light);
  margin-top: 1px;
}

/* ─── responsive ─── */
@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .meta-ads-hero {
    padding: 60px 5vw 80px;
  }

  .notif-pop {
    display: none;
  }

  .fb-order {
    left: -8px;
  }
}

section.google-competitor-vs {
  font-family: 'Bricolage Grotesque', sans-serif;
  background: #ffffff;
  padding: clamp(72px, 9vw, 110px) clamp(20px, 5vw, 72px);
  position: relative;
  overflow: hidden;
}

section.google-competitor-vs::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 82, 255, 0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 82, 255, 0.028) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
  z-index: 0;
}

section.google-competitor-vs::after {
  content: '';
  position: absolute;
  top: -180px;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 380px;
  background: radial-gradient(ellipse, rgba(0, 82, 255, 0.055) 0%, transparent 68%);
  pointer-events: none;
  z-index: 0;
}

.cv-inner {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(44px, 6vw, 68px);
}

.cv-header {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  max-width: 660px;
}

.cv-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(0, 82, 255, 0.07);
  border: 1px solid rgba(0, 82, 255, 0.18);
  border-radius: 100px;
  padding: 5px 15px;
}

.cv-pill-icon {
  font-size: 12px;
}

.cv-pill span {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: #0052ff;
}

.cv-h2 {
  font-size: clamp(1.8rem, 3.4vw, 2.85rem);
  font-weight: 800;
  line-height: 1.13;
  letter-spacing: -0.03em;
  color: #0a0b10;
}

.cv-h2 em {
  color: #0052ff;
  font-style: normal;
}

.cv-sub {
  font-size: clamp(0.9rem, 1.1vw, 0.98rem);
  font-weight: 400;
  line-height: 1.7;
  color: #8891a4;
}

.cv-board {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0;
  align-items: stretch;
}

.cv-vs {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 clamp(14px, 2vw, 28px);
  gap: 10px;
  flex-shrink: 0;
}

.cv-vs-line {
  width: 1px;
  flex: 1;
  background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.1), transparent);
}

.cv-vs-badge {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #0a0b10;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.04em;
  font-family: 'Bricolage Grotesque', sans-serif;
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.18);
}

.cv-left {
  background: #f8f9fa;
  border: 1px solid #e8eaef;
  border-radius: 20px;
  padding: clamp(24px, 3vw, 36px);
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  overflow: hidden;
}

.cv-left::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #e8eaef, #cbd0da, #e8eaef);
}

.cv-left-head {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.cv-left-eyebrow {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #adb5c4;
}

.cv-left-title {
  font-size: clamp(1.05rem, 1.7vw, 1.3rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  color: #6b7385;
  line-height: 1.2;
}

.cv-list {
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.cv-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 11px 13px;
  border-radius: 11px;
  background: rgba(0, 0, 0, 0.025);
  border: 1px solid transparent;
  transition:
    background 0.2s,
    border-color 0.2s;
}

.cv-item:hover {
  background: rgba(0, 0, 0, 0.04);
  border-color: rgba(0, 0, 0, 0.06);
}

.cv-item-ic {
  font-size: 14px;
  flex-shrink: 0;
  margin-top: 1px;
}

.cv-item-text {
  font-size: clamp(0.82rem, 0.95vw, 0.88rem);
  font-weight: 500;
  line-height: 1.5;
  color: #8891a4;
  font-family: 'Bricolage Grotesque', sans-serif;
}

.cv-left-chart {
  margin-top: auto;
  background: rgba(239, 68, 68, 0.04);
  border: 1px solid rgba(239, 68, 68, 0.1);
  border-radius: 14px;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.cv-chart-bars-down {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  height: 36px;
  flex-shrink: 0;
}

.cbd {
  border-radius: 3px 3px 0 0;
  background: rgba(239, 68, 68, 0.25);
  width: 9px;
}

.cbd:nth-child(1) {
  height: 100%;
}

.cbd:nth-child(2) {
  height: 76%;
}

.cbd:nth-child(3) {
  height: 55%;
}

.cbd:nth-child(4) {
  height: 38%;
}

.cbd:nth-child(5) {
  height: 22%;
}

.cv-chart-label-down {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  color: #ef4444;
  font-family: 'Bricolage Grotesque', sans-serif;
}

.arrow-down {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(239, 68, 68, 0.12);
  font-size: 13px;
  line-height: 1;
  animation: arrowDrop 2s ease-in-out infinite;
}

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

  50% {
    transform: translateY(3px);
  }
}

.cv-right {
  background: #ffffff;
  border: 1.5px solid rgba(0, 82, 255, 0.2);
  border-radius: 20px;
  padding: clamp(24px, 3vw, 36px);
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(0, 82, 255, 0.06),
    0 12px 40px rgba(0, 82, 255, 0.1),
    0 2px 8px rgba(0, 0, 0, 0.04);
}

.cv-right::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #0052ff, #3375ff, #0052ff);
  background-size: 200% 100%;
  animation: shimmerBar 3s linear infinite;
}

@keyframes shimmerBar {
  0% {
    background-position: 200% 0;
  }

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

.cv-right::after {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(0, 82, 255, 0.06) 0%, transparent 65%);
  pointer-events: none;
}

.cv-right-head {
  display: flex;
  flex-direction: column;
  gap: 6px;
  position: relative;
  z-index: 1;
}

.cv-right-eyebrow {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #0052ff;
}

.cv-right-title {
  font-size: clamp(1.05rem, 1.7vw, 1.3rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  color: #0a0b10;
  line-height: 1.2;
}

.cv-right .cv-list {
  position: relative;
  z-index: 1;
}

.cv-right .cv-item {
  background: rgba(0, 82, 255, 0.04);
  border-color: rgba(0, 82, 255, 0.08);
}

.cv-right .cv-item:hover {
  background: rgba(0, 82, 255, 0.08);
  border-color: rgba(0, 82, 255, 0.15);
}

.cv-right .cv-item-text {
  color: #3d4050;
}

.cv-right-chart {
  margin-top: auto;
  position: relative;
  z-index: 1;
  background: rgba(16, 185, 129, 0.05);
  border: 1px solid rgba(16, 185, 129, 0.15);
  border-radius: 14px;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.cv-chart-bars-up {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  height: 36px;
  flex-shrink: 0;
}

.cbu {
  border-radius: 3px 3px 0 0;
  width: 9px;
  background: linear-gradient(to top, rgba(0, 82, 255, 0.5), rgba(16, 185, 129, 0.8));
}

.cbu:nth-child(1) {
  height: 22%;
}

.cbu:nth-child(2) {
  height: 40%;
}

.cbu:nth-child(3) {
  height: 58%;
}

.cbu:nth-child(4) {
  height: 80%;
}

.cbu:nth-child(5) {
  height: 100%;
  animation: lastBarPulse 2s ease-in-out infinite;
}

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

  50% {
    opacity: 0.65;
  }
}

.cv-chart-label-up {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.cv-chart-big {
  font-size: 16px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #10b981;
  font-family: 'Bricolage Grotesque', sans-serif;
  display: flex;
  align-items: center;
  gap: 5px;
  filter: drop-shadow(0 0 8px rgba(16, 185, 129, 0.4));
}

.arrow-up {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(16, 185, 129, 0.15);
  font-size: 13px;
  animation: arrowRise 2s ease-in-out infinite;
}

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

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

.cv-chart-small {
  font-size: 10.5px;
  font-weight: 500;
  color: #8891a4;
  font-family: 'Bricolage Grotesque', sans-serif;
}

.cv-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}

.cv-bottom-text {
  font-size: clamp(0.88rem, 1.1vw, 0.96rem);
  font-weight: 500;
  line-height: 1.65;
  color: #8891a4;
  max-width: 520px;
}

.cv-bottom-text strong {
  color: #0a0b10;
  font-weight: 700;
}

.cv-cta {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: #0a0b10;
  color: #fff;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 14.5px;
  font-weight: 700;
  letter-spacing: -0.01em;
  padding: 14px 28px;
  border-radius: 12px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  box-shadow: 0 6px 28px rgba(0, 0, 0, 0.22);
  transition:
    background 0.22s,
    transform 0.22s,
    box-shadow 0.22s;
  position: relative;
  overflow: hidden;
}

.cv-cta::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.08), transparent);
  transform: translateX(-100%);
  transition: transform 0.5s;
}

.cv-cta:hover::after {
  transform: translateX(100%);
}

.cv-cta:hover {
  background: #0052ff;
  transform: translateY(-2px);
  box-shadow: 0 10px 40px rgba(0, 82, 255, 0.3);
}

.cv-cta-note {
  font-size: 11px;
  font-weight: 500;
  color: #c2c8d4;
  font-family: 'Bricolage Grotesque', sans-serif;
  letter-spacing: 0.01em;
}

@media (max-width: 780px) {
  .cv-board {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    gap: 0;
  }

  .cv-vs {
    flex-direction: row;
    padding: clamp(12px, 3vw, 20px) 0;
    justify-content: center;
  }

  .cv-vs-line {
    width: auto;
    height: 1px;
    flex: 1;
    background: linear-gradient(to right, transparent, rgba(0, 0, 0, 0.1), transparent);
  }
}

@media (max-width: 480px) {
  .cv-left,
  .cv-right {
    padding: 20px;
  }
}

/* ── SECTION 2 STYLES ── */
.meta-real-proofs {
  position: relative;
  background: #0a0b10;
  padding: 100px 5vw 80px;
  overflow: hidden;
}

/* ambient glow orbs */
.proofs-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
  opacity: 0.45;
}

.proofs-orb-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0, 82, 255, 0.22) 0%, transparent 70%);
  top: -120px;
  left: -80px;
}

.proofs-orb-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.15) 0%, transparent 70%);
  bottom: -80px;
  right: -60px;
}

/* subtle grid texture over dark bg */
.proofs-grid-tex {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse 90% 90% at 50% 50%, black 20%, transparent 100%);
}

/* ── Section Head ── */
.proofs-head {
  text-align: center;
  margin-bottom: 64px;
  position: relative;
  z-index: 1;
}

.proofs-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(16, 185, 129, 0.12);
  border: 1px solid rgba(16, 185, 129, 0.3);
  border-radius: 100px;
  padding: 5px 14px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #10b981;
  margin-bottom: 20px;
}

.proofs-tag-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 8px #10b981;
  animation: glowPulse 2s infinite;
}

@keyframes glowPulse {
  0%,
  100% {
    box-shadow: 0 0 6px #10b981;
  }

  50% {
    box-shadow:
      0 0 16px #10b981,
      0 0 30px rgba(16, 185, 129, 0.4);
  }
}

.proofs-h2 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(2rem, 3.8vw, 3.2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: #ffffff;
  margin-bottom: 16px;
}

.proofs-h2 .ph2-accent {
  background: linear-gradient(90deg, #3b7bff 0%, #10b981 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.proofs-sub {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.45);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.65;
}

/* ── Cards Grid ── */
.proofs-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto 64px;
}

@media (max-width: 1024px) {
  .proofs-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .proof-card.card-featured {
    grid-column: span 2;
  }
}

@media (max-width: 640px) {
  .proofs-grid {
    grid-template-columns: 1fr;
  }

  .proof-card.card-featured {
    grid-column: span 1;
  }
}

/* ── Single Card ── */
.proof-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition:
    border-color 0.3s ease,
    box-shadow 0.3s ease,
    transform 0.3s ease;
  position: relative;
}

.proof-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 20px;
  opacity: 0;
  transition: opacity 0.3s ease;
  box-shadow:
    0 0 0 1px rgba(0, 82, 255, 0.5),
    0 0 40px rgba(0, 82, 255, 0.15);
  pointer-events: none;
}

.proof-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 82, 255, 0.35);
  box-shadow:
    0 0 50px rgba(0, 82, 255, 0.15),
    0 20px 60px rgba(0, 0, 0, 0.4);
}

.proof-card:hover::before {
  opacity: 1;
}

/* image area */
.proof-img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 13/9;
  background: rgba(255, 255, 255, 0.04);
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.proof-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  transition: transform 0.4s ease;
}

.proof-card:hover .proof-img-wrap img {
  transform: scale(1.03);
}

/* screenshot chrome frame (like a browser bar) */
.proof-img-chrome {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 28px;
  background: rgba(20, 22, 35, 0.92);
  display: flex;
  align-items: center;
  padding: 0 10px;
  gap: 6px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  z-index: 2;
}

.chrome-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.cd-red {
  background: #ff5f57;
}

.cd-yellow {
  background: #febc2e;
}

.cd-green {
  background: #28c840;
}

.chrome-url {
  flex: 1;
  height: 14px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 4px;
  margin-left: 6px;
  display: flex;
  align-items: center;
  padding: 0 8px;
  font-size: 0.52rem;
  color: rgba(255, 255, 255, 0.3);
  letter-spacing: 0.03em;
}

/* image placeholder (when no real img provided) */
.proof-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, rgba(0, 82, 255, 0.08) 0%, rgba(16, 185, 129, 0.05) 100%);
}

.pip-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(0, 82, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}

.pip-label {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.3);
  text-align: center;
  line-height: 1.4;
}

.pip-badge {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 4px 10px;
  font-size: 0.62rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.05em;
}

/* card body */
.proof-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.proof-sector-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 100px;
  padding: 3px 10px;
  font-size: 0.65rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.55);
  width: fit-content;
  letter-spacing: 0.04em;
}

.proof-title {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.35;
}

/* stat boxes row */
.proof-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 4px;
}

.pstat {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  padding: 10px 8px;
  text-align: center;
  transition:
    background 0.2s,
    border-color 0.2s;
}

.proof-card:hover .pstat {
  background: rgba(255, 255, 255, 0.06);
}

.pstat-val {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1;
  color: #fff;
}

.pstat-val.pv-blue {
  color: #5b93ff;
}

.pstat-val.pv-green {
  color: #10b981;
  text-shadow: 0 0 18px rgba(16, 185, 129, 0.5);
}

.pstat-val.pv-white {
  color: rgba(255, 255, 255, 0.9);
}

.pstat-label {
  font-size: 0.6rem;
  color: rgba(255, 255, 255, 0.35);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 4px;
}

/* card footer (optional period tag) */
.proof-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.proof-period {
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  gap: 5px;
}

.proof-period svg {
  opacity: 0.4;
}

.proof-verify {
  font-size: 0.62rem;
  font-weight: 700;
  color: #10b981;
  display: flex;
  align-items: center;
  gap: 4px;
  letter-spacing: 0.04em;
}

/* ── FEATURED card (wider, special accent) ── */
.card-featured {
  border-color: rgba(0, 82, 255, 0.2);
  background: rgba(0, 82, 255, 0.05);
}

.card-featured .proof-title {
  font-size: 1.1rem;
}

.card-featured .pstat-val.pv-green {
  font-size: 1.2rem;
  text-shadow: 0 0 24px rgba(16, 185, 129, 0.7);
}

/* ── Bottom CTA ── */
.proofs-cta-row {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}

.proofs-cta-line {
  display: flex;
  align-items: center;
  gap: 14px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.05rem;
  font-weight: 500;
}

.cta-arrow-trail {
  display: flex;
  gap: 4px;
  animation: arrowPulse 1.4s ease infinite;
}

.cta-arrow-trail span {
  color: #0052ff;
  font-size: 1.1rem;
  opacity: 0;
  animation: arrowFade 1.4s ease infinite;
}

.cta-arrow-trail span:nth-child(1) {
  animation-delay: 0s;
}

.cta-arrow-trail span:nth-child(2) {
  animation-delay: 0.18s;
}

.cta-arrow-trail span:nth-child(3) {
  animation-delay: 0.36s;
}

@keyframes arrowFade {
  0%,
  100% {
    opacity: 0.15;
  }

  50% {
    opacity: 1;
  }
}

.proofs-cta-hl {
  color: #fff;
  font-weight: 700;
}

.btn-proofs-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #0052ff 0%, #3b7bff 100%);
  color: #fff;
  border: none;
  border-radius: 14px;
  padding: 16px 30px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  box-shadow:
    0 4px 30px rgba(0, 82, 255, 0.45),
    0 0 0 0 rgba(0, 82, 255, 0.3);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
  animation: ctaGlow 3s ease infinite;
}

@keyframes ctaGlow {
  0%,
  100% {
    box-shadow: 0 4px 30px rgba(0, 82, 255, 0.45);
  }

  50% {
    box-shadow:
      0 4px 50px rgba(0, 82, 255, 0.7),
      0 0 80px rgba(0, 82, 255, 0.2);
  }
}

.btn-proofs-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 50px rgba(0, 82, 255, 0.7);
  animation: none;
}

.btn-proofs-cta .btn-sparks {
  display: flex;
  gap: 2px;
  font-size: 0.85rem;
}

/* separator line */
.section-sep {
  width: 100%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(0, 82, 255, 0.25) 30%,
    rgba(16, 185, 129, 0.2) 70%,
    transparent 100%
  );
  margin-bottom: 64px;
}

/* ── SECTION 3 BASE ── */
.meta-comparison-table {
  position: relative;
  background: #f8f9fa;
  padding: 110px 5vw 90px;
  overflow: hidden;
}

/* very faint radial warmth top-right */
.comp-bg-glow {
  position: absolute;
  top: -60px;
  right: -80px;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 82, 255, 0.055) 0%, transparent 70%);
  pointer-events: none;
}

.comp-bg-glow-2 {
  position: absolute;
  bottom: -40px;
  left: -60px;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.045) 0%, transparent 70%);
  pointer-events: none;
}

/* ── Head ── */
.comp-head {
  text-align: center;
  margin-bottom: 70px;
  position: relative;
  z-index: 1;
}

.comp-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: #eef3ff;
  border: 1.5px solid rgba(0, 82, 255, 0.18);
  border-radius: 100px;
  padding: 5px 16px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #0052ff;
  margin-bottom: 20px;
}

.comp-pill-ico {
  width: 16px;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.comp-h2 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(2rem, 3.6vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: #0d0f1c;
  margin-bottom: 14px;
}

.comp-h2 em {
  font-style: normal;
  color: #0052ff;
}

.comp-desc {
  font-size: 0.97rem;
  color: #6b7280;
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.65;
}

/* ── Split Layout ── */
.comp-split {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: start;
  gap: 0;
  max-width: 1100px;
  margin: 0 auto 72px;
}

@media (max-width: 820px) {
  .comp-split {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .comp-vs-col {
    display: none;
  }
}

/* ── VS badge column ── */
.comp-vs-col {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 90px;
  z-index: 2;
  width: 68px;
}

.vs-badge {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0052ff 0%, #3b7bff 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 0.9rem;
  font-weight: 800;
  color: #fff;
  box-shadow:
    0 0 0 6px #f8f9fa,
    0 0 0 7px rgba(0, 82, 255, 0.2),
    0 8px 28px rgba(0, 82, 255, 0.35);
  flex-shrink: 0;
  position: relative;
}

/* animated ring */
.vs-badge::after {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 1.5px dashed rgba(0, 82, 255, 0.3);
  animation: spinRing 12s linear infinite;
}

@keyframes spinRing {
  to {
    transform: rotate(360deg);
  }
}

/* ── CARD base ── */
.comp-card {
  border-radius: 24px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* ── LEFT card (pain / sıradan ajans) ── */
.comp-card-bad {
  background: #ffffff;
  border: 1.5px solid #e5e7eb;
  box-shadow: none;
  opacity: 0.82;
  transition: opacity 0.3s;
}

.comp-card-bad:hover {
  opacity: 1;
}

.comp-card-bad .ccard-head {
  background: #f9fafb;
  border-bottom: 1.5px solid #e5e7eb;
  padding: 22px 26px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.ccard-head-ico-bad {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: #fee2e2;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.ccard-head-title-bad {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: #6b7280;
}

.ccard-head-sub {
  font-size: 0.72rem;
  color: #9ca3af;
  margin-top: 2px;
}

/* ── RIGHT card (Blue Medya / çözüm) ── */
.comp-card-good {
  background: #ffffff;
  border: 1.5px solid rgba(0, 82, 255, 0.12);
  box-shadow:
    0 2px 4px rgba(0, 0, 0, 0.03),
    0 8px 24px rgba(0, 82, 255, 0.08),
    0 32px 80px rgba(0, 82, 255, 0.1);
  transition:
    box-shadow 0.3s,
    transform 0.3s;
}

.comp-card-good:hover {
  transform: translateY(-4px);
  box-shadow:
    0 4px 8px rgba(0, 0, 0, 0.04),
    0 16px 40px rgba(0, 82, 255, 0.14),
    0 48px 100px rgba(0, 82, 255, 0.15);
}

.comp-card-good .ccard-head {
  background: linear-gradient(135deg, #0052ff 0%, #3b7bff 100%);
  padding: 22px 26px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.ccard-head-ico-good {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.ccard-head-title-good {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
}

.ccard-head-sub-good {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.65);
  margin-top: 2px;
}

/* ── card body shared ── */
.ccard-body {
  padding: 24px 26px;
  flex: 1;
}

/* list rows */
.clist {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.clist-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.clist-ico {
  width: 22px;
  height: 22px;
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  flex-shrink: 0;
  margin-top: 1px;
}

.clist-ico-bad {
  background: #fee2e2;
}

.clist-ico-good {
  background: #d1fae5;
}

.clist-text {
  font-size: 0.9rem;
  line-height: 1.5;
}

.clist-text-bad {
  color: #6b7280;
}

.clist-text-good {
  color: #1a1b25;
  font-weight: 500;
}

.clist-text-good strong {
  color: #0052ff;
  font-weight: 700;
}

/* ── mini chart area ── */
.ccard-chart {
  margin: 8px 26px 22px;
  background: #f9fafb;
  border-radius: 14px;
  padding: 14px 16px 10px;
  border: 1px solid #e5e7eb;
  position: relative;
  overflow: hidden;
}

.ccard-chart-good {
  background: linear-gradient(135deg, #eef3ff 0%, #e8fff6 100%);
  border-color: rgba(0, 82, 255, 0.1);
}

.chart-mini-label {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #9ca3af;
  margin-bottom: 8px;
}

.chart-mini-label-good {
  color: #0052ff;
}

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

/* bad line — falling red */
.cline-bad {
  fill: none;
  stroke: #ef4444;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 400;
  stroke-dashoffset: 400;
  animation: drawMiniLine 1.4s 0.3s ease forwards;
  opacity: 0.5;
}

.cfill-bad {
  fill: url(#redGrad);
  opacity: 0;
  animation: fadeMini 0.5s 1.7s ease forwards;
}

/* good line — rising green/blue */
.cline-good {
  fill: none;
  stroke: url(#goodLineGrad);
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 400;
  stroke-dashoffset: 400;
  animation: drawMiniLine 1.4s 0.5s ease forwards;
}

.cfill-good {
  fill: url(#greenGrad);
  opacity: 0;
  animation: fadeMini 0.5s 1.9s ease forwards;
}

@keyframes drawMiniLine {
  to {
    stroke-dashoffset: 0;
  }
}

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

/* growth badge on good chart */
.chart-growth-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: linear-gradient(135deg, #0052ff 0%, #10b981 100%);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 100px;
  letter-spacing: 0.04em;
  box-shadow: 0 2px 12px rgba(0, 82, 255, 0.35);
  animation: badgePop 0.4s 2s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

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

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

/* ── Bottom CTA ── */
.comp-cta-row {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  text-align: center;
}

.comp-cta-question {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(1.2rem, 2.2vw, 1.6rem);
  font-weight: 700;
  color: #0d0f1c;
  letter-spacing: -0.02em;
}

.comp-cta-question span {
  color: #0052ff;
}

.btn-comp-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #0052ff 0%, #3b7bff 100%);
  color: #fff;
  border: none;
  border-radius: 14px;
  padding: 18px 34px;
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 4px 28px rgba(0, 82, 255, 0.38);
  transition:
    transform 0.2s,
    box-shadow 0.2s;
  letter-spacing: -0.01em;
}

.btn-comp-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 48px rgba(0, 82, 255, 0.55);
}

.btn-comp-cta .bcta-arrow {
  width: 28px;
  height: 28px;
  background: rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s;
}

.btn-comp-cta:hover .bcta-arrow {
  transform: translateX(3px);
}

.comp-cta-note {
  font-size: 0.78rem;
  color: #9ca3af;
  display: flex;
  align-items: center;
  gap: 5px;
}

.comp-cta-note::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 8px #10b981;
  display: inline-block;
}

.meta-autopilot-process {
  position: relative;
  background: #0a0b10;
  padding: 80px 5vw 88px;
  overflow: hidden;
}

.ap-glow-l {
  position: absolute;
  pointer-events: none;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  top: -120px;
  left: -80px;
  background: radial-gradient(circle, rgba(0, 82, 255, 0.13) 0%, transparent 70%);
  filter: blur(80px);
}

.ap-glow-r {
  position: absolute;
  pointer-events: none;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  bottom: -80px;
  right: -60px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.11) 0%, transparent 70%);
  filter: blur(80px);
}

.ap-dots-tex {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 30px 30px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 20%, transparent 100%);
}

/* ── HEAD ── */
.ap-head {
  text-align: center;
  margin-bottom: 56px;
  position: relative;
  z-index: 1;
}

.ap-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(16, 185, 129, 0.11);
  border: 1px solid rgba(16, 185, 129, 0.25);
  border-radius: 100px;
  padding: 4px 14px;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #10b981;
  margin-bottom: 18px;
}

.ap-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 8px #10b981;
  animation: apDotPulse 2s infinite;
}

@keyframes apDotPulse {
  0%,
  100% {
    box-shadow: 0 0 5px #10b981;
  }

  50% {
    box-shadow:
      0 0 14px #10b981,
      0 0 24px rgba(16, 185, 129, 0.4);
  }
}

.ap-h2 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(1.8rem, 3.2vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 12px;
}

.ap-h2 b {
  color: #3b7bff;
  font-style: normal;
}

.ap-subdesc {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.38);
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ══ HORIZONTAL STEP RAIL ══ */
.ap-rail {
  position: relative;
  z-index: 1;
  max-width: 1080px;
  margin: 0 auto 60px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

/* connecting line between steps */
.ap-rail::before {
  content: '';
  position: absolute;
  top: 28px;
  /* center of node circle */
  left: calc(12.5%);
  /* starts at center of first node */
  right: calc(12.5%);
  /* ends at center of last node */
  height: 2px;
  background: linear-gradient(90deg, #0052ff 0%, #3b7bff 50%, #10b981 100%);
  opacity: 0.35;
  z-index: 0;
}

/* ── single step ── */
.ap-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 10px;
  position: relative;
  cursor: default;
}

/* node */
.ap-node {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  border: 1.5px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  position: relative;
  z-index: 1;
  margin-bottom: 20px;
  transition:
    background 0.3s,
    border-color 0.3s,
    box-shadow 0.3s,
    transform 0.25s;
  flex-shrink: 0;
}

.ap-node-num {
  position: absolute;
  top: -7px;
  right: -7px;
  width: 19px;
  height: 19px;
  background: rgba(0, 82, 255, 0.9);
  border-radius: 50%;
  border: 2px solid #0a0b10;
  font-size: 0.55rem;
  font-weight: 800;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ap-step:hover .ap-node {
  background: rgba(16, 185, 129, 0.14);
  border-color: #10b981;
  box-shadow:
    0 0 0 5px rgba(16, 185, 129, 0.08),
    0 0 22px rgba(16, 185, 129, 0.3);
  transform: translateY(-4px);
}

.ap-step:hover .ap-node-num {
  background: #10b981;
}

/* card below node */
.ap-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  padding: 16px 14px 18px;
  transition:
    background 0.3s,
    border-color 0.3s,
    box-shadow 0.3s,
    transform 0.25s;
  width: 100%;
}

.ap-step:hover .ap-card {
  background: rgba(0, 82, 255, 0.07);
  border-color: rgba(0, 82, 255, 0.25);
  box-shadow: 0 8px 32px rgba(0, 82, 255, 0.12);
  transform: translateY(-4px);
}

.ap-step-day {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: rgba(0, 132, 255, 0.7);
  margin-bottom: 6px;
  transition: color 0.3s;
}

.ap-step:hover .ap-step-day {
  color: #10b981;
}

.ap-step-title {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.015em;
  line-height: 1.25;
  margin-bottom: 8px;
}

.ap-step-text {
  font-size: 0.76rem;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.55;
  transition: color 0.3s;
}

.ap-step:hover .ap-step-text {
  color: rgba(255, 255, 255, 0.6);
}

/* tag chips at bottom of card */
.ap-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  justify-content: center;
  margin-top: 10px;
}

.ap-chip {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 6px;
  padding: 3px 8px;
  font-size: 0.58rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.35);
  transition:
    background 0.3s,
    color 0.3s,
    border-color 0.3s;
}

.ap-step:hover .ap-chip {
  background: rgba(16, 185, 129, 0.1);
  border-color: rgba(16, 185, 129, 0.18);
  color: #10b981;
}

/* ── responsive: stack on mobile ── */
@media (max-width: 720px) {
  .ap-rail {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .ap-rail::before {
    display: none;
  }

  .ap-step {
    flex-direction: row;
    text-align: left;
    align-items: flex-start;
    gap: 14px;
  }

  .ap-node {
    margin-bottom: 0;
    flex-shrink: 0;
  }

  .ap-chips {
    justify-content: flex-start;
  }
}

/* ── BOTTOM CTA ── */
.ap-cta {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-align: center;
}

.ap-cta-hl {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(1.15rem, 2vw, 1.55rem);
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
}

.ap-cta-hl em {
  font-style: normal;
  color: #10b981;
}

.btn-ap {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #0052ff 0%, #10b981 100%);
  color: #fff;
  border: none;
  border-radius: 14px;
  padding: 16px 32px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 4px 28px rgba(0, 82, 255, 0.38);
  transition:
    transform 0.2s,
    box-shadow 0.2s;
  position: relative;
  overflow: hidden;
}

.btn-ap::after {
  content: '';
  position: absolute;
  top: 0;
  left: -80%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.18), transparent);
  transform: skewX(-18deg);
  animation: apShimmer 2.8s 1.2s ease-in-out infinite;
}

@keyframes apShimmer {
  0% {
    left: -80%;
  }

  50%,
  100% {
    left: 140%;
  }
}

.btn-ap:hover {
  transform: translateY(-3px);
  box-shadow:
    0 10px 44px rgba(0, 82, 255, 0.52),
    0 0 60px rgba(16, 185, 129, 0.18);
}

.ap-cta-note {
  font-size: 0.73rem;
  color: rgba(255, 255, 255, 0.25);
  display: flex;
  align-items: center;
  gap: 14px;
}

.ap-cta-note span::before {
  content: '✓ ';
  color: #10b981;
  font-weight: 700;
}
.meta-final-cta {
  background: #f8f9fa;
  padding: 80px 5vw 90px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ── The floating dark box ── */
.fcta-box {
  position: relative;
  width: 100%;
  max-width: 1100px;
  background: #0a0b10;
  border-radius: 32px;
  padding: 72px 60px 64px;
  text-align: center;
  overflow: hidden;

  /* layered glow: spreads outward like neon */
  box-shadow:
    0 0 0 1px rgba(0, 82, 255, 0.14),
    0 0 40px 8px rgba(0, 82, 255, 0.1),
    0 0 90px 20px rgba(0, 82, 255, 0.13),
    0 0 180px 40px rgba(0, 82, 255, 0.08),
    0 40px 120px rgba(0, 0, 0, 0.55);

  transition: box-shadow 0.4s ease;
}

.fcta-box:hover {
  box-shadow:
    0 0 0 1px rgba(0, 82, 255, 0.22),
    0 0 50px 10px rgba(0, 82, 255, 0.16),
    0 0 110px 28px rgba(0, 82, 255, 0.18),
    0 0 220px 55px rgba(0, 82, 255, 0.11),
    0 48px 140px rgba(0, 0, 0, 0.6);
}

/* inner radial gradient from centre */
.fcta-box::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 70% at 50% 100%, rgba(0, 82, 255, 0.13) 0%, transparent 65%);
  pointer-events: none;
  border-radius: 32px;
}

/* top edge highlight line */
.fcta-box::after {
  content: '';
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(0, 82, 255, 0.45) 30%,
    rgba(59, 123, 255, 0.6) 50%,
    rgba(0, 82, 255, 0.45) 70%,
    transparent
  );
  border-radius: 1px;
}

/* dot-grid texture inside box */
.fcta-box-tex {
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: 32px;
  background-image: radial-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: radial-gradient(ellipse 75% 75% at 50% 50%, black 20%, transparent 100%);
}

/* ── inner content ── */
.fcta-inner {
  position: relative;
  z-index: 1;
}

/* badge */
.fcta-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(239, 68, 68, 0.12);
  border: 1px solid rgba(239, 68, 68, 0.28);
  border-radius: 100px;
  padding: 5px 14px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: #f87171;
  margin-bottom: 26px;
  animation: fcBadgePulse 2.5s ease infinite;
}

@keyframes fcBadgePulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(239, 68, 68, 0);
  }

  50% {
    box-shadow: 0 0 14px 4px rgba(239, 68, 68, 0.18);
  }
}

/* H2 */
.fcta-h2 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(1.9rem, 3.4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.12;
  color: #fff;
  margin-bottom: 18px;
  max-width: 740px;
  margin-left: auto;
  margin-right: auto;
}

.fcta-h2 em {
  font-style: normal;
  background: linear-gradient(90deg, #3b7bff, #10b981);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* sub */
.fcta-sub {
  font-size: 0.97rem;
  color: rgba(255, 255, 255, 0.42);
  max-width: 520px;
  margin: 0 auto 40px;
  line-height: 1.65;
}

/* ── CTA button ── */
.fcta-btn-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.btn-fcta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, #0052ff 0%, #3b7bff 100%);
  color: #fff;
  border: none;
  border-radius: 16px;
  padding: 20px 44px;
  font-family: 'DM Sans', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  letter-spacing: -0.01em;
  position: relative;
  overflow: hidden;
  box-shadow:
    0 4px 20px rgba(0, 82, 255, 0.4),
    0 0 60px rgba(0, 82, 255, 0.15);
  transition:
    transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1),
    box-shadow 0.25s ease;
}

/* shimmer */
.btn-fcta::before {
  content: '';
  position: absolute;
  top: 0;
  left: -70%;
  width: 45%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.22), transparent);
  transform: skewX(-18deg);
  animation: fctaShimmer 3s 1s ease-in-out infinite;
}

@keyframes fctaShimmer {
  0% {
    left: -70%;
  }

  50%,
  100% {
    left: 130%;
  }
}

.btn-fcta:hover {
  transform: translateY(-5px);
  box-shadow:
    0 16px 50px rgba(0, 82, 255, 0.6),
    0 0 100px rgba(0, 82, 255, 0.22);
}

.btn-fcta-arrow {
  width: 32px;
  height: 32px;
  background: rgba(255, 255, 255, 0.18);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s;
}

.btn-fcta:hover .btn-fcta-arrow {
  transform: translateX(4px);
}

/* trust trio */
.fcta-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.fcta-trust-item {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.73rem;
  color: rgba(255, 255, 255, 0.3);
  font-weight: 500;
}

.fcta-trust-item::before {
  content: '✓';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid rgba(16, 185, 129, 0.25);
  border-radius: 5px;
  color: #10b981;
  font-size: 0.62rem;
  font-weight: 800;
}

/* divider between items */
.fcta-trust-sep {
  width: 1px;
  height: 14px;
  background: rgba(255, 255, 255, 0.08);
}

@media (max-width: 640px) {
  .fcta-box {
    padding: 48px 28px 44px;
    border-radius: 22px;
  }

  .fcta-trust-sep {
    display: none;
  }
}

/* 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;
}
