.seo-hero {
  font-family: 'Bricolage Grotesque', sans-serif;
  background: #fff;
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 66px 0 90px;
}
.seo-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 65% 55% at 68% 48%, rgba(0, 82, 255, 0.05) 0%, transparent 70%),
    radial-gradient(ellipse 35% 35% at 8% 85%, rgba(0, 82, 255, 0.03) 0%, transparent 60%);
  pointer-events: none;
}
.seo-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(0, 82, 255, 0.055) 1px, transparent 1px);
  background-size: 38px 38px;
  pointer-events: none;
  opacity: 0.5;
}

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

/* ═══════════ LEFT ═══════════ */
.hero-left {
  display: flex;
  flex-direction: column;
  gap: 24px;
  animation: fadeUp 0.8s cubic-bezier(0.22, 1, 0.36, 1) both;
}

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

/* FOMO */
.fomo-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #fff5f5, #fff0e8);
  border: 1px solid rgba(220, 60, 30, 0.18);
  border-radius: 10px;
  padding: 10px 16px;
  width: 100%;
  max-width: 460px;
  animation: fadeUp 0.8s 0.05s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.fomo-fire {
  font-size: 0.95rem;
  animation: shake 2.5s 0.5s infinite;
}
@keyframes shake {
  0%,
  100% {
    transform: rotate(0);
  }
  20% {
    transform: rotate(-10deg);
  }
  40% {
    transform: rotate(10deg);
  }
  60% {
    transform: rotate(-6deg);
  }
  80% {
    transform: rotate(6deg);
  }
}
.fomo-text {
  font-size: 0.76rem;
  font-weight: 700;
  color: #b02808;
  line-height: 1.4;
  flex: 1;
}
.fomo-text strong {
  display: block;
  font-size: 0.8rem;
  margin-bottom: 1px;
}
.fomo-spots {
  background: #c03010;
  color: #fff;
  font-size: 0.67rem;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 8px;
  white-space: nowrap;
  letter-spacing: 0.03em;
  flex-shrink: 0;
}

/* Badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--blue-l);
  border: 1px solid rgba(0, 82, 255, 0.18);
  color: var(--blue);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 100px;
  width: fit-content;
  animation: fadeUp 0.8s 0.1s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.bdot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue);
  animation: blink 2s infinite;
}
@keyframes blink {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.4;
    transform: scale(0.7);
  }
}

/* H1 */
.hero-h1 {
  font-size: clamp(1.9rem, 3.5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.11;
  letter-spacing: -0.03em;
  color: var(--dark);
  animation: fadeUp 0.8s 0.14s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.h1-accent {
  color: var(--blue);
  position: relative;
  display: inline-block;
}
.h1-accent::after {
  content: '';
  position: absolute;
  bottom: 3px;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), #4d8bff);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  animation: lineGrow 0.7s 0.9s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
@keyframes lineGrow {
  to {
    transform: scaleX(1);
  }
}

.hero-desc {
  font-size: clamp(0.92rem, 1.12vw, 1.03rem);
  font-weight: 400;
  line-height: 1.78;
  color: var(--muted);
  max-width: 470px;
  animation: fadeUp 0.8s 0.18s cubic-bezier(0.22, 1, 0.36, 1) both;
}

/* Buttons */
.hero-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  animation: fadeUp 0.8s 0.22s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.btn-p {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--blue);
  color: #fff;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  padding: 15px 28px;
  border-radius: 13px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.25s cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow:
    0 4px 22px rgba(0, 82, 255, 0.32),
    0 1px 4px rgba(0, 82, 255, 0.18);
  position: relative;
  overflow: hidden;
}
.btn-p::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, transparent 55%);
  pointer-events: none;
}
.btn-p:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(0, 82, 255, 0.42);
  background: #0047e0;
}
.btn-ring {
  position: absolute;
  inset: -3px;
  border-radius: 16px;
  border: 2px solid rgba(0, 82, 255, 0.35);
  animation: cring 2.5s 2s infinite;
  pointer-events: none;
}
@keyframes cring {
  0% {
    transform: scale(1);
    opacity: 0.7;
  }
  70% {
    transform: scale(1.07);
    opacity: 0;
  }
  100% {
    transform: scale(1.07);
    opacity: 0;
  }
}
.btn-o {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--dark);
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 0.92rem;
  font-weight: 600;
  padding: 15px 26px;
  border-radius: 13px;
  border: 1.5px solid rgba(10, 15, 30, 0.13);
  cursor: pointer;
  text-decoration: none;
  transition: all 0.25s cubic-bezier(0.22, 1, 0.36, 1);
}
.btn-o:hover {
  border-color: var(--blue);
  color: var(--blue);
  background: rgba(0, 82, 255, 0.04);
  transform: translateY(-2px);
}
.btn-o svg {
  transition: transform 0.25s;
}
.btn-o:hover svg {
  transform: translateX(3px);
}

/* Trust */
.hero-trust {
  display: flex;
  flex-direction: column;
  gap: 7px;
  padding: 15px 20px;
  background: rgba(0, 200, 100, 0.05);
  border: 1px solid rgba(0, 200, 100, 0.15);
  border-radius: 13px;
  width: fit-content;
  animation: fadeUp 0.8s 0.28s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.t-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  color: #1a2a1a;
}

