:root {
  --bg-base: #f5f7ff;
  --bg-surface: #ffffff;
  --bg-elevated: #eef1fb;
  --blue-elec: #1a5fe8;
  --blue-bright: #2d7af0;
  --blue-soft: #e8f0fe;
  --blue-glow: rgba(26, 95, 232, 0.35);
  --blue-glass: rgba(26, 95, 232, 0.08);
  --text-main: #0d1b3e;
  --text-sub: #2a3a6a;
  --text-muted: #6b7faa;
  --border-soft: rgba(26, 95, 232, 0.1);
  --border-med: rgba(26, 95, 232, 0.2);
  --radius-btn: 10px;
  --radius-card: 18px;
  --ff-head: 'Bricolage Grotesque', sans-serif;
  --ff-body: 'Inter', sans-serif;
  /* visual canvas tokens */
  --canvas-bg: #ffffff;
  --card-border: rgba(26, 95, 232, 0.13);
  --card-bg: rgba(248, 250, 255, 0.9);
  --r-sm: 12px;
  --dark-2: #3d4050;
  --dark: #0a0b10;
  --red: #ef4444;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background: var(--bg-base);
}

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

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

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

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

  50% {
    opacity: 0.65;
  }
}
/* ─── HERO WRAPPER ─── */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  font-family: 'Bricolage Grotesque', sans-serif!important;
  align-items: center;
  background: var(--bg-base);
  overflow: hidden;
  font-family: var(--ff-body);
}

/* ─── MESH GRADIENT BACKGROUND ─── */
.hero__mesh {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse 60% 50% at 70% 30%, rgba(26, 95, 232, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 15% 70%, rgba(26, 95, 232, 0.05) 0%, transparent 70%),
    radial-gradient(ellipse 80% 60% at 50% 100%, rgba(238, 241, 251, 0.8) 0%, transparent 80%),
    linear-gradient(165deg, #f5f7ff 0%, #eef1fb 50%, #f0f4ff 100%);
}

/* ─── ANIMATED GRID ─── */
.hero__grid {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image:
    linear-gradient(rgba(26, 95, 232, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26, 95, 232, 0.04) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: radial-gradient(ellipse 90% 85% at 50% 50%, black 30%, transparent 100%);
  animation: gridDrift 18s linear infinite;
}
@keyframes gridDrift {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 52px 52px;
  }
}

/* ─── FLOATING ORBS ─── */
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  animation: orbFloat 8s ease-in-out infinite alternate;
  z-index: 1;
}
.orb--1 {
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(26, 95, 232, 0.12) 0%, transparent 70%);
  top: -10%;
  right: 8%;
  animation-duration: 9s;
}
.orb--2 {
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(45, 122, 240, 0.08) 0%, transparent 70%);
  bottom: 15%;
  left: 2%;
  animation-duration: 11s;
  animation-delay: -3s;
}
@keyframes orbFloat {
  from {
    transform: translateY(0) scale(1);
  }
  to {
    transform: translateY(-30px) scale(1.06);
  }
}

/* ─── INNER LAYOUT ─── */
.hero__inner {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 23px 0 85px;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: center;
}

/* ═══════════════════════════════════════════
   LEFT COLUMN – COPY
═══════════════════════════════════════════ */
.hero__copy {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  padding: 6px 14px;
  border: 1px solid var(--border-med);
  border-radius: 100px;
  background: var(--blue-glass);
  backdrop-filter: blur(8px);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue-elec);
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.6s cubic-bezier(0.22, 1, 0.36, 1) 0.1s forwards;
}
.hero__eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue-bright);
  box-shadow: 0 0 8px var(--blue-bright);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.4;
    transform: scale(0.7);
  }
}

.hero__h1 {
  font-family: var(--ff-head);
  font-size: clamp(2.1rem, 4.2vw, 3.6rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--text-main);
  opacity: 0;
  transform: translateY(28px);
  animation: fadeUp 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.25s forwards;
}
.hero__h1 em {
  font-style: normal;
  background: linear-gradient(110deg, #1a5fe8 0%, #2d7af0 50%, #1a5fe8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__sub {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--dark-2);
  max-width: 500px;
  opacity: 0;
  transform: translateY(24px);
  animation: fadeUp 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.42s forwards;
}
.hero__sub strong,.hero__sub b {
  color: var(--dark);
  font-weight: 600;
}

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 6px;
  opacity: 0;
  transform: translateY(22px);
  animation: fadeUp 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.58s forwards;
}

.hero__trust {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 2px;
  opacity: 0;
  transform: translateY(16px);
  animation: fadeUp 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.74s forwards;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  color: var(--text-muted);
}
.trust-icon {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: rgba(16, 185, 129, 0.12);
  border: 1px solid rgba(16, 185, 129, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
}
.trust-icon svg {
  width: 9px;
  height: 9px;
}
.trust-divider {
  width: 1px;
  height: 16px;
  background: var(--border-soft);
}

/* ═══════════════════════════════════════════
   RIGHT COLUMN – INTERACTIVE CODE CANVAS
═══════════════════════════════════════════ */
.hero__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 520px;
  padding-bottom: 72px;
  opacity: 0;
  transform: translateY(32px) scale(0.97);
  animation: fadeUp 0.85s cubic-bezier(0.22, 1, 0.36, 1) 0.35s forwards;
}

/* ── MAIN CANVAS CARD ── */
.canvas-card {
  width: 100%;
  max-width: 520px;
  background: var(--canvas-bg);
  border: 1px solid var(--card-border);
  border-radius: 20px;
  overflow: hidden;
  box-shadow:
    0 4px 6px rgba(0, 0, 0, 0.03),
    0 20px 60px rgba(26, 95, 232, 0.1),
    0 0 0 1px rgba(26, 95, 232, 0.06);
  position: relative;
  z-index: 2;
}

/* toolbar */
.canvas-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 16px;
  background: #f8f9fc;
  border-bottom: 1px solid rgba(26, 95, 232, 0.08);
}
.canvas-dots {
  display: flex;
  gap: 6px;
}
.canvas-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
}
.canvas-dot:nth-child(1) {
  background: #ff5f57;
}
.canvas-dot:nth-child(2) {
  background: #febc2e;
}
.canvas-dot:nth-child(3) {
  background: #28c840;
}

.canvas-url {
  flex: 1;
  height: 26px;
  border-radius: 6px;
  background: #fff;
  border: 1px solid rgba(26, 95, 232, 0.1);
  display: flex;
  align-items: center;
  padding: 0 10px;
  gap: 6px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}
.canvas-url-icon {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #28c840;
  flex-shrink: 0;
}
.canvas-url-text {
  font-size: 0.68rem;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}

/* ── CODE EDITOR AREA ── */
.code-area {
  padding: 0;
  background: #fafbff;
  position: relative;
  min-height: 380px;
  display: flex;
  flex-direction: column;
}

/* Tab bar */
.tabs {
  display: flex;
  align-items: center;
  background: #f1f4fb;
  border-bottom: 1px solid rgba(26, 95, 232, 0.08);
  padding: 0 12px;
  gap: 2px;
}
.tab {
  padding: 8px 14px;
  font-size: 0.72rem;
  font-family: 'JetBrains Mono', 'Fira Code', monospace;
  color: var(--text-muted);
  border-radius: 6px 6px 0 0;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  transition: all 0.2s;
  white-space: nowrap;
}
.tab.active {
  color: var(--blue-elec);
  background: #fafbff;
  border-bottom-color: var(--blue-elec);
  font-weight: 600;
}
.tab-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  margin-right: 5px;
}

/* Code content */
.code-content {
  display: none;
  padding: 16px 6px 16px 0;
  overflow: hidden;
  flex: 1;
}
.code-content.visible {
  display: flex;
}

.line-numbers {
  display: flex;
  flex-direction: column;
  padding: 0 10px;
  gap: 0;
  user-select: none;
  flex-shrink: 0;
}
.ln {
  font-size: 0.7rem;
  font-family: 'JetBrains Mono', 'Fira Code', monospace;
  color: #c0c8e0;
  line-height: 1.7;
  text-align: right;
  min-width: 20px;
}

.code-lines {
  flex: 1;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.code-line {
  font-size: 0.72rem;
  font-family: 'JetBrains Mono', 'Fira Code', monospace;
  line-height: 1.7;
  overflow: hidden;
  padding-right: 12px;
  opacity: 0;
  transform: translateX(-6px);
}

/* Syntax colors — light theme */
.c-kw {
  color: #7c3aed;
  font-weight: 600;
} /* keyword */
.c-fn {
  color: #0369a1;
} /* function */
.c-str {
  color: #16a34a;
} /* string */
.c-num {
  color: #ea580c;
} /* number */
.c-cm {
  color: #94a3b8;
  font-style: italic;
} /* comment */
.c-tag {
  color: #be185d;
} /* tag */
.c-atr {
  color: #0369a1;
} /* attribute */
.c-val {
  color: #16a34a;
} /* value */
.c-br {
  color: #6366f1;
} /* bracket */
.c-tx {
  color: #334155;
} /* normal text */
.c-cls {
  color: #be185d;
} /* class */
.c-prp {
  color: #0369a1;
} /* property */
.c-op {
  color: #7c3aed;
} /* operator */

/* Typing cursor */
.cursor {
  display: inline-block;
  width: 2px;
  height: 0.85em;
  background: var(--blue-elec);
  vertical-align: text-bottom;
  border-radius: 1px;
  animation: blink 1s step-end infinite;
}
@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}

/* Highlight line */
.code-line.active-line {
  background: rgba(26, 95, 232, 0.055);
  border-radius: 4px;
}

/* ── Bottom preview strip ── */
.preview-strip {
  padding: 14px 16px;
  background: #fff;
  border-top: 1px solid rgba(26, 95, 232, 0.08);
  display: flex;
  align-items: center;
  gap: 10px;
}
.preview-label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.preview-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 3px 10px;
  border-radius: 100px;
  font-size: 0.68rem;
  font-weight: 600;
  background: rgba(16, 185, 129, 0.1);
  color: #059669;
  border: 1px solid rgba(16, 185, 129, 0.2);
}
.preview-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #10b981;
  animation: pulse 2s infinite;
}
.preview-bar {
  flex: 1;
  height: 4px;
  background: rgba(26, 95, 232, 0.08);
  border-radius: 100px;
  overflow: hidden;
}
.preview-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--blue-elec), #10b981);
  border-radius: 100px;
  width: 0;
  transition: width 1.5s cubic-bezier(0.22, 1, 0.36, 1);
}

/* ── FLOATING BADGES ── */
.badge-float {
  position: absolute;
  bottom: 28px;
  left: -28px;
  z-index: 10;
  background: #fff;
  border: 1px solid rgba(26, 95, 232, 0.2);
  border-radius: 14px;
  padding: 12px 16px;
  box-shadow:
    0 8px 32px rgba(26, 95, 232, 0.12),
    0 2px 8px rgba(0, 0, 0, 0.06);
  display: flex;
  align-items: center;
  gap: 11px;
  opacity: 0;
  animation:
    badgeIn 0.6s cubic-bezier(0.22, 1, 0.36, 1) 1.1s forwards,
    float1 5s ease-in-out 1.7s infinite alternate;
}
@keyframes badgeIn {
  from {
    opacity: 0;
    transform: translateX(-14px) scale(0.92);
  }
  to {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}
@keyframes float1 {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-8px);
  }
}
.badge-icon {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: linear-gradient(135deg, var(--blue-elec), #2d7af0);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(26, 95, 232, 0.3);
}
.badge-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.badge-val {
  font-family: var(--ff-head);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text-main);
  line-height: 1;
}
.badge-val span {
  color: #059669;
}
.badge-label {
  font-size: 0.68rem;
  color: var(--text-muted);
  white-space: nowrap;
}

