/* Stok Sorgulama — pazarlama (premium, açık zemin) */
body.mode-marketing {
  --accent: #f97316;
  --accent-hover: #ea580c;
  --accent-soft: #fff7ed;
  --accent-glow: rgba(249, 115, 22, 0.12);
  --mkt-ink: #0c1222;
  --mkt-muted: #5b6478;
  --mkt-line: #e8ecf2;
  --mkt-surface: #ffffff;
  --mkt-bg: #f6f8fb;
  --mkt-radius-sm: 5px;
  --mkt-radius-md: 6px;
  --mkt-radius-lg: 8px;
  background: var(--mkt-bg);
  color: var(--mkt-ink);
}

body.mode-marketing.page-landing,
body.mode-marketing.page-login-landing {
  --mkt-gutter: clamp(20px, 2.5vw, 40px);
  --mkt-max: none;
  --mkt-col-gap: clamp(32px, 4vw, 80px);
  --mkt-header-h: 76px;
  --mkt-nav-ctrl-h: 42px;
  --mkt-radius-sm: 5px;
  --mkt-radius-md: 6px;
  --mkt-radius-lg: 8px;
  --mkt-shadow-sm: 0 2px 12px rgba(12, 18, 34, 0.05);
  --mkt-shadow-md: 0 16px 48px -12px rgba(12, 18, 34, 0.14);
  --mkt-shadow-accent: 0 8px 28px var(--accent-glow);
  --accent-border: rgba(249, 115, 22, 0.22);
  min-height: 100vh;
  overflow-x: clip;
}

.mkt-header__inner,
.mkt-hero__inner,
.mkt-section__inner,
.mkt-brands__inner,
.mkt-ticker__inner,
.mkt-cta__shell,
.mkt-footer__grid,
.mkt-footer__bottom {
  width: 100%;
  max-width: var(--mkt-max);
  margin-left: auto;
  margin-right: auto;
}

/* ── Header ── */
.mkt-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 300;
  padding-left: var(--mkt-gutter);
  padding-right: var(--mkt-gutter);
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(232, 236, 242, 0.9);
  transition: background 0.25s, box-shadow 0.25s, border-color 0.25s;
}

.mkt-header--scrolled {
  background: rgba(255, 255, 255, 0.96);
  border-bottom-color: var(--mkt-line);
  box-shadow: 0 1px 0 rgba(12, 18, 34, 0.04), 0 8px 32px rgba(12, 18, 34, 0.06);
}

.mkt-header__inner {
  display: flex;
  align-items: center;
  width: 100%;
  margin: 0 auto;
  height: var(--mkt-header-h);
  gap: clamp(12px, 2vw, 32px);
}

@media (min-width: 961px) {
  .mkt-nav {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: clamp(12px, 2vw, 32px);
    min-width: 0;
  }

  .mkt-nav__links {
    flex: 1;
    justify-content: center;
  }

  .mkt-nav__actions {
    flex-shrink: 0;
  }

  .mkt-nav-toggle {
    display: none;
  }
}

.mkt-brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
  color: var(--mkt-ink);
  flex-shrink: 0;
}

.mkt-brand__logo {
  width: 38px;
  height: 38px;
  border-radius: var(--mkt-radius-sm);
}

.mkt-brand__text {
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  line-height: 1;
  color: var(--mkt-muted);
}

.mkt-brand__text-strong {
  font-weight: 700;
  color: var(--mkt-ink);
  letter-spacing: 0.02em;
}

.mkt-nav-toggle {
  display: none;
  width: var(--mkt-nav-ctrl-h);
  height: var(--mkt-nav-ctrl-h);
  padding: 0;
  border: 1px solid var(--mkt-line);
  border-radius: var(--mkt-radius-md);
  background: #fff;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  flex-shrink: 0;
}

.mkt-nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--mkt-ink);
  border-radius: 1px;
  transition: transform 0.2s, opacity 0.2s;
}

.mkt-nav {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.mkt-nav__links {
  display: flex;
  align-items: center;
  gap: 4px;
  height: auto;
  padding: 0;
  background: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
}

.mkt-nav__link {
  position: relative;
  display: inline-flex;
  align-items: center;
  height: auto;
  padding: 8px 14px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--mkt-muted);
  text-decoration: none;
  border-radius: 8px;
  transition: color 0.15s ease, background 0.15s ease;
  white-space: nowrap;
  line-height: 1;
}

.mkt-nav__link:hover {
  color: var(--mkt-ink);
  background: rgba(12, 18, 34, 0.04);
}

.mkt-nav__link.is-active {
  color: var(--mkt-ink);
  background: transparent;
  font-weight: 600;
}

.mkt-nav__link.is-active::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 4px;
  height: 2px;
  border-radius: 2px;
  background: var(--accent);
}

.mkt-nav__actions {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-left: 0;
  border-left: none;
}

.mkt-nav__login {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: var(--mkt-nav-ctrl-h);
  padding: 0 16px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--mkt-ink);
  text-decoration: none;
  border-radius: var(--mkt-radius-sm);
  border: 1px solid var(--mkt-line);
  background: #fff;
  transition: color 0.15s ease, background 0.15s ease, border-color 0.15s ease;
  white-space: nowrap;
  line-height: 1;
}

.mkt-nav__login:hover {
  color: var(--mkt-ink);
  background: var(--mkt-bg);
  border-color: #d1d8e4;
}

.mkt-header .mkt-nav__signup {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: var(--mkt-nav-ctrl-h);
  padding: 0 18px;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: var(--mkt-radius-sm);
  box-shadow: 0 2px 10px var(--accent-glow);
  line-height: 1;
  transition: transform 0.15s ease, box-shadow 0.15s ease, filter 0.15s ease;
}

.mkt-header .mkt-nav__signup:hover:not(:disabled) {
  transform: translateY(-1px);
  box-shadow: 0 4px 16px var(--accent-glow);
  filter: brightness(1.03);
}

body.mode-marketing .mkt-btn-primary {
  background: linear-gradient(180deg, #fb923c 0%, var(--accent) 55%, var(--accent-hover) 100%);
  border-color: var(--accent);
  color: #fff;
  font-weight: 600;
  border-radius: var(--mkt-radius-sm);
  padding: 10px 20px;
  font-size: 0.88rem;
  box-shadow: var(--mkt-shadow-accent);
  transition: transform 0.15s ease, box-shadow 0.15s ease, filter 0.15s ease, border-color 0.15s ease;
}

body.mode-marketing .mkt-btn-primary:hover:not(:disabled) {
  background: linear-gradient(180deg, #fdba74 0%, #fb923c 45%, var(--accent-hover) 100%);
  border-color: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px var(--accent-glow);
  filter: brightness(1.03);
}

body.mode-marketing .mkt-btn-ghost {
  color: var(--mkt-ink);
  background: transparent;
  border: 1px solid var(--mkt-line);
  font-weight: 500;
  border-radius: var(--mkt-radius-sm);
  padding: 10px 18px;
  font-size: 0.88rem;
}

body.mode-marketing .mkt-btn-ghost:hover:not(:disabled) {
  background: var(--accent-soft);
  border-color: var(--accent-border);
  color: var(--accent-hover);
}

body.mode-marketing .mkt-btn-secondary {
  transition: border-color 0.15s ease, background 0.15s ease, color 0.15s ease, transform 0.15s ease;
}

body.mode-marketing .mkt-btn-secondary:hover:not(:disabled) {
  border-color: var(--accent-border);
  background: var(--accent-soft);
  color: var(--accent-hover);
}

@keyframes mkt-hero-in {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

/* ── Hero ── */
.mkt-hero {
  position: relative;
  padding: calc(var(--mkt-header-h) + 56px) var(--mkt-gutter) 80px;
  overflow: hidden;
  background:
    radial-gradient(ellipse 55% 50% at 12% 20%, rgba(249, 115, 22, 0.04), transparent 58%),
    radial-gradient(ellipse 80% 60% at 70% 0%, var(--accent-glow), transparent 55%),
    linear-gradient(180deg, #fff 0%, var(--mkt-bg) 100%);
}

.mkt-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(12, 18, 34, 0.035) 1px, transparent 0);
  background-size: 28px 28px;
  mask-image: linear-gradient(180deg, #000 0%, transparent 82%);
  -webkit-mask-image: linear-gradient(180deg, #000 0%, transparent 82%);
  pointer-events: none;
}

.mkt-hero__glow {
  position: absolute;
  width: min(680px, 50vw);
  height: min(680px, 50vw);
  right: 0;
  top: 40px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(249, 115, 22, 0.09) 0%, transparent 68%);
  pointer-events: none;
}

.mkt-hero__inner {
  position: relative;
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: var(--mkt-col-gap);
  align-items: center;
}

.mkt-hero__copy,
.mkt-hero__visual {
  min-width: 0;
}

.mkt-hero__copy {
  animation: mkt-hero-in 0.7s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.mkt-hero__visual {
  width: 100%;
  justify-self: end;
  animation: mkt-hero-in 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.12s both;
}

.mkt-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px 6px 8px;
  margin-bottom: 22px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--mkt-line);
  box-shadow: 0 2px 12px rgba(12, 18, 34, 0.04);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--mkt-muted);
}

.mkt-hero__badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-glow);
}