/* Client switcher dots */
.client-dots {
  display: flex;
  align-items: center;
  gap: 8px;
  animation: fadeUp 0.8s 0.32s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.client-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(0, 82, 255, 0.2);
  border: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  padding: 0;
}
.client-dot.active {
  width: 24px;
  border-radius: 4px;
  background: var(--blue);
}
.client-dot-label {
  font-size: 0.72rem;
  font-weight: 700;
  color: #8a93b2;
  margin-left: 4px;
}

/* ═══════════ RIGHT ═══════════ */
.hero-right {
  position: relative;
  animation: fadeUp 0.8s 0.28s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.panel-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 85%;
  height: 85%;
  background: radial-gradient(ellipse, rgba(0, 82, 255, 0.11) 0%, transparent 70%);
  pointer-events: none;
  filter: blur(32px);
}

/* Floating cards */
.stat-card {
  position: absolute;
  background: #fff;
  border-radius: 14px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.09);
  padding: 11px 15px;
  z-index: 2;
  font-family: 'Bricolage Grotesque', sans-serif;
}
.sc1 {
  top: -18px;
  right: -18px;
  animation: floatA 5s ease-in-out infinite;
}
.sc2 {
  bottom: 56px;
  left: -22px;
  animation: floatB 5s 1.3s ease-in-out infinite;
}
@keyframes floatA {
  0%,
  100% {
    transform: translateY(0) rotate(0.4deg);
  }
  50% {
    transform: translateY(-7px) rotate(-0.4deg);
  }
}
@keyframes floatB {
  0%,
  100% {
    transform: translateY(0) rotate(-0.3deg);
  }
  50% {
    transform: translateY(-6px) rotate(0.3deg);
  }
}
.sc-icon {
  font-size: 1rem;
  margin-bottom: 3px;
}
.sc-val {
  font-size: 1rem;
  font-weight: 800;
  color: var(--dark);
  letter-spacing: -0.02em;
}
.sc-val span {
  color: var(--blue);
}
.sc-lbl {
  font-size: 0.66rem;
  font-weight: 600;
  color: #8a93b2;
  margin-top: 1px;
}

/* ── MAIN PANEL ── */
.seo-panel {
  background: #fff;
  border-radius: 22px;
  border: 1px solid var(--border);
  box-shadow:
    0 2px 4px rgba(0, 0, 0, 0.03),
    0 14px 42px rgba(0, 0, 0, 0.08),
    0 42px 80px rgba(0, 0, 0, 0.04);
  padding: 26px;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

/* Client header bar */
.client-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
.client-logo {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
  transition: background 0.4s ease;
}
.client-meta {
  flex: 1;
  min-width: 0;
}
.client-name {
  font-size: 0.84rem;
  font-weight: 800;
  color: var(--dark);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.client-site {
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--green);
  margin-top: 1px;
}
.phase-pill {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.65rem;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 100px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  flex-shrink: 0;
  transition:
    background 0.4s,
    color 0.4s,
    border-color 0.4s;
  border: 1px solid;
}
.phase-pill.before {
  background: rgba(224, 64, 64, 0.1);
  color: #c03010;
  border-color: rgba(224, 64, 64, 0.2);
}
.phase-pill.during {
  background: rgba(255, 160, 0, 0.1);
  color: #b06000;
  border-color: rgba(255, 160, 0, 0.25);
}
.phase-pill.after {
  background: rgba(0, 184, 98, 0.1);
  color: #007a40;
  border-color: rgba(0, 184, 98, 0.25);
}
.pdot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: currentColor;
  animation: blink 1.5s infinite;
}

/* Keyword badge */
.kw-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}
.kw-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--blue-l);
  border: 1px solid rgba(0, 82, 255, 0.15);
  color: var(--blue);
  font-size: 0.72rem;
  font-weight: 800;
  padding: 5px 12px;
  border-radius: 8px;
}
.live-badge {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--green);
}
.live-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  animation: blink 1.5s infinite;
}

