/* ─────────────────────────────────────
                     HERO
                     FIX #1: Reduced bottom padding significantly
                  ───────────────────────────────────── */

.hero {
  padding-top: calc(var(--nav-h) + -30px);
  padding-bottom: 60px;
  /* was 64px — reduced to tighten gap */
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--white);
}

.hero-canvas {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.hero-canvas::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(7, 21, 42, 0.042) 1px, transparent 1px),
    linear-gradient(90deg, rgba(7, 21, 42, 0.042) 1px, transparent 1px);
  background-size: 68px 68px;
  mask-image: radial-gradient(ellipse 70% 80% at 65% 50%, black 20%, transparent 100%);
}
.hero-left {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  animation: orbD var(--dur, 18s) ease-in-out infinite alternate;
}

.orb-1 {
  width: 680px;
  height: 580px;
  background: radial-gradient(circle at 40% 40%, rgba(14, 92, 245, 0.09) 0%, transparent 65%);
  top: -140px;
  right: -120px;
  --dur: 20s;
}

.orb-2 {
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(7, 21, 42, 0.05) 0%, transparent 65%);
  bottom: -80px;
  left: -80px;
  --dur: 14s;
  animation-delay: -6s;
}

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

  40% {
    transform: translate(40px, -30px) scale(1.06);
  }

  100% {
    transform: translate(-20px, 40px) scale(0.96);
  }
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 150px;
  align-items: center;
}

/* Entry animations */
.h-badge {
  animation: rUp 0.8s var(--ease) both;
  animation-delay: 0.15s;
}

.h-sub {
  animation: rUp 0.9s var(--ease) both;
  animation-delay: 0.58s;
}

.h-actions {
  animation: rUp 0.9s var(--ease) both;
  animation-delay: 0.7s;
}

.h-proof {
  animation: rUp 0.9s var(--ease) both;
  animation-delay: 0.82s;
}

.hero-right {
  animation: rR 1s var(--ease) both;
  animation-delay: 0.3s;
}

@keyframes rUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

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

@keyframes rR {
  from {
    opacity: 0;
    transform: translateX(40px);
  }

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

/* Badge */
.h-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: white;
  border: 1px solid var(--bmd);
  border-radius: 100px;
  padding: 5px 14px 5px 6px;
  margin-bottom: 24px;
  box-shadow: 0 2px 16px rgba(7, 21, 42, 0.07);
}

.bp {
  position: relative;
  width: 8px;
  height: 8px;
  flex-shrink: 0;
}

.bp::before,
.bp::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #22c55e;
}

.bp::after {
  background: transparent;
  border: 1.5px solid #22c55e;
  animation: pr 2.2s ease-out infinite;
}

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

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

.bt {
  font-size: 12.5px;
  font-weight: 500;
  color: var(--muted);
}

.btag {
  background: var(--blue);
  color: white;
  font-family: var(--fd);
  font-size: 10px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 20px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

/* Headline */
.h-h1 {
  font-family: var(--fd);
  font-size: clamp(40px, 5.4vw, 70px);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.09;
  letter-spacing: -0.04em;
}

.hl-row {
  display: block;
  overflow: hidden;
}

.hl-in {
  display: block;
  animation: lnRv 0.85s var(--ease) both;
}

.hl-row:nth-child(1) .hl-in {
  animation-delay: 0.28s;
}

.hl-row:nth-child(2) .hl-in {
  animation-delay: 0.4s;
}

.hl-row:nth-child(3) .hl-in {
  animation-delay: 0.52s;
}

@keyframes lnRv {
  from {
    transform: translateY(110%);
    opacity: 0;
  }

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

.hl-acc {
  color: var(--blue);
  position: relative;
  display: inline-block;
}

.hl-acc::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 0;
  height: 4px;
  width: 0;
  background: linear-gradient(90deg, var(--blue), var(--blue-lt));
  border-radius: 2px;
  animation: ulG 0.8s var(--ease) forwards;
  animation-delay: 1s;
}

@keyframes ulG {
  from {
    width: 0;
  }

  to {
    width: 100%;
  }
}

.h-sub {
  font-size: 16.5px;
  color: var(--muted);
  line-height: 1.75;
  max-width: 480px;
  letter-spacing: -0.01em;
}

/* Buttons */
.h-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.btn-s {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--fd);
  font-size: 15px;
  font-weight: 700;
  color: white;
  background: var(--blue);
  padding: 14px 26px;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  letter-spacing: -0.01em;
  box-shadow: 0 4px 24px rgba(14, 92, 245, 0.32);
  transition:
    background 0.22s,
    transform 0.26s var(--ease),
    box-shadow 0.32s var(--ease);
}

.btn-s:hover {
  background: var(--blue-lt);
  transform: translateY(-3px);
  box-shadow:
    0 10px 40px rgba(14, 92, 245, 0.4),
    0 0 0 8px rgba(14, 92, 245, 0.1);
}

.btn-s .ba {
  display: inline-flex;
  transition: transform 0.28s var(--ease);
}

.btn-s:hover .ba {
  transform: translateX(5px);
}

.btn-w {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--fd);
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
  background: transparent;
  padding: 13px 22px;
  border-radius: 12px;
  border: 1.5px solid var(--bmd);
  cursor: pointer;
  letter-spacing: -0.01em;
  transition:
    border-color 0.22s,
    color 0.22s,
    background 0.22s,
    transform 0.26s var(--ease);
}

.btn-w:hover {
  border-color: var(--blue);
  color: var(--blue);
  background: var(--blue-soft);
  transform: translateY(-3px);
}

.pc-btn {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--bg);
  border: 1px solid var(--bmd);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition:
    background 0.22s,
    border-color 0.22s;
}

.btn-w:hover .pc-btn {
  background: var(--blue-soft);
  border-color: var(--blue);
}

/* ─── Social Proof Block ─── */
.h-proof {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.proof-row-1 {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

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

.face {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 2.5px solid white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--fd);
  font-size: 10px;
  font-weight: 800;
  color: white;
  margin-left: -8px;
  box-shadow: 0 2px 8px rgba(7, 21, 42, 0.15);
}

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

.psep {
  width: 1px;
  height: 24px;
  background: var(--bmd);
}

.pstars {
  display: flex;
  gap: 2px;
}

.ps {
  color: #f59e0b;
  font-size: 13px;
}

.pc-txt {
  font-size: 13px;
  font-weight: 400;
  color: var(--muted);
  line-height: 1.4;
}

.pc-txt strong {
  font-weight: 600;
  color: var(--navy);
}

/* Social proof testimonial ticker */
.proof-ticker {
  background: var(--off);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 12px 14px;
  min-height: 120px;
  display: flex;
  align-items: flex-start;
  gap: 11px;
  position: relative;
  overflow: hidden;
}

.proof-ticker::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--blue);
  border-radius: 0 2px 2px 0;
}

.ticker-avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--fd);
  font-size: 11px;
  font-weight: 800;
  color: white;
  flex-shrink: 0;
}

.ticker-content {
}

.ticker-name {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
}

.ticker-biz {
  font-size: 11px;
  color: var(--slate);
  margin-bottom: 4px;
}

.ticker-quote {
  font-size: 12.5px;
  color: var(--muted);
  line-height: 1.5;
  font-style: italic;
}

.ticker-result {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  font-weight: 700;
  color: var(--green);
  background: var(--green-s);
  padding: 2px 8px;
  border-radius: 20px;
  margin-top: 5px;
}



/* ─────────────────────────────────────
                     RIGHT: WIZARD CARD
                  ───────────────────────────────────── */
.hero-right {
  position: relative;
}

/* Floating badges */
.fb {
  position: absolute;
  background: white;
  border: 1px solid var(--bmd);
  border-radius: 13px;
  padding: 9px 13px;
  box-shadow: 0 10px 40px rgba(7, 21, 42, 0.13);
  display: flex;
  align-items: center;
  gap: 9px;
  z-index: 2;
  animation: fbob 4s ease-in-out infinite;
}

.fb-1 {
  top: -18px;
  right: -18px;
  animation-delay: 0s;
}

.fb-2 {
  bottom: -80px;
  left: -16px;
  animation-delay: -2s;
}

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

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

.fb-ic {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.fb-ic.b {
  background: var(--blue);
}

.fb-ic.g {
  background: #22c55e;
}

.fb-main {
  font-family: var(--fd);
  font-size: 13px;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
}

.fb-sub {
  font-size: 10.5px;
  color: var(--slate);
  margin-top: 1px;
}

/* Wizard */
.wiz-card {
  background: var(--white);
  border: 1px solid var(--bmd);
  border-radius: 22px;
  box-shadow:
    0 32px 80px rgba(7, 21, 42, 0.12),
    0 8px 24px rgba(7, 21, 42, 0.06);
  overflow: hidden;
}

.wiz-topbar {
  background: var(--off);
  border-bottom: 1px solid var(--border);
  padding: 13px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.wdots {
  display: flex;
  gap: 5px;
}

.wd {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.wd.r {
  background: #ff6058;
}

.wd.y {
  background: #ffbd2e;
}

.wd.g {
  background: #28ca41;
}

.wiz-tb-t {
  font-family: var(--fd);
  font-size: 11.5px;
  font-weight: 600;
  color: var(--slate);
  flex: 1;
  text-align: center;
  letter-spacing: 0.03em;
}

.wiz-prog {
  display: flex;
  gap: 5px;
  align-items: center;
}

.wdot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--bmd);
  transition:
    background 0.3s,
    transform 0.3s var(--ease);
}

.wdot.act {
  background: var(--blue);
  transform: scale(1.4);
}

.wdot.done {
  background: var(--green);
  transform: scale(1);
}

/* Body */
.wiz-body {
  display: grid;
  padding: 22px;
  min-height: max-content;
  position: relative;
  overflow: hidden;
}

/* Steps */
.wiz-step {
  grid-area: 1/1;
  inset: 22px;
  display: flex;
  flex-direction: column;
  opacity: 0;
  transform: translateX(28px);
  pointer-events: none;
  transition:
    opacity 0.38s var(--ease),
    transform 0.38s var(--ease);
}

.wiz-step.active {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}

.wiz-step.out {
  opacity: 0;
  transform: translateX(-28px);
}

/* Step 0 */
.s0-emoji {
  font-size: 36px;
  margin-bottom: 10px;
  display: block;
}

.s-q {
  font-family: var(--fd);
  font-size: 19px;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: 7px;
  letter-spacing: -0.02em;
}

.s-hint {
  font-size: 13px;
  color: var(--slate);
  margin-bottom: 18px;
  line-height: 1.55;
}

/* Social proof inside wizard */
.wiz-sp {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 18px;
}

.wiz-sp-item {
  display: flex;
  align-items: center;
  gap: 9px;
  background: var(--off);
  border: 1px solid var(--border);
  border-radius: 9px;
  padding: 9px 11px;
}

.wiz-sp-av {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--fd);
  font-size: 10px;
  font-weight: 800;
  color: white;
  flex-shrink: 0;
}