.badge-float2 {
  position: absolute;
  top: 16px;
  right: -22px;
  z-index: 10;
  background: #fff;
  border: 1px solid rgba(26, 95, 232, 0.18);
  border-radius: 14px;
  padding: 11px 15px;
  box-shadow:
    0 8px 32px rgba(26, 95, 232, 0.1),
    0 2px 8px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  gap: 7px;
  min-width: 138px;
  opacity: 0;
  animation:
    badgeIn2 0.6s cubic-bezier(0.22, 1, 0.36, 1) 1.3s forwards,
    float2 6s ease-in-out 1.9s infinite alternate;
}
@keyframes badgeIn2 {
  from {
    opacity: 0;
    transform: translateX(14px) scale(0.92);
  }
  to {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}
@keyframes float2 {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(10px);
  }
}
.badge2-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.badge2-title {
  font-size: 0.7rem;
  color: var(--text-muted);
  font-weight: 500;
}
.badge2-score {
  font-family: var(--ff-head);
  font-weight: 800;
  font-size: 1.1rem;
  color: #059669;
}
.score-bar-track {
  width: 100%;
  height: 4px;
  background: rgba(26, 95, 232, 0.08);
  border-radius: 100px;
  overflow: hidden;
}
.score-bar-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--blue-elec), #10b981);
  border-radius: 100px;
  animation: fillBar 1.2s cubic-bezier(0.22, 1, 0.36, 1) 1.8s forwards;
}
@keyframes fillBar {
  from {
    width: 0%;
  }
  to {
    width: 97%;
  }
}
.score-metrics {
  display: flex;
  justify-content: space-between;
}
.score-metric {
  font-size: 0.64rem;
  color: var(--text-muted);
}
.score-metric span {
  color: var(--text-sub);
  font-weight: 600;
}


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;
  }
}
/* ═══════════════════════════════════════════
   COMPLETION OVERLAY – "Step tamamlandı"
═══════════════════════════════════════════ */
.step-overlay {
  position: absolute;
  inset: 0;
  z-index: 30;
  border-radius: 20px;
  backdrop-filter: blur(10px) brightness(0.96);
  background: rgba(255, 255, 255, 0.72);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}
.step-overlay.visible {
  opacity: 1;
  pointer-events: all;
}

.step-overlay-icon {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: 0 8px 28px rgba(26, 95, 232, 0.18);
  animation: iconPop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}
@keyframes iconPop {
  from {
    transform: scale(0.5);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.step-overlay-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  animation: fadeUp 0.4s ease 0.15s both;
}
.step-overlay-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}

.step-overlay-title {
  font-family: var(--ff-head);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--text-main);
  text-align: center;
  padding: 0 24px;
  line-height: 1.2;
  animation: fadeUp 0.4s ease 0.2s both;
}

.step-overlay-desc {
  font-size: 0.82rem;
  color: var(--text-muted);
  text-align: center;
  max-width: 320px;
  line-height: 1.6;
  padding: 0 20px;
  animation: fadeUp 0.4s ease 0.28s both;
}
.step-overlay-desc strong {
  color: var(--blue-elec);
  font-weight: 600;
}

/* progress ring */
.step-overlay-ring {
  margin-top: 4px;
  animation: fadeUp 0.4s ease 0.35s both;
}
.ring-track {
  fill: none;
  stroke: rgba(26, 95, 232, 0.1);
  stroke-width: 3;
}
.ring-fill {
  fill: none;
  stroke-width: 3;
  stroke-linecap: round;
  transform: rotate(-90deg);
  transform-origin: 50% 50%;
  stroke-dasharray: 113;
  stroke-dashoffset: 113;
  transition: stroke-dashoffset 4s linear;
}
.ring-fill.running {
  stroke-dashoffset: 0;
}

/* ═══════════════════════════════════════════
   ESNAF TOOLTIP – "Bu ne demek?" balonu
═══════════════════════════════════════════ */
.esnaf-tip {
  position: absolute;
  bottom: -60px;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  z-index: 20;
  width: calc(100% + 16px);
  max-width: 480px;
  background: #fff;
  border: 1.5px solid rgba(26, 95, 232, 0.18);
  border-radius: 14px;
  padding: 13px 16px 13px 14px;
  box-shadow:
    0 8px 32px rgba(26, 95, 232, 0.1),
    0 2px 8px rgba(0, 0, 0, 0.06);
  display: flex;
  align-items: flex-start;
  gap: 11px;
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 0.35s ease,
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
.esnaf-tip.visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
/* küçük ok yukarıya bakan */
.esnaf-tip::before {
  content: '';
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 14px;
  height: 8px;
  background: #fff;
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  filter: drop-shadow(0 -2px 2px rgba(26, 95, 232, 0.1));
}
.esnaf-tip-emoji {
  font-size: 1.3rem;
  line-height: 1;
  flex-shrink: 0;
  margin-top: 1px;
}
.esnaf-tip-body {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.esnaf-tip-title {
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--text-main);
  line-height: 1.2;
}
.esnaf-tip-desc {
  font-size: 0.7rem;
  color: var(--text-muted);
  line-height: 1.5;
}
.esnaf-tip-desc strong {
  color: var(--blue-elec);
  font-weight: 600;
}

/* ═══════════════════════════════════════════
   FOMO – Canlı aktivite şeridi
═══════════════════════════════════════════ */
.fomo-bar {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 13px;
  border-radius: 100px;
  background: #fff;
  border: 1px solid rgba(239, 68, 68, 0.18);
  box-shadow: 0 2px 10px rgba(239, 68, 68, 0.07);
  width: fit-content;
  opacity: 0;
  transform: translateY(10px);
  animation: fadeUp 0.6s cubic-bezier(0.22, 1, 0.36, 1) 0.9s forwards;
}
.fomo-live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #ef4444;
  box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.5);
  animation: livePulse 1.8s ease-out infinite;
  flex-shrink: 0;
}
@keyframes livePulse {
  0% {
    box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.5);
  }
  70% {
    box-shadow: 0 0 0 7px rgba(239, 68, 68, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(239, 68, 68, 0);
  }
}
.fomo-text {
  font-size: 0.74rem;
  color: var(--text-muted);
  line-height: 1;
}
.fomo-text strong {
  color: #ef4444;
  font-weight: 700;
}
.fomo-divider {
  width: 1px;
  height: 12px;
  background: rgba(239, 68, 68, 0.15);
}
.fomo-kontenjan {
  font-size: 0.72rem;
  font-weight: 600;
  color: #b91c1c;
  white-space: nowrap;
}

/* ─── FADE UP ─── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ─── RESPONSIVE ─── */
@media (max-width: 901px) {
  .hero__inner {
    grid-template-columns: 1fr;
    gap: 52px;
    padding: 90px 28px 70px;
  }
  .hero__visual {
    min-height: auto;
  }
  .badge-float {
    left: 0;
    bottom: -18px;
  }
  .badge-float2 {
    right: 0;
    top: -18px;
  }
}
@media (max-width: 560px) {
  .hero__h1 {
    font-size: 2rem;
  }
  .hero__inner {
    padding: 80px 20px 60px;
  }
}

.bento-section {
  --b-bg: #08090f;
  --b-surface: #0e1120;
  --b-card: #111425;
  --b-border: rgba(80, 120, 255, 0.13);
  --b-border-h: rgba(80, 160, 255, 0.7);
  --b-blue: #2c7ef8;
  --b-blue-dim: rgba(44, 126, 248, 0.18);
  --b-green: #22c55e;
  --b-purple: #a855f7;
  --b-text: #e4eaff;
  --b-muted: #5a6a9a;
  --b-ff-head: 'Bricolage Grotesque', sans-serif;
  --b-ff-body: 'Inter', sans-serif;
  --b-ff-mono: 'JetBrains Mono', 'Fira Code', monospace;
}

/* ── WRAPPER ── */
.bento-section {
  background: var(--b-bg);
  padding: 100px 0 120px;
  overflow: hidden;
  position: relative;
}

/* subtle top gradient bridge from light hero */
.bento-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(44, 126, 248, 0.5), transparent);
}

/* noise texture overlay */
.bento-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
}

.bento-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);
}

/* ── HEADLINE ── */
.bento-header {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  max-width: 660px;
}
.bento-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 13px;
  border-radius: 100px;
  border: 1px solid rgba(44, 126, 248, 0.3);
  background: rgba(44, 126, 248, 0.08);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #6ab0ff;
  margin-bottom: 22px;
}
.bento-eyebrow-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #6ab0ff;
  box-shadow: 0 0 6px #6ab0ff;
  animation: bPulse 2s infinite;
}
@keyframes bPulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.3;
    transform: scale(0.6);
  }
}
.bento-title {
  font-family: var(--b-ff-head);
  font-size: clamp(2rem, 3.8vw, 3.2rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--b-text);
}
.bento-title em {
  font-style: normal;
  background: linear-gradient(110deg, #6ab0ff 0%, #2c7ef8 45%, #a78bfa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.bento-sub {
  margin-top: 18px;
  font-size: 1rem;
  line-height: 1.75;
  color: var(--b-muted);
  max-width: 580px;
}
.bento-sub strong {
  color: #8baee8;
  font-weight: 500;
}

/* ══════════════════════════════════════════════════════════
   BENTO GRID
══════════════════════════════════════════════════════════ */
.bento-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 16px;
}

/* card base */
.b-card {
  background: var(--b-card);
  border: 1px solid var(--b-border);
  border-radius: 20px;
  padding: 32px 28px 28px;
  position: relative;
  overflow: hidden;
  cursor: default;
  transition:
    transform 0.3s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.3s ease;
  /* scroll-in */
  opacity: 0;
  transform: translateY(36px);
}
.b-card.in-view {
  animation: bCardIn 0.7s cubic-bezier(0.22, 1, 0.36, 1) both;
}
@keyframes bCardIn {
  from {
    opacity: 0;
    transform: translateY(36px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* animated glow border on hover */
.b-card::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 21px;
  background: conic-gradient(
    from var(--angle, 0deg),
    transparent 0%,
    transparent 30%,
    rgba(44, 126, 248, 0.7) 45%,
    rgba(168, 139, 250, 0.6) 55%,
    transparent 70%,
    transparent 100%
  );
  opacity: 0;
  transition: opacity 0.35s ease;
  z-index: 0;
  animation: rotateBorder 3s linear infinite paused;
}
.b-card:hover::before {
  opacity: 1;
  animation-play-state: running;
}
@property --angle {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}
@keyframes rotateBorder {
  to {
    --angle: 360deg;
  }
}
/* mask inner so border shows */
.b-card::after {
  content: '';
  position: absolute;
  inset: 1px;
  background: var(--b-card);
  border-radius: 19px;
  z-index: 0;
}
.b-card > * {
  position: relative;
  z-index: 1;
}

.b-card:hover {
  transform: translateY(-5px);
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.5),
    0 0 40px rgba(44, 126, 248, 0.08);
}

/* grid placement */
.b-card--uiux {
  grid-column: 1 / 2;
  grid-row: 1;
}
.b-card--perf {
  grid-column: 2 / 4;
  grid-row: 1;
}
.b-card--mobile {
  grid-column: 1 / 3;
  grid-row: 2;
}
.b-card--dashboard {
  grid-column: 3 / 4;
  grid-row: 2;
}

/* stagger delays */
.b-card--uiux {
  animation-delay: 0.1s;
}
.b-card--perf {
  animation-delay: 0.22s;
}
.b-card--mobile {
  animation-delay: 0.34s;
}
.b-card--dashboard {
  animation-delay: 0.46s;
}

/* card internals */
.b-card-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 3px 10px;
  border-radius: 100px;
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.b-card-title {
  font-family: var(--b-ff-head);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--b-text);
  line-height: 1.25;
  margin-bottom: 10px;
}
.b-card-desc {
  font-size: 0.8rem;
  color: var(--b-muted);
  line-height: 1.65;
  margin-bottom: 24px;
}
.b-card-desc strong {
  color: #8baee8;
  font-weight: 500;
}

/* ══════════════════════════════════════════════════════════
   KART 1 — UI/UX · CURSOR ANIMATION
══════════════════════════════════════════════════════════ */
.uiux-stage {
  width: 100%;
  height: 110px;
  background: rgba(8, 9, 15, 0.6);
  border: 1px solid rgba(44, 126, 248, 0.1);
  border-radius: 12px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
/* the button */
.uiux-btn {
  padding: 10px 22px;
  border-radius: 9px;
  background: var(--b-blue);
  color: #fff;
  font-family: var(--b-ff-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 0 0 rgba(44, 126, 248, 0);
  transition:
    box-shadow 0.4s ease,
    transform 0.3s ease;
  white-space: nowrap;
}
.uiux-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.18) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
}
/* glow state triggered by JS when cursor hovers */
.uiux-btn.glowing {
  box-shadow:
    0 0 0 6px rgba(44, 126, 248, 0.2),
    0 0 28px rgba(44, 126, 248, 0.55);
  transform: scale(1.04);
}
.uiux-btn.glowing::before {
  opacity: 1;
}

