:root {
  --blue: #0052ff;
  --blue-dim: rgba(0, 82, 255, 0.1);
  --blue-border: rgba(0, 82, 255, 0.22);
  --ink: #161720;
  --ink2: #3d3f52;
  --muted: #7c7f96;
  --bg: #f6f7fc;
  --white: #ffffff;
  --green: #00b96b;
  --red: #ff3b3b;
  --orange: #ff6b00;

  /* Dark section palette */
  --dark-bg: #07102e;
  --dark-bg2: #0b1845;
  --dark-border: rgba(255, 255, 255, 0.08);
  --dark-text: rgba(255, 255, 255, 0.9);
  --dark-text2: rgba(255, 255, 255, 0.6);
  --dark-muted: rgba(255, 255, 255, 0.38);
  --dark-card: rgba(255, 255, 255, 0.05);
  --dark-card-border: rgba(255, 255, 255, 0.1);
  --dark-blue-accent: #4d9eff;
  --dark-green-accent: #4dffaa;
}

body {
  background: var(--bg);
  color: var(--ink);
}

/* ══════════ TICKER ══════════ */
.ticker-bar {
  background: linear-gradient(90deg, #07102e, #0840c8, #07102e);
  background-size: 200% 100%;
  animation: tbar 8s ease infinite;
  overflow: hidden;
  padding: 10px 0;
}

@keyframes tbar {
  0%,
  100% {
    background-position: 0%;
  }

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

.ticker-inner {
  display: flex;
  width: max-content;
  animation: tick 32s linear infinite;
}

@keyframes tick {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 0 36px;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: 0.07em;
  white-space: nowrap;
}

.ticker-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #4dffaa;
  flex-shrink: 0;
  animation: tdot 1.4s ease infinite;
}

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

  50% {
    opacity: 0.15;
  }
}

.ticker-sep {
  color: rgba(255, 255, 255, 0.2);
}

/* ══════════ SECTION BASE ══════════ */
.svc {
  padding: 20px 20px 0px;
  position: relative;
  overflow: hidden;
}

/* ── LIGHT SECTION ── */
.svc-light {
  background: var(--bg);
  background-image:
    radial-gradient(circle at 12% 18%, rgba(0, 82, 255, 0.05) 0%, transparent 46%),
    radial-gradient(circle at 88% 78%, rgba(0, 82, 255, 0.04) 0%, transparent 46%),
    radial-gradient(#16172020 0.6px, transparent 0.6px);
  background-size:
    auto,
    auto,
    26px 26px;
}

.svc-light::before,
.svc-light::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  animation: orb 14s ease-in-out infinite;
}

.svc-light::before {
  top: -140px;
  left: -100px;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(0, 82, 255, 0.06) 0%, transparent 65%);
}

.svc-light::after {
  bottom: -100px;
  right: -100px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0, 82, 255, 0.04) 0%, transparent 65%);
  animation-delay: -7s;
  animation-direction: reverse;
}

/* ── DARK SECTION ── */
.svc-dark {
  background: var(--dark-bg);
  background-image:
    radial-gradient(circle at 15% 20%, rgba(0, 82, 255, 0.18) 0%, transparent 50%),
    radial-gradient(circle at 85% 80%, rgba(8, 64, 200, 0.14) 0%, transparent 50%),
    radial-gradient(rgba(255, 255, 255, 0.025) 0.6px, transparent 0.6px);
  background-size:
    auto,
    auto,
    26px 26px;
}

.svc-dark::before,
.svc-dark::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  animation: orb 16s ease-in-out infinite;
}

.svc-dark::before {
  top: -140px;
  left: -100px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0, 82, 255, 0.12) 0%, transparent 65%);
}

.svc-dark::after {
  bottom: -100px;
  right: -80px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(8, 64, 200, 0.1) 0%, transparent 65%);
  animation-delay: -8s;
  animation-direction: reverse;
}

@keyframes orb {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  40% {
    transform: translate(28px, -18px) scale(1.04);
  }

  70% {
    transform: translate(-14px, 22px) scale(0.97);
  }
}