/* Ranking list */
.rank-list {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 16px;
  min-height: 160px;
}
.rank-row {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 10px 13px;
  border-radius: 11px;
  background: #f8f9ff;
  border: 1.5px solid transparent;
  position: relative;
  overflow: hidden;
}
.rank-row.you {
  background: linear-gradient(135deg, rgba(0, 82, 255, 0.07), rgba(0, 82, 255, 0.02));
  border-color: rgba(0, 82, 255, 0.22);
}
.rank-row.you.top {
  border-color: rgba(0, 82, 255, 0.45);
  box-shadow: 0 0 0 4px rgba(0, 82, 255, 0.07);
}
.you-chip {
  position: absolute;
  top: -1px;
  right: 11px;
  background: var(--blue);
  color: #fff;
  font-size: 0.57rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 2px 7px;
  border-radius: 0 0 7px 7px;
  opacity: 0;
  transform: translateY(-5px);
  transition: all 0.4s 0.1s cubic-bezier(0.22, 1, 0.36, 1);
}
.rank-row.you .you-chip {
  opacity: 1;
  transform: translateY(0);
}
.rnum {
  width: 27px;
  height: 27px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  font-weight: 800;
  flex-shrink: 0;
}
.rank-row.you .rnum {
  background: var(--blue);
  color: #fff;
}
.rank-row:not(.you) .rnum {
  background: #eef0f8;
  color: #8a93b2;
}
.rinfo {
  flex: 1;
  min-width: 0;
}
.rkw {
  font-size: 0.79rem;
  font-weight: 700;
  color: var(--dark);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.rank-row:not(.you) .rkw {
  color: #5a6280;
}
.rurl {
  font-size: 0.67rem;
  color: var(--green);
  font-weight: 500;
  margin-top: 1px;
}
.rchg {
  font-size: 0.69rem;
  font-weight: 800;
  padding: 4px 8px;
  border-radius: 6px;
  flex-shrink: 0;
}
.rchg.up {
  background: rgba(0, 184, 98, 0.12);
  color: var(--green);
}
.rchg.dn {
  background: rgba(224, 64, 64, 0.1);
  color: var(--red);
}
.rchg.eq {
  background: rgba(138, 147, 178, 0.12);
  color: #8a93b2;
}

/* Progress */
.prog-wrap {
  margin-bottom: 14px;
  padding: 13px 15px;
  background: #f8f9ff;
  border-radius: 13px;
  border: 1px solid rgba(0, 0, 0, 0.05);
}
.prog-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}
.prog-lbl {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--dark);
}
.prog-val {
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--blue);
}
.prog-track {
  height: 7px;
  background: #e8eaf2;
  border-radius: 100px;
  overflow: visible;
  position: relative;
}
.prog-fill {
  height: 100%;
  border-radius: 100px;
  background: linear-gradient(90deg, var(--blue), #4d8bff);
  width: 0%;
  transition: width 1.2s cubic-bezier(0.22, 1, 0.36, 1);
  position: relative;
}
.prog-fill::after {
  content: '';
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%);
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #fff;
  border: 2.5px solid var(--blue);
  box-shadow: 0 0 0 4px rgba(0, 82, 255, 0.18);
}
.prog-months {
  display: flex;
  justify-content: space-between;
  margin-top: 6px;
}
.pm {
  font-size: 0.6rem;
  color: #b0b8d0;
  font-weight: 600;
}
.pm.act {
  color: var(--blue);
}

/* Mini stats */
.mini-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 7px;
  margin-bottom: 14px;
}
.mini-s {
  padding: 9px 11px;
  background: #f8f9ff;
  border-radius: 10px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  text-align: center;
}
.mv {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--dark);
  letter-spacing: -0.02em;
}
.mv.g {
  color: var(--green);
}
.mv.b {
  color: var(--blue);
}
.ml {
  font-size: 0.6rem;
  font-weight: 600;
  color: #8a93b2;
  margin-top: 2px;
}

/* Tags */
.ptags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.ptag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.68rem;
  font-weight: 700;
  padding: 5px 10px;
  border-radius: 100px;
  border: 1px solid;
}
.ptag.b {
  background: rgba(0, 82, 255, 0.06);
  border-color: rgba(0, 82, 255, 0.15);
  color: var(--blue);
}
.ptag.g {
  background: rgba(0, 184, 98, 0.07);
  border-color: rgba(0, 184, 98, 0.18);
  color: #007a40;
}
.ptag.a {
  background: rgba(255, 160, 0, 0.07);
  border-color: rgba(255, 160, 0, 0.18);
  color: #8a5200;
}

/* Phase caption */
.phase-cap {
  text-align: center;
  margin-top: 12px;
  font-size: 0.76rem;
  font-weight: 700;
  color: #8a93b2;
  letter-spacing: 0.02em;
  min-height: 1.3em;
  transition: opacity 0.3s;
}

/* Confetti */
.confetti-wrap {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 10;
  overflow: hidden;
  opacity: 0;
  border-radius: 22px;
  transition: opacity 0.3s;
}
.confetti-wrap.show {
  opacity: 1;
}
.cps {
  position: absolute;
  top: -10px;
  border-radius: 2px;
  animation: cfell 1.8s ease-in forwards;
}
@keyframes cfell {
  0% {
    transform: translateY(0) rotate(0);
    opacity: 1;
  }
  100% {
    transform: translateY(340px) rotate(500deg);
    opacity: 0;
  }
}

/* ─ Responsive ─ */
@media (max-width: 900px) {
  .hero-wrap {
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 0 24px;
  }
  .seo-hero {
    padding: 80px 0 60px;
  }
  .sc1 {
    top: -12px;
    right: 8px;
  }
  .sc2 {
    bottom: 44px;
    left: 8px;
  }
}
@media (max-width: 520px) {
  .hero-btns {
    flex-direction: column;
  }
  .btn-p,
  .btn-o {
    justify-content: center;
  }
  .hero-wrap {
    padding: 0 18px;
  }
  .fomo-bar {
    flex-wrap: wrap;
  }
}
.ps-section {
  background: #0a0b10;
  position: relative;
  overflow: hidden;
  padding: 120px 0 100px;
}

/* ── Atmospheric background layers ── */
.ps-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 20% 20%, rgba(0, 82, 255, 0.07) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 80% 80%, rgba(0, 82, 255, 0.05) 0%, transparent 55%),
    radial-gradient(ellipse 30% 30% at 50% 0%, rgba(0, 82, 255, 0.04) 0%, transparent 50%);
  pointer-events: none;
}

/* Subtle noise grain */
.ps-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
  opacity: 0.6;
}