/* CSS cursor */
.uiux-cursor {
  position: absolute;
  width: 18px;
  height: 18px;
  pointer-events: none;
  animation: cursorMove 3.5s cubic-bezier(0.4, 0, 0.2, 1) infinite;
  z-index: 5;
}
.uiux-cursor svg {
  width: 100%;
  height: 100%;
}
@keyframes cursorMove {
  0% {
    top: 14px;
    left: 18px;
  }
  35% {
    top: 46px;
    left: 90px;
  }
  60% {
    top: 46px;
    left: 90px;
  } /* hover pause */
  80% {
    top: 46px;
    left: 90px;
  }
  100% {
    top: 14px;
    left: 18px;
  }
}

/* ══════════════════════════════════════════════════════════
   KART 2 — PERFORMANS · LIGHTHOUSE RING
══════════════════════════════════════════════════════════ */
.perf-layout {
  display: flex;
  gap: 24px;
  align-items: center;
}
.perf-ring-wrap {
  flex-shrink: 0;
  position: relative;
  width: 110px;
  height: 110px;
}
.perf-ring-svg {
  width: 110px;
  height: 110px;
}
.perf-ring-track {
  fill: none;
  stroke: rgba(255, 255, 255, 0.06);
  stroke-width: 7;
}
.perf-ring-fill {
  fill: none;
  stroke: var(--b-green);
  stroke-width: 7;
  stroke-linecap: round;
  transform: rotate(-90deg);
  transform-origin: 55px 55px;
  stroke-dasharray: 283;
  stroke-dashoffset: 283;
  transition: stroke-dashoffset 2.2s cubic-bezier(0.22, 1, 0.36, 1);
  filter: drop-shadow(0 0 8px rgba(34, 197, 94, 0.7));
}
.perf-ring-fill.animate {
  stroke-dashoffset: 14;
} /* 283 * (1-0.95) */
.perf-ring-label {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
}
.perf-ring-num {
  font-family: var(--b-ff-head);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--b-green);
  line-height: 1;
  text-shadow: 0 0 20px rgba(34, 197, 94, 0.5);
}
.perf-ring-unit {
  font-size: 0.6rem;
  color: var(--b-muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-top: 2px;
}

.perf-metrics {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.perf-metric-row {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.perf-metric-label {
  display: flex;
  justify-content: space-between;
  font-size: 0.68rem;
  color: var(--b-muted);
  font-family: var(--b-ff-mono);
}
.perf-metric-val {
  color: var(--b-text);
  font-weight: 600;
}
.perf-bar-track {
  height: 4px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 100px;
  overflow: hidden;
}
.perf-bar-fill {
  height: 100%;
  border-radius: 100px;
  width: 0;
  transition: width 1.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.perf-bar-fill.animate {
  width: var(--w);
}

/* ══════════════════════════════════════════════════════════
   KART 3 — MOBİL · TELEFON + SKELETON
══════════════════════════════════════════════════════════ */
.mobile-layout {
  display: flex;
  gap: 28px;
  align-items: flex-start;
}
/* CSS phone */
.css-phone {
  flex-shrink: 0;
  width: 72px;
  height: 128px;
  border: 2px solid rgba(100, 160, 255, 0.3);
  border-radius: 14px;
  background: rgba(8, 9, 15, 0.8);
  position: relative;
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(44, 126, 248, 0.1),
    inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}
.css-phone::before {
  /* notch */
  content: '';
  position: absolute;
  top: 7px;
  left: 50%;
  transform: translateX(-50%);
  width: 22px;
  height: 4px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 100px;
  z-index: 2;
}
.phone-screen {
  position: absolute;
  inset: 0;
  padding: 18px 5px 5px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  overflow: hidden;
  animation: phoneScroll 4s ease-in-out infinite alternate;
}
@keyframes phoneScroll {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-30px);
  }
}
.sk-ph {
  height: 6px;
  border-radius: 3px;
  background: rgba(100, 140, 255, 0.18);
  animation: skShimmer 2s ease-in-out infinite;
}
.sk-ph--title {
  width: 80%;
  background: rgba(200, 220, 255, 0.25);
  height: 8px;
  animation-delay: 0s;
}
.sk-ph--wide {
  width: 95%;
  animation-delay: 0.1s;
}
.sk-ph--mid {
  width: 70%;
  animation-delay: 0.2s;
}
.sk-ph--short {
  width: 50%;
  animation-delay: 0.3s;
}
.sk-ph--img {
  width: 100%;
  height: 28px;
  border-radius: 5px;
  background: rgba(44, 126, 248, 0.12);
  animation-delay: 0.1s;
}
.sk-ph--btn {
  width: 60%;
  height: 10px;
  border-radius: 5px;
  background: rgba(44, 126, 248, 0.35);
  animation-delay: 0s;
  margin-top: 2px;
}
@keyframes skShimmer {
  0%,
  100% {
    opacity: 0.5;
  }
  50% {
    opacity: 1;
  }
}

.mobile-stats {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.mob-stat-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(44, 126, 248, 0.08);
  border-radius: 9px;
}
.mob-stat-icon {
  width: 28px;
  height: 28px;
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0;
}
.mob-stat-body {
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.mob-stat-val {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--b-text);
  font-family: var(--b-ff-head);
}
.mob-stat-lbl {
  font-size: 0.62rem;
  color: var(--b-muted);
}

/* ══════════════════════════════════════════════════════════
   KART 4 — PANEL · MINI DASHBOARD
══════════════════════════════════════════════════════════ */
.dash-stage {
  width: 100%;
  background: rgba(8, 9, 15, 0.7);
  border: 1px solid rgba(44, 126, 248, 0.1);
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  height: 130px;
}
/* sidebar */
.dash-sidebar {
  width: 32px;
  background: rgba(0, 0, 0, 0.3);
  border-right: 1px solid rgba(44, 126, 248, 0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 0;
  gap: 8px;
}
.dash-nav-dot {
  width: 16px;
  height: 4px;
  border-radius: 2px;
  background: rgba(100, 140, 255, 0.2);
}
.dash-nav-dot.active {
  background: var(--b-blue);
  box-shadow: 0 0 6px rgba(44, 126, 248, 0.5);
}

/* main area */
.dash-main {
  flex: 1;
  padding: 10px 10px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.dash-toprow {
  display: flex;
  gap: 6px;
}
.dash-kpi {
  flex: 1;
  padding: 6px 8px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(44, 126, 248, 0.07);
  border-radius: 6px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.dash-kpi-val {
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--b-text);
  font-family: var(--b-ff-head);
}
.dash-kpi-lbl {
  font-size: 0.5rem;
  color: var(--b-muted);
}
.dash-kpi-trend {
  font-size: 0.55rem;
  color: var(--b-green);
  font-weight: 600;
}

/* mini bar chart */
.dash-chart {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 48px;
  padding: 4px 0 0;
}
.dash-bar {
  flex: 1;
  border-radius: 3px 3px 0 0;
  background: rgba(44, 126, 248, 0.22);
  animation: dashBarGrow 0.9s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.dash-bar:nth-child(1) {
  height: 35%;
  animation-delay: 0.6s;
}
.dash-bar:nth-child(2) {
  height: 55%;
  animation-delay: 0.7s;
  background: rgba(44, 126, 248, 0.32);
}
.dash-bar:nth-child(3) {
  height: 42%;
  animation-delay: 0.8s;
}
.dash-bar:nth-child(4) {
  height: 75%;
  animation-delay: 0.9s;
  background: rgba(44, 126, 248, 0.45);
}
.dash-bar:nth-child(5) {
  height: 58%;
  animation-delay: 1s;
}
.dash-bar:nth-child(6) {
  height: 90%;
  animation-delay: 1.1s;
  background: var(--b-blue);
  box-shadow: 0 0 8px rgba(44, 126, 248, 0.6);
}
.dash-bar:nth-child(7) {
  height: 68%;
  animation-delay: 1.2s;
}
@keyframes dashBarGrow {
  from {
    transform: scaleY(0);
    transform-origin: bottom;
    opacity: 0;
  }
  to {
    transform: scaleY(1);
    opacity: 1;
  }
}

/* ══════════════════════════════════════════════════════════
   BOTTOM CTA STRIP
══════════════════════════════════════════════════════════ */
.bento-cta-strip {
  margin-top: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  padding: 32px 36px;
  background: var(--b-surface);
  border: 1px solid var(--b-border);
  border-radius: 20px;
  position: relative;
  overflow: hidden;
}
.bento-cta-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 0% 50%, rgba(44, 126, 248, 0.07) 0%, transparent 70%);
  pointer-events: none;
}
.bento-cta-left {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.bento-cta-title {
  font-family: var(--b-ff-head);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--b-text);
}
.bento-cta-sub {
  font-size: 0.82rem;
  color: var(--b-muted);
}
.bento-cta-sub strong {
  color: #6ab0ff;
  font-weight: 500;
}

.bento-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 28px;
  border-radius: 11px;
  background: var(--b-blue);
  color: #fff;
  font-family: var(--b-ff-body);
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease;
  box-shadow: 0 0 30px rgba(44, 126, 248, 0.35);
}
.bento-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.22s;
}
.bento-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 40px rgba(44, 126, 248, 0.5);
}
.bento-btn:hover::before {
  opacity: 1;
}
.bento-btn svg {
  transition: transform 0.22s;
}
.bento-btn:hover svg {
  transform: translateX(4px);
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .bento-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .b-card--uiux {
    grid-column: 1;
    grid-row: 1;
  }
  .b-card--perf {
    grid-column: 2;
    grid-row: 1;
  }
  .b-card--mobile {
    grid-column: 1;
    grid-row: 2;
  }
  .b-card--dashboard {
    grid-column: 2;
    grid-row: 2;
  }
}
@media (max-width: 580px) {
  .bento-inner {
    padding: 0 20px;
  }
  .bento-grid {
    grid-template-columns: 1fr;
  }
  .b-card--uiux,
  .b-card--perf,
  .b-card--mobile,
  .b-card--dashboard {
    grid-column: 1;
    grid-row: auto;
  }
  .perf-layout {
    flex-direction: column;
  }
  .mobile-layout {
    flex-direction: column;
  }
  .bento-cta-strip {
    flex-direction: column;
    align-items: flex-start;
  }
}
.cmp-section {
  background: #f5f7ff;
  padding: 110px 0 130px;
  position: relative;
  overflow: hidden;
  font-family: 'Inter', sans-serif;
}

/* subtle top divider from dark bento */
.cmp-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(26, 95, 232, 0.35),
    rgba(26, 95, 232, 0.7),
    rgba(26, 95, 232, 0.35),
    transparent
  );
}

/* decorative grid */
.cmp-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(26, 95, 232, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26, 95, 232, 0.03) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 30%, black 40%, transparent 100%);
  pointer-events: none;
  z-index: 0;
}

.cmp-inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
}

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

.cmp-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 14px;
  border-radius: 100px;
  border: 1px solid rgba(239, 68, 68, 0.25);
  background: rgba(239, 68, 68, 0.06);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #dc2626;
  margin-bottom: 20px;
}
.cmp-eyebrow-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #ef4444;
  box-shadow: 0 0 6px rgba(239, 68, 68, 0.6);
  animation: cmpPulse 2s infinite;
}
@keyframes cmpPulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.3;
    transform: scale(0.6);
  }
}