.mkt-hero__title {
  margin: 0 0 20px;
  font-size: clamp(2.2rem, 5.2vw, 3.5rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.045em;
  color: var(--mkt-ink);
}

.mkt-hero__title span {
  background: linear-gradient(135deg, #f97316 0%, #fb923c 45%, #ea580c 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.mkt-hero__lead {
  margin: 0 0 32px;
  font-size: 1.12rem;
  line-height: 1.7;
  color: var(--mkt-muted);
}

.mkt-hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 36px;
}

.mkt-hero__cta .btn {
  padding: 14px 26px;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--mkt-radius-sm);
}

.mkt-hero__cta .mkt-btn-secondary {
  background: #fff;
  border: 1px solid var(--mkt-line);
  color: var(--mkt-ink);
}

.mkt-hero__cta .mkt-btn-secondary:hover:not(:disabled) {
  border-color: var(--accent-border);
  background: var(--accent-soft);
  color: var(--accent-hover);
}

.mkt-hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 28px 40px;
  margin-bottom: 32px;
  padding-top: 4px;
}

.mkt-hero__stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.mkt-hero__stat-val {
  font-size: 1.45rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--mkt-ink);
  font-variant-numeric: tabular-nums;
}

.mkt-hero__stat-lbl {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--mkt-muted);
}

.mkt-hero__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.mkt-hero__pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px 7px 10px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--mkt-muted);
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid var(--mkt-line);
  border-radius: 999px;
  transition: border-color 0.15s ease, background 0.15s ease, color 0.15s ease;
}

.mkt-hero__pill::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 2px var(--accent-glow);
  flex-shrink: 0;
}

.mkt-hero__pill:hover {
  border-color: var(--accent-border);
  background: #fff;
  color: var(--mkt-ink);
}

/* ── Dashboard preview (bento) ── */
.mkt-preview {
  position: relative;
  padding-bottom: 20px;
}

.mkt-preview__frame {
  position: relative;
  border-radius: var(--mkt-radius-lg);
  border: 1px solid var(--mkt-line);
  background: #fff;
  box-shadow:
    0 2px 4px rgba(12, 18, 34, 0.03),
    var(--mkt-shadow-md);
  overflow: hidden;
  transition: box-shadow 0.35s ease, transform 0.35s ease;
}

.mkt-hero__visual .mkt-preview::after {
  content: "";
  position: absolute;
  inset: 12% 8% -8%;
  border-radius: var(--mkt-radius-lg);
  background: radial-gradient(ellipse at 50% 50%, rgba(249, 115, 22, 0.14), transparent 68%);
  z-index: -1;
  pointer-events: none;
}

@media (min-width: 961px) {
  .mkt-hero__visual .mkt-preview {
    transform: perspective(1200px) rotateY(-3deg);
    transition: transform 0.4s ease;
  }

  .mkt-hero__visual .mkt-preview:hover {
    transform: perspective(1200px) rotateY(-1deg) translateY(-6px);
  }

  .mkt-hero__visual .mkt-preview:hover .mkt-preview__frame {
    box-shadow:
      0 4px 8px rgba(12, 18, 34, 0.04),
      0 32px 72px -16px rgba(12, 18, 34, 0.18),
      0 0 0 1px var(--accent-glow);
  }

  /* Panel önizlemesi dekoratif; hover'da kalkmasın */
  .mkt-preview[data-mkt-live-preview] {
    pointer-events: none;
  }

  .mkt-preview[data-mkt-live-preview],
  .mkt-preview[data-mkt-live-preview]:hover {
    transform: perspective(1200px) rotateY(-3deg);
  }

  .mkt-preview[data-mkt-live-preview]:hover .mkt-preview__frame {
    box-shadow:
      0 2px 4px rgba(12, 18, 34, 0.03),
      var(--mkt-shadow-md);
  }
}

.mkt-preview__topbar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: #111827;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.72rem;
  font-weight: 600;
}

.mkt-preview__topbar-logo {
  width: 22px;
  height: 22px;
  border-radius: 5px;
  background: var(--accent);
  flex-shrink: 0;
}

.mkt-preview__topbar-title {
  flex: 1;
}

.mkt-preview__topbar-pill {
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
}

.mkt-preview__topbar-pill--live {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.mkt-preview__topbar-pill--live::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #fff;
  animation: mkt-live-pulse 1.6s ease-in-out infinite;
}

.mkt-preview__toast {
  position: absolute;
  top: 46px;
  right: 12px;
  z-index: 2;
  padding: 8px 12px;
  background: #fff;
  border: 1px solid var(--mkt-line);
  border-radius: var(--mkt-radius-sm);
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--mkt-ink);
  box-shadow: 0 8px 24px rgba(12, 18, 34, 0.12);
  opacity: 0;
  transform: translateY(-6px);
  transition: opacity 0.25s ease, transform 0.25s ease;
  pointer-events: none;
  white-space: nowrap;
}

.mkt-preview__toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.mkt-preview__toast::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 6px;
  border-radius: 50%;
  background: var(--accent);
  vertical-align: middle;
  animation: mkt-live-pulse 1.6s ease-in-out infinite;
}

.mkt-preview__body {
  padding: 16px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  background: #f3f4f6;
}

.mkt-preview__tile {
  background: #fff;
  border: 1px solid var(--mkt-line);
  border-radius: var(--mkt-radius-sm);
  padding: 14px;
}

.mkt-preview__tile--wide {
  grid-column: 1 / -1;
}

.mkt-preview__tile-label {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--mkt-muted);
  margin-bottom: 10px;
}

.mkt-preview__bars {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 56px;
}

