:root {
  --blue: #0052ff;
  --blue-hover: #1463ff;
  --blue-tint: #eef2ff;
  --blue-border: rgba(0, 82, 255, 0.15);
  --ink: #0b0f1a;
  --ink-mid: #374060;
  --ink-mute: #8892aa;
  --bg: #f5f7fc;
  --white: #ffffff;
  --card-border: #e4e8f2;
  --card-row: #f8f9fd;
  --blue-light: #3375ff;
  --blue-glow: rgba(0, 82, 255, 0.1);
  --green: #10b981;
  --green-light: rgba(16, 185, 129, 0.12);
  --red: #ef4444;
  --orange: #f59e0b;
  --dark: #0a0b10;
  --dark-2: #3d4050;
  --border: rgba(0, 82, 255, 0.1);
  --shadow-soft: 0 4px 32px rgba(0, 0, 0, 0.06), 0 1px 4px rgba(0, 0, 0, 0.04);
  --shadow-blue: 0 8px 40px rgba(0, 82, 255, 0.18);
  --r-sm: 12px;
  --r-lg: 24px;
}


body::before {
  content: '';
  position: fixed;
  top: -200px;
  left: -160px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(0, 82, 255, 0.07) 0%, transparent 68%);
  pointer-events: none;
  z-index: 0;
}
/* ── 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
  ══════════════════════════════════════ */
.graphic-design-hero {
  position: relative;
      font-family: 'Bricolage Grotesque', sans-serif;
  z-index: 1;
  min-height: 600px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 5vw;
  padding: 0;
  padding-bottom:10px;
  max-width: 1280px;
  margin: 0 auto;
}

.hero-left {
  display: flex;
  flex-direction: column;
  gap:15px;
  animation: fadeUp 0.7s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  background: var(--white);
  border: 1px solid var(--card-border);
  border-radius: 100px;
  padding: 6px 14px 6px 8px;
  margin-bottom: 28px;
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.05);
}

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

.eyebrow-dot svg {
  width: 10px;
  height: 10px;
  fill: var(--blue);
}

.eyebrow-text {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue);
}

.hero-h1 {
  font-size: clamp(38px, 4.2vw, 60px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--ink);
}

.hero-h1 .accent {
  color: var(--blue);
}

.hero-sub {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.76;
  color: var(--dark-2);
  max-width: 440px;
}



.cta-group {
  display: flex;
  align-items: center;
  gap: 12px;
}


.trust-row {
  display: flex;
  align-items: center;
  gap: 18px;
}

.trust-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.trust-num {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--ink);
  line-height: 1;
}

.trust-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

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

.hero-right {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeUp 0.8s 0.12s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.live-pill {
  position: absolute;
  top: -16px;
  right: 16px;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 7px;
  background: var(--white);
  border: 1px solid var(--card-border);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 11.5px;
  font-weight: 600;
  color: var(--ink);
}

.live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 6px rgba(34, 197, 94, 0.6);
  animation: pulse 2s infinite;
}

.brand-board {
  width: 100%;
  background: var(--white);
  border: 1px solid var(--card-border);
  border-radius: 18px;
  box-shadow:
    0 8px 40px rgba(0, 0, 0, 0.07),
    0 1px 3px rgba(0, 0, 0, 0.04);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition:
    box-shadow 0.35s,
    transform 0.35s;
}

.brand-board:hover {
  box-shadow:
    0 20px 56px rgba(0, 82, 255, 0.09),
    0 2px 8px rgba(0, 0, 0, 0.05);
  transform: translateY(-4px);
}