.cmp-title {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(1.9rem, 3.5vw, 3rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: #0d1b3e;
  margin-bottom: 16px;
}
.cmp-title em {
  font-style: normal;
  background: linear-gradient(110deg, #1a5fe8 0%, #2d7af0 50%, #1a5fe8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.cmp-sub {
  font-size: 0.95rem;
  color: #6b7faa;
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ── FOMO TICKER ── */
.cmp-fomo-ticker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
  padding: 7px 16px;
  border-radius: 100px;
  background: #fff;
  border: 1px solid rgba(239, 68, 68, 0.2);
  box-shadow: 0 2px 12px rgba(239, 68, 68, 0.07);
}
.cmp-fomo-live {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #ef4444;
  box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.5);
  animation: fomoLive 1.8s ease-out infinite;
  flex-shrink: 0;
}
@keyframes fomoLive {
  0% {
    box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.5);
  }
  70% {
    box-shadow: 0 0 0 7px rgba(239, 68, 68, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(239, 68, 68, 0);
  }
}
.cmp-fomo-text {
  font-size: 0.74rem;
  color: #6b7faa;
}
.cmp-fomo-text strong {
  color: #dc2626;
  font-weight: 700;
}
.cmp-fomo-sep {
  width: 1px;
  height: 12px;
  background: rgba(239, 68, 68, 0.15);
}
.cmp-fomo-slots {
  font-size: 0.72rem;
  font-weight: 700;
  color: #b91c1c;
  white-space: nowrap;
}

/* ══════════════════════════════════════════════════════════
   SPLIT LAYOUT
══════════════════════════════════════════════════════════ */
.cmp-split {
  display: grid;
  grid-template-columns: 1fr 88px 1fr;
  gap: 0;
  align-items: center;
  position: relative;
}

/* ── VS BADGE ── */
.cmp-vs {
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  position: relative;
}
.cmp-vs-badge {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid rgba(26, 95, 232, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 0.8rem;
  font-weight: 800;
  color: #1a5fe8;
  letter-spacing: 0.06em;
  box-shadow:
    0 4px 20px rgba(26, 95, 232, 0.12),
    0 0 0 6px rgba(26, 95, 232, 0.05);
  animation: vsFloat 4s ease-in-out infinite alternate;
  position: relative;
  z-index: 2;
}
@keyframes vsFloat {
  from {
    transform: translateY(-4px);
  }
  to {
    transform: translateY(4px);
  }
}
.cmp-vs::before,
.cmp-vs::after {
  content: '';
  position: absolute;
  top: 50%;
  height: 1px;
  width: calc(50% - 38px);
}
.cmp-vs::before {
  right: 50%;
  transform: translateY(-50%);
  background: linear-gradient(90deg, transparent, rgba(220, 38, 38, 0.2));
}
.cmp-vs::after {
  left: 50%;
  transform: translateY(-50%);
  background: linear-gradient(90deg, rgba(26, 95, 232, 0.2), transparent);
}

/* ══════════════════════════════════════════════════════════
   CARDS
══════════════════════════════════════════════════════════ */
.cmp-card {
  border-radius: 22px;
  padding: 34px 30px 36px;
  position: relative;
  opacity: 0;
  transform: translateY(32px);
}
.cmp-card.in-view {
  animation: cmpCardIn 0.7s cubic-bezier(0.22, 1, 0.36, 1) both;
}
@keyframes cmpCardIn {
  from {
    opacity: 0;
    transform: translateY(32px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ── LEFT: SIRADAN ── */
.cmp-card--bad {
  background: #f0f2f8;
  border: 1px solid rgba(0, 0, 0, 0.07);
  opacity: 0.72;
  animation-delay: 0.1s;
  transition: opacity 0.3s;
}
.cmp-card--bad:hover {
  opacity: 0.78;
}

/* ── RIGHT: BLUE MEDYA ── */
.cmp-card--good {
  background: #fff;
  border: 1.5px solid rgba(26, 95, 232, 0.3);
  transform: scale(1.04);
  box-shadow:
    0 0 0 1px rgba(26, 95, 232, 0.08),
    0 0 40px rgba(26, 95, 232, 0.1),
    0 20px 60px rgba(26, 95, 232, 0.08),
    0 4px 12px rgba(0, 0, 0, 0.06);
  animation-delay: 0.2s;
  transition:
    transform 0.3s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}
.cmp-card--good.in-view {
  transform: scale(1.04) translateY(0);
}
.cmp-card--good:hover {
  transform: scale(1.06) translateY(-6px);
  box-shadow:
    0 0 0 1px rgba(26, 95, 232, 0.25),
    0 0 60px rgba(26, 95, 232, 0.18),
    0 28px 80px rgba(26, 95, 232, 0.1),
    0 4px 12px rgba(0, 0, 0, 0.06);
  border-color: rgba(26, 95, 232, 0.55);
}
/* glowing top line */
.cmp-card--good::before {
  content: '';
  position: absolute;
  top: 0;
  left: 8%;
  right: 8%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #1a5fe8, #60a5fa, #1a5fe8, transparent);
  border-radius: 100px;
}

/* card header */
.cmp-card-header {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
.cmp-card--good .cmp-card-header {
  border-bottom-color: rgba(26, 95, 232, 0.1);
}

.cmp-card-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  flex-shrink: 0;
}
.cmp-card--bad .cmp-card-icon {
  background: rgba(0, 0, 0, 0.05);
}
.cmp-card--good .cmp-card-icon {
  background: linear-gradient(135deg, rgba(26, 95, 232, 0.15), rgba(26, 95, 232, 0.05));
  box-shadow: 0 4px 14px rgba(26, 95, 232, 0.15);
}

.cmp-card-title-wrap {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.cmp-card-label {
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.cmp-card--bad .cmp-card-label {
  color: #9aabbf;
}
.cmp-card--good .cmp-card-label {
  color: #1a5fe8;
}

.cmp-card-name {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 1.08rem;
  font-weight: 800;
  line-height: 1.2;
}
.cmp-card--bad .cmp-card-name {
  color: #8a9bae;
}
.cmp-card--good .cmp-card-name {
  color: #0d1b3e;
}

/* items */
.cmp-items {
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.cmp-item {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  padding: 11px 13px;
  border-radius: 10px;
}
.cmp-card--bad .cmp-item {
  background: rgba(0, 0, 0, 0.025);
}
.cmp-card--good .cmp-item {
  background: rgba(26, 95, 232, 0.04);
  border: 1px solid rgba(26, 95, 232, 0.07);
  transition: background 0.2s;
}
.cmp-card--good .cmp-item:hover {
  background: rgba(26, 95, 232, 0.08);
}

.cmp-item-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 900;
  flex-shrink: 0;
  margin-top: 1px;
}
.cmp-item-icon--bad {
  background: rgba(239, 68, 68, 0.08);
  color: #ef4444;
  border: 1px solid rgba(239, 68, 68, 0.2);
}
.cmp-item-icon--good {
  background: rgba(34, 197, 94, 0.1);
  color: #16a34a;
  border: 1px solid rgba(34, 197, 94, 0.25);
  box-shadow: 0 0 8px rgba(34, 197, 94, 0.12);
}

.cmp-item-body {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.cmp-item-title {
  font-size: 0.81rem;
  font-weight: 600;
  line-height: 1.35;
}
.cmp-card--bad .cmp-item-title {
  color: #7a8a9a;
}
.cmp-card--good .cmp-item-title {
  color: #1a2a4a;
}

.cmp-item-sub {
  font-size: 0.7rem;
  line-height: 1.5;
}
.cmp-card--bad .cmp-item-sub {
  color: #a0b0c0;
}
.cmp-card--good .cmp-item-sub {
  color: #6b7faa;
}

/* good card footer */
.cmp-card-footer {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid rgba(26, 95, 232, 0.08);
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.cmp-footer-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  border-radius: 100px;
  background: rgba(34, 197, 94, 0.08);
  border: 1px solid rgba(34, 197, 94, 0.2);
  font-size: 0.68rem;
  font-weight: 700;
  color: #16a34a;
  letter-spacing: 0.04em;
}
.cmp-footer-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 6px rgba(34, 197, 94, 0.5);
  animation: cmpPulse 2s infinite;
}
.cmp-footer-text {
  font-size: 0.72rem;
  color: #6b7faa;
}
.cmp-footer-text strong {
  color: #1a5fe8;
  font-weight: 600;
}

/* ══════════════════════════════════════════════════════════
   FOMO URGENCY BANNER — altında
══════════════════════════════════════════════════════════ */
.cmp-urgency {
  margin-top: 52px;
  background: #fff;
  border: 1px solid rgba(239, 68, 68, 0.18);
  border-left: 4px solid #ef4444;
  border-radius: 14px;
  padding: 20px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  box-shadow:
    0 4px 20px rgba(239, 68, 68, 0.06),
    0 2px 8px rgba(0, 0, 0, 0.04);
  opacity: 0;
  transform: translateY(20px);
}
.cmp-urgency.in-view {
  animation: cmpCardIn 0.65s cubic-bezier(0.22, 1, 0.36, 1) 0.35s both;
}
.cmp-urgency-left {
  display: flex;
  align-items: center;
  gap: 14px;
}
.cmp-urgency-emoji {
  font-size: 1.5rem;
  flex-shrink: 0;
}
.cmp-urgency-body {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.cmp-urgency-title {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 0.95rem;
  font-weight: 800;
  color: #0d1b3e;
}
.cmp-urgency-sub {
  font-size: 0.75rem;
  color: #6b7faa;
  line-height: 1.5;
}
.cmp-urgency-sub strong {
  color: #dc2626;
  font-weight: 600;
}
.cmp-urgency-cta {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 12px 22px;
  border-radius: 10px;
  background: #1a5fe8;
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  text-decoration: none;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
  box-shadow: 0 4px 18px rgba(26, 95, 232, 0.3);
  flex-shrink: 0;
}
.cmp-urgency-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(26, 95, 232, 0.4);
}
.cmp-urgency-cta svg {
  transition: transform 0.2s;
}
.cmp-urgency-cta:hover svg {
  transform: translateX(3px);
}

/* slots counter */
.cmp-slots {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  color: #dc2626;
  font-weight: 700;
  white-space: nowrap;
  flex-shrink: 0;
}
.cmp-slots-bar {
  display: flex;
  gap: 4px;
}
.cmp-slot-pip {
  width: 10px;
  height: 10px;
  border-radius: 3px;
}
.cmp-slot-pip.taken {
  background: #fca5a5;
}
.cmp-slot-pip.open {
  background: #ef4444;
  box-shadow: 0 0 6px rgba(239, 68, 68, 0.4);
}

/* ══════════════════════════════════════════════════════════
   PROOF STRIP
══════════════════════════════════════════════════════════ */
.cmp-proof {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 20px;
  opacity: 0;
  transform: translateY(24px);
}
.cmp-proof.in-view {
  animation: cmpCardIn 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.5s both;
}
.cmp-proof-item {
  background: #fff;
  border: 1px solid rgba(26, 95, 232, 0.1);
  border-radius: 14px;
  padding: 20px 18px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  transition:
    border-color 0.25s,
    box-shadow 0.25s,
    transform 0.25s;
}
.cmp-proof-item:hover {
  border-color: rgba(26, 95, 232, 0.25);
  box-shadow: 0 6px 24px rgba(26, 95, 232, 0.08);
  transform: translateY(-3px);
}
.cmp-proof-num {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 1.65rem;
  font-weight: 800;
  color: #0d1b3e;
  line-height: 1;
}
.cmp-proof-num span {
  color: #1a5fe8;
}
.cmp-proof-label {
  font-size: 0.72rem;
  color: #6b7faa;
  line-height: 1.4;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .cmp-split {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .cmp-vs {
    order: 2;
  }
  .cmp-card--bad {
    order: 1;
  }
  .cmp-card--good {
    order: 3;
    transform: scale(1);
  }
  .cmp-card--good:hover {
    transform: translateY(-4px);
  }
  .cmp-vs::before,
  .cmp-vs::after {
    display: none;
  }
  .cmp-proof {
    grid-template-columns: repeat(2, 1fr);
  }
  .cmp-urgency {
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 560px) {
  .cmp-inner {
    padding: 0 20px;
  }
  .cmp-proof {
    grid-template-columns: 1fr 1fr;
  }
}

/* ══════════════════════════════════════════════════════════
   PROCESS / TIMELINE SECTION
══════════════════════════════════════════════════════════ */
.proc-section {
  background: #080c18;
  padding: 80px 0 88px;
  position: relative;
  overflow: hidden;
  font-family: 'Inter', sans-serif;
}
/* top separator */
.proc-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(44, 126, 248, 0.4),
    rgba(44, 126, 248, 0.7),
    rgba(44, 126, 248, 0.4),
    transparent
  );
}
/* bg glow */
.proc-section::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 300px;
  background: radial-gradient(ellipse, rgba(44, 126, 248, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.proc-inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
}

/* ── HEADER ── */
.proc-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 52px;
  flex-wrap: wrap;
}
.proc-header-left {
}
.proc-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 4px 12px;
  border-radius: 100px;
  border: 1px solid rgba(44, 126, 248, 0.3);
  background: rgba(44, 126, 248, 0.08);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #6ab0ff;
  margin-bottom: 14px;
}
.proc-eyebrow-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #6ab0ff;
  box-shadow: 0 0 6px #6ab0ff;
  animation: procPulse 2s infinite;
}
@keyframes procPulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.3;
    transform: scale(0.6);
  }
}
.proc-title {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(1.5rem, 2.8vw, 2.2rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.022em;
  color: #e4eaff;
}
.proc-title em {
  font-style: normal;
  background: linear-gradient(110deg, #6ab0ff, #2c7ef8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.proc-header-sub {
  font-size: 0.82rem;
  color: #3a4a7a;
  line-height: 1.6;
  max-width: 260px;
  text-align: right;
}
.proc-header-sub strong {
  color: #6ab0ff;
  font-weight: 500;
}

/* ══════════════════════════════════════════════════════════
   HORIZONTAL TIMELINE TRACK
══════════════════════════════════════════════════════════ */
.proc-track-wrap {
  position: relative;
  /* scroll on mobile */
  overflow-x: auto;
  overflow-y: visible;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-bottom: 4px;
}
.proc-track-wrap::-webkit-scrollbar {
  display: none;
}

.proc-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  min-width: 680px;
  position: relative;
  padding-top: 28px;
}

/* ── THE LINE ── */
.proc-line {
  position: absolute;
  top: 42px; /* vertically centered on the nodes */
  left: calc(12.5%); /* center of first node */
  right: calc(12.5%); /* center of last node */
  height: 1px;
  background: rgba(255, 255, 255, 0.07);
  z-index: 0;
}
/* animated fill overlay — driven by JS hover class */
.proc-line-fill {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #2c7ef8, #60a5fa);
  box-shadow:
    0 0 10px rgba(44, 126, 248, 0.6),
    0 0 24px rgba(44, 126, 248, 0.25);
  border-radius: 1px;
  transition: width 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
}
.proc-line-fill.step-1 {
  width: 0%;
}
.proc-line-fill.step-2 {
  width: 33.33%;
}
.proc-line-fill.step-3 {
  width: 66.66%;
}
.proc-line-fill.step-4 {
  width: 100%;
}


/* ══════════════════════════════════════════════════════════
   PORTFOLIO SECTION — LIGHT THEME
══════════════════════════════════════════════════════════ */
.pf-section {
  background: #f0f4ff;
  padding: 108px 0 116px;
  position: relative;
  overflow: hidden;
  font-family: 'Inter', sans-serif;
}
/* grid texture */
.pf-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(26, 95, 232, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26, 95, 232, 0.04) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: radial-gradient(ellipse 90% 80% at 50% 30%, black 30%, transparent 100%);
  pointer-events: none;
}
/* top border from dark section */
.pf-section::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(168, 139, 250, 0.35),
    rgba(26, 95, 232, 0.55),
    rgba(168, 139, 250, 0.35),
    transparent
  );
}

.pf-inner {
  position: relative;
  z-index: 1;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 48px;
}

/* ── HEADER ── */
.pf-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 52px;
  flex-wrap: wrap;
}
.pf-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 4px 13px;
  border-radius: 100px;
  border: 1px solid rgba(168, 139, 250, 0.3);
  background: rgba(168, 139, 250, 0.08);
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #9333ea;
  margin-bottom: 16px;
}
.pf-eyebrow-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #a855f7;
  box-shadow: 0 0 7px rgba(168, 85, 247, 0.6);
  animation: pfBlink 2.2s infinite;
}
@keyframes pfBlink {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.2;
    transform: scale(0.5);
  }
}
.pf-title {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.026em;
  color: #0d1b3e;
}
.pf-title em {
  font-style: normal;
  background: linear-gradient(115deg, #7c3aed 0%, #1a5fe8 60%, #7c3aed 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.pf-header-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
}
.pf-meta-stat {
  font-size: 0.78rem;
  color: #8a9bbf;
  line-height: 1.5;
  text-align: right;
}
.pf-meta-stat strong {
  color: #7c3aed;
  font-weight: 600;
}

/* click hint — subtle */
.pf-click-hint {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.7rem;
  color: #9aabbf;
  margin-top: 4px;
}
.pf-click-hint svg {
  opacity: 0.5;
}

/* ══════════════════════════════════════════════════════════
   GRID
══════════════════════════════════════════════════════════ */
.pf-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: 360px 300px;
  gap: 14px;
}