.mkt-preview__bar {
  flex: 1;
  height: 55%;
  border-radius: 4px 4px 0 0;
  background: linear-gradient(180deg, #fdba74, var(--accent));
  opacity: 0.85;
}

[data-mkt-live-preview] .mkt-preview__bar {
  transition: height 0.65s ease, opacity 0.65s ease, background 0.65s ease;
}

.mkt-preview__bar:nth-child(2) { height: 45%; opacity: 0.5; background: #e5e7eb; }
.mkt-preview__bar:nth-child(3) { height: 72%; }
.mkt-preview__bar:nth-child(4) { height: 58%; opacity: 0.65; }
.mkt-preview__bar:nth-child(5) { height: 88%; }
.mkt-preview__bar:nth-child(6) { height: 40%; opacity: 0.45; background: #e5e7eb; }
.mkt-preview__bar:nth-child(7) { height: 65%; }

[data-mkt-live-preview] .mkt-preview__bar:nth-child(n) {
  background: linear-gradient(180deg, #fdba74, var(--accent));
  opacity: 0.85;
}

.mkt-preview__kpi-val {
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--mkt-ink);
  transition: color 0.25s ease;
}

.mkt-preview__kpi-val.is-pulse {
  animation: mkt-kpi-pulse 0.45s ease;
}

.mkt-preview__kpi-sub {
  font-size: 0.72rem;
  color: #16a34a;
  font-weight: 600;
  margin-top: 2px;
}

.mkt-preview__kpi-sub--muted {
  color: var(--mkt-muted);
}

.mkt-preview__row-tag--green {
  background: var(--accent);
  color: #fff;
}

.mkt-preview__rows {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mkt-preview__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 12px;
  background: #f9fafb;
  border-radius: 8px;
  border: 1px solid #f0f2f5;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.mkt-preview__row.is-swapping {
  opacity: 0.35;
  transform: translateY(4px);
}

.mkt-preview__row-l {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--mkt-ink);
}

.mkt-preview__row-s {
  font-size: 0.68rem;
  color: var(--mkt-muted);
  margin-top: 2px;
}

.mkt-preview__row-tag {
  font-size: 0.68rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  white-space: nowrap;
}

.mkt-preview__float {
  position: absolute;
  bottom: 0;
  left: 16px;
  padding: 12px 16px;
  background: #fff;
  border: 1px solid var(--mkt-line);
  border-radius: var(--mkt-radius-md);
  box-shadow: 0 12px 32px rgba(12, 18, 34, 0.1);
  display: flex;
  align-items: center;
  gap: 10px;
  animation: mkt-float 4s ease-in-out infinite;
}

.mkt-preview__float-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--mkt-radius-sm);
  background: #ecfdf5;
  color: #16a34a;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mkt-preview__float-icon .ui-icon {
  width: 18px;
  height: 18px;
}

.mkt-preview__float-t {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--mkt-ink);
}

.mkt-preview__float-s {
  font-size: 0.72rem;
  color: var(--mkt-muted);
}

@keyframes mkt-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

@keyframes mkt-live-pulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.45);
  }
  50% {
    opacity: 0.8;
    transform: scale(0.9);
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0);
  }
}

@keyframes mkt-kpi-pulse {
  0% { transform: scale(1); color: var(--mkt-ink); }
  40% { transform: scale(1.04); color: var(--accent); }
  100% { transform: scale(1); color: var(--mkt-ink); }
}

@media (prefers-reduced-motion: reduce) {
  .mkt-hero__copy,
  .mkt-hero__visual {
    animation: none;
  }

  .mkt-hero__visual .mkt-preview,
  .mkt-hero__visual .mkt-preview:hover {
    transform: none;
  }

  .mkt-preview__topbar-pill--live::before,
  .mkt-preview__toast::before {
    animation: none;
  }

  [data-mkt-live-preview] .mkt-preview__bar,
  .mkt-preview__row,
  .mkt-preview__toast,
  .mkt-preview__float {
    transition: none !important;
    animation: none !important;
  }

  .mkt-preview__kpi-val.is-pulse {
    animation: none;
  }
}

/* ── Marquee strip ── */
.mkt-strip {
  position: relative;
  padding: 32px 0;
  background:
    radial-gradient(ellipse 40% 80% at 0% 50%, rgba(249, 115, 22, 0.08), transparent),
    radial-gradient(ellipse 35% 70% at 100% 50%, rgba(249, 115, 22, 0.05), transparent),
    linear-gradient(180deg, #0e1420 0%, #111827 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  overflow: hidden;
}

.mkt-strip:hover .mkt-strip__track {
  animation-play-state: paused;
}

.mkt-strip::before,
.mkt-strip::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: clamp(48px, 8vw, 120px);
  z-index: 1;
  pointer-events: none;
}

.mkt-strip::before {
  left: 0;
  background: linear-gradient(90deg, #111827 20%, transparent);
}

.mkt-strip::after {
  right: 0;
  background: linear-gradient(270deg, #111827 20%, transparent);
}

.mkt-strip__track {
  display: flex;
  width: max-content;
  animation: mkt-marquee 40s linear infinite;
  will-change: transform;
}

.mkt-strip__set {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.mkt-strip__item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 28px;
  font-size: 0.86rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.62);
  white-space: nowrap;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  transition: color 0.2s ease;
}

.mkt-strip__item:hover {
  color: rgba(255, 255, 255, 0.92);
}

.mkt-strip__set:last-child .mkt-strip__item:last-child {
  border-right: none;
}

.mkt-strip__item .ui-icon {
  width: 14px;
  height: 14px;
  padding: 6px;
  box-sizing: content-box;
  color: var(--accent);
  background: rgba(249, 115, 22, 0.12);
  border-radius: 8px;
  flex-shrink: 0;
}

@keyframes mkt-marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── Sections ── */
.mkt-section {
  padding: clamp(72px, 8vw, 120px) var(--mkt-gutter);
}

.mkt-section--white {
  background: #fff;
  border-top: 1px solid var(--mkt-line);
}

.mkt-section__inner {
  width: 100%;
  margin: 0 auto;
}

.mkt-section__head {
  margin-bottom: 52px;
}

.mkt-section__head--center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.mkt-section__eyebrow {
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

.mkt-section__title {
  margin: 0 0 14px;
  font-size: clamp(1.65rem, 3.2vw, 2.35rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.15;
}

.mkt-section__lead {
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.65;
  color: var(--mkt-muted);
}

/* ── Product blocks (alternating) ── */
.mkt-product {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--mkt-col-gap);
  align-items: center;
  margin-bottom: 96px;
  padding-bottom: 96px;
  border-bottom: 1px solid var(--mkt-line);
}

.mkt-product__copy {
  padding-left: 20px;
  border-left: 3px solid var(--accent);
}

.mkt-product:has(+ .mkt-more-block),
.mkt-product:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.mkt-product--flip .mkt-product__copy {
  order: 2;
}

.mkt-product--flip .mkt-product__visual {
  order: 1;
}

.mkt-product__tag {
  display: block;
  margin-bottom: 12px;
  padding: 0;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  background: none;
  border-radius: 0;
}

.mkt-product__title {
  margin: 0 0 12px;
  font-size: 1.55rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.2;
}

.mkt-product__text {
  margin: 0 0 20px;
  font-size: 0.98rem;
  line-height: 1.65;
  color: var(--mkt-muted);
}

.mkt-product__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mkt-product__list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--mkt-ink);
  padding: 4px 0 4px 4px;
  border-radius: 6px;
  transition: padding-left 0.2s ease, background 0.2s ease;
}

.mkt-product__list li:hover {
  padding-left: 8px;
  background: var(--accent-soft);
}

.mkt-product__list .ui-icon {
  width: 18px;
  height: 18px;
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 2px;
}

.mkt-product__visual {
  width: 100%;
}

.mkt-preview--product {
  width: 100%;
  max-width: min(580px, 100%);
  margin: 0 auto;
}

.mkt-product--flip .mkt-preview--product {
  margin-left: 0;
  margin-right: auto;
}

.mkt-product:not(.mkt-product--flip) .mkt-preview--product {
  margin-left: auto;
  margin-right: 0;
}