.board-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.board-title {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

.board-version {
  font-size: 10px;
  font-weight: 600;
  color: var(--blue);
  background: var(--blue-tint);
  border: 1px solid var(--blue-border);
  padding: 3px 10px;
  border-radius: 100px;
}

.divider {
  height: 1px;
  background: var(--card-border);
}

.sec-label {
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 10px;
}

.palette-row {
  display: flex;
  gap: 8px;
}

.sw {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  flex: 1;
}

.sw-circle {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  transition: transform 0.2s;
  cursor: default;
}

.sw-circle:hover {
  transform: scale(1.12);
}

.sw-code {
  font-size: 8px;
  font-weight: 500;
  color: var(--ink-mute);
}

.typo-wrap {
  background: var(--card-row);
  border-radius: 10px;
  border: 1px solid var(--card-border);
  padding: 0 14px;
}

.typo-row {
  display: grid;
  grid-template-columns: 44px 1fr auto;
  align-items: center;
  gap: 10px;
  padding: 7px 0;
  border-bottom: 1px solid var(--card-border);
}

.typo-row:last-child {
  border-bottom: none;
}

.ty-tag {
  font-size: 8.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

.ty-xl {
  font-size: 26px;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.04em;
  line-height: 1;
}

.ty-lg {
  font-size: 17px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.03em;
}

.ty-body {
  font-size: 13px;
  font-weight: 400;
  color: var(--ink-mid);
}

.ty-cap {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

.ty-name {
  font-size: 9px;
  color: var(--ink-mute);
  white-space: nowrap;
  text-align: right;
}

.social-grid {
  display: grid;
  grid-template-columns: 2fr 3fr 2fr;
  gap: 7px;
  height: 78px;
}

.wf {
  border-radius: 8px;
  border: 1.5px solid var(--card-border);
  background: var(--card-row);
  display: flex;
  flex-direction: column;
  padding: 8px;
  gap: 4px;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
}

.wf:hover {
  border-color: var(--blue-border);
  box-shadow: 0 4px 14px rgba(0, 82, 255, 0.08);
}

.wf-img {
  flex: 1;
  border-radius: 4px;
  background: linear-gradient(135deg, #e8eeff 0%, #d6e0ff 100%);
  position: relative;
  overflow: hidden;
}

.wf-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, transparent 47%, rgba(0, 82, 255, 0.07) 48%, rgba(0, 82, 255, 0.07) 52%, transparent 53%),
    linear-gradient(45deg, transparent 47%, rgba(0, 82, 255, 0.05) 48%, rgba(0, 82, 255, 0.05) 52%, transparent 53%);
}

.wf-line {
  height: 3px;
  border-radius: 2px;
  background: var(--card-border);
}

.wf-line.s {
  width: 52%;
}

.wf-line.m {
  width: 75%;
}

.wf-line.f {
  width: 100%;
}

.wf.brand-card {
  background: linear-gradient(140deg, #003ee0, #0052ff);
  border-color: rgba(0, 82, 255, 0.3);
}

.wf.brand-card .wf-logo {
  width: 16px;
  height: 16px;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.25);
}

.wf.brand-card .wf-line {
  background: rgba(255, 255, 255, 0.3);
}

.wf.brand-card .wf-line.s {
  background: rgba(255, 255, 255, 0.18);
}

.board-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 2px;
}

.bf-name {
  font-size: 9.5px;
  font-weight: 400;
  color: var(--ink-mute);
}

.bf-badge {
  font-size: 9.5px;
  font-weight: 700;
  color: var(--blue);
  letter-spacing: 0.04em;
}

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

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

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

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

@media (max-width: 901px) {
  .graphic-design-hero {
    grid-template-columns: 1fr;
    height: auto;
    padding: 56px 6vw;
  }
}

/* ══════════════════════════════════════
     BÖLÜM 2 — DARK SECTION
  ══════════════════════════════════════ */
.dark-section {
  background: #0a0b10;
  padding: 96px 6vw 80px;
  position: relative;
  overflow: hidden;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.dark-section::before {
  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.82' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.025;
  pointer-events: none;
  z-index: 0;
}

.dark-section::after {
  content: '';
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 600px;
  background: radial-gradient(ellipse, rgba(0, 82, 255, 0.09) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}

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

/* section header */
.section-header {
  text-align: center;
  margin-bottom: 64px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.s-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 82, 255, 0.1);
  border: 1px solid rgba(0, 82, 255, 0.25);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #5b93ff;
}

.s-eyebrow-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #0052ff;
  box-shadow: 0 0 6px rgba(0, 82, 255, 0.8);
}

.s-h2 {
  font-size: clamp(28px, 3.2vw, 46px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: #fff;
  max-width: 640px;
}

.s-h2 .ba {
  color: #0052ff;
}

.s-sub {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.72;
  color: rgba(255, 255, 255, 0.38);
  max-width: 520px;
}

/* ── TAM BOY KART ── */
.hero-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 24px;
  padding: 52px 56px;
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 180px;
  align-items: center;
  gap: 48px;
  margin-bottom: 80px;
  transition:
    transform 0.38s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.38s,
    box-shadow 0.38s;
  cursor: default;
}

.hero-card:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 82, 255, 0.22);
  box-shadow:
    0 28px 72px rgba(0, 82, 255, 0.13),
    0 0 0 1px rgba(0, 82, 255, 0.08);
}

.hero-card::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 15%;
  right: 15%;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(0, 82, 255, 0.4), transparent);
  opacity: 0;
  transition: opacity 0.38s;
}

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

.hc-tag {
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(0, 82, 255, 0.7);
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 14px;
}

.hc-tag::before {
  content: '';
  width: 16px;
  height: 1px;
  background: rgba(0, 82, 255, 0.5);
}

.hc-title {
  font-size: clamp(28px, 2.8vw, 42px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: #fff;
  margin-bottom: 18px;
}

.hc-desc {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.76;
  color: rgba(255, 255, 255, 0.42);
  max-width: 580px;
  margin-bottom: 28px;
}

.hc-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.hc-pill {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 5px 13px;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.09);
  color: rgba(255, 255, 255, 0.45);
  transition:
    border-color 0.2s,
    color 0.2s;
}

.hero-card:hover .hc-pill {
  border-color: rgba(0, 82, 255, 0.3);
  color: rgba(255, 255, 255, 0.65);
}

/* amblem */
.hc-amblem {
  width: 160px;
  height: 160px;
  position: relative;
  flex-shrink: 0;
  justify-self: center;
}

.a-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1.5px solid rgba(0, 82, 255, 0.22);
  animation: spinSlow 18s linear infinite;
}

.a-ring.r2 {
  inset: 18px;
  border-color: rgba(0, 82, 255, 0.35);
  animation-duration: 12s;
  animation-direction: reverse;
}

.a-ring.r3 {
  inset: 36px;
  border-color: rgba(0, 82, 255, 0.55);
  animation-duration: 8s;
}

.a-center {
  position: absolute;
  inset: 54px;
  border-radius: 50%;
  background: rgba(0, 82, 255, 0.15);
  border: 1px solid rgba(0, 82, 255, 0.4);
  box-shadow: 0 0 26px rgba(0, 82, 255, 0.25);
  transition:
    box-shadow 0.4s,
    background 0.4s;
}

.hero-card:hover .a-center {
  box-shadow: 0 0 48px rgba(0, 82, 255, 0.6);
  background: rgba(0, 82, 255, 0.3);
}