/* Diagonal separator at top — creates smooth transition from white hero */
.ps-top-divider {
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(to bottom, #ffffff 0%, #0a0b10 100%);
  pointer-events: none;
  z-index: 1;
}

.ps-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
  z-index: 2;
}

/* ── HEADER ── */
.ps-header {
  text-align: center;
  margin-bottom: 72px;
}

.ps-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 82, 255, 0.12);
  border: 1px solid rgba(0, 82, 255, 0.25);
  color: #4d8bff;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 7px 18px;
  border-radius: 100px;
  margin-bottom: 28px;
}

.ps-eyebrow-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #4d8bff;
  animation: psBlink 2s infinite;
}

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

  50% {
    opacity: 0.35;
    transform: scale(0.6);
  }
}

.ps-h2 {
  font-size: clamp(1.7rem, 3.2vw, 2.9rem);
  font-weight: 800;
  line-height: 1.13;
  letter-spacing: -0.03em;
  color: #ffffff;
  max-width: 760px;
  margin: 0 auto 20px;
}

.ps-h2 em {
  font-style: normal;
  color: #4d8bff;
  position: relative;
}

.ps-subtitle {
  font-size: clamp(0.9rem, 1.1vw, 1rem);
  font-weight: 400;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.45);
  max-width: 580px;
  margin: 0 auto;
}

/* ── COMPARISON GRID ── */
.ps-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 56px;
  align-items: stretch;
}

/* ─ Shared card base ─ */
.ps-card {
  border-radius: 22px;
  padding: 38px 36px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* ─ Problem card ─ */
.ps-card-problem {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.ps-card-problem::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.02) 0%, transparent 60%);
  pointer-events: none;
}

/* Diagonal "crossed" watermark */
.ps-card-problem::after {
  content: '✕';
  position: absolute;
  bottom: -20px;
  right: -10px;
  font-size: 9rem;
  font-weight: 900;
  color: rgba(224, 64, 64, 0.04);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

/* ─ Solution card ─ */
.ps-card-solution {
  background: rgba(0, 82, 255, 0.06);
  border: 1px solid rgba(0, 82, 255, 0.3);
  box-shadow:
    0 0 0 1px rgba(0, 82, 255, 0.12),
    0 0 60px rgba(0, 82, 255, 0.12),
    0 0 120px rgba(0, 82, 255, 0.06),
    inset 0 0 40px rgba(0, 82, 255, 0.04);
}

/* Animated glow ring */
.ps-card-solution::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 23px;
  background: linear-gradient(
    135deg,
    rgba(0, 82, 255, 0.4) 0%,
    transparent 30%,
    transparent 70%,
    rgba(0, 82, 255, 0.25) 100%
  );
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask-composite: exclude;
  -webkit-mask-composite: xor;
  padding: 1px;
  pointer-events: none;
  animation: glowRotate 4s linear infinite;
}

@keyframes glowRotate {
  0% {
    opacity: 0.6;
  }

  50% {
    opacity: 1;
  }

  100% {
    opacity: 0.6;
  }
}

.ps-card-solution::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 82, 255, 0.06) 0%, transparent 50%);
  pointer-events: none;
  border-radius: 22px;
}

/* ── Card header ── */
.ps-card-head {
  display: flex;
  align-items: center;
  gap: 14px;
  position: relative;
  z-index: 1;
}

.ps-card-icon {
  width: 46px;
  height: 46px;
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.ps-card-problem .ps-card-icon {
  background: rgba(224, 64, 64, 0.1);
  border: 1px solid rgba(224, 64, 64, 0.18);
}

.ps-card-solution .ps-card-icon {
  background: rgba(0, 82, 255, 0.15);
  border: 1px solid rgba(0, 82, 255, 0.28);
}

.ps-card-label {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  margin-bottom: 3px;
}

.ps-card-problem .ps-card-label {
  color: rgba(224, 64, 64, 0.7);
}

.ps-card-solution .ps-card-label {
  color: rgba(77, 139, 255, 0.85);
}

.ps-card-title {
  font-size: 1.15rem;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.ps-card-problem .ps-card-title {
  color: rgba(255, 255, 255, 0.65);
}

.ps-card-solution .ps-card-title {
  color: #ffffff;
}

/* ── Item list ── */
.ps-items {
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  z-index: 1;
  flex: 1;
}

.ps-item {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  padding: 14px 16px;
  border-radius: 12px;
  transition: transform 0.25s cubic-bezier(0.22, 1, 0.36, 1);
}

.ps-item:hover {
  transform: translateX(4px);
}

/* Problem items */
.ps-card-problem .ps-item {
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

/* Solution items */
.ps-card-solution .ps-item {
  background: rgba(0, 82, 255, 0.07);
  border: 1px solid rgba(0, 82, 255, 0.14);
}

.ps-item-icon {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  flex-shrink: 0;
  margin-top: 1px;
}

.ps-card-problem .ps-item-icon {
  background: rgba(224, 64, 64, 0.1);
  border: 1px solid rgba(224, 64, 64, 0.15);
}

.ps-card-solution .ps-item-icon {
  background: rgba(0, 184, 98, 0.12);
  border: 1px solid rgba(0, 184, 98, 0.2);
}

.ps-item-content {
}

.ps-item-title {
  font-size: 0.84rem;
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 3px;
}

.ps-card-problem .ps-item-title {
  color: rgba(255, 255, 255, 0.55);
}

.ps-card-solution .ps-item-title {
  color: rgba(255, 255, 255, 0.92);
}

.ps-item-desc {
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1.55;
}

.ps-card-problem .ps-item-desc {
  color: rgba(255, 255, 255, 0.28);
}

.ps-card-solution .ps-item-desc {
  color: rgba(255, 255, 255, 0.5);
}

/* Strikethrough effect on problem items */
.ps-card-problem .ps-item-title {
  position: relative;
}

/* ── VS divider (between cards) ── */
.ps-vs {
  display: none;
  /* shown only on mobile */
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.18);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.15em;
}

.ps-vs-line {
  flex: 1;
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
}

.ps-vs-badge {
  padding: 6px 14px;
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

/* ── BOTTOM TRUST BAR ── */
.ps-trust-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 36px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 18px;
  position: relative;
  overflow: hidden;
  flex-wrap: wrap;
}

/* Subtle left accent */
.ps-trust-bar::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom, #0052ff, #4d8bff);
  border-radius: 3px 0 0 3px;
}

.ps-trust-text {
  flex: 1;
  min-width: 280px;
}

.ps-trust-quote {
  font-size: clamp(0.95rem, 1.3vw, 1.1rem);
  font-weight: 700;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.45;
  margin-bottom: 6px;
}

.ps-trust-quote span {
  color: #4d8bff;
}

.ps-trust-sub {
  font-size: 0.78rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.3);
}