.mkt-product__card {
  border-radius: var(--mkt-radius-lg);
  border: 1px solid var(--mkt-line);
  background: #fff;
  padding: 28px;
  box-shadow:
    0 2px 4px rgba(12, 18, 34, 0.03),
    0 24px 64px -12px rgba(12, 18, 34, 0.14);
}

.mkt-product__card-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--mkt-radius-md);
  background: var(--accent-soft);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.mkt-product__card-icon .ui-icon {
  width: 26px;
  height: 26px;
}

.mkt-product__card-lines {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mkt-product__card-line {
  height: 10px;
  border-radius: 6px;
  background: #eef1f6;
}

.mkt-product__card-line--short { width: 62%; }
.mkt-product__card-line--accent {
  width: 40%;
  background: #eef1f6;
  opacity: 1;
}

/* ── Flow (horizontal pipeline) ── */
@keyframes mkt-flow-pulse {
  0%, 100% { box-shadow: 0 4px 16px var(--accent-glow), 0 0 0 0 rgba(249, 115, 22, 0.35); }
  50% { box-shadow: 0 4px 20px var(--accent-glow), 0 0 0 8px rgba(249, 115, 22, 0); }
}

@keyframes mkt-flow-line-flow {
  0% { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}

#nasil-calisir.mkt-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 80% 50% at 18% 25%, rgba(249, 115, 22, 0.08), transparent 58%),
    radial-gradient(ellipse 55% 45% at 82% 75%, rgba(249, 115, 22, 0.05), transparent 52%),
    var(--mkt-bg);
}

.mkt-flow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  position: relative;
  padding-top: 8px;
}

.mkt-flow::before {
  content: "";
  position: absolute;
  top: 36px;
  left: 10%;
  right: 10%;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    var(--accent-soft),
    var(--accent),
    #fdba74,
    var(--accent),
    var(--accent-soft)
  );
  background-size: 200% 100%;
  z-index: 0;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

.mkt-flow.is-visible::before {
  transform: scaleX(1);
  animation: mkt-flow-line-flow 4s linear infinite;
}

.mkt-flow__step {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 8px;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.mkt-flow.is-visible .mkt-flow__step:nth-child(1) { transition-delay: 0.15s; opacity: 1; transform: none; }
.mkt-flow.is-visible .mkt-flow__step:nth-child(2) { transition-delay: 0.3s; opacity: 1; transform: none; }
.mkt-flow.is-visible .mkt-flow__step:nth-child(3) { transition-delay: 0.45s; opacity: 1; transform: none; }
.mkt-flow.is-visible .mkt-flow__step:nth-child(4) { transition-delay: 0.6s; opacity: 1; transform: none; }

.mkt-flow__num {
  width: 56px;
  height: 56px;
  margin: 0 auto 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--accent);
  color: var(--accent);
  font-size: 1.1rem;
  font-weight: 800;
  box-shadow: 0 4px 16px var(--accent-glow);
}

.mkt-flow.is-visible .mkt-flow__num {
  animation: mkt-flow-pulse 2.8s ease-in-out infinite;
}

.mkt-flow.is-visible .mkt-flow__step:nth-child(2) .mkt-flow__num { animation-delay: 0.4s; }
.mkt-flow.is-visible .mkt-flow__step:nth-child(3) .mkt-flow__num { animation-delay: 0.8s; }
.mkt-flow.is-visible .mkt-flow__step:nth-child(4) .mkt-flow__num { animation-delay: 1.2s; }

.mkt-flow__badge {
  display: inline-block;
  margin-bottom: 10px;
  padding: 3px 10px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.mkt-flow__card {
  padding: 18px 16px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid var(--mkt-line);
  border-radius: var(--mkt-radius-md);
  box-shadow: 0 4px 20px rgba(12, 18, 34, 0.05);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.mkt-flow__card:hover {
  transform: translateY(-4px);
  border-color: rgba(249, 115, 22, 0.3);
  box-shadow: 0 12px 32px rgba(12, 18, 34, 0.08), 0 0 0 1px var(--accent-glow);
}

.mkt-flow__card--final {
  background: linear-gradient(145deg, #0e1420 0%, #111827 52%, #1a2332 100%);
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 0 1px var(--accent-glow), 0 16px 40px -12px rgba(12, 18, 34, 0.35);
}

.mkt-flow__card--final .mkt-flow__title {
  color: #fff;
}

.mkt-flow__card--final .mkt-flow__text {
  color: rgba(255, 255, 255, 0.62);
}

.mkt-flow__card--final:hover {
  border-color: rgba(249, 115, 22, 0.45);
}

.mkt-flow__title {
  margin: 0 0 8px;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.mkt-flow__text {
  margin: 0;
  font-size: 0.84rem;
  line-height: 1.55;
  color: var(--mkt-muted);
}

/* ── Pricing (marketing-specific) ── */
.mkt-pricing-top {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 36px;
}

.mkt-period {
  display: inline-flex;
  padding: 4px;
  gap: 4px;
  background: #fff;
  border: 1px solid var(--mkt-line);
  border-radius: var(--mkt-radius-md);
}

.mkt-period__btn {
  padding: 8px 18px;
  border: none;
  border-radius: 9px;
  background: transparent;
  font-family: inherit;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--mkt-muted);
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}

.mkt-period__btn.is-active {
  background: linear-gradient(180deg, #fb923c 0%, var(--accent) 100%);
  color: #fff;
  box-shadow: 0 2px 8px var(--accent-glow);
}

.mkt-plans {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}

.mkt-plan {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 28px 24px;
  background: #fff;
  border: 1px solid var(--mkt-line);
  border-radius: var(--mkt-radius-lg);
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}

.mkt-plan:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 48px -16px rgba(12, 18, 34, 0.12);
}

.mkt-plan--featured {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px var(--accent-glow), 0 20px 48px -16px rgba(249, 115, 22, 0.15);
  transform: scale(1.02);
  z-index: 1;
}

.mkt-plan--featured:hover {
  transform: scale(1.02) translateY(-3px);
  box-shadow: 0 0 0 1px var(--accent-glow), 0 24px 56px -12px rgba(249, 115, 22, 0.22);
}

.mkt-plan--featured .mkt-plan__amount {
  background: linear-gradient(135deg, var(--mkt-ink) 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.mkt-plan__badge {
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 5px 10px;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #fff;
  background: var(--accent);
  border-radius: 999px;
}

.mkt-plan__name {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--mkt-muted);
}

.mkt-plan__price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 6px;
}

.mkt-plan__currency {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--mkt-ink);
}

.mkt-plan__amount {
  font-size: 2.6rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--mkt-ink);
  font-variant-numeric: tabular-nums;
}

.mkt-plan__amount--text {
  font-size: 1.5rem;
}

.mkt-plan__per {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--mkt-muted);
}

.mkt-plan__note {
  font-size: 0.8rem;
  color: var(--mkt-muted);
  margin-bottom: 22px;
}

.mkt-plan__feats {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mkt-plan__feats li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--mkt-ink);
}

.mkt-plan__feats .ui-icon {
  width: 16px;
  height: 16px;
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 3px;
}

.mkt-plan__cta .btn {
  width: 100%;
  justify-content: center;
  padding: 12px 20px;
  border-radius: var(--mkt-radius-sm);
  font-weight: 600;
}

.mkt-plan--featured .mkt-plan__cta .btn {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

/* ── Kapanış bandı (CTA + footer) ── */
.mkt-closing {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 55% 45% at 88% 8%, rgba(249, 115, 22, 0.12), transparent 52%),
    linear-gradient(180deg, #0d121c 0%, #0a0f18 100%);
}

.mkt-closing::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(249, 115, 22, 0.28), transparent);
  pointer-events: none;
}