.wiz-sp-txt {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.4;
  flex: 1;
}

.wiz-sp-txt strong {
  color: var(--navy);
  font-weight: 600;
}

.wiz-sp-result {
  font-size: 10.5px;
  font-weight: 700;
  color: var(--green);
  background: var(--green-s);
  padding: 2px 7px;
  border-radius: 20px;
  white-space: nowrap;
}

.wiz-btn-yes {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--fd);
  font-size: 15px;
  font-weight: 700;
  color: white;
  background: var(--blue);
  padding: 14px 22px;
  border-radius: 11px;
  border: none;
  cursor: pointer;
  width: 100%;
  margin-bottom: 8px;
  transition:
    background 0.22s,
    transform 0.22s var(--ease),
    box-shadow 0.28s var(--ease);
  box-shadow: 0 4px 20px rgba(14, 92, 245, 0.3);
}

.wiz-btn-yes:hover {
  background: var(--blue-lt);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(14, 92, 245, 0.4);
}

.wiz-btn-yes .ya {
  display: inline-flex;
  transition: transform 0.25s var(--ease);
}

.wiz-btn-yes:hover .ya {
  transform: translateX(4px);
}

.wiz-btn-later {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12.5px;
  font-weight: 500;
  color: var(--slate);
  background: none;
  border: none;
  cursor: pointer;
  width: 100%;
  padding: 6px;
  transition: color 0.2s;
}

.wiz-btn-later:hover {
  color: var(--navy);
}

/* Mini proof inside step 0 */
.wiz-mini-proof {
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 9px;
}

.wmp-faces {
  display: flex;
}

.wmp-face {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 2px solid white;
  font-family: var(--fd);
  font-size: 8px;
  font-weight: 800;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: -5px;
}

.wmp-face:first-child {
  margin-left: 0;
}

.wmp-txt {
  font-size: 11.5px;
  color: var(--slate);
  line-height: 1.4;
}

.wmp-txt strong {
  color: var(--navy);
  font-weight: 600;
}

/* Step labels & pickers */
.step-lbl {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: var(--fd);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 9px;
}

.step-lbl::before {
  content: '';
  width: 12px;
  height: 2px;
  background: var(--blue);
  border-radius: 2px;
}

.pick-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7px;
  margin-bottom: 14px;
}

.pick-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  background: var(--off);
  border: 1.5px solid var(--bmd);
  border-radius: 9px;
  padding: 10px 11px;
  cursor: pointer;
  transition:
    border-color 0.2s,
    background 0.2s,
    transform 0.18s var(--ease);
  user-select: none;
}

.pick-item:hover {
  border-color: var(--blue);
  background: var(--blue-soft);
  transform: translateY(-1px);
}

.pick-item.sel {
  border-color: var(--blue);
  background: var(--blue-soft);
}

.pick-item.sel .pi-ck {
  opacity: 1;
  transform: scale(1);
}

.pi-ico {
  font-size: 18px;
  flex-shrink: 0;
  margin-top: 1px;
}

.pi-lbl {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.3;
}

.pi-sub {
  font-size: 10.5px;
  color: var(--slate);
  margin-top: 1px;
}

.pi-ck {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  flex-shrink: 0;
  opacity: 0;
  transform: scale(0.4);
  transition:
    opacity 0.2s,
    transform 0.2s var(--ease);
}

.pick-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 14px;
}

.pl-item {
  display: flex;
  align-items: center;
  gap: 9px;
  background: var(--off);
  border: 1.5px solid var(--bmd);
  border-radius: 9px;
  padding: 10px 12px;
  cursor: pointer;
  transition:
    border-color 0.2s,
    background 0.2s;
  user-select: none;
}

.pl-item:hover {
  border-color: var(--blue);
  background: var(--blue-soft);
}

.pl-item.sel {
  border-color: var(--blue);
  background: var(--blue-soft);
}

.pl-item.sel .pi-ck {
  opacity: 1;
  transform: scale(1);
}

.pl-ico {
  font-size: 18px;
  flex-shrink: 0;
}

.pl-lbl {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--navy);
  flex: 1;
}

.pl-tag {
  font-size: 10px;
  font-weight: 700;
  background: var(--blue-soft);
  color: var(--blue);
  padding: 2px 7px;
  border-radius: 20px;
  white-space: nowrap;
}

.next-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  font-family: var(--fd);
  font-size: 14px;
  font-weight: 700;
  color: white;
  background: var(--blue);
  padding: 12px 18px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  width: 100%;
  box-shadow: 0 3px 16px rgba(14, 92, 245, 0.25);
  opacity: 0.4;
  pointer-events: none;
  transition:
    background 0.22s,
    transform 0.22s var(--ease),
    box-shadow 0.28s var(--ease),
    opacity 0.2s;
}

.next-btn.rdy {
  opacity: 1;
  pointer-events: auto;
}

.next-btn.rdy:hover {
  background: var(--blue-lt);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(14, 92, 245, 0.38);
}

.next-btn .na {
  display: inline-flex;
  transition: transform 0.25s var(--ease);
}

.next-btn.rdy:hover .na {
  transform: translateX(4px);
}

/* Result */
.res-hdr {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 14px;
}

.res-ico {
  width: 44px;
  height: 44px;
  border-radius: 11px;
  background: var(--green-s);
  border: 1px solid rgba(22, 163, 74, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.res-t {
  font-family: var(--fd);
  font-size: 16.5px;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.res-s {
  font-size: 11.5px;
  color: var(--slate);
  margin-top: 2px;
}

.res-items {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 14px;
}

.ri {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--off);
  border: 1px solid var(--border);
  border-radius: 9px;
  padding: 9px 11px;
  animation: riIn 0.5s var(--ease) both;
}

.ri:nth-child(1) {
  animation-delay: 0.05s;
}

.ri:nth-child(2) {
  animation-delay: 0.12s;
}

.ri:nth-child(3) {
  animation-delay: 0.19s;
}

@keyframes riIn {
  from {
    opacity: 0;
    transform: translateX(10px);
  }

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

.ri-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
}

.ri-lbl {
  font-size: 12px;
  font-weight: 500;
  color: var(--navy);
  flex: 1;
}

.ri-val {
  font-family: var(--fd);
  font-size: 11.5px;
  font-weight: 700;
  color: var(--green);
  background: var(--green-s);
  padding: 2px 7px;
  border-radius: 20px;
  white-space: nowrap;
}

.res-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--fd);
  font-size: 14px;
  font-weight: 700;
  color: white;
  background: var(--blue);
  padding: 13px 18px;
  border-radius: 11px;
  border: none;
  cursor: pointer;
  width: 100%;
  box-shadow: 0 4px 20px rgba(14, 92, 245, 0.3);
  transition:
    background 0.22s,
    transform 0.22s var(--ease),
    box-shadow 0.28s var(--ease);
}

.res-cta:hover {
  background: var(--blue-lt);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(14, 92, 245, 0.4);
}

.res-cta .ra {
  display: inline-flex;
  transition: transform 0.25s var(--ease);
}

.res-cta:hover .ra {
  transform: translateX(4px);
}

.res-restart {
  display: block;
  text-align: center;
  font-size: 12px;
  color: var(--slate);
  cursor: pointer;
  margin-top: 9px;
  background: none;
  border: none;
  width: 100%;
  transition: color 0.2s;
}

.res-restart:hover {
  color: var(--navy);
}

/* ─────────────────────────────────────
                     MOBILE WIZARD PANEL (bottom sheet)
                  ───────────────────────────────────── */


/* --- 4. TERTEMİZ DÖNÜŞ --- */
@keyframes spinTrue {
  0% { rotate: 0deg; }
  100% { rotate: 360deg; }
}