/* CTA button */
.ps-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: #0052ff;
  color: #fff;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  padding: 15px 28px;
  border-radius: 13px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.25s cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow:
    0 4px 24px rgba(0, 82, 255, 0.35),
    0 1px 4px rgba(0, 82, 255, 0.2);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  flex-shrink: 0;
}

.ps-cta-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, transparent 55%);
  pointer-events: none;
}

.ps-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 36px rgba(0, 82, 255, 0.48);
  background: #0047e0;
}

.ps-cta-btn svg {
  transition: transform 0.25s;
}

.ps-cta-btn:hover svg {
  transform: translateX(3px);
}

/* Pulse ring on button */
.ps-btn-ring {
  position: absolute;
  inset: -4px;
  border-radius: 17px;
  border: 2px solid rgba(0, 82, 255, 0.4);
  animation: psCTARing 2.8s 1.5s infinite;
  pointer-events: none;
}

@keyframes psCTARing {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }

  70% {
    transform: scale(1.08);
    opacity: 0;
  }

  100% {
    transform: scale(1.08);
    opacity: 0;
  }
}

/* ── Scroll-reveal animations ── */
.ps-reveal {
  opacity: 0;
  transform: translateY(32px);
  transition:
    opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.ps-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.ps-reveal-delay-1 {
  transition-delay: 0.1s;
}

.ps-reveal-delay-2 {
  transition-delay: 0.2s;
}

.ps-reveal-delay-3 {
  transition-delay: 0.3s;
}

.ps-reveal-delay-4 {
  transition-delay: 0.4s;
}

/* ── RESPONSIVE ── */
@media (max-width: 860px) {
  .ps-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .ps-vs {
    display: flex;
  }

  .ps-section {
    padding: 90px 0 80px;
  }

  .ps-inner {
    padding: 0 24px;
  }

  .ps-card {
    padding: 28px 24px;
  }

  .ps-trust-bar {
    padding: 22px 24px;
  }

  .ps-header {
    margin-bottom: 52px;
  }
}

@media (max-width: 560px) {
  .ps-inner {
    padding: 0 18px;
  }

  .ps-trust-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }

  .ps-cta-btn {
    width: 100%;
    justify-content: center;
  }

  .ps-card {
    padding: 24px 20px;
  }
}

/* ══════════════════════════════════
         SECTION 3 — VS Checklist (Light)
      ══════════════════════════════════ */
.vs-section {
  font-family: 'Bricolage Grotesque', sans-serif;
  background: #f8f9fc;
  position: relative;
  overflow: hidden;
  padding: 120px 0 110px;
}

/* Top wave transition from dark section 2 */
.vs-top-wave {
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  height: 90px;
  background: #0a0b10;
  clip-path: ellipse(55% 100% at 50% 0%);
  pointer-events: none;
  z-index: 1;
}

/* Subtle dot grid */
.vs-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(0, 82, 255, 0.045) 1px, transparent 1px);
  background-size: 34px 34px;
  pointer-events: none;
}

/* Soft blue radial center glow */
.vs-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 50% at 50% 40%, rgba(0, 82, 255, 0.04) 0%, transparent 65%);
  pointer-events: none;
}

.vs-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
  z-index: 2;
}

/* ── Header ── */
.vs-header {
  text-align: center;
  margin-bottom: 68px;
}

.vs-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 82, 255, 0.08);
  border: 1px solid rgba(0, 82, 255, 0.2);
  color: #0052ff;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 7px 18px;
  border-radius: 100px;
  margin-bottom: 26px;
}

.vs-eyebrow-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #0052ff;
  animation: vsBlink 2s infinite;
}

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

  50% {
    opacity: 0.35;
    transform: scale(0.6);
  }
}

.vs-h2 {
  font-size: clamp(1.75rem, 3.2vw, 3rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: #0a0f1e;
  max-width: 720px;
  margin: 0 auto 18px;
}

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

.vs-subtitle {
  font-size: clamp(0.9rem, 1.1vw, 1rem);
  font-weight: 400;
  line-height: 1.75;
  color: #6b7494;
  max-width: 560px;
  margin: 0 auto;
}

/* ── Grid ── */
.vs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin-bottom: 52px;
  align-items: start;
}