.mkt-cta {
  position: relative;
  padding: 72px var(--mkt-gutter) 56px;
}

.mkt-cta::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: var(--mkt-gutter);
  right: var(--mkt-gutter);
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
  pointer-events: none;
}

.mkt-cta__shell {
  width: 100%;
  margin: 0 auto;
}

.mkt-cta__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  align-items: center;
}

.mkt-cta__copy {
  text-align: left;
}

.mkt-cta__eyebrow {
  margin-bottom: 12px;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fdba74;
}

.mkt-cta__title {
  margin: 0 0 14px;
  font-size: clamp(1.55rem, 2.8vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: #fff;
}

.mkt-cta__lead {
  margin: 0 0 24px;
  font-size: 1.02rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.62);
}

.mkt-cta__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 16px;
  margin-bottom: 18px;
}

.mkt-cta__actions .mkt-btn-primary {
  padding: 14px 28px;
  font-size: 0.98rem;
  border-radius: var(--mkt-radius-sm);
  box-shadow: 0 4px 20px var(--accent-glow);
}

.mkt-cta__actions .mkt-btn-secondary {
  padding: 14px 22px;
  font-size: 0.94rem;
  border-radius: var(--mkt-radius-sm);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.9);
}

.mkt-cta__actions .mkt-btn-secondary:hover:not(:disabled) {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.26);
  color: #fff;
}

.mkt-cta__notes {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.48);
}

.mkt-cta__notes span::before {
  content: "·";
  margin-right: 14px;
  color: rgba(255, 255, 255, 0.22);
}

.mkt-cta__notes span:first-child::before {
  content: none;
  margin: 0;
}

.mkt-cta__trust {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--mkt-radius-md);
}

.mkt-cta__trust-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  text-align: left;
}

.mkt-cta__trust-dot {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 2px solid var(--accent);
  color: #fdba74;
  font-size: 0.8rem;
  font-weight: 800;
  box-shadow: 0 4px 14px var(--accent-glow);
}

.mkt-cta__trust-body {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding-top: 4px;
}

.mkt-cta__trust-body strong {
  font-size: 0.9rem;
  font-weight: 700;
  color: #fff;
}

.mkt-cta__trust-body span {
  font-size: 0.82rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.52);
}

/* ── Footer ── */
.mkt-footer {
  padding: 40px var(--mkt-gutter) 24px;
  color: rgba(255, 255, 255, 0.5);
}

.mkt-footer__name {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
}

.mkt-footer__tag {
  margin: 4px 0 0;
  font-size: 0.84rem;
  line-height: 1.55;
  max-width: 28ch;
}

.mkt-footer__bottom {
  width: 100%;
  margin: 0 auto;
  padding-top: 18px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px 20px;
  font-size: 0.78rem;
}

.mkt-footer__legal {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.mkt-footer__legal a {
  color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
  transition: color 0.15s ease;
}

.mkt-footer__legal a:hover {
  color: #fdba74;
}

/* ── Scroll reveal ── */
.mkt-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.mkt-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Responsive ── */
@media (max-width: 960px) {
  .mkt-hero__inner {
    grid-template-columns: 1fr;
    gap: var(--mkt-col-gap);
  }

  .mkt-header__inner {
    justify-content: space-between;
    gap: 12px;
  }

  .mkt-nav-toggle {
    display: flex;
    flex-shrink: 0;
  }

  .mkt-nav {
    flex: none;
    position: fixed;
    top: var(--mkt-header-h);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    padding: 16px var(--mkt-gutter) 20px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--mkt-line);
    box-shadow: 0 16px 40px rgba(12, 18, 34, 0.08);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-6px);
    transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
  }

  .mkt-header--nav-open .mkt-nav {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .mkt-nav__links {
    flex-direction: column;
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 0;
    gap: 4px;
    height: auto;
  }

  .mkt-nav__link {
    height: auto;
    border-radius: var(--mkt-radius-sm);
    padding: 12px 14px;
  }

  .mkt-nav__link.is-active {
    background: var(--accent-soft);
  }

  .mkt-nav__link.is-active::after {
    display: none;
  }

  .mkt-nav__actions {
    flex-direction: column;
    gap: 8px;
    padding-top: 12px;
    padding-left: 0;
    border-left: none;
    border-top: 1px solid var(--mkt-line);
  }

  .mkt-nav__login {
    text-align: center;
    padding: 12px 14px;
  }

  .mkt-nav__actions .btn,
  .mkt-header .mkt-nav__signup {
    width: 100%;
    justify-content: center;
  }

  .mkt-hero__visual {
    max-width: 520px;
    margin: 0 auto;
    width: 100%;
    justify-self: center;
  }

  .mkt-product,
  .mkt-product--flip {
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 64px;
    padding-bottom: 64px;
  }

  .mkt-product__copy {
    padding-left: 16px;
  }

  .mkt-plan--featured {
    transform: none;
  }

  .mkt-plan--featured:hover {
    transform: translateY(-3px);
  }

  .mkt-product--flip .mkt-product__copy,
  .mkt-product--flip .mkt-product__visual {
    order: unset;
  }

  .mkt-preview--product,
  .mkt-product--flip .mkt-preview--product,
  .mkt-product:not(.mkt-product--flip) .mkt-preview--product {
    margin-left: auto;
    margin-right: auto;
  }

  .mkt-flow {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 20px;
  }

  .mkt-flow::before {
    display: none;
  }

  .mkt-flow__step {
    text-align: left;
  }

  .mkt-flow__num {
    margin: 0 0 14px;
  }

  .mkt-guvence {
    grid-template-columns: 1fr;
  }

  .mkt-contact {
    grid-template-columns: 1fr;
  }

  .mkt-faq {
    grid-template-columns: 1fr;
  }

  .mkt-cta__grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .mkt-cta {
    padding: 56px var(--mkt-gutter) 44px;
  }

  .mkt-footer__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 720px) {
  body.mode-marketing.page-landing,
  body.mode-marketing.page-login-landing {
    --mkt-gutter: 16px;
    --mkt-header-h: 68px;
    --mkt-nav-ctrl-h: 44px;
  }

  .mkt-hero {
    padding-top: calc(var(--mkt-header-h) + 40px);
    padding-bottom: 56px;
  }

  .mkt-hero__title {
    font-size: clamp(2rem, 8vw, 3.5rem);
  }

  .mkt-hero__stats {
    gap: 20px 28px;
    margin-bottom: 24px;
  }

  .mkt-hero__stat-val {
    font-size: 1.25rem;
  }

  .mkt-product__copy {
    padding-left: 14px;
  }

  .mkt-section {
    padding-top: 56px;
    padding-bottom: 56px;
  }

  .mkt-header--nav-open .mkt-nav-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .mkt-header--nav-open .mkt-nav-toggle span:nth-child(2) {
    opacity: 0;
  }

  .mkt-header--nav-open .mkt-nav-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .mkt-preview__body {
    grid-template-columns: 1fr;
  }

  .mkt-preview__float {
    left: 12px;
    bottom: 0;
  }

  .mkt-flow {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-left: 36px;
  }

  .mkt-flow::before {
    display: block;
    top: 28px;
    bottom: 28px;
    left: 27px;
    right: auto;
    width: 3px;
    height: auto;
    transform: scaleY(0);
    transform-origin: top center;
    background: linear-gradient(
      180deg,
      var(--accent-soft),
      var(--accent),
      #fdba74,
      var(--accent),
      var(--accent-soft)
    );
    background-size: 100% 200%;
  }

  .mkt-flow.is-visible::before {
    transform: scaleY(1);
    animation: mkt-flow-line-flow 4s linear infinite;
  }

  .mkt-flow__step {
    text-align: left;
    padding: 0;
  }

  .mkt-flow__num {
    position: absolute;
    left: -36px;
    top: 18px;
    margin: 0;
    width: 48px;
    height: 48px;
    font-size: 1rem;
  }

  .mkt-flow__badge {
    margin-left: 0;
  }

  .mkt-section {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .mkt-pricing-top {
    flex-direction: column;
    align-items: stretch;
  }

  .mkt-period {
    align-self: center;
  }
}

body.mkt-nav-open {
  overflow: hidden;
}

/* ── Duyuru bandı ── */
.mkt-ticker {
  background: var(--accent-soft);
  border-bottom: 1px solid var(--accent-border);
  padding: 10px var(--mkt-gutter);
  overflow: hidden;
}

.mkt-ticker__inner {
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  justify-content: center;
}

.mkt-ticker__item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--accent-hover);
}