.mwt-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.mwt-icon {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  background: var(--blue-soft);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Bottom sheet */
.bsheet-overlay {
  position: fixed;
  inset: 0;
  z-index: 950;
  background: rgba(7, 21, 42, 0.5);
  backdrop-filter: blur(4px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s var(--ease);
}

.bsheet-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.bsheet {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 960;
  background: white;
  border-radius: 24px 24px 0 0;
  box-shadow: 0 -20px 60px rgba(7, 21, 42, 0.15);
  max-height: 92svh;
  overflow-y: auto;
  transform: translateY(100%);
  transition: transform 0.4s var(--ease);
}

.bsheet.open {
  transform: translateY(0);
}

.bsheet-handle {
  width: 40px;
  height: 4px;
  border-radius: 2px;
  background: var(--bmd);
  margin: 12px auto 0;
}

.bsheet-head {
  padding: 16px 20px 12px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.bsheet-title {
  font-family: var(--fd);
  font-size: 16px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.02em;
}

.bsheet-prog {
  display: flex;
  gap: 5px;
}

.bsheet-close {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--bg);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bsheet-body {
  padding: 20px;
}

/* Mobile wizard steps reuse desktop styles */
.bsheet-body .wiz-step {
  position: relative;
  inset: unset;
  opacity: 1;
  transform: none;
  pointer-events: auto;
  display: none;
}

.bsheet-body .wiz-step.active {
  display: flex;
}
.mobile-wiz-trigger {
    display:none;
}
/* ─────────────────────────────────────
                     RESPONSIVE
                  ───────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-right {
    display: none;
  }

  .mobile-wiz-trigger {
    display: flex;
  }

  .h-sub {
    max-width: 100%;
  }
  .mobile-wiz-trigger {
  width: 100% !important;
  margin-top: 24px !important;
  font-family: var(--fd) !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  color: var(--navy) !important;
  
  background: transparent !important;
  border: none !important; 
  border-radius: 14px !important;
  padding: 14px 18px !important;
  cursor: pointer !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  
  /* Animasyon Kilidi */
  position: relative !important;
  overflow: hidden !important;
  isolation: isolate !important; /* Z-index sızıntılarını kesin engeller */
}

/* --- 1. DÖNEN KUSURSUZ NEON (Kareye sabitlendi) --- */
.mobile-wiz-trigger::before {
  content: '' !important;
  position: absolute !important;
  top: 50% !important;
  left: 50% !important;
  
  /* Dikdörtgeni tamamen içine alacak büyük bir KARE yapıyoruz */
  width: 250% !important; 
  aspect-ratio: 1 !important; /* Şeklin kare kalmasını zorunlu kılar, düz çizgi hatasını çözer */
  
  /* Modern CSS ile merkeze çivileme (Transform çakışmasını engeller) */
  translate: -50% -50% !important; 
  
  /* Neon Işığı */
  background: conic-gradient(from 0deg, transparent 75%, var(--blue) 85%, #00d4ff 100%) !important;
  
  /* Sadece Rotate özelliği ile döndürüyoruz */
  animation: spinTrue 2.5s linear infinite !important;
  z-index: -2 !important;
}

/* --- 2. İÇ MASKE (Düğmenin Asıl Görünümü) --- */
.mobile-wiz-trigger::after {
  content: '' !important;
  position: absolute !important;
  
  /* 1.5px yerine net 2px yapıyoruz ki tarayıcı yamulmasın */
  inset: 2px !important; 
  
  background: var(--off) !important; 
  
  /* Dış radius (14px) - inset (2px) = 12px tam kavis */
  border-radius: 12px !important; 
  
  z-index: -1 !important;
}

/* --- 3. YAZILAR VE İKON (Üstte kalsın) --- */
.mobile-wiz-trigger > * {
  position: relative !important;
  z-index: 2 !important;
}
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .hero {
    padding-top: calc(var(--nav-h) + 32px);
    padding-bottom: 32px;
  }

  .h-h1 {
    font-size: clamp(36px, 10vw, 54px);
  }

  .h-sub {
    font-size: 15.5px;
  }

  .h-actions {
    gap: 8px;
  }

  .btn-s,
  .btn-w {
    font-size: 14px;
    padding: 13px 20px;
  }

  .proof-ticker {
    display: none;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 18px;
  }

  .h-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn-s,
  .btn-w {
    justify-content: center;
  }

  .popup-quick {
    grid-template-columns: 1fr;
  }

  .success-quick {
    grid-template-columns: 1fr;
  }

  .popup-box {
    border-radius: 20px;
  }

  .popup-head {
    padding: 22px 20px 0;
  }

  .popup-body {
    padding: 18px 20px 22px;
  }

  .popup-quick {
    padding: 0 20px 20px;
  }
}

/* ══════════════════════════════════════════
                     TRUST BAND
                     FIX #1: Reduced top margin/padding to close gap
                  ══════════════════════════════════════════ */
.trust-band {
  background: #f0f4fa;
  border-top: 1px solid rgba(7, 21, 42, 0.07);
  border-bottom: 1px solid rgba(7, 21, 42, 0.07);
  padding: 0;
  overflow: hidden;
  position: relative;
}

/* fade edges */
.trust-band::before,
.trust-band::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 160px;
  z-index: 2;
  pointer-events: none;
}

.trust-band::before {
  left: 0;
  background: linear-gradient(90deg, #f0f4fa 0%, transparent 100%);
}

.trust-band::after {
  right: 0;
  background: linear-gradient(270deg, #f0f4fa 0%, transparent 100%);
}

.trust-track {
  display: flex;
  align-items: center;
  gap: 0;
  animation: trustScroll 36s linear infinite;
  width: max-content;
}

.trust-track:hover {
  animation-play-state: paused;
}

@keyframes trustScroll {
  0% {
    transform: translateX(0);
  }

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

.trust-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 40px;
  flex-shrink: 0;
  white-space: nowrap;
}

.trust-sep {
  width: 1px;
  height: 28px;
  background: rgba(7, 21, 42, 0.1);
  flex-shrink: 0;
  margin: 0 8px;
}

.ti-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--fd);
  font-size: 13.5px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.01em;
}

.ti-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ti-icon.meta {
  background: linear-gradient(135deg, #0081fb, #0064e0);
}

.ti-icon.google {
  background: white;
  border: 1px solid rgba(7, 21, 42, 0.1);
}

.ti-icon.stat {
  background: var(--blue-soft);
}

.ti-stat {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--fd);
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
}

.ti-stat strong {
  font-size: 15px;
  font-weight: 800;
  color: var(--navy);
}

.ti-pill {
  background: var(--green-s);
  color: var(--green);
  font-family: var(--fd);
  font-size: 10.5px;
  font-weight: 800;
  padding: 3px 9px;
  border-radius: 20px;
  letter-spacing: 0.04em;
}

/* ══════════════════════════════════════════
                     SERVICES / BENTO GRID
                     FIX #1: Reduced top padding to close the gap
                  ══════════════════════════════════════════ */
.services {
  padding: 64px 0 100px;
  /* was 100px 0 120px — reduced top */
  background: var(--white);
  position: relative;
  overflow: hidden;
}

/* subtle radial bg */
.services::before {
  content: '';
  position: absolute;
  width: 900px;
  height: 900px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(14, 92, 245, 0.04) 0%, transparent 65%);
  top: -200px;
  right: -300px;
  pointer-events: none;
}

/* Section header */
.sec-head {
  text-align: center;
  margin-bottom: 56px;
}

/* was 64px */
.sec-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--blue-soft);
  border: 1px solid rgba(14, 92, 245, 0.2);
  border-radius: 100px;
  padding: 5px 14px;
  font-family: var(--fd);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 18px;
}

.sec-tag-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue);
}

.sec-h2 {
  font-family: var(--fd);
  font-size: clamp(34px, 4.2vw, 56px);
  font-weight: 800;
  color: var(--navy);
  line-height: 0.98;
  letter-spacing: -0.04em;
  margin-bottom: 16px;
}

.sec-h2 span {
  color: var(--blue);
}

.sec-sub {
  font-size: 17px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.7;
  max-width: 520px;
  margin: 0 auto;
  letter-spacing: -0.01em;
}

/* ── Bento grid ── */
.bento {
  display: grid;
  grid-template-columns: 1.45fr 1fr;
  grid-template-rows: auto auto;
  gap: 18px;
}

/* Shared card base */
.bc {
  border-radius: 24px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition:
    transform 0.45s var(--ease),
    box-shadow 0.45s var(--ease);
}

.bc:hover {
  transform: translateY(-6px);
}

/* scroll reveal */
.bc {
  opacity: 0;
  transform: translateY(40px);
}

.bc.visible {
  animation: bentoPop 0.72s var(--ease) forwards;
}

@keyframes bentoPop {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

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

.bc:nth-child(1).visible {
  animation-delay: 0s;
}

.bc:nth-child(2).visible {
  animation-delay: 0.13s;
}

.bc:nth-child(3).visible {
  animation-delay: 0.24s;
}

/* inner noise texture overlay */
.bc::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  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.04'/%3E%3C/svg%3E");
  background-size: 180px 180px;
  opacity: 0.5;
  mix-blend-mode: overlay;
}

/* ── Card 1: Meta Reklamları (tall-wide, spans 2 rows on col 1) ── */
.bc-meta {
  grid-column: 1;
  grid-row: 1/3;
  background: linear-gradient(145deg, #0a1628 0%, #07152a 45%, #091e38 100%);
  padding: 40px 40px 36px;
  /* FIX #4: slightly tightened internal padding */
  display: flex;
  flex-direction: column;
  min-height: 520px;
}

.bc-meta::after {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(14, 92, 245, 0.18) 0%, transparent 65%);
  bottom: -160px;
  right: -120px;
  pointer-events: none;
  z-index: 0;
  transition:
    opacity 0.5s var(--ease),
    transform 0.5s var(--ease);
}

.bc-meta:hover::after {
  opacity: 1.4;
  transform: scale(1.12);
}

/* glow border on hover */
.bc-meta:hover {
  box-shadow:
    0 0 0 1.5px rgba(14, 92, 245, 0.5),
    0 32px 80px rgba(14, 92, 245, 0.22),
    0 8px 32px rgba(7, 21, 42, 0.4);
}