/* ── WAVE TRANSITION ── */
.wave-down,
.wave-up {
  display: block;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  position: relative;
  z-index: 2;
}

.wave-down {
  background: var(--bg);
}

.wave-down svg {
  display: block;
}

.wave-up {
  background: var(--dark-bg);
}

.wave-up svg {
  display: block;
}

/* ══════════ SCROLL REVEAL ══════════ */
.r {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

.r.on {
  opacity: 1;
  transform: translateY(0);
}

.r.d1 {
  transition-delay: 0.08s;
}

.r.d2 {
  transition-delay: 0.18s;
}

.r.d3 {
  transition-delay: 0.28s;
}

.r.d4 {
  transition-delay: 0.38s;
}

/* ══════════ HERO (LIGHT) ══════════ */
.hero {
  max-width: 760px;
  margin: 0 auto 80px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--blue-dim);
  border: 1px solid var(--blue-border);
  color: var(--blue);
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 6px 15px;
  border-radius: 100px;
  margin-bottom: 26px;
}

.hero-pill::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--blue);
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(0, 82, 255, 0.2);
  animation: pdot 2s ease infinite;
}

@keyframes pdot {
  0%,
  100% {
    box-shadow: 0 0 0 3px rgba(0, 82, 255, 0.2);
  }

  50% {
    box-shadow: 0 0 0 7px rgba(0, 82, 255, 0.05);
  }
}

.hero-h1 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(36px, 5vw, 62px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin-bottom: 20px;
}

.hero-h1 em {
  font-style: normal;
  color: var(--blue);
  position: relative;
  display: inline-block;
}

.hero-h1 em::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--blue), transparent);
  border-radius: 2px;
  transform-origin: left;
  animation: uline 1.1s cubic-bezier(0.22, 1, 0.36, 1) 0.35s both;
}

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

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

.hero-sub {
  font-size: 16.5px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--ink2);
  max-width: 540px;
  margin: 0 auto 32px;
}

.hero-fomo {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: rgba(255, 59, 59, 0.07);
  border: 1px solid rgba(255, 59, 59, 0.2);
  color: var(--red);
  border-radius: 100px;
  padding: 9px 18px;
  font-size: 13px;
  font-weight: 500;
  animation: fpulse 3s ease infinite;
}

@keyframes fpulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(255, 59, 59, 0.15);
  }

  50% {
    box-shadow: 0 0 0 8px rgba(255, 59, 59, 0);
  }
}

.fomo-fire {
  font-size: 15px;
  animation: fshake 0.6s ease infinite alternate;
}

@keyframes fshake {
  from {
    transform: rotate(-5deg) scale(1);
  }

  to {
    transform: rotate(5deg) scale(1.15);
  }
}

/* ══════════ SECTION LABEL ══════════ */
.sec-label {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 20px;
}

.sec-label::before {
  content: '';
  width: 22px;
  height: 1.5px;
  background: var(--muted);
}

.sec-num {
  background: var(--blue-dim);
  color: var(--blue);
  font-size: 10.5px;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 4px;
}

/* Dark section label override */
.dark-label {
  color: rgba(255, 255, 255, 0.4);
}

.dark-label::before {
  background: rgba(255, 255, 255, 0.3);
}

.dark-label .sec-num {
  background: rgba(0, 82, 255, 0.3);
  color: #7eb8ff;
  border: 1px solid rgba(0, 82, 255, 0.35);
}

.sec-wrap {
  max-width: 1160px;
  margin: 0 auto 60px;
  position: relative;
  z-index: 1;
}

.sec-wrap:last-of-type {
  margin-bottom: 0;
}

.divider {
  max-width: 1160px;
  margin: 0 auto 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(22, 23, 32, 0.1) 30%, rgba(22, 23, 32, 0.1) 70%, transparent);
  position: relative;
  z-index: 1;
}