.mkt-ticker__item .ui-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* ── Marka logoları / isimleri ── */
.mkt-brands {
  padding: 40px var(--mkt-gutter) 44px;
  background: #fff;
  border-bottom: 1px solid var(--mkt-line);
  overflow: hidden;
}

.mkt-brands__inner {
  width: 100%;
  margin: 0 auto;
}

.mkt-brands__label {
  text-align: center;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--mkt-muted);
  margin: 0 0 6px;
}

.mkt-brands__sub {
  text-align: center;
  margin: 0 0 24px;
  font-size: 0.88rem;
  color: var(--mkt-muted);
}

.mkt-brands__grid {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: center;
  gap: 10px;
}

.mkt-brands__marquee {
  overflow: hidden;
  margin: 0;
  padding: 4px 0;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.mkt-brands__track {
  display: flex;
  align-items: stretch;
  gap: 10px;
  width: max-content;
  animation: mkt-brands-scroll 45s linear infinite;
}

.mkt-brands__track:hover {
  animation-play-state: paused;
}

@keyframes mkt-brands-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.mkt-brands__item {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 10px 18px;
  border-radius: var(--mkt-radius-sm);
  background: var(--mkt-bg);
  border: 1px solid var(--mkt-line);
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}

.mkt-brands__grid .mkt-brands__item {
  max-width: 220px;
}

.mkt-brands__item:hover {
  border-color: var(--accent-border);
  background: #fff;
  box-shadow: 0 4px 14px var(--accent-glow);
}

.mkt-brands__img {
  display: block;
  max-width: 130px;
  max-height: 36px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.mkt-brands__name {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--mkt-ink);
  text-align: center;
  line-height: 1.3;
  letter-spacing: -0.02em;
}

.mkt-brands__track .mkt-brands__name {
  white-space: nowrap;
}

.mkt-brands__grid .mkt-brands__name {
  white-space: normal;
  word-break: break-word;
}

/* ── Ek modül listesi ── */
@keyframes mkt-more-icon-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

@keyframes mkt-more-border-flow {
  0% { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}

.mkt-more-block {
  margin-top: 56px;
  padding-top: 48px;
  border-top: 1px solid var(--mkt-line);
}

.mkt-more__head {
  max-width: 520px;
  margin-bottom: 24px;
}

.mkt-more__heading {
  margin: 0;
  font-size: clamp(1.35rem, 2.4vw, 1.75rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.2;
}

.mkt-more__marquee {
  overflow: hidden;
  margin-bottom: 22px;
  padding: 6px 0;
  mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
}

.mkt-more__track {
  display: flex;
  width: max-content;
  animation: mkt-marquee 32s linear infinite;
  will-change: transform;
}

.mkt-more__marquee:hover .mkt-more__track {
  animation-play-state: paused;
}

.mkt-more__set {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  gap: 10px;
  padding-right: 10px;
}

.mkt-more__pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  background: #fff;
  border: 1px solid var(--mkt-line);
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--mkt-ink);
  white-space: nowrap;
  box-shadow: 0 2px 12px rgba(12, 18, 34, 0.05);
}

.mkt-more__pill .ui-icon {
  width: 16px;
  height: 16px;
  color: var(--accent);
  flex-shrink: 0;
}

.mkt-more {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.mkt-more__card {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 20px;
  background: #fff;
  border: 1px solid var(--mkt-line);
  border-radius: var(--mkt-radius-md);
  box-shadow: 0 2px 12px rgba(12, 18, 34, 0.04);
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 0.45s ease,
    transform 0.45s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease;
}

.mkt-more__card::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: var(--mkt-radius-md);
  padding: 1px;
  background: linear-gradient(90deg, var(--accent-soft), var(--accent), #fdba74, var(--accent), var(--accent-soft));
  background-size: 200% 100%;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.mkt-more__card.is-spotlight::before {
  opacity: 1;
  animation: mkt-more-border-flow 3s linear infinite;
}

.mkt-more-block.is-visible .mkt-more .mkt-more__card:nth-child(1) { transition-delay: 0.04s; opacity: 1; transform: none; }
.mkt-more-block.is-visible .mkt-more .mkt-more__card:nth-child(2) { transition-delay: 0.08s; opacity: 1; transform: none; }
.mkt-more-block.is-visible .mkt-more .mkt-more__card:nth-child(3) { transition-delay: 0.12s; opacity: 1; transform: none; }
.mkt-more-block.is-visible .mkt-more .mkt-more__card:nth-child(4) { transition-delay: 0.16s; opacity: 1; transform: none; }
.mkt-more-block.is-visible .mkt-more .mkt-more__card:nth-child(5) { transition-delay: 0.2s; opacity: 1; transform: none; }
.mkt-more-block.is-visible .mkt-more .mkt-more__card:nth-child(6) { transition-delay: 0.24s; opacity: 1; transform: none; }

.mkt-more__card:hover,
.mkt-more__card.is-spotlight {
  border-color: rgba(249, 115, 22, 0.35);
  box-shadow: 0 10px 32px rgba(12, 18, 34, 0.08), 0 0 0 1px var(--accent-glow);
  transform: translateY(-2px);
}

.mkt-more__icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--mkt-radius-md);
  background: var(--accent-soft);
  color: var(--accent);
  border: 1px solid rgba(249, 115, 22, 0.12);
  transition: transform 0.35s ease, box-shadow 0.35s ease, background 0.35s ease;
}

.mkt-more-block.is-visible .mkt-more .mkt-more__card:nth-child(1) .mkt-more__icon { animation: mkt-more-icon-float 3.2s ease-in-out infinite; }
.mkt-more-block.is-visible .mkt-more .mkt-more__card:nth-child(2) .mkt-more__icon { animation: mkt-more-icon-float 3.2s ease-in-out 0.4s infinite; }
.mkt-more-block.is-visible .mkt-more .mkt-more__card:nth-child(3) .mkt-more__icon { animation: mkt-more-icon-float 3.2s ease-in-out 0.8s infinite; }
.mkt-more-block.is-visible .mkt-more .mkt-more__card:nth-child(4) .mkt-more__icon { animation: mkt-more-icon-float 3.2s ease-in-out 1.2s infinite; }
.mkt-more-block.is-visible .mkt-more .mkt-more__card:nth-child(5) .mkt-more__icon { animation: mkt-more-icon-float 3.2s ease-in-out 1.6s infinite; }
.mkt-more-block.is-visible .mkt-more .mkt-more__card:nth-child(6) .mkt-more__icon { animation: mkt-more-icon-float 3.2s ease-in-out 2s infinite; }

.mkt-more__card.is-spotlight .mkt-more__icon,
.mkt-more__card:hover .mkt-more__icon {
  background: linear-gradient(135deg, #fff7ed 0%, #ffedd5 100%);
  box-shadow: 0 0 18px var(--accent-glow);
  transform: scale(1.06);
  animation: none;
}

.mkt-more__icon .ui-icon {
  width: 22px;
  height: 22px;
}

.mkt-more__body {
  min-width: 0;
}

.mkt-more__title {
  margin: 0 0 4px;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--mkt-ink);
}

.mkt-more__text {
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.5;
  color: var(--mkt-muted);
}

/* ── Güvenli ödeme ── */
#guven.mkt-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 70% 55% at 88% 15%, rgba(249, 115, 22, 0.1), transparent 58%),
    radial-gradient(ellipse 50% 40% at 10% 85%, rgba(249, 115, 22, 0.06), transparent 50%),
    var(--mkt-bg);
}