/* ── Card 2: Web Tasarım (col 2 row 1) ── */
.bc-web {
  grid-column: 2;
  grid-row: 1;
  background: linear-gradient(145deg, #111827 0%, #0f1c2e 60%, #0b1523 100%);
  padding: 36px 34px;
  display: flex;
  flex-direction: column;
  min-height: 240px;
}

.bc-web::after {
  content: '';
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.14) 0%, transparent 65%);
  top: -80px;
  right: -80px;
  pointer-events: none;
  z-index: 0;
  transition: opacity 0.5s var(--ease);
}

.bc-web:hover {
  box-shadow:
    0 0 0 1.5px rgba(139, 92, 246, 0.45),
    0 28px 70px rgba(139, 92, 246, 0.18),
    0 8px 32px rgba(7, 21, 42, 0.4);
}

/* ── Card 3: Sosyal Medya (col 2 row 2) ── */
.bc-sosyal {
  grid-column: 2;
  grid-row: 2;
  background: linear-gradient(145deg, #0d1f18 0%, #0a1a13 60%, #071310 100%);
  padding: 36px 34px;
  display: flex;
  flex-direction: column;
  min-height: 240px;
}

.bc-sosyal::after {
  content: '';
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(34, 197, 94, 0.12) 0%, transparent 65%);
  bottom: -80px;
  right: -60px;
  pointer-events: none;
  z-index: 0;
  transition: opacity 0.5s var(--ease);
}

.bc-sosyal:hover {
  box-shadow:
    0 0 0 1.5px rgba(34, 197, 94, 0.4),
    0 28px 70px rgba(34, 197, 94, 0.15),
    0 8px 32px rgba(7, 21, 42, 0.4);
}

/* card inner z-index */
.bc-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  flex: 1;
}

/* card icon container */
.bc-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  /* FIX #4: was 22px */
  flex-shrink: 0;
  transition: transform 0.4s var(--ease);
}

.bc:hover .bc-icon-wrap {
  transform: translateY(-5px) rotate(-4deg);
}

.bc-meta .bc-icon-wrap {
  background: rgba(14, 92, 245, 0.25);
  border: 1px solid rgba(14, 92, 245, 0.35);
}

.bc-web .bc-icon-wrap {
  background: rgba(139, 92, 246, 0.22);
  border: 1px solid rgba(139, 92, 246, 0.3);
}

.bc-sosyal .bc-icon-wrap {
  background: rgba(34, 197, 94, 0.18);
  border: 1px solid rgba(34, 197, 94, 0.28);
}

/* tag */
.bc-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--fd);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 100px;
  padding: 4px 12px;
  margin-bottom: 14px;
  /* FIX #4: was 16px */
  align-self: flex-start;
}

.bc-meta .bc-tag {
  background: rgba(14, 92, 245, 0.2);
  color: #7eb3ff;
  border: 1px solid rgba(14, 92, 245, 0.25);
}

.bc-web .bc-tag {
  background: rgba(139, 92, 246, 0.18);
  color: #c4b5fd;
  border: 1px solid rgba(139, 92, 246, 0.22);
}

.bc-sosyal .bc-tag {
  background: rgba(34, 197, 94, 0.15);
  color: #6ee7b7;
  border: 1px solid rgba(34, 197, 94, 0.2);
}

/* headline */
.bc-h {
  font-family: var(--fd);
  font-weight: 800;
  color: white;
  line-height: 1.08;
  letter-spacing: -0.035em;
  margin-bottom: 10px;
  /* FIX #4: was 12px */
}

.bc-meta .bc-h {
  font-size: clamp(28px, 3vw, 40px);
}

.bc-web .bc-h,
.bc-sosyal .bc-h {
  font-size: clamp(20px, 2vw, 26px);
}

.bc-h .acc-blue {
  color: #7eb3ff;
  transition: color 0.3s;
}

.bc:hover .bc-h .acc-blue {
  color: #a5c8ff;
}

.bc-h .acc-green {
  color: #6ee7b7;
  transition: color 0.3s;
}

.bc:hover .bc-h .acc-green {
  color: #a7f3d0;
}

.bc-h .acc-purple {
  color: #c4b5fd;
  transition: color 0.3s;
}

.bc:hover .bc-h .acc-purple {
  color: #ddd6fe;
}

/* desc */
.bc-desc {
  font-size: 14.5px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.72;
  letter-spacing: -0.008em;
  margin-bottom: 20px;
  /* FIX #4: was 24px */
  transition: color 0.3s;
}

.bc-meta .bc-desc {
  font-size: 15px;
  max-width: 400px;
}

/* FIX #4: was 15.5px */
.bc:hover .bc-desc {
  color: rgba(255, 255, 255, 0.72);
}

/* ─────────────────────────────────────
                     FIX #4: Replaced oversized bar chart with
                     a compact benefit-stats grid for Meta card
                  ───────────────────────────────────── */
.bc-benefit-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 18px;
}

.bc-benefit {
  display: flex;
  flex-direction: column;
  gap: 4px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 13px 15px;
  transition:
    background 0.3s,
    border-color 0.3s;
}

.bc:hover .bc-benefit {
  background: rgba(14, 92, 245, 0.15);
  border-color: rgba(14, 92, 245, 0.25);
}

.bc-benefit-val {
  font-family: var(--fd);
  font-size: 22px;
  font-weight: 800;
  color: white;
  line-height: 1;
  letter-spacing: -0.04em;
}

.bc-benefit-lbl {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.35;
  margin-top: 2px;
}
.bc-features-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 5px;
  margin-bottom: 25px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.bc-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7); 
  line-height: 1.4;
}

.bc-feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 6px;
  background: rgba(34, 197, 94, 0.1); 
  flex-shrink: 0;
}

.bc-feature strong {
  color: #ffffff;
  font-weight: 600;
}

/* Full-width benefit row (spans 2 cols) */
.bc-benefit.full {
  grid-column: 1/-1;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  padding: 11px 15px;
}

.bc-benefit.full .bc-benefit-val {
  font-size: 18px;
}

.bc-benefit-icon {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: rgba(14, 92, 245, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.bc-benefit.full .bc-benefit-lbl {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
}

/* cta row at bottom */
.bc-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--fd);
  font-size: 13.5px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.7);
  margin-top: auto;
  /* pushes to bottom */
  transition:
    color 0.25s,
    gap 0.25s var(--ease);
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  text-decoration: none;
}

.bc-cta:hover {
  color: white;
  gap: 13px;
}

.bc-cta .bc-arr {
  display: inline-flex;
  transition: transform 0.3s var(--ease);
}

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

/* ── Browser Mockup (Web card) ── */
.bc-browser {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(139, 92, 246, 0.2);
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 14px;
  flex-shrink: 0;
}

.bc-browser-bar {
  background: rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(139, 92, 246, 0.15);
  padding: 8px 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.bc-browser-dots {
  display: flex;
  gap: 5px;
  flex-shrink: 0;
}

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

.bc-browser-dot.r {
  background: #ff6058;
}

.bc-browser-dot.y {
  background: #ffbd2e;
}

.bc-browser-dot.g {
  background: #28ca41;
}

.bc-browser-addr {
  flex: 1;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 5px;
  padding: 4px 9px;
  font-family: var(--fb);
  font-size: 9.5px;
  color: rgba(255, 255, 255, 0.35);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  letter-spacing: 0.01em;
}

.bc-browser-body {
  padding: 12px 12px 10px;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

/* Skeleton rows */
.bc-skel-row {
  display: flex;
  align-items: center;
  gap: 6px;
}

.bc-skel {
  height: 7px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.1);
}

.bc-skel.w-full {
  width: 100%;
}

.bc-skel.w-3q {
  width: 75%;
}

.bc-skel.w-half {
  width: 50%;
}

.bc-skel.w-third {
  width: 33%;
}

.bc-skel.w-sq {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  flex-shrink: 0;
}

.bc-skel.w-sm {
  width: 22%;
}

/* CTA button placeholder */
.bc-skel-cta {
  margin-top: 2px;
  height: 28px;
  border-radius: 7px;
  background: linear-gradient(90deg, rgba(139, 92, 246, 0.55), rgba(99, 102, 241, 0.45));
  border: 1px solid rgba(139, 92, 246, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--fd);
  font-size: 9px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition:
    background 0.3s,
    color 0.3s;
}

.bc-web:hover .bc-skel-cta {
  background: linear-gradient(90deg, rgba(139, 92, 246, 0.85), rgba(99, 102, 241, 0.7));
  color: white;
}

.bc-web:hover .bc-skel {
  background: rgba(139, 92, 246, 0.22);
}

/* Stat bar below browser */
.bc-stat-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(139, 92, 246, 0.18);
  border-radius: 8px;
  padding: 9px 12px;
  margin-bottom: 12px;
}

.bc-stat-bar-left {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.45);
}

.bc-stat-bar-val {
  font-family: var(--fd);
  font-size: 11px;
  font-weight: 800;
  color: #a7f3d0;
  letter-spacing: 0.01em;
}

/* ── Progress Bars (Sosyal card) ── */
.bc-progress-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 14px;
  flex-shrink: 0;
}

.bc-progress-row {
  display: flex;
  align-items: center;
  gap: 9px;
}

.bc-prog-avatar {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--fd);
  font-size: 9px;
  font-weight: 800;
  color: white;
  flex-shrink: 0;
}

.bc-prog-track {
  flex: 1;
  height: 6px;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.1);
  overflow: hidden;
  position: relative;
}

.bc-prog-fill {
  height: 100%;
  border-radius: 3px;
  position: absolute;
  top: 0;
  left: 0;
  /* animate on card visible */
  width: 0;
  transition: width 1.1s var(--ease);
}

.bc.visible .bc-prog-fill {
  width: var(--prog-w);
}