/* ══════════ CARD BASE (LIGHT) ══════════ */
.card {
  background: var(--white);
  border-radius: 22px;
  padding: 36px 32px;
  border: 1px solid rgba(22, 23, 32, 0.06);
  box-shadow:
    0 2px 16px rgba(22, 23, 32, 0.07),
    0 1px 4px rgba(22, 23, 32, 0.04);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  transition:
    transform 0.38s cubic-bezier(0.34, 1.56, 0.64, 1),
    box-shadow 0.38s ease,
    border-color 0.38s ease;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow:
    0 18px 60px rgba(0, 82, 255, 0.16),
    0 4px 16px rgba(0, 82, 255, 0.08);
  border-color: var(--blue-border);
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 55%;
  height: 100%;
  background: linear-gradient(105deg, transparent 20%, rgba(255, 255, 255, 0.5) 50%, transparent 80%);
  transition: left 0.55s ease;
  pointer-events: none;
  z-index: 3;
}

.card:hover::before {
  left: 160%;
}

/* ══════════ CARD BASE (DARK) ══════════ */
.card-dark {
  background: rgba(255, 255, 255, 0.04);
  border-radius: 22px;
  padding: 36px 32px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  box-shadow:
    0 2px 20px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  transition:
    transform 0.38s cubic-bezier(0.34, 1.56, 0.64, 1),
    box-shadow 0.38s ease,
    border-color 0.38s ease;
  backdrop-filter: blur(4px);
}

.card-dark:hover {
  transform: translateY(-8px);
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.5),
    0 4px 20px rgba(0, 82, 255, 0.25);
  border-color: rgba(0, 82, 255, 0.45);
}

.card-dark::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 55%;
  height: 100%;
  background: linear-gradient(105deg, transparent 20%, rgba(255, 255, 255, 0.06) 50%, transparent 80%);
  transition: left 0.55s ease;
  pointer-events: none;
  z-index: 3;
}

.card-dark:hover::before {
  left: 160%;
}

.card-dark .card-title {
  color: #fff;
}

.card-dark .card-desc {
  color: var(--dark-text2);
}

.card-dark .card-sub {
  color: #7eb8ff;
}

.card-dark .stat-text {
  color: var(--dark-muted);
}

.card-dark .stat-num {
  color: var(--dark-green-accent);
}

.card-dark .card-stat {
  background: rgba(0, 82, 255, 0.2);
  border-color: rgba(0, 82, 255, 0.3);
}

/* ══════════ ICONS ══════════ */
.card-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--bg);
  border: 1px solid rgba(22, 23, 32, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  flex-shrink: 0;
  transition:
    transform 0.3s ease,
    background 0.3s ease;
}

.card:hover .card-icon,
.card-dark:hover .card-icon {
  transform: rotate(-6deg) scale(1.1);
  background: var(--blue-dim);
}

.card-icon svg {
  width: 22px;
  height: 22px;
  color: var(--blue);
}

.card-dark .card-icon {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.12);
}

.card-dark .card-icon svg {
  color: #7eb8ff;
}

.card-dark:hover .card-icon {
  background: rgba(0, 82, 255, 0.3);
}

/* ══════════ TAGS ══════════ */
.card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 14px;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 4px 10px;
  border-radius: 100px;
  border: 1px solid;
  white-space: nowrap;
  transition: transform 0.2s ease;
}

.card:hover .tag,
.card-dark:hover .tag {
  transform: translateY(-1px);
}

.tag::before {
  content: '●';
  font-size: 5px;
  opacity: 0.6;
}

.tag-g {
  background: rgba(0, 185, 107, 0.1);
  color: #007a46;
  border-color: rgba(0, 185, 107, 0.25);
}

.tag-b {
  background: var(--blue-dim);
  color: var(--blue);
  border-color: var(--blue-border);
}

.tag-o {
  background: rgba(255, 107, 0, 0.1);
  color: #b34d00;
  border-color: rgba(255, 107, 0, 0.25);
}

.tag-r {
  background: rgba(255, 59, 59, 0.09);
  color: #c22020;
  border-color: rgba(255, 59, 59, 0.22);
}

/* Dark tag overrides */
.card-dark .tag-g {
  background: rgba(77, 255, 170, 0.12);
  color: #4dffaa;
  border-color: rgba(77, 255, 170, 0.25);
}