.mkt-guvence {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--mkt-col-gap);
  align-items: start;
}

.mkt-guvence__steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.mkt-guvence__steps::before,
.mkt-guvence__steps::after {
  content: "";
  position: absolute;
  z-index: 0;
  pointer-events: none;
}

.mkt-guvence__steps::before {
  top: 50%;
  left: 10%;
  right: 10%;
  height: 2px;
  transform: translateY(-50%);
  background: linear-gradient(
    90deg,
    transparent,
    var(--accent-soft) 15%,
    var(--accent) 50%,
    var(--accent-soft) 85%,
    transparent
  );
}

.mkt-guvence__steps::after {
  top: 10%;
  bottom: 10%;
  left: 50%;
  width: 2px;
  transform: translateX(-50%);
  background: linear-gradient(
    180deg,
    transparent,
    var(--accent-soft) 15%,
    var(--accent) 50%,
    var(--accent-soft) 85%,
    transparent
  );
}

.mkt-guvence__step {
  position: relative;
  z-index: 1;
  padding: 22px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--mkt-line);
  border-radius: var(--mkt-radius-md);
  box-shadow: 0 4px 20px rgba(12, 18, 34, 0.05);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.mkt-guvence__step:hover {
  transform: translateY(-3px);
  border-color: rgba(249, 115, 22, 0.25);
  box-shadow: 0 12px 32px rgba(12, 18, 34, 0.08), 0 0 0 1px var(--accent-glow);
}

.mkt-guvence__dot {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--accent);
  color: var(--accent);
  font-size: 0.84rem;
  font-weight: 800;
  margin-bottom: 14px;
  box-shadow: 0 4px 16px var(--accent-glow);
}

.mkt-guvence__step h3 {
  margin: 0 0 6px;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.mkt-guvence__step p {
  margin: 0;
  font-size: 0.84rem;
  line-height: 1.55;
  color: var(--mkt-muted);
}

.mkt-guvence__panel--premium {
  position: sticky;
  top: calc(var(--mkt-header-h) + 24px);
  padding: 28px;
  background: linear-gradient(145deg, #0e1420 0%, #111827 52%, #1a2332 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--mkt-radius-lg);
  box-shadow:
    0 0 0 1px var(--accent-glow),
    0 24px 56px -16px rgba(12, 18, 34, 0.45);
  color: #fff;
  overflow: hidden;
}

.mkt-guvence__panel--premium::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(249, 115, 22, 0.18) 0%, transparent 68%);
  pointer-events: none;
}

.mkt-guvence__panel-head {
  position: relative;
  margin-bottom: 22px;
}

.mkt-guvence__panel-eyebrow {
  display: block;
  margin-bottom: 8px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fdba74;
}

.mkt-guvence__panel-title {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.2;
}

.mkt-guvence__metrics {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 18px;
}

.mkt-guvence__metric {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 16px 14px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--mkt-radius-md);
  transition: background 0.2s ease, border-color 0.2s ease;
}

.mkt-guvence__metric:hover {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(249, 115, 22, 0.35);
}

.mkt-guvence__metric-val {
  font-size: 1.75rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  background: linear-gradient(135deg, #fff 0%, #fdba74 55%, var(--accent) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.mkt-guvence__metric-lbl {
  font-size: 0.82rem;
  font-weight: 700;
  color: #fff;
}

.mkt-guvence__metric-sub {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.4;
}

.mkt-guvence__note {
  position: relative;
  margin: 0;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.8rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.55);
}

/* ── Karşılaştırma tablosu ── */
.mkt-section--compare {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 65% 50% at 50% 0%, rgba(249, 115, 22, 0.07), transparent 55%),
    #fff;
}

.mkt-compare__shell {
  position: relative;
  border-radius: var(--mkt-radius-lg);
  overflow: hidden;
  border: 1px solid var(--mkt-line);
  box-shadow:
    0 0 0 1px var(--accent-glow),
    0 24px 56px -20px rgba(12, 18, 34, 0.14);
}

.mkt-compare__shell::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-soft), var(--accent), var(--accent-soft));
  z-index: 2;
  pointer-events: none;
}

.mkt-compare__table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
}

.mkt-compare__table th,
.mkt-compare__table td {
  padding: 18px 22px;
  text-align: left;
  font-size: 0.9rem;
  border-bottom: 1px solid var(--mkt-line);
  vertical-align: middle;
}

.mkt-compare__table thead th {
  background: var(--mkt-bg);
  font-weight: 700;
  font-size: 0.88rem;
}