.a-tick {
  position: absolute;
  left: 50%;
  top: 0;
  width: 1.5px;
  height: 10px;
  background: rgba(0, 82, 255, 0.4);
  transform-origin: bottom center;
  margin-left: -0.75px;
  border-radius: 1px;
}

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

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

/* ── HİZMET ENVANTERİ ── */
.svc-block {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 72px;
  padding-bottom: 80px;
}

.svc-top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 48px;
  gap: 20px;
  flex-wrap: wrap;
}

.svc-top-left {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.svc-kicker {
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(0, 82, 255, 0.6);
}

.svc-h3 {
  font-size: clamp(22px, 2.4vw, 34px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: #fff;
}

.svc-h3 em {
  font-style: normal;
  color: rgba(255, 255, 255, 0.3);
}

.svc-count {
  font-size: 11px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.25);
  letter-spacing: 0.06em;
}

.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.svc-cat {
  padding: 28px 28px 24px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition:
    background 0.3s,
    border-color 0.3s;
}

.svc-cat:hover {
  background: rgba(0, 82, 255, 0.04);
  border-color: rgba(0, 82, 255, 0.14);
}

.svc-cat-head {
  display: flex;
  align-items: center;
  gap: 12px;
}

.svc-icon {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  flex-shrink: 0;
  background: rgba(0, 82, 255, 0.1);
  border: 1px solid rgba(0, 82, 255, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    background 0.3s,
    box-shadow 0.3s;
}

.svc-cat:hover .svc-icon {
  background: rgba(0, 82, 255, 0.2);
  box-shadow: 0 0 18px rgba(0, 82, 255, 0.28);
}

.svc-icon svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: #5b93ff;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.svc-cat-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
  transition: color 0.3s;
}

.svc-cat:hover .svc-cat-label {
  color: rgba(255, 255, 255, 0.55);
}

.svc-list {
  display: flex;
  flex-direction: column;
}

.svc-item {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  transition: padding-left 0.2s;
}

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

.svc-item:hover {
  padding-left: 5px;
}

.svc-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  flex-shrink: 0;
  background: #0052ff;
  box-shadow: 0 0 6px rgba(0, 82, 255, 0.65);
  transition: box-shadow 0.2s;
}

.svc-item:hover .svc-dot {
  box-shadow:
    0 0 12px rgba(0, 82, 255, 1),
    0 0 24px rgba(0, 82, 255, 0.4);
}

.svc-text {
  font-size: 13px;
  font-weight: 400;
  color: #94a3b8;
  line-height: 1.45;
  transition: color 0.2s;
}

.svc-item:hover .svc-text {
  color: #ffffff;
}

/* ══════════════════════════════════════
     CTA BANDI
  ══════════════════════════════════════ */
.cta-wrap {
  background: #0a0b10;
  padding: 0 6vw 96px;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.cta-inner {
  max-width: 1240px;
  margin: 0 auto;
}

.cta-block {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #001255 0%, #003acc 45%, #0052ff 100%);
  border-radius: 24px;
  padding: 64px 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  box-shadow: 0 24px 80px rgba(0, 82, 255, 0.35);
}

.cta-block::before {
  content: '';
  position: absolute;
  top: -140px;
  right: -100px;
  width: 440px;
  height: 440px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.07) 0%, transparent 65%);
  pointer-events: none;
}

.cta-block::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: 25%;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(0, 18, 85, 0.5) 0%, transparent 65%);
  pointer-events: none;
}

.cta-left {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cta-kicker {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}

.cta-heading {
  font-size: clamp(26px, 2.8vw, 42px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: #fff;
}

.cta-sub {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.72;
  color: rgba(255, 255, 255, 0.5);
  max-width: 480px;
}

.cta-right {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-start;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #ffffff;
  color: #003acc;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.01em;
  padding: 17px 34px;
  border-radius: 12px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
  transition:
    transform 0.22s,
    box-shadow 0.22s;
}

.cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.35);
}

.cta-btn-arrow {
  font-size: 16px;
  transition: transform 0.22s;
}

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

.cta-note {
  font-size: 11.5px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.35);
  display: flex;
  align-items: center;
  gap: 7px;
}

.cta-note-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 6px rgba(34, 197, 94, 0.7);
  animation: pulse 2s infinite;
}

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

  .hero-card {
    grid-template-columns: 1fr;
    padding: 40px;
  }

  .hc-amblem {
    display: none;
  }

  .cta-block {
    padding: 44px 36px;
  }
}

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

  .cta-block {
    flex-direction: column;
  }

  .dark-section {
    padding: 64px 5vw 48px;
  }
}

.fomo-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px 10px 12px;
  background: linear-gradient(135deg, #fff5f5 0%, #fff0f0 100%);
  border: 1.5px solid rgba(229, 62, 62, 0.22);
  border-radius: 12px;
  box-shadow:
    0 2px 12px rgba(229, 62, 62, 0.1),
    0 1px 3px rgba(0, 0, 0, 0.04);
  position: relative;
  overflow: hidden;
  width: fit-content;
  animation: fomoPulseIn 0.6s 0.4s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.fomo-badge::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, #e53e3e, #fc8181, #e53e3e);
  background-size: 200% 100%;
  animation: fomoSlide 2.5s linear infinite;
}

.fomo-fire {
  font-size: 16px;
  flex-shrink: 0;
  animation: fomoShake 1.8s ease-in-out infinite;
  display: inline-block;
}