.card-dark .tag-b {
  background: rgba(0, 82, 255, 0.25);
  color: #7eb8ff;
  border-color: rgba(0, 82, 255, 0.4);
}

.card-dark .tag-o {
  background: rgba(255, 107, 0, 0.15);
  color: #ffb073;
  border-color: rgba(255, 107, 0, 0.3);
}

.card-dark .tag-r {
  background: rgba(255, 59, 59, 0.15);
  color: #ff9090;
  border-color: rgba(255, 59, 59, 0.3);
}

.card-title {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.22;
  color: var(--ink);
  margin-bottom: 10px;
  margin-top: 2px;
}

.card-sub {
  font-size: 13px;
  font-weight: 600;
  color: var(--blue);
  margin-bottom: 12px;
  letter-spacing: 0.01em;
}

.card-desc {
  font-size: 14.5px;
  line-height: 1.74;
  color: var(--ink2);
  font-weight: 300;
  margin-bottom: 22px;
  flex: 1;
}

.card-stat {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  margin-bottom: 22px;
  background: var(--blue-dim);
  border: 1px solid var(--blue-border);
  border-radius: 12px;
}

.stat-num {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: var(--blue);
  letter-spacing: -0.03em;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.card:hover .stat-num,
.card-dark:hover .stat-num {
  transform: scale(1.08);
}

.stat-text {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.45;
  font-weight: 400;
}

.fomo-slot {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  padding: 9px 14px;
  background: rgba(255, 59, 59, 0.06);
  border: 1px solid rgba(255, 59, 59, 0.18);
  border-radius: 10px;
  font-size: 12px;
  font-weight: 500;
  color: #c22020;
  animation: slota 4s ease infinite;
}

@keyframes slota {
  0%,
  88%,
  100% {
    box-shadow: none;
  }

  94% {
    box-shadow: 0 0 0 3px rgba(255, 59, 59, 0.13);
  }
}

.slot-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--red);
  animation: tdot 1.2s ease infinite;
  flex-shrink: 0;
}

.card-dark .fomo-slot {
  background: rgba(255, 59, 59, 0.12);
  border-color: rgba(255, 59, 59, 0.3);
  color: #ff9090;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--blue);
  border: 1px solid var(--blue-border);
  padding: 10px 20px;
  border-radius: 100px;
  text-decoration: none;
  margin-top: auto;
  align-self: flex-start;
  position: relative;
  overflow: hidden;
  transition:
    gap 0.28s ease,
    color 0.28s ease,
    border-color 0.28s ease;
}

.cta-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--blue);
  border-radius: inherit;
  transform: translateX(-102%);
  transition: transform 0.3s cubic-bezier(0.34, 1.4, 0.64, 1);
  z-index: -1;
}

.cta-btn:hover::before {
  transform: translateX(0);
}

.cta-btn:hover {
  color: white;
  border-color: var(--blue);
  gap: 14px;
}

.cta-btn > * {
  position: relative;
  z-index: 1;
}

.cta-arr {
  display: inline-flex;
  transition: transform 0.28s ease;
}

.cta-btn:hover .cta-arr {
  transform: translateX(4px);
}

/* Dark CTA button */
.cta-btn-dark {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 10px 20px;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.07);
  text-decoration: none;
  margin-top: auto;
  align-self: flex-start;
  position: relative;
  overflow: hidden;
  transition:
    gap 0.28s ease,
    color 0.28s ease,
    border-color 0.28s ease;
}

.cta-btn-dark::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.15);
  border-radius: inherit;
  transform: translateX(-102%);
  transition: transform 0.3s cubic-bezier(0.34, 1.4, 0.64, 1);
  z-index: 0;
}

.cta-btn-dark:hover::before {
  transform: translateX(0);
}

.cta-btn-dark:hover {
  color: white;
  border-color: rgba(255, 255, 255, 0.4);
  gap: 14px;
}

.cta-btn-dark > * {
  position: relative;
  z-index: 1;
}

.cta-btn-dark:hover .cta-arr {
  transform: translateX(4px);
}

/* ══════════ HERO CARDS (SM + Meta) ══════════ */
.grid-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