.mkt-compare__table thead th.mkt-compare__hl {
  background: linear-gradient(145deg, #0e1420 0%, #111827 52%, #1a2332 100%);
  color: #fff;
  border-bottom-color: rgba(255, 255, 255, 0.1);
}

.mkt-compare__hl-title {
  display: block;
  margin-bottom: 6px;
}

.mkt-compare__badge {
  display: inline-block;
  padding: 3px 9px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.mkt-compare__old-head {
  color: var(--mkt-muted);
}

.mkt-compare__table tbody th {
  font-weight: 600;
  color: var(--mkt-ink);
  width: 26%;
  background: #fff;
}

.mkt-compare__table tbody tr {
  transition: background 0.15s ease;
}

.mkt-compare__table tbody tr:hover th {
  background: #fafbfc;
}

.mkt-compare__table tbody tr:hover .mkt-compare__old {
  background: #f8f9fb;
}

.mkt-compare__table tbody tr:hover .mkt-compare__hl {
  background: linear-gradient(145deg, #121a28 0%, #151f2e 52%, #1e2838 100%);
}

.mkt-compare__table tbody tr:last-child th,
.mkt-compare__table tbody tr:last-child td {
  border-bottom: none;
}

.mkt-compare__old {
  color: var(--mkt-muted);
  background: #fafbfc;
  width: 34%;
}

.mkt-compare__hl {
  background: linear-gradient(145deg, #0e1420 0%, #111827 52%, #1a2332 100%);
  color: #fff;
  font-weight: 600;
  width: 40%;
  border-bottom-color: rgba(255, 255, 255, 0.08);
}

.mkt-compare__cell {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.mkt-compare__cell .ui-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 1px;
}

.mkt-compare__cell--lose .ui-icon {
  color: #f87171;
  opacity: 0.85;
}

.mkt-compare__cell--win .ui-icon {
  color: #fdba74;
}

.mkt-compare__cards {
  display: none;
}

.mkt-compare__card {
  padding: 18px;
  background: #fff;
  border: 1px solid var(--mkt-line);
  border-radius: var(--mkt-radius-md);
  box-shadow: 0 4px 20px rgba(12, 18, 34, 0.05);
}

.mkt-compare__card-title {
  margin: 0 0 14px;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.mkt-compare__card-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 12px 14px;
  border-radius: var(--mkt-radius-sm);
  margin-bottom: 10px;
}

.mkt-compare__card-row:last-child {
  margin-bottom: 0;
}

.mkt-compare__card-row--old {
  background: #fafbfc;
  border: 1px solid var(--mkt-line);
}

.mkt-compare__card-row--new {
  background: linear-gradient(145deg, #0e1420 0%, #111827 52%, #1a2332 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 1px var(--accent-glow);
}

.mkt-compare__card-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.mkt-compare__card-row--old .mkt-compare__card-label {
  color: var(--mkt-muted);
}

.mkt-compare__card-row--new .mkt-compare__card-label {
  color: #fdba74;
}

.mkt-compare__card-row--new .mkt-compare__cell {
  color: #fff;
}

/* ── Video ── */
.mkt-video__wrap {
  position: relative;
  max-width: min(1100px, 100%);
  margin: 0 auto;
  aspect-ratio: 16 / 9;
  border-radius: var(--mkt-radius-md);
  overflow: hidden;
  border: 1px solid var(--mkt-line);
  box-shadow: 0 16px 48px rgba(12, 18, 34, 0.1);
  background: #000;
}

.mkt-video__wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* ── SSS ── */
.mkt-faq {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 16px;
  align-items: start;
}

.mkt-faq__item {
  background: #fff;
  border: 1px solid var(--mkt-line);
  border-radius: var(--mkt-radius-md);
  overflow: hidden;
}

.mkt-faq__btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  border: none;
  background: transparent;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--mkt-ink);
  text-align: left;
  cursor: pointer;
}

.mkt-faq__btn .ui-icon {
  width: 18px;
  height: 18px;
  color: var(--mkt-muted);
  flex-shrink: 0;
  transition: transform 0.2s;
}

.mkt-faq__item.is-open .mkt-faq__btn .ui-icon {
  transform: rotate(45deg);
  color: var(--accent);
}

.mkt-faq__panel {
  padding: 0 20px 18px;
}

.mkt-faq__panel[hidden] {
  display: none;
}

.mkt-faq__panel p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--mkt-muted);
}

/* ── İletişim ── */
.mkt-contact {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: var(--mkt-col-gap);
  align-items: start;
}

.mkt-contact__channels {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 10px;
  margin-top: 24px;
}

.mkt-contact__channel {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  background: var(--mkt-bg);
  border: 1px solid var(--mkt-line);
  border-radius: var(--mkt-radius-md);
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s ease, background 0.2s ease;
}

a.mkt-contact__channel:hover {
  border-color: var(--accent-border);
  background: #fff;
}

.mkt-contact__channel--static {
  cursor: default;
}

.mkt-contact__channel-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--mkt-radius-sm);
  background: #fff;
  border: 1px solid var(--mkt-line);
}

.mkt-contact__channel-icon .ui-icon {
  width: 20px;
  height: 20px;
  color: var(--accent);
}

.mkt-contact__channel-icon--wa {
  background: rgba(37, 211, 102, 0.1);
  border-color: rgba(37, 211, 102, 0.2);
}

.mkt-contact__channel-icon--wa .ui-icon {
  color: #25d366;
}

a.mkt-contact__channel--wa:hover {
  border-color: rgba(37, 211, 102, 0.4);
  background: #fff;
}

.mkt-contact__channel-body {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.mkt-contact__channel-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--mkt-muted);
}

.mkt-contact__channel-value {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--mkt-ink);
  line-height: 1.35;
}

.mkt-contact__status {
  display: inline-block;
  margin-left: 6px;
  padding: 2px 7px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent-hover);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  vertical-align: middle;
}

.mkt-contact__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.mkt-btn-wa-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #25d366 !important;
  border-color: #25d366 !important;
}

.mkt-btn-wa-primary:hover:not(:disabled) {
  background: #1fb855 !important;
  border-color: #1fb855 !important;
}

.mkt-btn-wa-primary .ui-icon {
  width: 18px;
  height: 18px;
  color: #fff;
}

.mkt-contact__aside {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.mkt-contact__card {
  padding: 28px;
  background: #fff;
  border: 1px solid var(--mkt-line);
  border-radius: var(--mkt-radius-md);
  box-shadow: 0 4px 20px rgba(12, 18, 34, 0.05);
}

.mkt-contact__card .mkt-section__eyebrow {
  margin-bottom: 10px;
}

.mkt-contact__card-title {
  margin: 0 0 18px;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.mkt-contact__steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.mkt-contact__steps li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--mkt-muted);
}

.mkt-contact__step-dot {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent-hover);
  font-size: 0.78rem;
  font-weight: 800;
}

.mkt-contact__note {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 14px 16px;
  background: var(--accent-soft);
  border: 1px solid var(--accent-border);
  border-radius: var(--mkt-radius-md);
  font-size: 0.86rem;
  line-height: 1.55;
  color: var(--mkt-muted);
}

.mkt-contact__note .ui-icon {
  width: 18px;
  height: 18px;
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 2px;
}

.mkt-contact__note p {
  margin: 0;
}

.mkt-contact__note strong {
  color: var(--mkt-ink);
  font-weight: 600;
}

/* ── Sticky mobil CTA ── */
.mkt-sticky {
  display: none;
}

@media (max-width: 720px) {
  .mkt-sticky {
    display: flex;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 250;
    padding: 12px 16px;
    padding-bottom: max(12px, env(safe-area-inset-bottom));
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-top: 1px solid var(--mkt-line);
    box-shadow: 0 -8px 32px rgba(12, 18, 34, 0.1);
  }

  .mkt-sticky .btn {
    width: 100%;
    justify-content: center;
    padding: 14px 20px;
    font-size: 0.95rem;
  }

  body.page-landing {
    padding-bottom: 72px;
  }

  .mkt-more {
    grid-template-columns: 1fr;
  }

  .mkt-guvence {
    grid-template-columns: 1fr;
  }

  .mkt-guvence__steps {
    grid-template-columns: 1fr;
  }

  .mkt-guvence__steps::before,
  .mkt-guvence__steps::after {
    display: none;
  }

  .mkt-guvence__panel--premium {
    position: static;
  }

  .mkt-guvence__metrics {
    grid-template-columns: 1fr;
  }

  .mkt-contact {
    grid-template-columns: 1fr;
  }

  .mkt-contact__channels {
    grid-template-columns: 1fr;
  }

  .mkt-contact__actions .btn {
    flex: 1 1 100%;
    justify-content: center;
  }

  .mkt-compare__shell {
    display: none;
  }

  .mkt-compare__cards {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .mkt-footer__grid {
    grid-template-columns: 1fr;
  }

  .mkt-cta__actions {
    flex-direction: column;
    gap: 12px;
  }

  .mkt-cta__actions .btn {
    width: 100%;
    justify-content: center;
  }

  .mkt-footer__bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ── Footer geniş ── */
.mkt-footer__grid {
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 32px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.mkt-footer__brand-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  text-decoration: none;
  color: inherit;
}

.mkt-footer__logo {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  flex-shrink: 0;
}

.mkt-footer__col {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mkt-footer__h {
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 4px;
}

.mkt-footer__col a {
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color 0.15s ease;
}

.mkt-footer__col a:hover {
  color: #fdba74;
}

@media (prefers-reduced-motion: reduce) {
  .mkt-flow::before {
    animation: none !important;
    transition: none;
    transform: none;
  }

  .mkt-flow__num {
    animation: none !important;
  }

  .mkt-flow__step,
  .mkt-more__card {
    opacity: 1;
    transform: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
  }

  .mkt-more__track {
    animation: none;
  }

  .mkt-more__icon {
    animation: none !important;
  }

  .mkt-more__card::before {
    animation: none !important;
  }

}