.fomo-text {
  font-size: 12.5px;
  font-weight: 500;
  color: #742a2a;
  line-height: 1;
  white-space: nowrap;
}

.fomo-count {
  font-weight: 800;
  color: #c53030;
  font-size: 13.5px;
}

.fomo-sep {
  width: 1px;
  height: 14px;
  background: rgba(229, 62, 62, 0.25);
  flex-shrink: 0;
}

.fomo-cta {
  font-size: 11.5px;
  font-weight: 700;
  color: #e53e3e;
  letter-spacing: 0.02em;
  white-space: nowrap;
  transition: letter-spacing 0.2s;
}

.fomo-badge:hover .fomo-cta {
  letter-spacing: 0.06em;
}

.fomo-badge:hover {
  border-color: rgba(229, 62, 62, 0.38);
  box-shadow:
    0 4px 20px rgba(229, 62, 62, 0.16),
    0 1px 4px rgba(0, 0, 0, 0.06);
}

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

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

@keyframes fomoShake {
  0%,
  100% {
    transform: rotate(0deg) scale(1);
  }

  20% {
    transform: rotate(-12deg) scale(1.1);
  }

  40% {
    transform: rotate(10deg) scale(1.1);
  }

  60% {
    transform: rotate(-6deg) scale(1.05);
  }

  80% {
    transform: rotate(4deg) scale(1.02);
  }
}

@keyframes fomoPulseIn {
  from {
    opacity: 0;
    transform: translateY(8px) scale(0.96);
  }

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

/* ───────────────────────────────────────────
         SECTION WRAPPER
      ─────────────────────────────────────────── */
.showcase-section {
  background: #f8faff;
  padding: 100px 6vw 110px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  position: relative;
  overflow: hidden;
}

.showcase-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(0, 82, 255, 0.14), transparent);
}

.showcase-section::after {
  content: '';
  position: absolute;
  bottom: -220px;
  right: -180px;
  width: 650px;
  height: 650px;
  background: radial-gradient(circle, rgba(0, 82, 255, 0.05) 0%, transparent 65%);
  pointer-events: none;
}

.sc-inner {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* ── HEADER ── */
.sc-header {
  text-align: center;
  margin-bottom: 56px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

.sc-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid rgba(0, 82, 255, 0.2);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #0052ff;
  box-shadow: 0 2px 12px rgba(0, 82, 255, 0.1);
}

.sc-eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #0052ff;
  animation: scPulse 2s infinite;
}

.sc-h2 {
  font-size: clamp(24px, 3vw, 42px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: #0b0f1a;
  max-width: 680px;
}

.sc-h2 .sh {
  color: #0052ff;
}

.sc-sub {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.76;
  color: #6b7a99;
  max-width: 540px;
}

/* ── TAB SELECTOR ── */
.sc-tabs {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 52px;
}

.sc-tab {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 12px;
  background: #fff;
  border: 1.5px solid #e4e8f2;
  font-size: 13px;
  font-weight: 600;
  color: #6b7a99;
  cursor: pointer;
  transition: all 0.22s cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
  user-select: none;
}

.sc-tab svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.sc-tab:hover {
  border-color: rgba(0, 82, 255, 0.3);
  color: #0052ff;
  box-shadow: 0 4px 16px rgba(0, 82, 255, 0.1);
}

.sc-tab.active {
  background: #0052ff;
  border-color: #0052ff;
  color: #fff;
  box-shadow: 0 6px 24px rgba(0, 82, 255, 0.35);
  transform: translateY(-2px);
}

.sc-tab.active svg {
  stroke: #fff;
}

/* ── STAGE WRAPPER ── */
.sc-stage-wrap {
  max-width: 960px;
  margin: 0 auto;
}

/* ── BEFORE/AFTER LABELS (outside slider) ── */
.sc-labels {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
  padding: 0 4px;
}

.sc-label {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.sc-label-before {
  color: #c0392b;
}

.sc-label-after {
  color: #0052ff;
}

.sc-label-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.sc-label-before .sc-label-dot {
  background: #e74c3c;
}

.sc-label-after .sc-label-dot {
  background: #0052ff;
  box-shadow: 0 0 8px rgba(0, 82, 255, 0.7);
  animation: scPulse 2s infinite;
}

/* ── SLIDER STAGE ── */
.sc-stage {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 20px;
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.07),
    0 8px 32px rgba(0, 0, 0, 0.1),
    0 32px 80px rgba(0, 0, 0, 0.09);
  cursor: ew-resize;
  user-select: none;
}

/* ── BEFORE PANEL (base layer) ── */
.sc-before {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ── AFTER PANEL (clip layer) ── */
.sc-after {
  position: absolute;
  inset: 0;
  clip-path: inset(0 50% 0 0);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ── PROXIMITY LABELS (inside corners) ── */
.sc-prox-before,
.sc-prox-after {
  position: absolute;
  bottom: 20px;
  z-index: 12;
  pointer-events: none;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 7px 14px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.03em;
  transition:
    opacity 0.35s ease,
    transform 0.35s ease;
}

.sc-prox-before {
  left: 20px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(200, 50, 50, 0.25);
  color: #c0392b;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
}

.sc-prox-after {
  right: 20px;
  background: rgba(10, 11, 20, 0.75);
  border: 1px solid rgba(0, 82, 255, 0.35);
  color: #fff;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 2px 20px rgba(0, 82, 255, 0.2);
}

.sc-prox-before.dominant {
  opacity: 1;
  transform: scale(1.08);
}

.sc-prox-before.recessive {
  opacity: 0.35;
  transform: scale(0.94);
}

.sc-prox-after.dominant {
  opacity: 1;
  transform: scale(1.08);
}

.sc-prox-after.recessive {
  opacity: 0.35;
  transform: scale(0.94);
}

.prox-dot-red {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #e74c3c;
  flex-shrink: 0;
}

.prox-dot-green {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 6px rgba(34, 197, 94, 0.8);
  flex-shrink: 0;
  animation: scPulse 2s infinite;
}

/* ── DIVIDER LINE + HANDLE ── */
.sc-divider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.2), #fff 15%, #fff 85%, rgba(255, 255, 255, 0.2));
  box-shadow:
    0 0 16px rgba(255, 255, 255, 0.4),
    0 0 4px rgba(0, 0, 0, 0.15);
  pointer-events: none;
  z-index: 10;
}

.sc-handle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #fff;
  box-shadow:
    0 4px 24px rgba(0, 0, 0, 0.2),
    0 0 0 3px rgba(0, 82, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    transform 0.15s ease,
    box-shadow 0.2s;
}

.sc-handle:hover {
  box-shadow:
    0 6px 32px rgba(0, 0, 0, 0.25),
    0 0 0 5px rgba(0, 82, 255, 0.25);
  transform: translate(-50%, -50%) scale(1.1);
}

.sc-handle svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: #0052ff;
  stroke-width: 2.2;
  stroke-linecap: round;
}