/* ── Shared card ── */
.vs-card {
  border-radius: 22px;
  overflow: hidden;
  position: relative;
}

/* ── Sıradan (left) card ── */
.vs-card-bad {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

/* ── Blue Medya (right) card ── */
.vs-card-good {
  background: #fff;
  border: 1px solid rgba(0, 82, 255, 0.22);
  box-shadow:
    0 0 0 1px rgba(0, 82, 255, 0.08),
    0 8px 40px rgba(0, 82, 255, 0.1),
    0 32px 80px rgba(0, 82, 255, 0.06);
}

/* Glowing top border accent */
.vs-card-good::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #0052ff, #4d8bff, #0052ff);
  background-size: 200% 100%;
  animation: vsShimmer 3s linear infinite;
}

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

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

/* ── Card header ── */
.vs-card-head {
  padding: 28px 30px 22px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  display: flex;
  align-items: center;
  gap: 14px;
}

.vs-card-good .vs-card-head {
  border-bottom-color: rgba(0, 82, 255, 0.1);
}

.vs-head-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.vs-card-bad .vs-head-icon {
  background: rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.vs-card-good .vs-head-icon {
  background: rgba(0, 82, 255, 0.1);
  border: 1px solid rgba(0, 82, 255, 0.2);
}

.vs-head-meta {
}

.vs-head-tag {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 3px;
}

.vs-card-bad .vs-head-tag {
  color: #aab0c8;
}

.vs-card-good .vs-head-tag {
  color: rgba(0, 82, 255, 0.7);
}

.vs-head-title {
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.vs-card-bad .vs-head-title {
  color: #8a93b2;
}

.vs-card-good .vs-head-title {
  color: #0a0f1e;
}

/* Recommended pill on good card */
.vs-recommended {
  margin-left: auto;
  background: rgba(0, 184, 98, 0.1);
  border: 1px solid rgba(0, 184, 98, 0.22);
  color: #007a40;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
  flex-shrink: 0;
}

/* ── Checklist items ── */
.vs-list {
  padding: 24px 30px 28px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.vs-item {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  transition: background 0.2s;
}

.vs-card-good .vs-item {
  border-bottom-color: rgba(0, 82, 255, 0.07);
}

.vs-item:last-child {
  border-bottom: none;
}

.vs-item:hover {
  background: rgba(0, 82, 255, 0.02);
  margin: 0 -8px;
  padding-left: 8px;
  padding-right: 8px;
  border-radius: 8px;
}

.vs-item-marker {
  width: 26px;
  height: 26px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  flex-shrink: 0;
  margin-top: 1px;
}

.vs-card-bad .vs-item-marker {
  background: rgba(224, 64, 64, 0.08);
  border: 1px solid rgba(224, 64, 64, 0.15);
}

.vs-card-good .vs-item-marker {
  background: rgba(0, 184, 98, 0.1);
  border: 1px solid rgba(0, 184, 98, 0.2);
}

.vs-item-text {
  flex: 1;
}

.vs-item-main {
  font-size: 0.85rem;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 3px;
}

.vs-card-bad .vs-item-main {
  color: #5a6280;
}

.vs-card-good .vs-item-main {
  color: #0a0f1e;
}

.vs-item-sub {
  font-size: 0.73rem;
  font-weight: 400;
  line-height: 1.55;
}

.vs-card-bad .vs-item-sub {
  color: #aab0c8;
}

.vs-card-good .vs-item-sub {
  color: #6b7494;
}

/* ── VS badge between cards (desktop absolute, mobile separate) ── */
.vs-divider-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

/* On desktop this sits between the two grid columns — achieved via grid overlap trick */
.vs-badge-center {
  display: none;
  /* handled by JS positioning on desktop */
}

/* ── Score footer inside card ── */
.vs-card-score {
  margin: 0 30px 24px;
  padding: 12px 16px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.vs-card-bad .vs-card-score {
  background: rgba(224, 64, 64, 0.05);
  border: 1px solid rgba(224, 64, 64, 0.1);
}

.vs-card-good .vs-card-score {
  background: rgba(0, 82, 255, 0.06);
  border: 1px solid rgba(0, 82, 255, 0.14);
}

.vs-score-label {
  font-size: 0.72rem;
  font-weight: 700;
  flex: 1;
}

.vs-card-bad .vs-score-label {
  color: #e04040;
}

.vs-card-good .vs-score-label {
  color: #0052ff;
}

.vs-score-stars {
  font-size: 0.85rem;
  letter-spacing: 2px;
}

/* ── Bottom CTA ── */
.vs-cta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  padding: 30px 36px;
  background: linear-gradient(135deg, #0a0f1e 0%, #0d1428 100%);
  border-radius: 20px;
  position: relative;
  overflow: hidden;
}

/* Glow inside CTA row */
.vs-cta-row::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 20% 50%, rgba(0, 82, 255, 0.18) 0%, transparent 60%),
    radial-gradient(ellipse 40% 60% at 85% 50%, rgba(0, 82, 255, 0.1) 0%, transparent 55%);
  pointer-events: none;
}

.vs-cta-row::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 82, 255, 0.5), transparent);
}