/* ── CARD SHELL ── */
.pf-card {
  border-radius: 22px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  border: 1px solid rgba(0, 0, 0, 0.08);
  opacity: 0;
  transform: translateY(30px);
  transition:
    border-color 0.35s ease,
    box-shadow 0.35s ease,
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
.pf-card.pf-in {
  animation: pfCardReveal 0.72s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.pf-card:nth-child(1) {
  animation-delay: 0.04s;
}
.pf-card:nth-child(2) {
  animation-delay: 0.14s;
}
.pf-card:nth-child(3) {
  animation-delay: 0.22s;
}
.pf-card:nth-child(4) {
  animation-delay: 0.31s;
}
@keyframes pfCardReveal {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* grid placement */
.pf-card--1 {
  grid-column: 1/2;
  grid-row: 1/2;
}
.pf-card--2 {
  grid-column: 2/3;
  grid-row: 1/2;
}
.pf-card--3 {
  grid-column: 1/2;
  grid-row: 2/3;
}
.pf-card--4 {
  grid-column: 2/3;
  grid-row: 2/3;
}

/* ── per-card hover glow ── */
.pf-card--1:hover {
  border-color: rgba(26, 95, 232, 0.35);
  box-shadow:
    0 0 0 3px rgba(26, 95, 232, 0.07),
    0 8px 48px rgba(26, 95, 232, 0.14),
    0 2px 8px rgba(0, 0, 0, 0.06);
  transform: translateY(-5px);
}
.pf-card--2:hover {
  border-color: rgba(217, 119, 6, 0.3);
  box-shadow:
    0 0 0 3px rgba(217, 119, 6, 0.06),
    0 8px 48px rgba(217, 119, 6, 0.1),
    0 2px 8px rgba(0, 0, 0, 0.06);
  transform: translateY(-5px);
}
.pf-card--3:hover {
  border-color: rgba(124, 58, 237, 0.35);
  box-shadow:
    0 0 0 3px rgba(124, 58, 237, 0.07),
    0 8px 48px rgba(124, 58, 237, 0.12),
    0 2px 8px rgba(0, 0, 0, 0.06);
  transform: translateY(-5px);
}
.pf-card--4:hover {
  border-color: rgba(5, 150, 105, 0.3);
  box-shadow:
    0 0 0 3px rgba(5, 150, 105, 0.06),
    0 8px 48px rgba(5, 150, 105, 0.1),
    0 2px 8px rgba(0, 0, 0, 0.06);
  transform: translateY(-5px);
}

/* ── CARD BACKGROUNDS (light, airy gradients) ── */
.pf-bg {
  position: absolute;
  inset: 0;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.pf-card:hover .pf-bg {
  transform: scale(1.03);
}

/* P1 — soft blue */
.pf-card--1 .pf-bg {
  background:
    radial-gradient(ellipse 60% 55% at 85% 15%, rgba(26, 95, 232, 0.1) 0%, transparent 60%),
    radial-gradient(ellipse 45% 45% at 10% 85%, rgba(96, 165, 250, 0.07) 0%, transparent 60%),
    linear-gradient(145deg, #eef3ff 0%, #f5f8ff 55%, #edf1ff 100%);
}
.pf-card--1 .pf-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(26, 95, 232, 0.06) 1px, transparent 1px);
  background-size: 26px 26px;
  mask-image: radial-gradient(ellipse 80% 70% at 80% 20%, black 20%, transparent 70%);
}

/* P2 — warm amber */
.pf-card--2 .pf-bg {
  background:
    radial-gradient(ellipse 80% 55% at 50% 0%, rgba(217, 119, 6, 0.1) 0%, transparent 55%),
    radial-gradient(ellipse 55% 45% at 80% 90%, rgba(249, 115, 22, 0.07) 0%, transparent 55%),
    linear-gradient(155deg, #fffbeb 0%, #fef9f0 100%);
}
.pf-card--2 .pf-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -55deg,
    transparent,
    transparent 16px,
    rgba(217, 119, 6, 0.03) 16px,
    rgba(217, 119, 6, 0.03) 17px
  );
}

/* P3 — soft violet */
.pf-card--3 .pf-bg {
  background:
    radial-gradient(ellipse 65% 55% at 20% 20%, rgba(124, 58, 237, 0.09) 0%, transparent 55%),
    radial-gradient(ellipse 50% 55% at 90% 80%, rgba(99, 102, 241, 0.07) 0%, transparent 55%),
    linear-gradient(140deg, #f5f3ff 0%, #f8f7ff 100%);
}
.pf-card--3 .pf-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(124, 58, 237, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(124, 58, 237, 0.04) 1px, transparent 1px);
  background-size: 22px 22px;
  mask-image: radial-gradient(ellipse 70% 70% at 30% 30%, black 30%, transparent 75%);
}

/* P4 — soft emerald */
.pf-card--4 .pf-bg {
  background:
    radial-gradient(ellipse 70% 65% at 10% 50%, rgba(5, 150, 105, 0.08) 0%, transparent 55%),
    radial-gradient(ellipse 55% 45% at 90% 20%, rgba(6, 182, 212, 0.07) 0%, transparent 55%),
    linear-gradient(130deg, #ecfdf5 0%, #f0fdf8 55%, #eafaf4 100%);
}
.pf-card--4 .pf-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(rgba(5, 150, 105, 0.05) 1px, transparent 1px);
  background-size: 22px 22px;
  mask-image: radial-gradient(ellipse 60% 80% at 15% 50%, black 20%, transparent 65%);
}

/* ── CSS MOCKUP ILLUSTRATIONS ── */
.pf-mock {
  position: absolute;
  pointer-events: none;
  transition:
    transform 0.5s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.35s ease;
}
.pf-card:hover .pf-mock {
  opacity: 0.75;
  transform: var(--mhv, translateY(-6px));
}

/* P1: calendar window */
.pf-mock--1 {
  right: 28px;
  top: 24px;
  width: 210px;
  opacity: 0.55;
  --mhv: translateY(-10px) scale(1.02);
}
.pm-win {
  background: #fff;
  border: 1px solid rgba(26, 95, 232, 0.12);
  border-radius: 12px;
  overflow: hidden;
  box-shadow:
    0 12px 40px rgba(26, 95, 232, 0.1),
    0 2px 8px rgba(0, 0, 0, 0.06);
}
.pm-winbar {
  background: rgba(26, 95, 232, 0.04);
  padding: 7px 10px;
  display: flex;
  align-items: center;
  gap: 5px;
  border-bottom: 1px solid rgba(26, 95, 232, 0.07);
}
.pm-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
}
.pm-winbar-title {
  margin-left: 6px;
  font-size: 0.52rem;
  color: rgba(26, 95, 232, 0.5);
  font-family: 'JetBrains Mono', monospace;
  letter-spacing: 0.06em;
}
.pm-body {
  padding: 10px 12px;
}
.pm-month-label {
  height: 5px;
  width: 50%;
  border-radius: 3px;
  background: rgba(26, 95, 232, 0.25);
  margin-bottom: 8px;
}
.pm-cal {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 3px;
  margin-bottom: 8px;
}
.pm-day {
  height: 14px;
  border-radius: 3px;
  background: rgba(0, 0, 0, 0.04);
}
.pm-day.hi {
  background: rgba(26, 95, 232, 0.12);
}
.pm-day.act {
  background: #1a5fe8;
  box-shadow: 0 0 8px rgba(26, 95, 232, 0.4);
}
.pm-day.dot {
  position: relative;
}
.pm-day.dot::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #60a5fa;
}
.pm-appt {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 5px;
}
.pm-appt-bar {
  flex: 1;
  height: 12px;
  border-radius: 4px;
  background: rgba(26, 95, 232, 0.08);
  border-left: 3px solid rgba(26, 95, 232, 0.35);
}
.pm-appt-bar.filled {
  background: rgba(96, 165, 250, 0.1);
  border-left-color: #60a5fa;
}