/* SM card: full width dark hero */
.card-sm {
  grid-column: 1 / -1;
  background: linear-gradient(150deg, #04091d 0%, #091a5c 55%, #0c35c7 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    0 4px 40px rgba(0, 0, 0, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.07);
  padding: 52px 48px;
  flex-direction: row;
  align-items: flex-start;
  gap: 48px;
}

.card-sm .card-icon {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.15);
}

.card-sm .card-icon svg {
  color: #fff;
}

.card-sm .card-title {
  color: #fff;
  font-size: 30px;
}

.card-sm .card-sub {
  color: #7eb8ff;
}

.card-sm .card-desc {
  color: rgba(255, 255, 255, 0.68);
  font-size: 15.5px;
  margin-bottom: 28px;
}

.card-sm .card-stat {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.12);
}

.card-sm .stat-num {
  color: #4dffaa;
}

.card-sm .stat-text {
  color: rgba(255, 255, 255, 0.55);
}

.card-sm .cta-btn {
  color: rgba(255, 255, 255, 0.9);
  border-color: rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.07);
}

.card-sm .cta-btn::before {
  background: rgba(255, 255, 255, 0.18);
}

.card-sm .cta-btn:hover {
  color: var(--ink);
}

.card-sm .tag-g {
  background: rgba(77, 255, 170, 0.12);
  color: #00c97a;
  border-color: rgba(77, 255, 170, 0.25);
}

.card-sm .tag-o {
  background: rgba(255, 107, 0, 0.15);
  color: #ffb073;
  border-color: rgba(255, 107, 0, 0.3);
}

.card-sm .fomo-slot {
  background: rgba(255, 59, 59, 0.12);
  border-color: rgba(255, 59, 59, 0.3);
  color: #ff9090;
}

.sm-decor {
  position: absolute;
  top: 22px;
  right: 28px;
  width: 80px;
  height: 80px;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.12) 1.5px, transparent 1.5px);
  background-size: 13px 13px;
  border-radius: 50%;
  animation: spin 22s linear infinite;
  opacity: 0.6;
}

@keyframes spin {
  from {
    transform: rotate(0);
  }

  to {
    transform: rotate(360deg);
  }
}

.sm-left {
  flex: 1;
}

.sm-right {
  flex: 0 0 320px;
}

.platforms {
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  padding: 22px 20px;
}

.platform-title {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 4px;
}

.platform-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition:
    background 0.25s ease,
    transform 0.25s ease;
  animation: platform-float 4s ease-in-out infinite;
}

.platform-row:nth-child(3) {
  animation-delay: -2s;
}

@keyframes platform-float {
  0%,
  100% {
    transform: translateY(0);
  }

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

.platform-row:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-2px) !important;
}

.platform-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.platform-icon.ig {
  background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.platform-icon.fb {
  background: #1877f2;
}

.platform-icon svg {
  width: 20px;
  height: 20px;
  fill: white;
}

.platform-info {
  flex: 1;
}

.platform-name {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
}

.platform-desc {
  font-size: 11.5px;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 1px;
}

.platform-badge {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 3px 9px;
  border-radius: 100px;
  background: rgba(77, 255, 170, 0.15);
  color: #4dffaa;
  border: 1px solid rgba(77, 255, 170, 0.25);
  white-space: nowrap;
}

/* Meta reklam card — dark version */
.card-meta-dark {
  grid-column: 1/-1;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.09);
  box-shadow:
    0 2px 20px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  border-radius: 22px;
  padding: 36px 32px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  transition:
    transform 0.38s cubic-bezier(0.34, 1.56, 0.64, 1),
    box-shadow 0.38s ease,
    border-color 0.38s ease;
  backdrop-filter: blur(4px);
}

.card-meta-dark:hover {
  transform: translateY(-8px);
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.5),
    0 4px 20px rgba(0, 82, 255, 0.25);
  border-color: rgba(0, 82, 255, 0.45);
}

.card-meta-dark::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 55%;
  height: 100%;
  background: linear-gradient(105deg, transparent 20%, rgba(255, 255, 255, 0.06) 50%, transparent 80%);
  transition: left 0.55s ease;
  pointer-events: none;
  z-index: 3;
}