.vs-cta-text {
  position: relative;
  z-index: 1;
  flex: 1;
  min-width: 260px;
}

.vs-cta-headline {
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.35;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}

.vs-cta-headline span {
  color: #4d8bff;
}

.vs-cta-sub {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.38);
  font-weight: 500;
}

.vs-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #0052ff;
  color: #fff;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  padding: 15px 28px;
  border-radius: 13px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  overflow: hidden;
  transition: all 0.25s cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow: 0 4px 24px rgba(0, 82, 255, 0.4);
}

.vs-cta-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, transparent 55%);
  pointer-events: none;
}

.vs-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 36px rgba(0, 82, 255, 0.55);
  background: #0047e0;
}

.vs-cta-btn svg {
  transition: transform 0.25s;
}

.vs-cta-btn:hover svg {
  transform: translateX(3px);
}

.vs-btn-ring {
  position: absolute;
  inset: -4px;
  border-radius: 17px;
  border: 2px solid rgba(0, 82, 255, 0.45);
  animation: vsCTARing 2.5s 1s infinite;
  pointer-events: none;
}

@keyframes vsCTARing {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }

  70% {
    transform: scale(1.08);
    opacity: 0;
  }

  100% {
    transform: scale(1.08);
    opacity: 0;
  }
}

/* ── Scroll reveal ── */
.vs-reveal {
  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);
}

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

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

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

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

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

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

  .vs-section {
    padding: 90px 0 80px;
  }

  .vs-inner {
    padding: 0 24px;
  }

  .vs-header {
    margin-bottom: 48px;
  }

  .vs-cta-row {
    padding: 24px 22px;
  }
}

@media (max-width: 540px) {
  .vs-inner {
    padding: 0 18px;
  }

  .vs-cta-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }

  .vs-cta-btn {
    width: 100%;
    justify-content: center;
  }

  .vs-card-head {
    padding: 22px 22px 18px;
  }

  .vs-list {
    padding: 18px 22px 22px;
  }

  .vs-card-score {
    margin: 0 22px 20px;
  }
}

/* ══════════════════════════════════════
           SECTION 4 — SEO Arsenal (Dark Bento)
        ══════════════════════════════════════ */
.arsenal-section {
  font-family: 'Bricolage Grotesque', sans-serif;
  background: #0a0b10;
  position: relative;
  overflow: hidden;
  padding: 120px 0 110px;
}

/* Top transition: light → dark */
.arsenal-top-wave {
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  height: 88px;
  background: #f8f9fc;
  clip-path: ellipse(55% 100% at 50% 0%);
  pointer-events: none;
  z-index: 1;
}

/* Atmospheric glows */
.arsenal-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 45% at 15% 25%, rgba(0, 82, 255, 0.07) 0%, transparent 60%),
    radial-gradient(ellipse 45% 40% at 88% 70%, rgba(0, 82, 255, 0.05) 0%, transparent 55%),
    radial-gradient(ellipse 35% 35% at 55% 100%, rgba(0, 200, 100, 0.04) 0%, transparent 50%);
  pointer-events: none;
}

/* Grid dot texture */
.arsenal-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.022) 1px, transparent 1px);
  background-size: 30px 30px;
  pointer-events: none;
  opacity: 0.7;
}

.arsenal-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
  z-index: 2;
}

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

.arsenal-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 200, 100, 0.1);
  border: 1px solid rgba(0, 200, 100, 0.25);
  color: #00c864;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 7px 18px;
  border-radius: 100px;
  margin-bottom: 26px;
}

.arsenal-eyebrow-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #00c864;
  animation: arsDot 2s infinite;
}

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

  50% {
    opacity: 0.3;
    transform: scale(0.55);
  }
}

.arsenal-h2 {
  font-size: clamp(1.75rem, 3.3vw, 3rem);
  font-weight: 800;
  line-height: 1.11;
  letter-spacing: -0.03em;
  color: #fff;
  max-width: 740px;
  margin: 0 auto 18px;
}

.arsenal-h2 em {
  font-style: normal;
  background: linear-gradient(90deg, #0052ff, #4d8bff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.arsenal-subtitle {
  font-size: clamp(0.88rem, 1.1vw, 1rem);
  font-weight: 400;
  line-height: 1.78;
  color: rgba(255, 255, 255, 0.38);
  max-width: 580px;
  margin: 0 auto;
}

/* ── Bento Grid ── */
.arsenal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 56px;
}

/* Card base */
.ars-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 30px 28px;
  position: relative;
  overflow: hidden;
  cursor: default;
  transition:
    transform 0.32s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.32s ease,
    box-shadow 0.32s ease;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* Hover lift + glow */
.ars-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 82, 255, 0.35);
  box-shadow:
    0 0 0 1px rgba(0, 82, 255, 0.12),
    0 12px 40px rgba(0, 82, 255, 0.15),
    0 32px 80px rgba(0, 82, 255, 0.08);
}

/* Inner glow sweep on hover */
.ars-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(0, 82, 255, 0.1) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
  border-radius: 20px;
}

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

/* Top accent line — hidden until hover */
.ars-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #0052ff, #4d8bff, transparent);
  border-radius: 20px 20px 0 0;
  opacity: 0;
  transform: scaleX(0.4);
  transition:
    opacity 0.35s ease,
    transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

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