/* P2: mobile food app */
.pf-mock--2 {
  bottom: 50px;
  right: 14px;
  width: 112px;
  opacity: 0.5;
  --mhv: translateY(-8px) rotate(-1.5deg);
}
.pm2-app {
  background: #fff;
  border: 1px solid rgba(217, 119, 6, 0.15);
  border-radius: 14px;
  overflow: hidden;
  box-shadow:
    0 12px 36px rgba(217, 119, 6, 0.1),
    0 2px 8px rgba(0, 0, 0, 0.06);
}
.pm2-header {
  padding: 8px 10px 6px;
  background: rgba(251, 191, 36, 0.04);
  border-bottom: 1px solid rgba(251, 191, 36, 0.08);
}
.pm2-logo {
  height: 5px;
  width: 50%;
  border-radius: 3px;
  background: rgba(217, 119, 6, 0.35);
  margin-bottom: 5px;
}
.pm2-search {
  height: 13px;
  border-radius: 5px;
  background: rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.06);
}
.pm2-img {
  height: 50px;
  width: 100%;
  background: linear-gradient(145deg, rgba(251, 191, 36, 0.15), rgba(249, 115, 22, 0.1));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  opacity: 0.5;
}
.pm2-info {
  padding: 7px 9px;
}
.pm2-name {
  height: 5px;
  width: 75%;
  border-radius: 3px;
  background: rgba(0, 0, 0, 0.15);
  margin-bottom: 4px;
}
.pm2-sub {
  height: 3px;
  width: 50%;
  border-radius: 3px;
  background: rgba(0, 0, 0, 0.07);
  margin-bottom: 7px;
}
.pm2-row {
  display: flex;
  gap: 5px;
}
.pm2-price {
  height: 11px;
  width: 40%;
  border-radius: 4px;
  background: rgba(217, 119, 6, 0.3);
}
.pm2-btn {
  height: 11px;
  flex: 1;
  border-radius: 4px;
  background: rgba(249, 115, 22, 0.35);
}

/* P3: dashboard */
.pf-mock--3 {
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 144px;
  opacity: 0.48;
  --mhv: translateY(calc(-50% - 6px));
}
.pm3-win {
  background: #fff;
  border: 1px solid rgba(124, 58, 237, 0.12);
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow:
    0 12px 40px rgba(124, 58, 237, 0.1),
    0 2px 8px rgba(0, 0, 0, 0.06);
}
.pm3-topbar {
  background: rgba(124, 58, 237, 0.04);
  border-bottom: 1px solid rgba(124, 58, 237, 0.07);
  padding: 6px 9px;
  display: flex;
  align-items: center;
  gap: 4px;
}
.pm3-tabs {
  display: flex;
  gap: 3px;
  margin-left: 6px;
}
.pm3-tab {
  height: 4px;
  width: 18px;
  border-radius: 2px;
  background: rgba(124, 58, 237, 0.1);
}
.pm3-tab.a {
  background: rgba(124, 58, 237, 0.4);
  width: 24px;
}
.pm3-layout {
  display: flex;
  flex: 1;
}
.pm3-sidebar {
  width: 26px;
  background: rgba(124, 58, 237, 0.03);
  padding: 8px 5px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: center;
  border-right: 1px solid rgba(124, 58, 237, 0.06);
}
.pm3-nav {
  width: 14px;
  height: 3px;
  border-radius: 2px;
  background: rgba(124, 58, 237, 0.1);
}
.pm3-nav.a {
  background: rgba(124, 58, 237, 0.45);
}
.pm3-main {
  flex: 1;
  padding: 8px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.pm3-krow {
  display: flex;
  gap: 4px;
}
.pm3-k {
  flex: 1;
  height: 22px;
  border-radius: 5px;
  background: rgba(124, 58, 237, 0.05);
  border: 1px solid rgba(124, 58, 237, 0.08);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 4px 3px;
}
.pm3-k-val {
  height: 4px;
  width: 60%;
  border-radius: 2px;
  background: rgba(124, 58, 237, 0.3);
}
.pm3-k-lbl {
  height: 2px;
  width: 40%;
  border-radius: 1px;
  background: rgba(124, 58, 237, 0.12);
  margin-top: 2px;
}
.pm3-chartlabel {
  height: 3px;
  width: 35%;
  border-radius: 2px;
  background: rgba(124, 58, 237, 0.15);
}
.pm3-bars {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 32px;
}
.pm3-bar {
  flex: 1;
  border-radius: 2px 2px 0 0;
  background: rgba(124, 58, 237, 0.12);
  min-height: 4px;
}
.pm3-bar:nth-child(1) {
  height: 45%;
}
.pm3-bar:nth-child(2) {
  height: 62%;
}
.pm3-bar:nth-child(3) {
  height: 38%;
}
.pm3-bar:nth-child(4) {
  height: 82%;
  background: #7c3aed;
  box-shadow: 0 0 8px rgba(124, 58, 237, 0.3);
}
.pm3-bar:nth-child(5) {
  height: 55%;
}
.pm3-bar:nth-child(6) {
  height: 70%;
  background: rgba(124, 58, 237, 0.4);
}

/* P4: car booking */
.pf-mock--4 {
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  width: 180px;
  opacity: 0.48;
  --mhv: translateY(calc(-50% - 8px));
}
.pm4-win {
  background: #fff;
  border: 1px solid rgba(5, 150, 105, 0.15);
  border-radius: 12px;
  overflow: hidden;
  box-shadow:
    0 12px 40px rgba(5, 150, 105, 0.1),
    0 2px 8px rgba(0, 0, 0, 0.06);
}
.pm4-topbar {
  background: rgba(5, 150, 105, 0.03);
  border-bottom: 1px solid rgba(5, 150, 105, 0.07);
  padding: 7px 10px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.pm4-logo {
  height: 5px;
  width: 38%;
  border-radius: 3px;
  background: rgba(5, 150, 105, 0.4);
}
.pm4-nav-pills {
  display: flex;
  gap: 3px;
  margin-left: auto;
}
.pm4-np {
  height: 4px;
  width: 14px;
  border-radius: 2px;
  background: rgba(5, 150, 105, 0.12);
}
.pm4-body {
  padding: 10px 12px;
}
.pm4-car-wrap {
  height: 46px;
  border-radius: 8px;
  margin-bottom: 8px;
  background: linear-gradient(110deg, rgba(5, 150, 105, 0.07), rgba(6, 182, 212, 0.05));
  border: 1px solid rgba(5, 150, 105, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}
.pm4-row2 {
  display: flex;
  gap: 5px;
  margin-bottom: 6px;
}
.pm4-input {
  flex: 1;
  height: 17px;
  border-radius: 5px;
  background: rgba(0, 0, 0, 0.03);
  border: 1px solid rgba(5, 150, 105, 0.1);
}
.pm4-dates {
  display: flex;
  gap: 4px;
  margin-bottom: 6px;
}
.pm4-date {
  flex: 1;
  height: 22px;
  border-radius: 5px;
  background: rgba(5, 150, 105, 0.05);
  border: 1px solid rgba(5, 150, 105, 0.1);
}
.pm4-cta {
  height: 21px;
  width: 100%;
  border-radius: 6px;
  background: rgba(5, 150, 105, 0.35);
}

/* ── CONTENT OVERLAY ── */
.pf-content {
  position: absolute;
  inset: 0;
  padding: 22px 24px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: linear-gradient(
    to top,
    rgba(255, 255, 255, 0.98) 0%,
    rgba(255, 255, 255, 0.82) 30%,
    rgba(255, 255, 255, 0.3) 60%,
    transparent 100%
  );
  transition: background 0.35s ease;
}
.pf-card:hover .pf-content {
  background: linear-gradient(
    to top,
    rgba(255, 255, 255, 1) 0%,
    rgba(255, 255, 255, 0.9) 35%,
    rgba(255, 255, 255, 0.4) 65%,
    transparent 100%
  );
}

.pf-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-bottom: 9px;
  transform: translateY(4px);
  transition: transform 0.38s cubic-bezier(0.22, 1, 0.36, 1);
}
.pf-card:hover .pf-tags {
  transform: translateY(0);
}

.pf-tag {
  padding: 3px 10px;
  border-radius: 100px;
  font-size: 0.61rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  backdrop-filter: blur(8px);
  border: 1px solid;
}
.pf-tag--blue {
  background: rgba(26, 95, 232, 0.08);
  color: #1a5fe8;
  border-color: rgba(26, 95, 232, 0.2);
}
.pf-tag--cyan {
  background: rgba(6, 182, 212, 0.08);
  color: #0891b2;
  border-color: rgba(6, 182, 212, 0.2);
}
.pf-tag--amber {
  background: rgba(217, 119, 6, 0.08);
  color: #b45309;
  border-color: rgba(217, 119, 6, 0.22);
}
.pf-tag--orange {
  background: rgba(234, 88, 12, 0.07);
  color: #c2410c;
  border-color: rgba(234, 88, 12, 0.2);
}
.pf-tag--purple {
  background: rgba(124, 58, 237, 0.08);
  color: #7c3aed;
  border-color: rgba(124, 58, 237, 0.2);
}
.pf-tag--indigo {
  background: rgba(79, 70, 229, 0.08);
  color: #4338ca;
  border-color: rgba(79, 70, 229, 0.2);
}
.pf-tag--green {
  background: rgba(5, 150, 105, 0.08);
  color: #059669;
  border-color: rgba(5, 150, 105, 0.2);
}
.pf-tag--teal {
  background: rgba(6, 182, 212, 0.07);
  color: #0e7490;
  border-color: rgba(6, 182, 212, 0.18);
}

.pf-card-title {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  color: #0d1b3e;
  line-height: 1.2;
  margin-bottom: 5px;
  transition: color 0.25s;
}
.pf-card--1 .pf-card-title {
  font-size: 1.4rem;
}
.pf-card--4 .pf-card-title {
  font-size: 1.2rem;
}

.pf-card-desc {
  font-size: 0.72rem;
  color: #7a8aaa;
  line-height: 1.65;
  max-width: 480px;
  opacity: 0;
  transform: translateY(10px);
  transition:
    opacity 0.32s ease 0.05s,
    transform 0.36s cubic-bezier(0.22, 1, 0.36, 1) 0.05s;
}
.pf-card:hover .pf-card-desc {
  opacity: 1;
  transform: translateY(0);
}

/* "Detayları Gör" link */
.pf-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 8px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-decoration: none;
  opacity: 0;
  transform: translateY(10px);
  transition:
    opacity 0.3s ease 0.1s,
    transform 0.34s cubic-bezier(0.22, 1, 0.36, 1) 0.1s;
}
.pf-card:hover .pf-card-link {
  opacity: 1;
  transform: translateY(0);
}
.pf-card-link svg {
  transition: transform 0.22s;
}
.pf-card:hover .pf-card-link svg {
  transform: translateX(3px);
}
.pf-card--1 .pf-card-link {
  color: #1a5fe8;
}
.pf-card--2 .pf-card-link {
  color: #b45309;
}
.pf-card--3 .pf-card-link {
  color: #7c3aed;
}
.pf-card--4 .pf-card-link {
  color: #059669;
}

/* corner badge */
.pf-corner-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 3;
  padding: 3px 10px;
  border-radius: 100px;
  font-size: 0.59rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  backdrop-filter: blur(8px);
  border: 1px solid;
  opacity: 0.7;
  transition: opacity 0.25s;
}
.pf-card:hover .pf-corner-badge {
  opacity: 1;
}
.pf-card--1 .pf-corner-badge {
  background: rgba(26, 95, 232, 0.07);
  color: #1a5fe8;
  border-color: rgba(26, 95, 232, 0.18);
}
.pf-card--2 .pf-corner-badge {
  background: rgba(217, 119, 6, 0.07);
  color: #b45309;
  border-color: rgba(217, 119, 6, 0.18);
}
.pf-card--3 .pf-corner-badge {
  background: rgba(124, 58, 237, 0.07);
  color: #7c3aed;
  border-color: rgba(124, 58, 237, 0.18);
}
.pf-card--4 .pf-corner-badge {
  background: rgba(5, 150, 105, 0.07);
  color: #059669;
  border-color: rgba(5, 150, 105, 0.18);
}

/* ── SEE ALL ── */
.pf-footer {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-top: 32px;
  gap: 16px;
}
.pf-footer-note {
  font-size: 0.74rem;
  color: #9aabbf;
}
.pf-see-all {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.84rem;
  font-weight: 600;
  color: #7a8aaa;
  text-decoration: none;
  letter-spacing: 0.025em;
  border-bottom: 1px solid rgba(122, 138, 170, 0.2);
  padding-bottom: 2px;
  transition:
    color 0.22s,
    gap 0.25s,
    border-color 0.22s;
}
.pf-see-all:hover {
  color: #1a5fe8;
  gap: 14px;
  border-color: rgba(26, 95, 232, 0.3);
}
.pf-see-all svg {
  transition: transform 0.25s cubic-bezier(0.22, 1, 0.36, 1);
}
.pf-see-all:hover svg {
  transform: translateX(4px);
}