.bc-prog-val {
  font-family: var(--fd);
  font-size: 10.5px;
  font-weight: 800;
  color: #6ee7b7;
  white-space: nowrap;
  min-width: 38px;
  text-align: right;
}

.bc-prog-name {
  font-size: 9.5px;
  color: rgba(255, 255, 255, 0.35);
  white-space: nowrap;
  min-width: 52px;
}

/* Stat bar for sosyal */
.bc-stat-bar.sosyal {
  border-color: rgba(34, 197, 94, 0.2);
  background: rgba(34, 197, 94, 0.04);
  margin-bottom: 12px;
}

.bc-stat-bar.sosyal .bc-stat-bar-val {
  color: #6ee7b7;
}

/* ── Meta Sparkline Chart ── */
.meta-chart-wrap {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(14, 92, 245, 0.2);
  border-radius: 12px;
  padding: 12px 14px 10px;
  margin-bottom: 18px;
  flex-shrink: 0;
}

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

.meta-chart-label {
  font-size: 10.5px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.03em;
}

.meta-chart-tabs {
  display: flex;
  gap: 3px;
}

.mct {
  font-family: var(--fd);
  font-size: 9.5px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 5px;
  padding: 3px 7px;
  cursor: pointer;
  transition: all 0.2s;
  line-height: 1;
}

.mct:hover {
  color: rgba(255, 255, 255, 0.7);
  background: rgba(14, 92, 245, 0.2);
}

.mct.act {
  color: #7eb3ff;
  background: rgba(14, 92, 245, 0.25);
  border-color: rgba(14, 92, 245, 0.4);
}

.meta-chart-body {
  position: relative;
}

.meta-chart-body canvas {
  width: 100%;
  display: block;
}

.meta-chart-badge {
  position: absolute;
  top: 4px;
  right: 0;
  display: inline-flex;
  align-items: center;
  gap: 3px;
  font-family: var(--fd);
  font-size: 10px;
  font-weight: 800;
  color: #4ade80;
  background: rgba(34, 197, 94, 0.15);
  border: 1px solid rgba(34, 197, 94, 0.25);
  border-radius: 5px;
  padding: 2px 7px;
  pointer-events: none;
}

.meta-chart-xaxis {
  display: flex;
  justify-content: space-between;
  margin-top: 5px;
}

.meta-chart-xaxis span {
  font-size: 9px;
  color: rgba(255, 255, 255, 0.25);
  font-family: var(--fb);
}

/* ── Meta AI Signal (pulsing dot) ── */
.meta-ai-signal {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 16px;
  align-self: flex-start;
}

.meta-ai-dot {
  position: relative;
  width: 7px;
  height: 7px;
  flex-shrink: 0;
}

.meta-ai-dot::before,
.meta-ai-dot::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #22c55e;
}

.meta-ai-dot::after {
  background: transparent;
  border: 1.5px solid #22c55e;
  animation: aiPulse 2s ease-out infinite;
}

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

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

.meta-ai-txt {
  font-size: 9.5px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.32);
  letter-spacing: 0.04em;
  font-family: var(--fb);
}

/* ── FOMO Avatar Cluster ── */
.meta-fomo-avatars {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.mfa {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 1.5px solid rgba(7, 21, 42, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--fd);
  font-size: 7px;
  font-weight: 800;
  color: white;
  margin-left: -6px;
  flex-shrink: 0;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.35);
}

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

/* ── Meta FOMO CTA Block ── */
.meta-fomo {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: linear-gradient(135deg, rgba(14, 92, 245, 0.14) 0%, rgba(14, 92, 245, 0.06) 100%);
  border: 1px solid rgba(14, 92, 245, 0.28);
  border-radius: 12px;
  padding: 12px 14px;
  margin-bottom: 16px;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}

/* subtle shimmer sweep */
.meta-fomo::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.04), transparent);
  animation: fomoShimmer 3.2s ease-in-out infinite;
}

@keyframes fomoShimmer {
  0% {
    left: -60%;
  }

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

.meta-fomo-calc {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.meta-fomo-calc-row {
  display: flex;
  align-items: center;
  gap: 6px;
}

.meta-fomo-budget {
  font-family: var(--fd);
  font-size: 15px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: -0.02em;
}

.meta-fomo-eq {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.3);
}

.meta-fomo-result {
  font-family: var(--fd);
  font-size: 15px;
  font-weight: 800;
  color: #7eb3ff;
  letter-spacing: -0.02em;
}

.meta-fomo-sub {
  font-size: 9.5px;
  color: rgba(255, 255, 255, 0.3);
  letter-spacing: 0.02em;
}

.meta-fomo-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
  flex-shrink: 0;
}

.meta-fomo-live {
  display: flex;
  align-items: center;
  gap: 5px;
}

.meta-fomo-pulse {
  position: relative;
  width: 7px;
  height: 7px;
  flex-shrink: 0;
}

.meta-fomo-pulse::before,
.meta-fomo-pulse::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #22c55e;
}

.meta-fomo-pulse::after {
  background: transparent;
  border: 1.5px solid #22c55e;
  animation: pr 2s ease-out infinite;
}

.meta-fomo-live-txt {
  font-size: 9.5px;
  color: rgba(255, 255, 255, 0.4);
  white-space: nowrap;
}

.meta-fomo-live-txt strong {
  color: #4ade80;
  font-weight: 700;
}

/* --- PREMIUM FOMO BUTONU --- */
.meta-fomo-btn {
  position: relative;
  overflow: hidden; /* Işık yansımasının taşmasını engeller */
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px; /* İkon ile yazı arasını biraz açtık */
  font-family: var(--fd);
  font-size: 16px; /* İdeal okuma boyutu */
  font-weight: 700;
  color: #ffffff;
  
  /* Daha zengin, canlı bir mavi degrade */
  background: linear-gradient(135deg, #0052ff 0%, #009dff 100%);
  border: 1px solid rgba(255, 255, 255, 0.15); /* Camsı, şık bir çerçeve */
  border-radius: 12px; /* Kavisler daha modern */
  padding: 14px 28px; /* Buton nefes alsın, tok dursun */
  cursor: pointer;
  
  /* Çift gölge tekniği: Dışa renkli neon gölge, İçe (inset) beyaz 3D parlaklık */
  box-shadow: 
    0 6px 20px rgba(0, 82, 255, 0.35),
    inset 0 1px 1px rgba(255, 255, 255, 0.4);
    
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1); /* Çok daha pürüzsüz animasyon */
  white-space: nowrap;
  letter-spacing: -0.01em;
  z-index: 1;
}

/* 1. ÜZERİNDEN GEÇEN IŞIK PARLAMASI (Otomatik Dikkat Çeker) */
.meta-fomo-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    to right, 
    rgba(255, 255, 255, 0) 0%, 
    rgba(255, 255, 255, 0.4) 50%, 
    rgba(255, 255, 255, 0) 100%
  );
  transform: skewX(-25deg);
  animation: btnShimmer 3.5s infinite;
  z-index: -1; /* Yazının altında kalsın */
}

/* 2. HOVER (Üzerine Gelindiğinde) */
.meta-fomo-btn:hover {
  transform: translateY(-3px); /* Daha belirgin havaya kalkar */
  background: linear-gradient(135deg, #1a6aff 0%, #20a8ff 100%);
  box-shadow: 
    0 10px 25px rgba(0, 82, 255, 0.45),
    inset 0 1px 1px rgba(255, 255, 255, 0.5); /* 3D etkisi artar */
}

/* 3. ACTIVE (Tıklandığı An - Fiziksel Buton Hissi) */
.meta-fomo-btn:active {
  transform: translateY(1px); /* Aşağı göçer */
  box-shadow: 
    0 2px 10px rgba(0, 82, 255, 0.3),
    inset 0 1px 3px rgba(0, 0, 0, 0.15); /* İçeri basılma gölgesi */
}

/* Işık Animasyonu Keyframes */
@keyframes btnShimmer {
  0% { left: -100%; }
  20% { left: 200%; }
  100% { left: 200%; } /* Bekleme süresi yaratır, sürekli çakar gibi rahatsız etmez */
}

/* service section CTA */
.services-cta {
  text-align: center;
  margin-top: 52px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.services-cta p {
  font-size: 14.5px;
  color: var(--muted);
}

.services-cta p strong {
  color: var(--navy);
}

/* ── Bento responsive ── */
@media (max-width: 900px) {
  .bento {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .bc-meta {
    grid-column: 1;
    grid-row: auto;
    min-height: 420px;
  }

  .bc-web,
  .bc-sosyal {
    grid-column: 1;
    grid-row: auto;
    min-height: 220px;
  }

  .bc-meta .bc-h {
    font-size: clamp(26px, 6vw, 36px);
  }

  .bc-benefit-row {
    gap: 8px;
  }
}

@media (max-width: 600px) {
  .services {
    padding: 48px 0 72px;
  }

  .sec-head {
    margin-bottom: 36px;
  }

  .bento {
    gap: 12px;
  }

  .bc-meta {
    padding: 28px 24px;
    min-height: 380px;
  }

  .bc-web,
  .bc-sosyal {
    padding: 26px 22px;
  }

  .bc-benefit-row {
    gap: 7px;
  }

  .bc-benefit-val {
    font-size: 18px;
  }

  .trust-band::before,
  .trust-band::after {
    width: 60px;
  }
}

/* ══════════════════════════════════════════
                     BLUE MEDYA ETKİSİ — BEFORE / AFTER SECTION
                  ══════════════════════════════════════════ */
/* ════════════════════════════════════════
   ÖNCESİ / SONRASI (BME) — DARK THEME
════════════════════════════════════════ */

.bme-section {
  /* Premium Izgara ve Karanlık Zemin */
  background: 
    linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px) 0 0 / 40px 40px,
    linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px) 0 0 / 40px 40px,
    #080a12;
  padding: 96px 0 104px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

/* Sol Derin Mavi Işık Sızması */
.bme-section::before {
  content: '';
  position: absolute;
  top: -10%;
  left: -20%;
  width: 60%;
  height: 120%;
  background: radial-gradient(ellipse at center, rgba(14, 92, 245, 0.12) 0%, transparent 60%);
  filter: blur(60px);
  z-index: -1;
  pointer-events: none;
  animation: bmeAmbientMove 8s ease-in-out infinite alternate;
}

/* Sağ Neon Açık Mavi Işık */
.bme-section::after {
  content: '';
  position: absolute;
  bottom: -20%;
  right: -10%;
  width: 50%;
  height: 120%;
  background: radial-gradient(ellipse at center, rgba(0, 212, 255, 0.08) 0%, transparent 65%);
  filter: blur(70px);
  z-index: -1;
  pointer-events: none;
  animation: bmeAmbientMove 10s ease-in-out infinite alternate-reverse;
}

@keyframes bmeAmbientMove {
  0% { transform: scale(1) translate(0, 0); opacity: 0.7; }
  100% { transform: scale(1.1) translate(2%, -2%); opacity: 1; }
}

/* --- HEADER --- */
.bme-head {
  text-align: center;
  margin-bottom: 60px;
}

.bme-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(14, 92, 245, 0.1);
  border: 1px solid rgba(14, 92, 245, 0.25);
  border-radius: 100px;
  padding: 5px 16px;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #3b82f6;
  margin-bottom: 20px;
}

.bme-eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #3b82f6;
  box-shadow: 0 0 8px rgba(59, 130, 246, 0.8);
  animation: bmeDotPulse 2s ease-in-out infinite;
}