/* ── Card icon box ── */
.ars-icon-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
}

.ars-icon {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
  background: rgba(0, 82, 255, 0.1);
  border: 1px solid rgba(0, 82, 255, 0.2);
  transition:
    background 0.3s,
    border-color 0.3s,
    transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.ars-card:hover .ars-icon {
  background: rgba(0, 82, 255, 0.2);
  border-color: rgba(0, 82, 255, 0.4);
  transform: scale(1.08) rotate(-3deg);
}

.ars-card-num {
  font-size: 0.65rem;
  font-weight: 800;
  color: rgba(0, 82, 255, 0.5);
  letter-spacing: 0.1em;
}

/* ── Card text ── */
.ars-card-title {
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: #fff;
}

.ars-card-title .ars-title-sub {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  color: rgba(0, 82, 255, 0.7);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.ars-card-desc {
  font-size: 0.8rem;
  font-weight: 400;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.38);
  flex: 1;
}

/* Tag pill at bottom of card */
.ars-card-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(0, 82, 255, 0.08);
  border: 1px solid rgba(0, 82, 255, 0.14);
  color: rgba(77, 139, 255, 0.8);
  font-size: 0.66rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 100px;
  width: fit-content;
  letter-spacing: 0.06em;
  transition:
    background 0.3s,
    color 0.3s;
}

.ars-card:hover .ars-card-tag {
  background: rgba(0, 82, 255, 0.16);
  color: #4d8bff;
}

/* ── Bottom CTA ── */
.arsenal-cta {
  text-align: center;
  padding: 48px 40px;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 22px;
  position: relative;
  overflow: hidden;
}

/* Animated gradient border glow */
.arsenal-cta::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 23px;
  background: conic-gradient(
    from 0deg,
    transparent 0deg,
    rgba(0, 82, 255, 0.5) 60deg,
    rgba(0, 82, 255, 0.1) 120deg,
    transparent 180deg,
    transparent 240deg,
    rgba(0, 82, 255, 0.3) 300deg,
    transparent 360deg
  );
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask-composite: exclude;
  -webkit-mask-composite: xor;
  padding: 1px;
  animation: ctaBorderSpin 6s linear infinite;
  pointer-events: none;
}

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

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

.arsenal-cta::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 70% at 50% 50%, rgba(0, 82, 255, 0.06) 0%, transparent 65%);
  pointer-events: none;
}

.arsenal-cta-inner {
  position: relative;
  z-index: 1;
}

.arsenal-cta-headline {
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.025em;
  line-height: 1.3;
  margin-bottom: 10px;
}

.arsenal-cta-headline span {
  color: #4d8bff;
}

.arsenal-cta-sub {
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.32);
  margin-bottom: 28px;
  line-height: 1.6;
}

/* Glowing CTA button */
.arsenal-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: #0052ff;
  color: #fff;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  padding: 16px 32px;
  border-radius: 14px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: all 0.28s cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow:
    0 0 0 0 rgba(0, 82, 255, 0.5),
    0 4px 24px rgba(0, 82, 255, 0.4);
  animation: arsGlow 3s 1s ease-in-out infinite;
}

@keyframes arsGlow {
  0%,
  100% {
    box-shadow:
      0 0 0 0 rgba(0, 82, 255, 0.4),
      0 4px 24px rgba(0, 82, 255, 0.4);
  }

  50% {
    box-shadow:
      0 0 0 10px rgba(0, 82, 255, 0),
      0 6px 32px rgba(0, 82, 255, 0.6);
  }
}

.arsenal-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.18) 0%, transparent 55%);
  pointer-events: none;
}

.arsenal-btn:hover {
  transform: translateY(-3px) scale(1.02);
  background: #0047e0;
  box-shadow:
    0 0 0 6px rgba(0, 82, 255, 0.15),
    0 14px 40px rgba(0, 82, 255, 0.55);
}

.arsenal-btn svg {
  transition: transform 0.25s;
}

.arsenal-btn:hover svg {
  transform: translateX(4px);
}

/* Social proof micro row */
.arsenal-social-proof {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 24px;
  flex-wrap: wrap;
}

.asp-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.73rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.3);
}

.asp-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
}

/* ── Scroll reveal ── */
.ars-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

.ars-reveal.vis {
  opacity: 1;
  transform: translateY(0);
}

.ars-d1 {
  transition-delay: 0.06s;
}

.ars-d2 {
  transition-delay: 0.12s;
}

.ars-d3 {
  transition-delay: 0.18s;
}

.ars-d4 {
  transition-delay: 0.24s;
}

.ars-d5 {
  transition-delay: 0.3s;
}

.ars-d6 {
  transition-delay: 0.36s;
}

.ars-d7 {
  transition-delay: 0.44s;
}

/* ── Responsive ── */
@media (max-width: 960px) {
  .arsenal-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 860px) {
  .arsenal-section {
    padding: 90px 0 80px;
  }

  .arsenal-inner {
    padding: 0 24px;
  }

  .arsenal-header {
    margin-bottom: 48px;
  }

  .arsenal-cta {
    padding: 36px 28px;
  }
}

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

  .arsenal-inner {
    padding: 0 18px;
  }

  .arsenal-cta {
    padding: 28px 20px;
  }

  .arsenal-btn {
    width: 100%;
    justify-content: center;
  }
}