/* ── DRAG HINT ── */
.sc-hint {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 11.5px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.5);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  pointer-events: none;
  z-index: 5;
  opacity: 0;
  animation: scHintFade 3s 1s forwards;
}

.sc-hint-a {
  animation: scNudge 0.8s ease-in-out infinite alternate;
}

.sc-hint-b {
  animation: scNudge 0.8s 0.1s ease-in-out infinite alternate;
}

/* ── RANGE OVERLAY ── */
.sc-range {
  position: absolute;
  inset: 0;
  opacity: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  cursor: ew-resize;
  z-index: 20;
  -webkit-appearance: none;
}

/* ──────────────────────────────────────
         PANEL CONTENT STYLES
      ─────────────────────────────────────── */

/* == META ADS == */
.panel-bg-meta-before {
  background: #f0ede8;
}

.panel-bg-meta-after {
  background: #0d0e16;
}

.meta-feed-before {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  width: 56%;
  max-width: 320px;
}

.mfb-post {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 6px;
  padding: 10px;
  width: 100%;
}

.mfb-header {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 8px;
}

.mfb-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #ccc;
}

.mfb-name-block {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.mfb-name {
  width: 80px;
  height: 7px;
  background: #ccc;
  border-radius: 2px;
}

.mfb-sub {
  width: 50px;
  height: 5px;
  background: #e0e0e0;
  border-radius: 2px;
}

.mfb-image {
  width: 100%;
  height: 100px;
  border-radius: 3px;
  background: linear-gradient(135deg, #d4d6d9, #c0c2c6);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 7px;
  font-family: Arial, sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: #999;
  text-align: center;
  line-height: 1.3;
}

.mfb-caption {
  width: 90%;
  height: 6px;
  background: #e0e0e0;
  border-radius: 2px;
  margin-bottom: 4px;
}

.mfb-caption.s {
  width: 65%;
}

.mfb-btn-ugly {
  width: 100%;
  padding: 6px;
  border-radius: 3px;
  background: #3b5998;
  text-align: center;
  font-family: Arial, sans-serif;
  font-size: 10px;
  font-weight: 700;
  color: #fff;
  margin-top: 6px;
}

.meta-feed-after {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  width: 56%;
  max-width: 320px;
}

.mfa-post {
  background: #1a1b26;
  border: 1px solid rgba(0, 82, 255, 0.2);
  border-radius: 14px;
  padding: 12px;
  width: 100%;
  box-shadow: 0 0 40px rgba(0, 82, 255, 0.1);
}

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

.mfa-profile {
  display: flex;
  align-items: center;
  gap: 8px;
}

.mfa-avatar {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #0052ff;
  box-shadow: 0 0 10px rgba(0, 82, 255, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 800;
  color: #fff;
}

.mfa-name-b {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.mfa-nm {
  font-size: 11px;
  font-weight: 700;
  color: #fff;
}

.mfa-sp {
  font-size: 9px;
  color: rgba(255, 255, 255, 0.4);
}

.mfa-badge-sp {
  font-size: 8.5px;
  font-weight: 700;
  color: #0052ff;
  background: rgba(0, 82, 255, 0.15);
  border: 1px solid rgba(0, 82, 255, 0.3);
  padding: 3px 8px;
  border-radius: 100px;
}

.mfa-image {
  width: 100%;
  height: 100px;
  border-radius: 10px;
  background: linear-gradient(135deg, #002080, #0052ff);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  margin-bottom: 10px;
  position: relative;
  overflow: hidden;
}

.mfa-image::after {
  content: '';
  position: absolute;
  top: -30%;
  left: -20%;
  width: 60%;
  height: 60%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.12) 0%, transparent 70%);
}

.mfa-img-txt {
  font-size: 13px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.03em;
  z-index: 1;
}

.mfa-img-sub {
  font-size: 9px;
  color: rgba(255, 255, 255, 0.6);
  z-index: 1;
}

.mfa-caption {
  font-size: 10.5px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.5;
  margin-bottom: 8px;
}

.mfa-cta-btn {
  width: 100%;
  padding: 8px;
  border-radius: 8px;
  background: #0052ff;
  box-shadow: 0 4px 16px rgba(0, 82, 255, 0.4);
  text-align: center;
  font-size: 11px;
  font-weight: 700;
  color: #fff;
}

/* == LOGO == */
.panel-bg-logo-before {
  background: #f5f0ec;
}

.panel-bg-logo-after {
  background: #0f1018;
}

.logo-before-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  transform: rotate(-2deg);
}

.logo-before-mark {
  width: 80px;
  height: 80px;
  border-radius: 6px;
  background: #fff;
  border: 3px solid #cc0000;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 3px 3px 0 #888;
}

.logo-before-star {
  font-size: 38px;
  line-height: 1;
  filter: drop-shadow(1px 1px 0 #cc8800);
}

.logo-before-name {
  font-family: 'Times New Roman', serif;
  font-size: 20px;
  font-weight: 900;
  color: #cc0000;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  text-shadow:
    1px 1px 0 #ffff00,
    2px 2px 0 #aaa;
}

.logo-before-tagline {
  font-family: 'Times New Roman', serif;
  font-size: 9px;
  font-style: italic;
  color: #666;
  letter-spacing: 0.1em;
}

.logo-before-line {
  width: 120px;
  height: 3px;
  background: repeating-linear-gradient(90deg, #cc0000 0, #cc0000 5px, #ffff00 5px, #ffff00 10px);
}

.logo-after-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.logo-after-mark {
  width: 80px;
  height: 80px;
  border-radius: 22px;
  background: linear-gradient(145deg, #0040cc, #0052ff);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 8px 32px rgba(0, 82, 255, 0.5),
    0 0 0 1px rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}

.logo-after-mark::before {
  content: '';
  position: absolute;
  top: -30%;
  left: -20%;
  width: 70%;
  height: 70%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
}

.logo-after-mark svg {
  width: 36px;
  height: 36px;
  fill: none;
  stroke: #fff;
  stroke-width: 1.8;
  stroke-linecap: round;
  z-index: 1;
}

.logo-after-name {
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.05em;
  color: #fff;
  text-align: center;
  line-height: 1;
}

.logo-after-tagline {
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
}

/* == KURUMSAL KİMLİK == */
.panel-bg-ki-before {
  background: #eeebe6;
}

.panel-bg-ki-after {
  background: #080910;
}

.ki-before-wrap {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  width: 70%;
  max-width: 420px;
}

.ki-before-card {
  background: #fff;
  border: 2px solid #cc0000;
  border-radius: 4px;
  padding: 12px;
  width: 160px;
  flex-shrink: 0;
  font-family: 'Times New Roman', serif;
  box-shadow: 2px 2px 0 #bbb;
  transform: rotate(-1deg);
}

.ki-before-card-top {
  font-size: 14px;
  font-weight: 900;
  color: #cc0000;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.ki-before-card-role {
  font-size: 9px;
  color: #666;
  font-style: italic;
  margin-bottom: 8px;
}

.ki-before-card-line {
  height: 2px;
  background: #cc0000;
  margin-bottom: 6px;
}

.ki-before-card-info {
  font-size: 8px;
  color: #444;
  line-height: 1.7;
}

.ki-before-lh {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}

.ki-before-lh-block {
  background: #fff;
  border: 1.5px solid #e0e0e0;
  border-radius: 3px;
  padding: 8px;
  font-family: Arial, sans-serif;
}

.ki-before-lh-logo {
  font-size: 11px;
  font-weight: 900;
  color: #cc0000;
  text-transform: uppercase;
}

.ki-before-lh-bar {
  height: 5px;
  background: #e0e0e0;
  border-radius: 1px;
  margin-top: 5px;
}

.ki-before-lh-bar.s {
  width: 60%;
}

.ki-after-wrap {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  width: 70%;
  max-width: 440px;
}

.ki-after-card {
  background: #fff;
  border-radius: 14px;
  padding: 18px;
  width: 170px;
  flex-shrink: 0;
  box-shadow:
    0 8px 32px rgba(0, 82, 255, 0.12),
    0 0 0 1px rgba(0, 82, 255, 0.08);
  position: relative;
  overflow: hidden;
}

.ki-after-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #0052ff, #5b93ff);
}

.ki-after-logo {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 12px;
}

.ki-after-logo-dot {
  width: 24px;
  height: 24px;
  border-radius: 7px;
  background: #0052ff;
  box-shadow: 0 2px 8px rgba(0, 82, 255, 0.4);
}

.ki-after-logo-name {
  font-size: 13px;
  font-weight: 800;
  color: #0b0f1a;
  letter-spacing: -0.04em;
}

.ki-after-name {
  font-size: 13px;
  font-weight: 700;
  color: #0b0f1a;
  margin-bottom: 2px;
}

.ki-after-role {
  font-size: 8.5px;
  font-weight: 500;
  color: #8892aa;
  letter-spacing: 0.06em;
  margin-bottom: 10px;
}

.ki-after-divline {
  height: 1px;
  background: #e4e8f2;
  margin-bottom: 8px;
}

.ki-after-info {
  font-size: 8px;
  color: #374060;
  line-height: 1.8;
}

.ki-after-rh {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.ki-after-rh-block {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(0, 82, 255, 0.12);
  border-radius: 10px;
  padding: 10px;
}

.ki-after-rh-logo {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 6px;
}

.ki-after-rh-dot {
  width: 16px;
  height: 16px;
  border-radius: 5px;
  background: #0052ff;
}

.ki-after-rh-name {
  font-size: 11px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.03em;
}

.ki-after-rh-bar {
  height: 4px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 100px;
  margin-top: 4px;
}

.ki-after-rh-bar.w80 {
  width: 80%;
}

.ki-after-rh-bar.w55 {
  width: 55%;
}

/* == KARTVİZİT == */
.panel-bg-kv-before {
  background: #f0ede8;
}

.panel-bg-kv-after {
  background: #0a0b10;
}

.kv-before-card {
  width: 340px;
  background: #fff;
  border: 3px solid #cc0000;
  border-radius: 4px;
  position: relative;
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 4px 4px 0 #aaa;
  transform: rotate(-1.5deg);
  font-family: 'Times New Roman', serif;
  min-height: 190px;
}

.kv-before-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 12px;
  background: repeating-linear-gradient(90deg, #cc0000 0, #cc0000 9px, #ffff00 9px, #ffff00 18px);
}

.kv-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-top: 4px;
}

.kv-sun {
  width: 36px;
  height: 36px;
  position: relative;
  flex-shrink: 0;
}

.kv-sun-circle {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #ffdd00;
  border: 2px solid #cc8800;
  position: absolute;
  top: 7px;
  left: 7px;
}

.kv-sun-ray {
  position: absolute;
  width: 2.5px;
  height: 6px;
  background: #cc8800;
  border-radius: 1px;
  left: 50%;
  top: 50%;
  transform-origin: 50% 18px;
}

.kv-company {
  font-size: 15px;
  font-weight: 900;
  color: #cc0000;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  text-shadow: 1px 1px 0 #ffff00;
}

.kv-slogan {
  font-size: 9px;
  font-style: italic;
  color: #006600;
  margin-top: 2px;
}

.kv-divider-ugly {
  height: 2.5px;
  background: repeating-linear-gradient(90deg, #cc0000 0, #cc0000 5px, #fff 5px, #fff 9px);
  margin: 6px 0;
}

.kv-contact-row {
  font-size: 9px;
  color: #333;
  display: flex;
  align-items: center;
  gap: 4px;
  line-height: 1.9;
}

.kv-watermark {
  position: absolute;
  bottom: 6px;
  right: 8px;
  font-size: 7.5px;
  color: #bbb;
  font-style: italic;
}

.kv-after-card {
  width: 340px;
  background: linear-gradient(145deg, #ffffff, #f4f7ff);
  border-radius: 16px;
  padding: 24px 26px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow:
    0 2px 8px rgba(0, 0, 0, 0.08),
    0 16px 48px rgba(0, 82, 255, 0.14),
    0 0 0 1px rgba(0, 82, 255, 0.08);
  position: relative;
  overflow: hidden;
  min-height: 190px;
}

.kv-after-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #0052ff, #5b93ff, #0052ff);
}

.kv-after-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 82, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 82, 255, 0.03) 1px, transparent 1px);
  background-size: 22px 22px;
  pointer-events: none;
}

.kva-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 1;
}

.kva-logo {
  display: flex;
  align-items: center;
  gap: 9px;
}

.kva-logo-mark {
  width: 32px;
  height: 32px;
  border-radius: 9px;
  background: #0052ff;
  box-shadow: 0 4px 14px rgba(0, 82, 255, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
}

.kva-logo-mark svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: #fff;
  stroke-width: 2;
  stroke-linecap: round;
}

.kva-company-name {
  font-size: 15px;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: #0b0f1a;
}

.kva-company-sub {
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #0052ff;
  margin-top: 1px;
}

.kva-badge {
  font-size: 8.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #0052ff;
  background: rgba(0, 82, 255, 0.08);
  border: 1px solid rgba(0, 82, 255, 0.18);
  padding: 3px 9px;
  border-radius: 100px;
}

.kva-mid {
  position: relative;
  z-index: 1;
}

.kva-name {
  font-size: 17px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #0b0f1a;
}

.kva-title {
  font-size: 10px;
  font-weight: 500;
  color: #8892aa;
  letter-spacing: 0.04em;
  margin-top: 3px;
}

.kva-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 1;
}