@keyframes bmeDotPulse {
  0%, 100% { opacity: 1; transform: scale(1); box-shadow: 0 0 8px rgba(59, 130, 246, 0.8); }
  50% { opacity: 0.4; transform: scale(1.3); box-shadow: 0 0 16px rgba(59, 130, 246, 1); }
}

.bme-title {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  color: #f0f4ff;
  line-height: 1.1;
  letter-spacing: -0.04em;
  margin-bottom: 14px;
}

.bme-title span {
  background: linear-gradient(90deg, #0052ff, #00cfff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.bme-subtitle {
  font-size: 16.5px;
  font-weight: 300;
  color: #94a3b8;
  line-height: 1.7;
  max-width: 500px;
  margin: 0 auto;
}

/* --- KART DÜZENİ --- */
.bme-split {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: stretch;
  max-width: 1200px;
  margin: 0 auto 64px;
}

.bme-card {
  border-radius: 24px;
  padding: 36px 32px;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s;
}

.bme-card:hover {
  transform: translateY(-4px);
}

/* ÖNCESİ KARTI (Soluk, Koyu, Negatif His) */
.bme-before {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.04);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.02);
}

.bme-before:hover {
  border-color: rgba(255, 255, 255, 0.08);
}

/* SONRASI KARTI (Canlı, Neon, Parlak) */
.bme-after {
  background: rgba(14, 92, 245, 0.04);
  border: 1px solid rgba(14, 92, 245, 0.2);
  box-shadow:
    0 10px 40px rgba(0, 0, 0, 0.5),
    0 0 60px rgba(14, 92, 245, 0.08);
  position: relative;
}

.bme-after::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, #0e5cf5, #00cfff, #4ade80);
  border-radius: 24px 24px 0 0;
}

.bme-after:hover {
  box-shadow:
    0 20px 72px rgba(14, 92, 245, 0.15),
    0 0 0 1px rgba(14, 92, 245, 0.3);
}

/* Kart Başlıkları ve Rozetler */
.bme-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 26px;
}