.card-meta-dark:hover::before {
  left: 160%;
}

/* ══════════ GRID 2: Diğer hizmetler ══════════ */
.grid-other {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.card-seo {
  grid-column: span 2;
}

.card-seo-inner {
  display: flex;
  gap: 28px;
  align-items: flex-start;
}

.seo-half {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.seo-divider {
  width: 1px;
  background: rgba(22, 23, 32, 0.08);
  flex-shrink: 0;
  margin: 0;
}

.card-web {
  grid-column: 3 / 4;
  grid-row: 1;
}

/* ══════════ BOTTOM FOMO CTA ══════════ */
.fomo-cta {
  max-width: 1160px;
  margin: 72px auto 50px!important;
  position: relative;
  z-index: 1;
}

.fomo-box {
  background: linear-gradient(140deg, #04091d 0%, #091a5c 55%, #0052ff 100%);
  border-radius: 26px;
  padding: 60px 52px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: 48px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  box-shadow: 0 8px 60px rgba(0, 0, 0, 0.5);
}

.fomo-box::before {
  content: '';
  position: absolute;
  top: -40%;
  left: -15%;
  width: 680px;
  height: 680px;
  background: conic-gradient(
    from 0deg at 50% 50%,
    transparent 55deg,
    rgba(255, 255, 255, 0.04) 85deg,
    transparent 115deg,
    rgba(255, 255, 255, 0.025) 145deg,
    transparent 175deg
  );
  animation: rays 20s linear infinite;
  pointer-events: none;
}

@keyframes rays {
  from {
    transform: rotate(0);
  }

  to {
    transform: rotate(360deg);
  }
}

.fomo-box::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.07) 1px, transparent 1px);
  background-size: 21px 21px;
  pointer-events: none;
}

.fomo-left-service {
  flex: 1;
  position: relative;
  z-index: 1;
}

.fomo-right {
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.fomo-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255, 59, 59, 0.18);
  border: 1px solid rgba(255, 59, 59, 0.35);
  color: #ff9090;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 18px;
  animation: fpulse 2.5s ease infinite;
}

.fomo-h2 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(26px, 3.2vw, 44px);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.025em;
  line-height: 1.15;
  margin-bottom: 14px;
}

.fomo-h2 span {
  color: #4dffaa;
}

.fomo-desc {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.65);
  font-weight: 300;
  line-height: 1.7;
  max-width: 460px;
}

.btn-cta-main {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  color: var(--blue);
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 15px;
  font-weight: 700;
  padding: 16px 32px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  margin-top: 28px;
  box-shadow: 0 4px 24px rgba(255, 255, 255, 0.18);
  transition:
    transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1),
    box-shadow 0.3s ease,
    gap 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn-cta-main:hover {
  transform: scale(1.06) translateY(-2px);
  box-shadow: 0 8px 40px rgba(255, 255, 255, 0.28);
  gap: 16px;
}

.btn-cta-arr {
  transition: transform 0.3s ease;
}

.btn-cta-main:hover .btn-cta-arr {
  transform: translateX(4px);
}

.fomo-proof {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-top: 20px;
}

.proof-avs {
  display: flex;
}

.proof-av {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.2);
  margin-left: -7px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.1));
  font-size: 9px;
  font-weight: 700;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
}

.proof-av:first-child {
  margin-left: 0;
}

.proof-txt {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
}

.proof-txt strong {
  color: rgba(255, 255, 255, 0.88);
  font-weight: 600;
}

.countdown-box {
  background: rgba(0, 0, 0, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 26px 30px;
  backdrop-filter: blur(8px);
  min-width: 270px;
}

.cd-top {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 16px;
  text-align: center;
}

.cd-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
}

.cd-unit {
  text-align: center;
}

.cd-val {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 38px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.04em;
  display: block;
  min-width: 50px;
  background: rgba(255, 255, 255, 0.07);
  border-radius: 10px;
  padding: 5px 7px;
  line-height: 1;
}

.cd-val.flip {
  animation: flip 0.2s ease;
}