.kva-contacts {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.kva-row {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 9.5px;
  font-weight: 500;
  color: #374060;
}

.kva-icon {
  width: 18px;
  height: 18px;
  border-radius: 5px;
  background: rgba(0, 82, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.kva-icon svg {
  width: 9px;
  height: 9px;
  fill: none;
  stroke: #0052ff;
  stroke-width: 2;
  stroke-linecap: round;
}

.kva-qr {
  width: 34px;
  height: 34px;
  border-radius: 7px;
  background: repeating-conic-gradient(#0052ff 0% 25%, #eef2ff 0% 50%) 0 0 / 5px 5px;
  opacity: 0.65;
}

/* ──────────────────────────────────────
         FOOTER
      ─────────────────────────────────────── */
.sc-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  text-align: center;
  margin-top: 52px;
}

.sc-footer-text {
  font-size: 17px;
  font-weight: 500;
  line-height: 1.72;
  color: #374060;
  max-width: 540px;
  letter-spacing: -0.01em;
}

.sc-cta-btn {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #0052ff;
  color: #fff;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.02em;
  padding: 17px 38px;
  border-radius: 14px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  box-shadow: 0 6px 28px rgba(0, 82, 255, 0.38);
  transition:
    box-shadow 0.28s,
    transform 0.22s,
    background 0.2s;
}

.sc-cta-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, transparent 60%);
  border-radius: inherit;
}

.sc-cta-btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: -80%;
  width: 50%;
  height: 100%;
  background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.15), transparent);
  transform: skewX(-15deg);
  transition: left 0.55s ease;
}