.bme-card-label {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.bme-before .bme-card-label { color: #64748b; }
.bme-after .bme-card-label { color: #f0f4ff; }

.bme-card-badge {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.bme-before .bme-card-badge { background: rgba(239, 68, 68, 0.15); color: #f87171; border: 1px solid rgba(239, 68, 68, 0.2); }
.bme-after .bme-card-badge { background: rgba(34, 197, 94, 0.15); color: #4ade80; border: 1px solid rgba(34, 197, 94, 0.2); }

/* Barlar ve Değerler */
.bme-bars { display: flex; flex-direction: column; gap: 14px; margin-bottom: 28px; }
.bme-bar-row { display: flex; flex-direction: column; gap: 5px; }
.bme-bar-meta { display: flex; justify-content: space-between; align-items: center; }

.bme-bar-label { font-size: 11.5px; font-weight: 500; }
.bme-before .bme-bar-label { color: #64748b; }
.bme-after .bme-bar-label { color: #94a3b8; }

.bme-bar-value { font-family: 'Bricolage Grotesque', sans-serif; font-size: 12px; font-weight: 700; }
.bme-before .bme-bar-value { color: #f87171; }
.bme-after .bme-bar-value { color: #60a5fa; text-shadow: 0 0 10px rgba(96, 165, 250, 0.3); }

.bme-bar-track {
  height: 7px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.06);
  overflow: hidden;
  position: relative;
}

.bme-bar-fill {
  height: 100%;
  border-radius: 4px;
  position: absolute;
  top: 0; left: 0; width: 0;
  transition: width 1.1s cubic-bezier(0.16, 1, 0.3, 1);
}

.bme-before .bme-bar-fill { background: linear-gradient(90deg, #991b1b, #ef4444); }
.bme-after .bme-bar-fill.blue { background: linear-gradient(90deg, #1d4ed8, #3b82f6); box-shadow: 0 0 10px rgba(59, 130, 246, 0.5); }
.bme-after .bme-bar-fill.green { background: linear-gradient(90deg, #166534, #22c55e); box-shadow: 0 0 10px rgba(34, 197, 94, 0.5); }
.bme-after .bme-bar-fill.amber { background: linear-gradient(90deg, #b45309, #f59e0b); }

.bme-section.revealed .bme-bar-fill { width: var(--bar-w); }

/* Alt İstatistik Alanları */
.bme-stats { display: flex; flex-direction: column; gap: 8px; }
.bme-stat { display: flex; align-items: center; gap: 9px; padding: 10px 12px; border-radius: 10px; }

.bme-before .bme-stat { background: rgba(255, 255, 255, 0.02); border: 1px solid rgba(255, 255, 255, 0.03); }
.bme-after .bme-stat { background: rgba(14, 92, 245, 0.08); border: 1px solid rgba(14, 92, 245, 0.15); }

.bme-stat-icon { width: 28px; height: 28px; border-radius: 7px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.bme-before .bme-stat-icon { background: rgba(239, 68, 68, 0.1); color: #f87171; }
.bme-after .bme-stat-icon { background: rgba(14, 92, 245, 0.15); color: #60a5fa; }

.bme-stat-body { display: flex; flex-direction: column; gap: 1px; flex: 1; }
.bme-stat-title { font-size: 11.5px; font-weight: 600; }
.bme-before .bme-stat-title { color: #64748b; }
.bme-after .bme-stat-title { color: #94a3b8; }

.bme-stat-val { font-family: 'Bricolage Grotesque', sans-serif; font-size: 14px; font-weight: 800; }
.bme-before .bme-stat-val { color: #f87171; }
.bme-after .bme-stat-val { color: #f0f4ff; }
.bme-after .bme-stat-val.g { color: #4ade80; text-shadow: 0 0 10px rgba(74, 222, 128, 0.3); }

/* Ortadaki Geçiş Oku */
.bme-arrow-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  flex-shrink: 0;
  padding: 0 2px;
}

.bme-arrow {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #080a12; /* Karanlık zemin */
  box-shadow: 0 0 20px rgba(14, 92, 245, 0.3);
  border: 1px solid rgba(14, 92, 245, 0.4);
  color: #60a5fa;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s;
}

.bme-arrow:hover {
  transform: scale(1.1);
  box-shadow: 0 0 32px rgba(14, 92, 245, 0.5);
  background: rgba(14, 92, 245, 0.1);
}

/* --- BOTTOM CTA (Fomo Buton Kalitesi) --- */
.bme-cta-wrap { text-align: center; max-width: 640px; margin: 0 auto; padding-top: 8px; }

.bme-cta-title {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(26px, 3.2vw, 42px);
  font-weight: 800;
  color: #f0f4ff;
  letter-spacing: -0.04em;
  line-height: 1.08;
  margin-bottom: 10px;
}

.bme-cta-title span {
  background: linear-gradient(90deg, #0e5cf5, #00cfff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.bme-cta-sub { font-size: 15px; font-weight: 300; color: #94a3b8; line-height: 1.65; margin-bottom: 28px; }

.bme-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: white;
  background: linear-gradient(135deg, #0052ff 0%, #009dff 100%);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 15px 32px;
  border-radius: 12px;
  cursor: pointer;
  letter-spacing: -0.01em;
  box-shadow: 0 6px 20px rgba(0, 82, 245, 0.35), inset 0 1px 1px rgba(255, 255, 255, 0.4);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.bme-cta-btn:hover {
  transform: translateY(-3px);
  background: linear-gradient(135deg, #1a6aff 0%, #20a8ff 100%);
  box-shadow: 0 10px 25px rgba(0, 82, 255, 0.45), inset 0 1px 1px rgba(255, 255, 255, 0.5);
}

.bme-cta-btn .bme-arr { display: inline-flex; transition: transform 0.28s cubic-bezier(0.16, 1, 0.3, 1); }
.bme-cta-btn:hover .bme-arr { transform: translateX(5px); }

.bme-trust-note { margin-top: 16px; display: flex; align-items: center; justify-content: center; gap: 14px; flex-wrap: wrap; }
.bme-tn { display: inline-flex; align-items: center; gap: 5px; font-size: 12px; color: #64748b; }

/* Mobil Uyumluluk */
@media (max-width: 860px) {
  .bme-split { grid-template-columns: 1fr; max-width: 480px; gap: 16px; margin-left: auto; margin-right: auto; }
  .bme-arrow-wrap { width: 100%; height: 40px; }
  .bme-arrow { transform: rotate(90deg); }
  .bme-section { padding: 64px 0 80px; }
  .bme-head { margin-bottom: 40px; }
}

/* ════════════════════════════════════════
   MOBİL İÇİN FERAH DÜZEN (BME KARTLARI)
════════════════════════════════════════ */
@media (max-width: 520px) {
  /* 1. Kart Başlıklarını ve Rozeti Alt Alta Al */
  .bme-card-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  /* 2. Çubuk (Bar) Yazılarını Alt Alta Hizala */
  .bme-bar-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    margin-bottom: 8px; /* Çubukla yazı arasına nefes payı */
  }

  /* Üst başlık (örn: İnternetten Gelen Müşteri) biraz daha kibar dursun */
  .bme-bar-label {
    font-size: 11px;
    opacity: 0.8; 
  }
  
  /* Asıl vurucu mesaj (örn: Eş dost veya...) daha okunaklı olsun */
  .bme-bar-value {
    font-size: 13px;
    line-height: 1.4;
    text-align: left;
  }

  /* 3. İstatistik Kutularındaki İkonları Üste Sabitle */
  .bme-stat {
    align-items: flex-start; /* Metin uzadıkça ikon ortalanmasın, yukarıda kalsın */
    padding: 14px 12px; 
  }
  
  .bme-stat-icon {
    margin-top: 2px; /* İkonu sağındaki başlığın ilk satırıyla hizalar */
  }

  .bme-stat-title {
    margin-bottom: 2px;
  }

  .bme-stat-val {
    font-size: 13px;
    line-height: 1.4;
  }
}


/* ══════════════════════════════════════════
                     EKSİK BÜYÜME HESAPLAYICI
                  ══════════════════════════════════════════ */
/* ════════════════════════════════════════
   BÜYÜME HESAPLAYICI — DARK THEME CSS
════════════════════════════════════════ */

.calc-section {
  /* Zemin Izgarası ve Koyu Lacivert Arka Plan */
  background: 
    linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px) 0 0 / 40px 40px,
    linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px) 0 0 / 40px 40px,
    #080a12;
  padding: 96px 0 104px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

/* Sol Derin Mavi Ortam Işığı */
.calc-section::before {
  content: '';
  position: absolute;
  top: 0%;
  left: -10%;
  width: 50%;
  height: 100%;
  background: radial-gradient(ellipse at center, rgba(14, 92, 245, 0.12) 0%, transparent 60%);
  filter: blur(60px);
  z-index: -1;
  pointer-events: none;
  animation: calcAmbientMove 8s ease-in-out infinite alternate;
}

/* Sağ Neon Açık Mavi Işık */
.calc-section::after {
  content: '';
  position: absolute;
  bottom: -20%;
  right: -10%;
  width: 50%;
  height: 100%;
  background: radial-gradient(ellipse at center, rgba(0, 212, 255, 0.08) 0%, transparent 60%);
  filter: blur(70px);
  z-index: -1;
  pointer-events: none;
  animation: calcAmbientMove 10s ease-in-out infinite alternate-reverse;
}

@keyframes calcAmbientMove {
  0% { transform: scale(1) translate(0, 0); opacity: 0.7; }
  100% { transform: scale(1.1) translate(-2%, 2%); opacity: 1; }
}

/* ── HEADER ── */
.calc-head {
  text-align: center;
  margin-bottom: 52px;
  position: relative;
  z-index: 1;
}

.calc-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(14, 92, 245, 0.1);
  border: 1px solid rgba(14, 92, 245, 0.25);
  border-radius: 100px;
  padding: 5px 16px;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #3b82f6;
  margin-bottom: 20px;
}

.calc-eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #3b82f6;
  box-shadow: 0 0 8px rgba(59, 130, 246, 0.8);
  animation: calcDotPulse 2s ease-in-out infinite;
}

@keyframes calcDotPulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 8px rgba(59, 130, 246, 0.8); transform: scale(1); }
  50% { opacity: 0.4; box-shadow: 0 0 16px rgba(59, 130, 246, 1); transform: scale(1.3); }
}

.calc-title {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(30px, 4vw, 50px);
  font-weight: 800;
  color: #f0f4ff; /* Beyaz/Gri ton */
  line-height: 1.05;
  letter-spacing: -0.04em;
  margin-bottom: 12px;
}

.calc-title span.hl-blue {
  background: linear-gradient(90deg, #0052ff, #00cfff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.calc-subtitle {
  font-size: 16px;
  font-weight: 300;
  color: #94a3b8; /* Açık slate */
  line-height: 1.7;
  max-width: 460px;
  margin: 0 auto;
}

/* ── ANA KART (DARK GLASS) ── */
.calc-card {
  background: #0b0f19; /* Koyu premium zemin */
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  box-shadow:
    0 10px 40px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(14, 92, 245, 0.15),
    0 0 60px rgba(14, 92, 245, 0.05); /* Dışa hafif neon vurma */
  max-width: 960px;
  margin: 0 auto;
  padding: 52px 56px;
  position: relative;
  z-index: 1;
}

/* Two-col layout */
.calc-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
  align-items: center;
}

/* ── SOL: INPUT PANELİ ── */
.calc-input-label {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #64748b;
  margin-bottom: 20px;
  display: block;
}

.calc-budget-display {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 44px;
  font-weight: 900;
  color: #f0f4ff;
  letter-spacing: -0.05em;
  line-height: 1;
  margin-bottom: 4px;
}

.calc-budget-display span {
  color: #3b82f6;
}

.calc-budget-sub {
  font-size: 12px;
  color: #64748b;
  margin-bottom: 28px;
  font-weight: 400;
}

/* Custom range slider */
.calc-slider-wrap {
  position: relative;
  padding: 8px 0;
}

.calc-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 6px;
  border-radius: 4px;
  /* Dolmamış kısım siyah transparan, dolan kısım mavi */
  background: linear-gradient(90deg, #0e5cf5 var(--fill, 20%), rgba(255,255,255,0.08) var(--fill, 20%));
  outline: none;
  cursor: pointer;
  transition: background 0.05s;
}

.calc-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #ffffff;
  border: 3px solid #0e5cf5;
  box-shadow:
    0 2px 12px rgba(14, 92, 245, 0.6),
    0 0 0 4px rgba(14, 92, 245, 0.15);
  cursor: grab;
  transition: box-shadow 0.2s, transform 0.2s;
}

.calc-slider::-webkit-slider-thumb:active {
  cursor: grabbing;
  transform: scale(1.15);
  box-shadow:
    0 4px 20px rgba(14, 92, 245, 0.8),
    0 0 0 8px rgba(14, 92, 245, 0.2);
}

.calc-range-labels {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
}

.calc-range-labels span {
  font-size: 11px;
  color: #64748b;
  font-weight: 500;
}

/* Sektör Butonları */
.calc-sector-label {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #64748b;
  margin: 24px 0 10px;
  display: block;
}

.calc-sectors {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.calc-sector {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: #cbd5e1;
  background: rgba(255, 255, 255, 0.03); /* Koyu buton */
  border: 1.5px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 6px 12px;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  user-select: none;
}

.calc-sector:hover {
  background: rgba(14, 92, 245, 0.1);
  border-color: rgba(14, 92, 245, 0.4);
  color: #60a5fa;
}

.calc-sector.active {
  background: #0e5cf5;
  border-color: #0e5cf5;
  color: white;
  box-shadow: 0 4px 15px rgba(14, 92, 245, 0.4);
}

/* ── SAĞ: OUTPUT PANELİ ── */
.calc-output-panel {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.calc-out-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  padding: 18px 20px;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s;
}

.calc-out-card:hover {
  transform: translateX(4px);
  border-color: rgba(255, 255, 255, 0.15);
}

.calc-out-card.highlight {
  background: rgba(14, 92, 245, 0.06);
  border-color: rgba(14, 92, 245, 0.3);
}

.calc-out-label {
  font-size: 11.5px;
  font-weight: 600;
  color: #94a3b8;
  letter-spacing: 0.02em;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.calc-out-label svg {
  flex-shrink: 0;
}

.calc-out-val {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 28px;
  font-weight: 900;
  color: #f0f4ff;
  letter-spacing: -0.04em;
  line-height: 1;
}

.calc-out-val.blue {
  color: #3b82f6;
  text-shadow: 0 0 20px rgba(59, 130, 246, 0.4); /* Rakamın arkasına hafif neon */
}

.calc-out-val.green {
  color: #22c55e;
}

.calc-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.2);
  border-radius: 8px;
  padding: 5px 10px;
  margin-top: 6px;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 13px;
  font-weight: 800;
  color: #4ade80;
}

.calc-badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 8px rgba(74, 222, 128, 0.8);
  animation: calcDotPulse 1.8s ease-in-out infinite;
}

/* Uyarı Metni */
.calc-disclaimer {
  text-align: center;
  font-size: 11.5px;
  color: #64748b;
  margin-top: 28px;
  line-height: 1.6;
}

/* ── BOTTOM CTA ── */
.calc-cta-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.calc-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: white;
  background: linear-gradient(135deg, #0e5cf5, #3578ff);
  padding: 15px 32px;
  border-radius: 13px;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 24px rgba(14, 92, 245, 0.32), inset 0 1px 1px rgba(255,255,255,0.2);
  transition: transform 0.26s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s;
  letter-spacing: -0.01em;
}

.calc-cta-btn:hover {
  transform: translateY(-3px);
  box-shadow:
    0 10px 40px rgba(14, 92, 245, 0.5),
    0 0 0 8px rgba(14, 92, 245, 0.15),
    inset 0 1px 1px rgba(255,255,255,0.3);
}

.calc-cta-btn .ca {
  display: inline-flex;
  transition: transform 0.28s cubic-bezier(0.16, 1, 0.3, 1);
}

.calc-cta-btn:hover .ca {
  transform: translateX(5px);
}

/* Mobilde Step 1 İçin Extra Dark Ayarları (Senin az önceki eklentilerin karanlık versiyonu) */
.calc-step-title { color: #f0f4ff; }
.calc-step-desc { color: #94a3b8; }
.calc-back-btn { 
  background: rgba(14, 92, 245, 0.15); 
  color: #60a5fa; 
}
.calc-back-btn:hover { background: rgba(14, 92, 245, 0.25); color: #93c5fd; }
/* Hesaplayıcı Step Animasyonları */
  .calc-step { display: none; animation: calcFadeIn 0.4s ease forwards; }
  .calc-step.active { display: block; }
  
  @keyframes calcFadeIn {
    from { opacity: 0; transform: translateY(15px); }
    to { opacity: 1; transform: translateY(0); }
  }

  /* 1. Adım Başlık Stilleri (DARK) */
  .calc-step-header { text-align: center; margin-bottom: 28px; }
  .calc-step-title { 
    font-size: 22px; 
    color: #f0f4ff; /* Karanlık zemin için parlak beyaz/mavi tonu */
    font-weight: 800; 
    margin-bottom: 8px; 
    font-family: 'Bricolage Grotesque', sans-serif; 
  }
  .calc-step-desc { 
    color: #94a3b8; /* Karanlıkta okunabilir, göz yormayan gri */
    font-size: 15px; 
  }

  /* Geri Dön Butonu (DARK) */
  .calc-back-btn { 
    background: rgba(14, 92, 245, 0.15); /* Zeminle kontrast için biraz daha opak */
    border: 1px solid rgba(14, 92, 245, 0.2); /* İnce, şık bir cam çerçeve */
    color: #60a5fa; /* Koyu zeminde parlayan açık mavi */
    font-weight: 700; 
    padding: 8px 16px; 
    border-radius: 8px; 
    cursor: pointer; 
    display: inline-flex; 
    align-items: center; 
    gap: 6px; 
    font-size: 14px; 
    margin-bottom: 24px; 
    transition: all 0.2s ease; 
  }
  .calc-back-btn:hover { 
    background: rgba(14, 92, 245, 0.25); 
    color: #93c5fd; 
    border-color: rgba(14, 92, 245, 0.4); /* Üzerine gelince neon etkisi artar */
  }
/* Responsive */
@media (max-width: 860px) {
  .calc-card {
    padding: 36px 32px;
  }

  .calc-body {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .calc-budget-display {
    font-size: 36px;
  }

  .calc-out-val {
    font-size: 24px;
  }
}

@media (max-width: 520px) {
  .calc-section {
    padding: 56px 0 72px;
  }

  .calc-card {
    padding: 28px 22px;
    border-radius: 20px;
  }

  .calc-budget-display {
    font-size: 30px;
  }

  .calc-title {
    font-size: 26px;
  }

  .calc-sections {
    gap: 6px;
  }
}

/* ══════════════════════════════════════════
                     MÜŞTERİ YORUMLARI — Dark Glassmorphism
                  ══════════════════════════════════════════ */
.testi-section {
  background: #07152a;
  padding: 96px 0 104px;
  position: relative;
  overflow: hidden;
}

.testi-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 10% 20%, rgba(14, 92, 245, 0.12) 0%, transparent 70%),
    radial-gradient(ellipse 50% 60% at 90% 80%, rgba(53, 120, 255, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.testi-head {
  text-align: center;
  margin-bottom: 56px;
  position: relative;
  z-index: 1;
}

.testi-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(14, 92, 245, 0.18);
  border: 1px solid rgba(14, 92, 245, 0.3);
  border-radius: 100px;
  padding: 5px 16px;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #7eb3ff;
  margin-bottom: 18px;
}

.testi-eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #3578ff;
}

.testi-title {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  color: #fff;
  line-height: 1.05;
  letter-spacing: -0.04em;
  margin-bottom: 12px;
}

.testi-title span {
  color: #7eb3ff;
}

.testi-subtitle {
  font-size: 15.5px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.7;
  max-width: 460px;
  margin: 0 auto;
}

.testi-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
}

.testi-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 28px 26px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition:
    transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.35s,
    border-color 0.35s;
}

.testi-card:hover {
  transform: translateY(-6px);
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.35),
    0 0 0 1px rgba(53, 120, 255, 0.25);
  border-color: rgba(53, 120, 255, 0.3);
}

.testi-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 16px;
}

.testi-star {
  width: 14px;
  height: 14px;
  background: #f59e0b;
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}

.testi-quote {
  font-size: 14px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.72;
  margin-bottom: 22px;
  font-style: italic;
  position: relative;
  padding-left: 18px;
}

.testi-quote::before {
  content: '\201C';
  position: absolute;
  left: 0;
  top: -4px;
  font-size: 28px;
  color: #3578ff;
  font-style: normal;
  font-weight: 900;
  line-height: 1;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testi-av {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 14px;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
}

.testi-name {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 13.5px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 2px;
}

.testi-role {
  font-size: 11.5px;
  color: rgba(255, 255, 255, 0.38);
  font-weight: 400;
}

.testi-result-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(34, 197, 94, 0.15);
  border: 1px solid rgba(34, 197, 94, 0.25);
  border-radius: 6px;
  padding: 3px 8px;
  margin-top: 12px;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: #4ade80;
}

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

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

  .testi-section {
    padding: 60px 0 72px;
  }
}

/* ══════════════════════════════════════════
                     SSS — FAQ Accordion 2-col
                  ══════════════════════════════════════════ */
.faq-section {
  background: #fff;
  padding: 96px 0 104px;
  position: relative;
}

.faq-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(14, 92, 245, 0.12),
    rgba(14, 92, 245, 0.2),
    rgba(14, 92, 245, 0.12),
    transparent
  );
}

.faq-head {
  text-align: center;
  margin-bottom: 60px;
}

.faq-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #ebf1ff;
  border: 1px solid rgba(14, 92, 245, 0.18);
  border-radius: 100px;
  padding: 5px 16px;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #0e5cf5;
  margin-bottom: 18px;
}

.faq-eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #0e5cf5;
}

.faq-title {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(28px, 3.8vw, 48px);
  font-weight: 800;
  color: #07152a;
  line-height: 1.05;
  letter-spacing: -0.04em;
  margin-bottom: 12px;
}

.faq-title span {
  color: #0e5cf5;
}

.faq-subtitle {
  font-size: 15.5px;
  font-weight: 300;
  color: #4e6070;
  line-height: 1.7;
  max-width: 440px;
  margin: 0 auto;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 24px;
  max-width: 1040px;
  margin: 0 auto 56px;
}

.faq-item {
  border: 1.5px solid #e8edf5;
  border-radius: 14px;
  overflow: hidden;
  transition:
    border-color 0.25s,
    box-shadow 0.25s;
  background: #fff;
}

.faq-item.open {
  border-color: rgba(14, 92, 245, 0.25);
  box-shadow: 0 4px 24px rgba(14, 92, 245, 0.08);
}

.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 20px 22px;
  cursor: pointer;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #07152a;
  line-height: 1.35;
  user-select: none;
  transition: color 0.2s;
}

.faq-item.open .faq-q,
.faq-q:hover {
  color: #0e5cf5;
}

.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: #f1f5f9;
  border: 1px solid #e2e8f0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition:
    background 0.25s,
    transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.25s;
}

.faq-item.open .faq-icon {
  background: #0e5cf5;
  border-color: #0e5cf5;
  transform: rotate(45deg);
}

.faq-item.open .faq-icon svg {
  stroke: white;
}

.faq-a-wrap {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-item.open .faq-a-wrap {
  max-height: 400px;
}

.faq-a {
  padding: 0 22px 20px;
  font-size: 14px;
  font-weight: 300;
  color: #475569;
  line-height: 1.75;
  border-top: 1px solid #f1f5f9;
  padding-top: 14px;
}

.faq-cta {
  text-align: center;
  padding-top: 8px;
}

.faq-cta-title {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: #07152a;
  letter-spacing: -0.03em;
  margin-bottom: 8px;
}

.faq-cta-sub {
  font-size: 14px;
  color: #64748b;
  margin-bottom: 20px;
}

.faq-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 14.5px;
  font-weight: 700;
  color: white;
  background: #07152a;
  padding: 13px 26px;
  border-radius: 11px;
  border: none;
  cursor: pointer;
  box-shadow: 0 3px 16px rgba(7, 21, 42, 0.2);
  transition:
    background 0.2s,
    transform 0.25s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.28s;
}

.faq-cta-btn:hover {
  background: #0e5cf5;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(14, 92, 245, 0.3);
}

.faq-cta-btn .fa {
  display: inline-flex;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

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

@media (max-width: 768px) {
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .faq-section {
    padding: 60px 0 72px;
  }

  .faq-head {
    margin-bottom: 40px;
  }
  .meta-fomo {
    flex-direction: column;
  }
  .meta-fomo{
      align-items: normal;
  }
  .meta-fomo-calc,.meta-fomo-right{
      align-items: center;
  }
  .meta-fomo-btn {
      margin-top:10px;
    width: 100%;
    display: flex;
    justify-content: center;
    font-size:14px;
  }
}