@keyframes flip {
  0% {
    transform: rotateX(0);
  }

  50% {
    transform: rotateX(-90deg);
    opacity: 0.4;
  }

  100% {
    transform: rotateX(0);
  }
}

.cd-sep {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 26px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.3);
  padding-bottom: 10px;
  animation: sblink 1s step-end infinite;
}

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

  50% {
    opacity: 0.1;
  }
}

.cd-lbl {
  font-size: 9.5px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.38);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 5px;
  display: block;
}

.cd-slots {
  margin-top: 13px;
  text-align: center;
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.55);
}

.cd-slots strong {
  color: #ff8080;
  font-weight: 700;
}

.cd-bar {
  height: 5px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  margin-top: 8px;
  overflow: hidden;
}

.cd-fill {
  height: 100%;
  width: 78%;
  background: linear-gradient(90deg, #ff6b6b, #ff3b3b);
  border-radius: 10px;
  animation: bbreath 2.5s ease infinite;
}

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

  50% {
    opacity: 0.6;
  }
}

/* ══════════ WAVE SEPARATOR ══════════ */
.wave-sep {
  position: relative;
  z-index: 2;
  overflow: hidden;
  display: block;
  line-height: 0;
}

.wave-sep svg {
  display: block;
  width: 100%;
}

/* light→dark wave */
.wave-l2d {
  background: var(--bg);
}

.wave-l2d svg path {
  fill: var(--dark-bg);
}

/* dark→light wave */
.wave-d2l {
  background: var(--dark-bg);
}

.wave-d2l svg path {
  fill: var(--bg);
}

/* ══════════ RESPONSIVE ══════════ */
@media (max-width: 960px) {
  .card-sm {
    flex-direction: column;
  }

  .sm-right {
    flex: none;
    width: 100%;
  }

  .grid-other {
    grid-template-columns: 1fr 1fr;
  }

  .card-seo {
    grid-column: 1/-1;
  }

  .card-web {
    grid-column: auto;
    grid-row: auto;
  }

  .card-seo-inner {
    flex-direction: column;
    gap: 0;
  }

  .seo-divider {
    width: 100%;
    height: 1px;
    margin: 22px 0;
  }

  .fomo-box {
    flex-direction: column;
    padding: 44px 28px;
  }

  .countdown-box {
    width: 100%;
  }
}
@media (max-width: 768px) {
  /* 1. Tüm sistemi tek bir dikey sütuna çeviriyoruz */
  .grid-other {
    grid-template-columns: 1fr !important;
    gap: 20px;
  }

  /* 2. HTML içine yazdığın "span 2" inatçılığını eziyoruz ki ekranı taşırmasın */
  .grid-other .card {
    grid-column: 1 / -1 !important;
  }

  /* 3. SEO Kartı: Yan yana duran 2 parçayı alt alta alıyoruz */
  .card-seo-inner {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }

  /* 4. SEO Kartı: Ortadaki dikey çizgiyi, yatay ayırıcı bir çizgiye çeviriyoruz */
  .seo-divider {
    width: 100% !important;
    height: 1px !important;
    margin: 0 !important;
    background: rgba(0, 0, 0, 0.08); /* Çizgi rengini kendi temana göre ayarlayabilirsin */
  }

  /* 5. Grafik Kartı: İçindeki Flex yapısının mobilde sorunsuz alt alta inmesi için */
  .card.d3 > div {
    flex-direction: column;
    gap: 20px !important;
  }

  .card.d3 .cta-btn {
    width: 100%; /* Buton mobilde tam genişlik olsun ki basması kolay olsun */
  }
}
@media (max-width: 640px) {
  .svc {
    padding: 60px 16px 80px;
  }

  .grid-hero,
  .grid-other {
    grid-template-columns: 1fr;
  }

  .card-sm {
    padding: 36px 24px;
  }

  .card-seo {
    grid-column: auto;
  }

  .fomo-box {
    padding: 32px 20px;
  }

  .hero-h1 {
    font-size: 36px;
  }
}

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

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

.ad-shimmer {
  animation: shimmer 2.5s ease infinite !important;
}