.sc-cta-btn:hover::after {
  left: 140%;
}

.sc-cta-btn:hover {
  box-shadow: 0 12px 40px rgba(0, 82, 255, 0.5);
  transform: translateY(-3px);
  background: #1463ff;
}

/* ── KEYFRAMES ── */
@keyframes scPulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(0, 82, 255, 0.4);
  }

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

@keyframes scHintFade {
  0% {
    opacity: 0;
  }

  15% {
    opacity: 1;
  }

  80% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

@keyframes scNudge {
  from {
    transform: translateX(-5px);
  }

  to {
    transform: translateX(5px);
  }
}

@media (max-width: 700px) {
  .sc-tabs {
    gap: 7px;
  }

  .sc-tab {
    font-size: 12px;
    padding: 8px 14px;
  }

  .sc-prox-before {
    left: 8px;
  }

  .sc-prox-after {
    right: 8px;
  }

  .sc-handle {
    width: 40px;
    height: 40px;
  }

  .sc-cta-btn {
    font-size: 14px;
    padding: 14px 26px;
  }
}

/* ══ BREADCRUMB ══ */
.gdp-breadcrumb {
  background: #0a0b10;
  padding: 14px 6vw 0;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.gdp-breadcrumb-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.gdp-bc-item {
  font-size: 11.5px;
  font-weight: 500;
  color: #475569;
  text-decoration: none;
  transition: color 0.2s;
}

.gdp-bc-item:hover {
  color: #94a3b8;
}

.gdp-bc-sep {
  font-size: 10px;
  color: #2d3748;
}

.gdp-bc-current {
  font-size: 11.5px;
  font-weight: 600;
  color: #0052ff;
}

/* ══ SECTION ══ */
.gdp-section {
  background: #0a0b10;
  padding: 48px 6vw 56px;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.gdp-inner {
  max-width: 740px;
  margin: 0 auto;
}

/* header */
.gdp-header {
  text-align: center;
  margin-bottom: 44px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.gdp-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(0, 82, 255, 0.1);
  border: 1px solid rgba(0, 82, 255, 0.2);
  border-radius: 100px;
  padding: 4px 12px;
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #5b93ff;
}

.gdp-pill-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #0052ff;
  box-shadow: 0 0 6px rgba(0, 82, 255, 1);
  animation: gdpBlink 2.2s ease-in-out infinite;
}

.gdp-h2 {
  font-size: clamp(21px, 2.6vw, 32px);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: #fff;
  max-width: 560px;
}

.gdp-h2 .gdp-accent {
  color: #0052ff;
}

.gdp-lead {
  font-size: 13.5px;
  line-height: 1.68;
  color: #94a3b8;
  max-width: 440px;
}

/* timeline */
.gdp-timeline {
  position: relative;
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.gdp-timeline::before {
  content: '';
  position: absolute;
  left: 20px;
  top: 24px;
  bottom: 24px;
  width: 1px;
  background: linear-gradient(
    to bottom,
    transparent,
    rgba(0, 82, 255, 0.45) 8%,
    rgba(0, 82, 255, 0.18) 92%,
    transparent
  );
}

/* step */
.gdp-step {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding-bottom: 20px;
  position: relative;
}

.gdp-step:last-child {
  padding-bottom: 0;
}

/* node */
.gdp-node {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  flex-shrink: 0;
  background: rgba(0, 82, 255, 0.08);
  border: 1.5px solid rgba(0, 82, 255, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  transition:
    background 0.28s,
    border-color 0.28s,
    box-shadow 0.28s;
}

.gdp-node-num {
  font-size: 9.5px;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: rgba(0, 82, 255, 0.6);
  transition: color 0.28s;
}

/* card */
.gdp-card {
  flex: 1;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  padding: 16px 20px;
  transition:
    transform 0.28s ease,
    border-color 0.28s,
    background 0.28s,
    box-shadow 0.28s;
}

.gdp-card-label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(0, 82, 255, 0.5);
  margin-bottom: 4px;
}

.gdp-card h3 {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: 5px;
  line-height: 1.2;
}

.gdp-card p {
  font-size: 12.5px;
  font-weight: 400;
  line-height: 1.62;
  color: #475569;
  transition: color 0.28s;
}

/* hover */
.gdp-step:hover .gdp-node {
  background: rgba(0, 82, 255, 0.18);
  border-color: #0052ff;
  box-shadow:
    0 0 0 4px rgba(0, 82, 255, 0.07),
    0 0 18px rgba(0, 82, 255, 0.35);
}

.gdp-step:hover .gdp-node-num {
  color: #5b93ff;
}

.gdp-step:hover .gdp-card {
  transform: translateY(-3px);
  border-color: rgba(0, 82, 255, 0.28);
  background: rgba(0, 82, 255, 0.04);
  box-shadow: 0 8px 28px rgba(0, 82, 255, 0.09);
}

.gdp-step:hover .gdp-card p {
  color: #64748b;
}

@keyframes gdpBlink {
  0%,
  100% {
    box-shadow: 0 0 6px rgba(0, 82, 255, 1);
  }

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

@media (max-width: 500px) {
  .gdp-node {
    width: 36px;
    height: 36px;
  }

  .gdp-card {
    padding: 14px 16px;
  }

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