/* ══════════════════════════════════════════════════════════
   DETAIL POPUP / MODAL
══════════════════════════════════════════════════════════ */
.pf-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(8, 12, 28, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}
.pf-overlay.pf-open {
  opacity: 1;
  pointer-events: all;
}

.pf-modal {
  background: #fff;
  border-radius: 26px;
  width: 100%;
  max-width: 820px;
  max-height: 90vh;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(0, 0, 0, 0.1) transparent;
  position: relative;
  transform: translateY(32px) scale(0.97);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow:
    0 40px 100px rgba(0, 0, 0, 0.25),
    0 8px 32px rgba(0, 0, 0, 0.12);
}
.pf-overlay.pf-open .pf-modal {
  transform: translateY(0) scale(1);
}

/* close button */
.pf-modal-close {
  position: fixed;
  top: 0;
  right: 0;
  float: right;
  margin: 16px 16px 0 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgb(255 255 255);
  border: 1px solid rgba(0, 0, 0, 0.08);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    background 0.2s,
    transform 0.2s;
  z-index: 10;
  flex-shrink: 0;
}
.pf-modal-close:hover {
  background: rgba(0, 0, 0, 0.1);
  transform: scale(1.1);
}
.pf-modal-close:hover svg path {
  stroke: #0052ff;
  transition: stroke 0.2s ease;
}
.pf-modal-close svg {
  pointer-events: none;
}

/* modal hero area */
.pf-modal-hero {
  height: 220px;
  position: relative;
  overflow: hidden;
  border-radius: 26px 0 0 0;
  display: flex;
  align-items: flex-end;
  padding: 28px 36px;
}
.pf-modal-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.pf-modal:hover .pf-modal-hero-bg {
  transform: scale(1.03);
}
.pf-modal-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to top, rgba(5, 10, 30, 0.75) 0%, rgba(5, 10, 30, 0.3) 60%, transparent 100%);
}
.pf-modal-hero-content {
  position: relative;
  z-index: 2;
}
.pf-modal-hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-bottom: 10px;
}
.pf-modal-hero-tag {
  padding: 3px 10px;
  border-radius: 100px;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  backdrop-filter: blur(8px);
  border: 1px solid;
  color: #fff;
}
.pf-modal-hero-title {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 1.7rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

/* modal body */
.pf-modal-body {
  padding: 32px 36px 40px;
}

.pf-modal-lead {
  font-size: 0.95rem;
  color: #4a5a7a;
  line-height: 1.75;
  margin-bottom: 28px;
  border-left: 3px solid;
  padding-left: 16px;
}

/* stats row */
.pf-modal-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 32px;
}
.pf-modal-stat {
  background: #f8f9ff;
  border-radius: 14px;
  padding: 16px 18px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.pf-modal-stat-val {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 1.55rem;
  font-weight: 800;
  line-height: 1;
}
.pf-modal-stat-lbl {
  font-size: 0.7rem;
  color: #8a9bbf;
  line-height: 1.4;
}

/* feature list */
.pf-modal-features {
  margin-bottom: 28px;
}
.pf-modal-features-title {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #b0bcd8;
  margin-bottom: 14px;
}
.pf-modal-feature-list {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.pf-modal-feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.82rem;
  color: #3a4a6a;
  line-height: 1.55;
}
.pf-modal-feature-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 1px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
}

/* tech pills */
.pf-modal-tech {
  margin-bottom: 28px;
}
.pf-modal-tech-title {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #b0bcd8;
  margin-bottom: 12px;
}
.pf-modal-tech-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}
.pf-modal-tech-pill {
  padding: 5px 14px;
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 600;
  background: #f0f4ff;
  color: #4a5a9a;
  border: 1px solid rgba(26, 95, 232, 0.12);
}

/* CTA row */
.pf-modal-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 24px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  flex-wrap: wrap;
}
.pf-modal-cta-note {
  font-size: 0.75rem;
  color: #9aabbf;
}
.pf-modal-cta-note strong {
  font-weight: 600;
}
.pf-modal-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 12px 24px;
  border-radius: 12px;
  font-size: 0.85rem;
  font-weight: 700;
  text-decoration: none;
  color: #fff;
  border: none;
  cursor: pointer;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}
.pf-modal-cta-btn:hover {
  transform: translateY(-2px);
}
.pf-modal-cta-btn svg {
  transition: transform 0.22s;
}
.pf-modal-cta-btn:hover svg {
  transform: translateX(3px);
}

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  .pf-inner {
    padding: 0 24px;
  }
  .pf-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 300px 260px 240px;
  }
  .pf-card--1 {
    grid-column: 1/3;
    grid-row: 1;
  }
  .pf-card--2 {
    grid-column: 1/2;
    grid-row: 2;
  }
  .pf-card--3 {
    grid-column: 2/3;
    grid-row: 2;
  }
  .pf-card--4 {
    grid-column: 1/3;
    grid-row: 3;
  }
  .pf-mock--1 {
    width: 160px;
    right: 14px;
  }
  .pf-modal-hero {
    height: 180px;
    padding: 20px 24px;
  }
  .pf-modal-body {
    padding: 24px 24px 32px;
  }
  .pf-modal-stats {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 600px) {
  .pf-inner {
    padding: 0 16px;
  }
  .pf-section {
    padding: 72px 0 80px;
  }
  .pf-grid {
    grid-template-columns: 1fr;
    grid-template-rows: 260px 220px 220px 220px;
  }
  .pf-card--1,
  .pf-card--2,
  .pf-card--3,
  .pf-card--4 {
    grid-column: 1;
    grid-row: auto;
  }
  .pf-mock--1,
  .pf-mock--2,
  .pf-mock--3,
  .pf-mock--4 {
    display: none;
  }
  .pf-header {
    flex-direction: column;
    align-items: flex-start;
  }
  .pf-header-meta {
    align-items: flex-start;
  }
  .pf-modal-stats {
    grid-template-columns: 1fr 1fr;
  }
  .pf-modal-hero-title {
    font-size: 1.3rem;
  }
}
:root {
  --blue: #0052ff;
  --blue-lt: #4080ff;
  --blue-glow: rgba(0, 82, 255, 0.18);
  --blue-dim: rgba(0, 82, 255, 0.07);
  --green: #10b981;
  --green-dim: rgba(16, 185, 129, 0.1);
  --red: #ef4444;
  --red-dim: rgba(239, 68, 68, 0.07);
  --purple: #a855f7;
  --bg: #f4f6fb;
  --white: #fff;
  --dark: #080a12;
  --dark2: #0e1120;
  --dark3: #161929;
  --dark4: #1e2236;
  --text: #0d1021;
  --text2: #3d4460;
  --muted: #8a90a8;
  --border: rgba(0, 0, 0, 0.065);
  --border-d: rgba(255, 255, 255, 0.07);
  --s1: 0 1px 4px rgba(0, 0, 0, 0.05), 0 0 1px rgba(0, 0, 0, 0.04);
  --s2: 0 4px 20px rgba(0, 0, 0, 0.08), 0 1px 4px rgba(0, 0, 0, 0.05);
  --s3: 0 16px 48px rgba(0, 0, 0, 0.12), 0 4px 12px rgba(0, 0, 0, 0.07);
  --s4: 0 32px 80px rgba(0, 0, 0, 0.18), 0 8px 24px rgba(0, 0, 0, 0.1);
  --sb: 0 8px 28px rgba(0, 82, 255, 0.28);
  --sg: 0 6px 20px rgba(16, 185, 129, 0.32);
  --r8: 8px;
  --r12: 12px;
  --r18: 18px;
  --r24: 24px;
  --r32: 32px;
  --fd: 'Bricolage Grotesque', sans-serif;
  --fb: 'Plus Jakarta Sans', sans-serif;
  --fm: 'JetBrains Mono', monospace;
}
/* ═══════════════════ BENTO ══════════════════════════════ */
.bento {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 76px;
  gap: 14px;
}

.cw {
  grid-column: span 8;
  grid-row: span 5;
}

.ct {
  grid-column: span 4;
  grid-row: span 6;
}

.csq {
  grid-column: span 4;
  grid-row: span 5;
}

.ch {
  grid-column: span 6;
  grid-row: span 4;
}

.c3 {
  grid-column: span 4;
  grid-row: span 4;
}

.cw2 {
  grid-column: span 8;
  grid-row: span 4;
}

/* ═══════════════════ CARD ═══════════════════════════════ */
.pc {
  position: relative;
  border-radius: var(--r24);
  overflow: hidden;
  cursor: pointer;
  background: var(--dark2);
  border: 1px solid rgba(255, 255, 255, 0.04);
  box-shadow: var(--s2);
  transition:
    box-shadow 0.3s,
    transform 0.3s;
  isolation: isolate;
}

.pc:hover {
  box-shadow: var(--s4);
  transform: translateY(-4px);
}

.pc-vis {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.pc-ov {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(8, 10, 18, 0.15) 0%, rgba(8, 10, 18, 0.82) 65%, rgba(8, 10, 18, 0.97) 100%);
  transition: background 0.3s;
}

.pc:hover .pc-ov {
  background: linear-gradient(180deg, rgba(8, 10, 18, 0.55) 0%, rgba(8, 10, 18, 0.92) 65%, rgba(8, 10, 18, 0.99) 100%);
}

.pc-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 3;
  background: var(--green);
  color: #fff;
  font-family: var(--fm);
  font-size: 11px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 100px;
  box-shadow: var(--sg);
  letter-spacing: 0.04em;
}

.pc-cat {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 3;
  background: rgba(255, 255, 255, 0.09);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.75);
  font-size: 10.5px;
  font-weight: 600;
  padding: 4px 11px;
  border-radius: 100px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.pc-cnt {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px 22px;
  z-index: 2;
}

.pc-t {
  font-family: var(--fd);
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 7px;
}

.pc-d {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.55;
  letter-spacing: -0.005em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.pc-cta {
  position: absolute;
  inset: 0;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.28s;
}

.pc:hover .pc-cta {
  opacity: 1;
}

.pc-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--blue);
  color: #fff;
  border: none;
  border-radius: var(--r12);
  padding: 13px 26px;
  font-family: var(--fb);
  font-size: 13.5px;
  font-weight: 600;
  box-shadow: 0 10px 30px rgba(0, 82, 255, 0.45);
  transform: translateY(10px) scale(0.95);
  transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1);
  letter-spacing: -0.01em;
  cursor: pointer;
}

.pc:hover .pc-btn {
  transform: translateY(0) scale(1);
}

.pc-btn svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: #fff;
  stroke-width: 2.2;
  flex-shrink: 0;
}

/* ═══════════════════ CARD VISUALS ═══════════════════════ */
/* 1 Elzgo */
.v1 {
  background: linear-gradient(145deg, #060d20 0%, #0a1535 50%, #071228 100%);
}

.v1::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 82, 255, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 82, 255, 0.07) 1px, transparent 1px);
  background-size: 36px 36px;
}

.v1::after {
  content: '';
  position: absolute;
  bottom: 34%;
  left: 6%;
  right: 6%;
  height: 58%;
  background: linear-gradient(to top, rgba(0, 82, 255, 0.17), transparent);
  clip-path: polygon(
    0% 100%,
    6% 82%,
    14% 76%,
    23% 62%,
    34% 52%,
    44% 36%,
    56% 28%,
    66% 18%,
    76% 10%,
    88% 4%,
    100% 0%,
    100% 100%
  );
}

.v1 .cl {
  position: absolute;
  bottom: calc(34% + 1px);
  left: 6%;
  right: 6%;
  height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--blue-lt));
  opacity: 0.85;
}

.v1 .gd {
  position: absolute;
  width: 10px;
  height: 10px;
  background: #fff;
  border-radius: 50%;
  box-shadow:
    0 0 0 3px var(--blue),
    0 0 16px var(--blue);
  bottom: calc(34% + 48%);
  right: 13%;
  z-index: 2;
}

/* 2 ROAS */
.v2 {
  background: linear-gradient(145deg, #060f0c 0%, #081810 100%);
}

.v2::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 100% 80% at 50% 50%, rgba(16, 185, 129, 0.12), transparent 60%);
}

.v2::after {
  content: '';
  position: absolute;
  bottom: 20%;
  left: 8%;
  right: 8%;
  height: 52%;
  background:
    linear-gradient(to top, rgba(16, 185, 129, 0.3), rgba(16, 185, 129, 0.05)) 0 0/11% 55% no-repeat,
    linear-gradient(to top, rgba(16, 185, 129, 0.3), rgba(16, 185, 129, 0.05)) 13% 0/11% 38% no-repeat,
    linear-gradient(to top, rgba(16, 185, 129, 0.3), rgba(16, 185, 129, 0.05)) 26% 0/11% 72% no-repeat,
    linear-gradient(to top, rgba(16, 185, 129, 0.3), rgba(16, 185, 129, 0.05)) 39% 0/11% 48% no-repeat,
    linear-gradient(to top, rgba(16, 185, 129, 0.3), rgba(16, 185, 129, 0.05)) 52% 0/11% 85% no-repeat,
    linear-gradient(to top, rgba(16, 185, 129, 0.3), rgba(16, 185, 129, 0.05)) 65% 0/11% 62% no-repeat,
    linear-gradient(to top, rgba(16, 185, 129, 0.3), rgba(16, 185, 129, 0.05)) 78% 0/11% 100% no-repeat,
    linear-gradient(to top, rgba(16, 185, 129, 0.3), rgba(16, 185, 129, 0.05)) 91% 0/11% 78% no-repeat;
}

/* 3 SaaS */
.v3 {
  background: linear-gradient(145deg, #0c0f20 0%, #090c1c 100%);
}

.v3::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 82, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 82, 255, 0.06) 1px, transparent 1px);
  background-size: 30px 30px;
}

.v3::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 160px;
  height: 160px;
  border-radius: 50%;
  border: 1px solid rgba(0, 82, 255, 0.18);
  box-shadow:
    0 0 0 24px rgba(0, 82, 255, 0.05),
    0 0 0 52px rgba(0, 82, 255, 0.03),
    inset 0 0 40px rgba(0, 82, 255, 0.08);
}

.v3 .ic {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 82, 255, 0.25), transparent 70%);
  border: 1px solid rgba(0, 82, 255, 0.3);
}

/* 4 Moda */
.v4 {
  background: linear-gradient(145deg, #140820 0%, #0e0618 100%);
}

.v4::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 120% 80% at 75% 25%, rgba(168, 85, 247, 0.18), transparent 55%),
    radial-gradient(ellipse 80% 60% at 25% 75%, rgba(0, 82, 255, 0.12), transparent 50%);
}

.v4::after {
  content: '';
  position: absolute;
  top: 35%;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(168, 85, 247, 0.8), transparent);
  box-shadow: 0 0 20px rgba(168, 85, 247, 0.4);
}

/* 5 MedTech */
.v5 {
  background: linear-gradient(145deg, #080d1a 0%, #0a1124 100%);
}

.v5::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 82, 255, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 82, 255, 0.07) 1px, transparent 1px);
  background-size: 28px 28px;
}

.v5::after {
  content: '';
  position: absolute;
  bottom: 25%;
  left: 8%;
  right: 8%;
  height: 50%;
  background: linear-gradient(to top, rgba(0, 82, 255, 0.14), transparent);
  clip-path: polygon(
    0% 100%,
    100% 100%,
    100% 40%,
    75% 40%,
    75% 0%,
    60% 0%,
    60% 60%,
    40% 60%,
    40% 20%,
    25% 20%,
    25% 40%,
    0% 40%
  );
}

/* 6 Cargo */
.v6 {
  background: linear-gradient(145deg, #080e10 0%, #0a1214 100%);
}

.v6::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 70%, rgba(16, 185, 129, 0.09), transparent 55%);
}

.v6::after {
  content: '';
  position: absolute;
  bottom: 22%;
  left: 8%;
  right: 8%;
  height: 55%;
  background:
    linear-gradient(to top, rgba(16, 185, 129, 0.28), transparent) 0 0/18% 40% no-repeat,
    linear-gradient(to top, rgba(16, 185, 129, 0.28), transparent) 22% 0/18% 75% no-repeat,
    linear-gradient(to top, rgba(16, 185, 129, 0.28), transparent) 44% 0/18% 50% no-repeat,
    linear-gradient(to top, rgba(16, 185, 129, 0.28), transparent) 66% 0/18% 95% no-repeat,
    linear-gradient(to top, rgba(16, 185, 129, 0.28), transparent) 88% 0/18% 62% no-repeat;
}

.pc.hidden {
  display: none;
}

/* ═══════════════════ BACKDROP / MODAL ══════════════════ */
.bd {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(4, 5, 10, 0.72);
  backdrop-filter: blur(14px) saturate(150%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.32s;
}

.bd.open {
  opacity: 1;
  pointer-events: all;
}

.modal-mo {
  background: var(--white);
  border-radius: var(--r32);
  width: 100%;
  margin-top: 70px;
  max-width: 880px;
  max-height: 85vh;
  overflow-y: auto;
  box-shadow:
    var(--s4),
    0 0 0 1px rgba(255, 255, 255, 0.06);
  transform: translateY(28px) scale(0.975);
  transition: transform 0.42s cubic-bezier(0.22, 1, 0.36, 1);
  scrollbar-width: thin;
  scrollbar-color: rgba(0, 82, 255, 0.15) transparent;
}

.modal-mo::-webkit-scrollbar {
  width: 4px;
}

.modal-mo::-webkit-scrollbar-thumb {
  background: rgba(0, 82, 255, 0.18);
  border-radius: 4px;
}

.bd.open .modal-mo {
  transform: translateY(0) scale(1);
}

/* modal header */
.modal-mo .mh {
  background: var(--dark2);
  border-radius: var(--r32) var(--r32) 0 0;
  padding: 44px 48px 48px;
  position: relative;
  overflow: hidden;
}

.modal-mo .mh::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}

.modal-mo .mh::after {
  content: '';
  position: absolute;
  top: -100px;
  right: -80px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(0, 82, 255, 0.18) 0%, transparent 60%);
  pointer-events: none;
}

.modal-mo .m-x {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 10;
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: grid;
  place-items: center;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.6);
  transition:
    background 0.2s,
    transform 0.25s;
}

.modal-mo .m-x:hover {
  background: rgba(255, 255, 255, 0.14);
  transform: rotate(90deg);
}

.modal-mo .m-x svg {
  width: 15px;
  height: 15px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
}

.modal-mo .m-ey {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(0, 82, 255, 0.14);
  border: 1px solid rgba(0, 82, 255, 0.2);
  color: #7aaaff;
  border-radius: 100px;
  padding: 4px 13px;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
  font-family: var(--fb);
}

.modal-mo .m-ti {
  font-family: var(--fd);
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 800;
  color: #fff;
  line-height: 1.12;
  letter-spacing: -0.035em;
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
  max-width: 580px;
}

.modal-mo .m-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--r12);
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.modal-mo .m-mi {
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.025);
  border-right: 1px solid rgba(255, 255, 255, 0.07);
}

.modal-mo .m-mi:last-child {
  border-right: none;
}

.modal-mo .m-ml {
  font-size: 9.5px;
  color: rgba(255, 255, 255, 0.35);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 5px;
}

.modal-mo .m-mv {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
  letter-spacing: -0.01em;
}

/* modal body */
.modal-mo .mb {
  padding: 44px 48px;
}

.modal-mo .st {
  font-family: var(--fd);
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.02em;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.modal-mo .st::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}

/* ps */
.modal-mo .ps {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 44px;
}

.modal-mo .psc {
  border-radius: var(--r12);
  padding: 24px;
  border: 1px solid;
}

.modal-mo .psc.pr {
  background: var(--red-dim);
  border-color: rgba(239, 68, 68, 0.1);
}

.modal-mo .psc.ps2 {
  background: var(--blue-dim);
  border-color: rgba(0, 82, 255, 0.1);
}

.modal-mo .psh {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 16px;
}

.modal-mo .psi {
  width: 30px;
  height: 30px;
  border-radius: 7px;
  display: grid;
  place-items: center;
  font-size: 14px;
}

.modal-mo .psi.r {
  background: rgba(239, 68, 68, 0.1);
}

.modal-mo .psi.b {
  background: rgba(0, 82, 255, 0.1);
}

.modal-mo .psl {
  font-family: var(--fd);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.modal-mo .psl.r {
  color: var(--red);
}

.modal-mo .psl.b {
  color: var(--blue);
}

.modal-mo .pli {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.modal-mo .pli li {
  font-size: 13.5px;
  color: var(--text);
  line-height: 1.55;
  display: flex;
  gap: 8px;
  align-items: flex-start;
  letter-spacing: -0.01em;
}

.modal-mo .pli li::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  margin-top: 7px;
  flex-shrink: 0;
}

.modal-mo .pr .pli li::before {
  background: var(--red);
}

.modal-mo .ps2 .pli li::before {
  background: var(--blue);
}

/* data */
.dr {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 44px;
}

.dc {
  background: var(--dark);
  border-radius: var(--r12);
  padding: 22px 18px 18px;
  border: 1px solid rgba(255, 255, 255, 0.04);
  position: relative;
  overflow: hidden;
}

.dc::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
}

.dc.db::before {
  background: linear-gradient(90deg, var(--blue), transparent);
}

.dc.dg::before {
  background: linear-gradient(90deg, var(--green), transparent);
}

.dc.dp::before {
  background: linear-gradient(90deg, var(--purple), transparent);
}

.dm {
  font-family: var(--fm);
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 4px;
  letter-spacing: -0.03em;
}

.dm.b {
  color: #6699ff;
}

.dm.g {
  color: var(--green);
}

.dm.p {
  color: #c084fc;
}

.dl {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.38);
  margin-bottom: 16px;
  letter-spacing: 0.01em;
}

.bc {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  height: 48px;
}

.bar {
  flex: 1;
  border-radius: 3px 3px 0 0;
  transform: scaleY(0);
  transform-origin: bottom;
  animation: grow 0.9s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes grow {
  to {
    transform: scaleY(1);
  }
}

.bar.b {
  background: linear-gradient(to top, var(--blue), #6699ff);
}

.bar.g {
  background: linear-gradient(to top, var(--green), #34d39a);
}

.bar.p {
  background: linear-gradient(to top, var(--purple), #c084fc);
}

/* cta */
.mc {
  background: linear-gradient(135deg, #f5f8ff 0%, #eaefff 100%);
  border: 1px solid rgba(0, 82, 255, 0.1);
  border-radius: var(--r24);
  padding: 38px 40px;
  text-align: center;
}

.mc h3 {
  font-family: var(--fd);
  font-size: 20px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 10px;
  line-height: 1.25;
  letter-spacing: -0.03em;
}

.mc p {
  font-size: 14px;
  color: var(--text2);
  margin-bottom: 26px;
  letter-spacing: -0.01em;
  line-height: 1.65;
}

.mc-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--blue);
  color: #fff;
  border: none;
  border-radius: var(--r12);
  padding: 14px 30px;
  font-family: var(--fb);
  font-size: 14.5px;
  font-weight: 600;
  cursor: pointer;
  letter-spacing: -0.01em;
  box-shadow: var(--sb);
  transition:
    background 0.2s,
    transform 0.2s,
    box-shadow 0.2s;
}

.mc-btn:hover {
  background: var(--blue-lt);
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(0, 82, 255, 0.38);
}

.mc-btn svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: #fff;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ═══════════════════ FOOTER ═════════════════════════════ */
footer {
  text-align: center;
  padding: 44px;
  color: var(--muted);
  font-size: 13px;
  border-top: 1px solid var(--border);
  position: relative;
  z-index: 1;
  letter-spacing: -0.01em;
}

footer a {
  color: var(--blue);
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}

/* ═══════════════════ RESPONSIVE ═════════════════════════ */
@media (max-width: 860px) {
  .n-links,
  .n-ghost {
    display: none;
  }

  .page {
    padding: 0 16px 64px;
  }

  .cw,
  .ct,
  .csq,
  .ch,
  .c3,
  .cw2 {
    grid-column: span 12;
    grid-row: span 5;
  }

  .mb {
    padding: 22px 20px;
  }

  .mh {
    padding: 28px 22px 32px;
    flex-direction: column;
  }

  .m-ti {
    font-size: 22px;
  }

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

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

  .m-meta {
    grid-template-columns: 1fr 1fr;
  }

  .ss {
    flex-wrap: wrap;
  }

  .ss-i {
    min-width: 120px;
  }
}
/* FOMO banner */
.fomo-banner {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: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;
}