/* F2GO Mobil — app_colors.dart ile uyumlu mor palet */
:root {
  --color-primary: #7709c7;
  --color-secondary: #9545d1;
  --color-accent: #b377db;
  --color-light: #d1a5e5;
  --color-dark: #251063;
  --color-white: #ffffff;
  --color-text: #111827;
  --color-muted: #6b7280;
  --color-border: #e5e7eb;
  --color-surface: #f9fafb;
  --color-success: #22c55e;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --shadow-sm: 0 1px 2px rgba(17, 24, 39, 0.06);
  --shadow-md: 0 12px 40px rgba(119, 9, 199, 0.08);
  --shadow-lg: 0 24px 60px rgba(119, 9, 199, 0.12);
  --font: "Inter", system-ui, -apple-system, sans-serif;
  --header-h: 72px;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --transition: 0.35s var(--ease-out);
  /* Kaydırma ile güncellenir (main.js) */
  --scroll-p: 0;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text);
  background: var(--color-white);
  overflow-x: hidden;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 999;
  padding: 0.75rem 1.25rem;
  background: var(--color-primary);
  color: var(--color-white);
  font-weight: 600;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  text-decoration: none;
}

.skip-link:focus {
  left: 1rem;
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

a:hover {
  text-decoration: underline;
}

.container {
  width: min(1120px, 100% - 40px);
  margin-inline: auto;
}

.bg-mesh {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(ellipse 80% 50% at 10% -10%, rgba(119, 9, 199, 0.09), transparent 50%),
    radial-gradient(ellipse 60% 40% at 90% 20%, rgba(149, 69, 209, 0.08), transparent 45%),
    radial-gradient(ellipse 50% 30% at 50% 100%, rgba(179, 119, 219, 0.06), transparent 50%);
  transform: translate3d(0, calc(var(--scroll-p, 0) * -72px), 0) scale(calc(1 + var(--scroll-p, 0) * 0.04));
  transform-origin: 50% 0%;
  will-change: transform;
}

/* Sayfa kaydırma ilerlemesi */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  z-index: 10000;
  pointer-events: none;
  background: rgba(248, 250, 252, 0.85);
  backdrop-filter: blur(4px);
}

.scroll-progress__bar {
  display: block;
  height: 100%;
  width: 100%;
  transform-origin: left center;
  transform: scaleX(var(--scroll-p, 0));
  background: linear-gradient(
    90deg,
    var(--color-primary),
    var(--color-secondary),
    #38bdf8
  );
  box-shadow: 0 0 12px rgba(119, 9, 199, 0.35);
}

/* Hero: kaydırmaya bağlı 3D sahne */
#hero {
  --hero-3d: 0;
}

.hero-visual {
  position: relative;
  overflow: visible;
  min-height: 260px;
  width: 100%;
  max-width: min(300px, 100%);
  justify-self: end;
  perspective: 1180px;
  perspective-origin: 52% 38%;
}

.scroll-scene {
  position: absolute;
  inset: -32% -40% -24% -40%;
  pointer-events: none;
  transform-style: preserve-3d;
  z-index: 0;
}

.scroll-scene__ring {
  position: absolute;
  left: 50%;
  top: 42%;
  border-radius: 50%;
  border: 1px solid rgba(119, 9, 199, 0.22);
  transform-style: preserve-3d;
}

.scroll-scene__ring--1 {
  width: min(420px, 130%);
  height: min(420px, 130%);
  transform: translate(-50%, -50%) rotateX(72deg)
    translateZ(calc(-20px - var(--hero-3d, 0) * 60px)) scale(calc(1 + var(--hero-3d, 0) * 0.06));
  opacity: calc(0.55 + var(--hero-3d, 0) * 0.25);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.04) inset;
}

.scroll-scene__ring--2 {
  width: min(300px, 95%);
  height: min(300px, 95%);
  border-color: rgba(149, 69, 209, 0.28);
  transform: translate(-50%, -50%) rotateX(68deg)
    translateZ(calc(10px + var(--hero-3d, 0) * 40px)) rotate(calc(var(--hero-3d, 0) * 18deg));
  opacity: calc(0.35 + var(--hero-3d, 0) * 0.35);
}

.scroll-scene__orb {
  position: absolute;
  border-radius: 50%;
  transform-style: preserve-3d;
  filter: blur(0.2px);
}

.scroll-scene__orb--a {
  width: min(120px, 28vw);
  height: min(120px, 28vw);
  left: 8%;
  top: 18%;
  background:
    radial-gradient(circle at 30% 28%, rgba(255, 255, 255, 0.55), transparent 38%),
    radial-gradient(circle at 72% 70%, rgba(119, 9, 199, 0.65), rgba(179, 119, 219, 0.12));
  box-shadow:
    inset -8px -12px 24px rgba(0, 0, 0, 0.15),
    0 20px 40px rgba(119, 9, 199, 0.2);
  transform: translate3d(0, calc(var(--hero-3d, 0) * -36px), -90px)
    scale(calc(1 + var(--hero-3d, 0) * 0.12));
  opacity: calc(0.55 + var(--hero-3d, 0) * 0.3);
}

.scroll-scene__orb--b {
  width: min(72px, 18vw);
  height: min(72px, 18vw);
  right: 4%;
  top: 52%;
  background:
    radial-gradient(circle at 35% 35%, rgba(255, 255, 255, 0.4), transparent 40%),
    radial-gradient(circle at 65% 65%, rgba(56, 189, 248, 0.45), rgba(119, 9, 199, 0.2));
  box-shadow: 0 12px 28px rgba(56, 189, 248, 0.18);
  transform: translate3d(0, calc(var(--hero-3d, 0) * 28px), 40px)
    scale(calc(1 - var(--hero-3d, 0) * 0.08));
  opacity: calc(0.65 - var(--hero-3d, 0) * 0.15);
}

.scroll-scene__orb--c {
  width: min(48px, 12vw);
  height: min(48px, 12vw);
  right: 22%;
  bottom: 8%;
  background: radial-gradient(circle at 40% 40%, rgba(255, 255, 255, 0.5), transparent 45%),
    radial-gradient(circle at 60% 60%, rgba(149, 69, 209, 0.7), transparent);
  transform: translate3d(calc(var(--hero-3d, 0) * -20px), calc(var(--hero-3d, 0) * -16px), -30px);
  opacity: calc(0.5 + var(--hero-3d, 0) * 0.35);
}

.phone-3d-stage {
  position: relative;
  z-index: 2;
  transform-style: preserve-3d;
  will-change: transform;
  transform: rotateX(calc(-4deg + var(--hero-3d, 0) * 14deg))
    rotateY(calc(2deg - var(--hero-3d, 0) * 12deg))
    translate3d(0, calc(var(--hero-3d, 0) * 8px), calc(var(--hero-3d, 0) * 24px))
    scale(calc(1 - var(--hero-3d, 0) * 0.06));
}

@media (prefers-reduced-motion: reduce) {
  .bg-mesh {
    transform: none;
    will-change: auto;
  }

  .scroll-progress__bar {
    transform: none;
  }

  .scroll-scene__ring--1,
  .scroll-scene__ring--2,
  .scroll-scene__orb--a,
  .scroll-scene__orb--b,
  .scroll-scene__orb--c {
    transform: none;
    opacity: 0.5;
  }

  .phone-3d-stage {
    transform: none;
    will-change: auto;
  }
}

/* ——— Header ——— */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  border-bottom: 1px solid transparent;
  transition: background var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: rgba(229, 231, 235, 0.8);
  box-shadow: var(--shadow-sm);
}

.header-inner {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.75rem 1rem;
  width: min(1160px, 100% - 40px);
  margin-inline: auto;
}

.nav {
  justify-self: center;
  min-width: 0;
  max-width: 100%;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: inherit;
}

.logo:hover {
  text-decoration: none;
}

.logo-img {
  border-radius: var(--radius-sm);
  box-shadow: 0 4px 14px rgba(119, 9, 199, 0.25);
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.logo-name {
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
}

.logo-tag {
  font-size: 0.7rem;
  color: var(--color-muted);
  font-weight: 500;
}

@media (max-width: 1180px) {
  .logo-tag {
    display: none;
  }
}

.nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  gap: 0.2rem 0.55rem;
}

.nav-list a {
  color: var(--color-text);
  font-weight: 500;
  font-size: clamp(0.76rem, 0.95vw, 0.82rem);
  text-decoration: none;
  position: relative;
  white-space: nowrap;
  padding: 0.2rem 0.28rem;
}

.nav-list a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
  border-radius: 2px;
  transition: width 0.3s var(--ease-out);
}

.nav-list a:hover {
  color: var(--color-primary);
  text-decoration: none;
}

.nav-list a:hover::after {
  width: 100%;
}

.has-dropdown {
  position: relative;
}

.nav-dropdown-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  background: none;
  border: none;
  font: inherit;
  font-weight: 500;
  font-size: clamp(0.76rem, 0.95vw, 0.82rem);
  color: var(--color-text);
  cursor: pointer;
  padding: 0.2rem 0.28rem;
  white-space: nowrap;
}

.nav-dropdown-btn:hover,
.nav-dropdown-btn[aria-expanded="true"] {
  color: var(--color-primary);
}

.icon-chevron {
  transition: transform 0.25s var(--ease-out);
}

.nav-dropdown-btn[aria-expanded="true"] .icon-chevron {
  transform: rotate(180deg);
}

.dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  margin-top: 0.5rem;
  min-width: 180px;
  padding: 0.5rem;
  background: var(--color-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-border);
  list-style: none;
}

.dropdown li {
  margin: 0;
}

.dropdown a {
  display: block;
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius-sm);
  color: var(--color-text);
}

.dropdown a:hover {
  background: var(--color-surface);
  text-decoration: none;
}

.dropdown-legal {
  min-width: 220px;
}

.dropdown-wide {
  min-width: 14rem;
  left: 0;
  right: auto;
}

.header-store {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.36rem 0.62rem;
  border-radius: var(--radius-md);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--color-text);
  text-decoration: none;
  border: 1px solid var(--color-border);
  background: var(--color-surface);
  transition: color 0.2s, border-color 0.2s, box-shadow 0.2s, background 0.2s;
}

.header-store:hover {
  color: var(--color-primary);
  border-color: rgba(119, 9, 199, 0.35);
  box-shadow: 0 4px 14px rgba(119, 9, 199, 0.12);
  text-decoration: none;
}

.header-store-icon {
  flex-shrink: 0;
  opacity: 0.9;
}

.dropdown-soon {
  display: inline-block;
  margin-left: 0.35rem;
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--color-muted);
  opacity: 0.85;
}

.nav-mobile-cta {
  display: none;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: none;
  background: var(--color-surface);
  border-radius: var(--radius-sm);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  height: 2px;
  background: var(--color-text);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

.menu-toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ——— Buttons ——— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.55rem 1.1rem;
  font-weight: 600;
  font-size: 0.875rem;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.2s var(--ease-out), box-shadow 0.2s, background 0.2s, color 0.2s, border-color 0.2s;
}

.btn:hover {
  text-decoration: none;
  transform: translateY(-1px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  color: var(--color-white);
  box-shadow: 0 8px 24px rgba(119, 9, 199, 0.35);
}

.btn-primary:hover {
  box-shadow: 0 12px 32px rgba(119, 9, 199, 0.45);
  color: var(--color-white);
}

.btn-ghost {
  background: transparent;
  color: var(--color-primary);
  border-color: rgba(119, 9, 199, 0.35);
}

.btn-ghost:hover {
  background: rgba(119, 9, 199, 0.06);
  color: var(--color-primary);
}

.btn-outline {
  background: var(--color-white);
  color: var(--color-primary);
  border-color: var(--color-border);
  box-shadow: var(--shadow-sm);
}

.btn-outline:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
}

.btn-lg {
  padding: 0.75rem 1.35rem;
  font-size: 0.95rem;
}

.btn-white {
  background: var(--color-white);
  color: var(--color-primary);
}

.btn-white:hover {
  box-shadow: var(--shadow-md);
  color: var(--color-primary);
}

.btn-ghost-light {
  background: transparent;
  color: var(--color-white);
  border-color: rgba(255, 255, 255, 0.5);
}

.btn-ghost-light:hover {
  background: rgba(255, 255, 255, 0.12);
  color: var(--color-white);
}

/* ——— Hero ——— */
.hero {
  padding: clamp(2rem, 5vw, 4rem) 0 clamp(3rem, 8vw, 5rem);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.12fr minmax(240px, 0.78fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
}

.badge {
  display: inline-block;
  padding: 0.35rem 0.85rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-primary);
  background: rgba(119, 9, 199, 0.08);
  border-radius: 999px;
  margin-bottom: 1rem;
  letter-spacing: 0.02em;
}

.hero-title {
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.03em;
  margin: 0 0 1rem;
}

.text-gradient {
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-lead {
  font-size: 1.05rem;
  color: var(--color-muted);
  max-width: 32rem;
  margin: 0 0 1.75rem;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.hero-trust {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 2rem;
  font-size: 0.875rem;
  color: var(--color-muted);
}

.hero-trust strong {
  display: block;
  font-size: 1.25rem;
  color: var(--color-text);
  font-weight: 700;
}

/* Uygulama görselleri (telefon çerçevesi) — kompakt, ferah hero */
.phone-showcase {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 240px;
  margin-inline: auto;
  animation: mock-enter 1s var(--ease-out) both;
}

.phone-bezel--hero {
  position: relative;
  padding: 0.4rem 0.4rem 0.48rem;
  border-radius: 1.75rem;
  background: linear-gradient(155deg, #1a1528 0%, #0f172a 45%, #111827 100%);
  box-shadow:
    0 18px 40px -14px rgba(119, 9, 199, 0.32),
    0 0 0 1px rgba(255, 255, 255, 0.06) inset;
  overflow: hidden;
}

.phone-screen-stage {
  position: relative;
  border-radius: 1.35rem;
  overflow: hidden;
  line-height: 0;
}

.phone-img--main {
  position: relative;
  z-index: 1;
  display: block;
  width: min(188px, 52vw);
  height: auto;
  border-radius: 1.35rem;
  transition:
    opacity 0.38s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.42s cubic-bezier(0.22, 1, 0.36, 1);
  transform-origin: center center;
}

.phone-img--main.is-hero-shot-out {
  opacity: 0;
  transform: scale(0.94) translateY(8px);
  pointer-events: none;
}

.hero-screen-thumbs {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  align-items: center;
  justify-items: center;
  gap: 0.2rem;
  width: 100%;
  align-self: stretch;
  margin-top: 0.75rem;
  padding: 0;
}

.hero-thumb {
  padding: 2px;
  border: 2px solid transparent;
  border-radius: 0.45rem;
  background: var(--color-white);
  cursor: pointer;
  box-shadow: 0 1px 4px rgba(15, 23, 42, 0.06);
  transition:
    border-color 0.25s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.25s ease,
    transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1),
    box-shadow 0.25s ease;
  opacity: 0.7;
  width: 100%;
  max-width: 42px;
  min-width: 0;
}

.hero-thumb:hover {
  opacity: 1;
}

.hero-thumb.is-active {
  border-color: var(--color-primary);
  opacity: 1;
  box-shadow: 0 3px 12px rgba(119, 9, 199, 0.2);
  transform: scale(1.06);
}

.hero-thumb:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

.hero-thumb img {
  display: block;
  width: 100%;
  max-width: 32px;
  height: auto;
  margin-inline: auto;
  border-radius: 0.3rem;
  pointer-events: none;
}

.split-visual--screens {
  width: 100%;
  min-width: 0;
  justify-content: stretch;
}

.app-screens-grid {
  list-style: none;
  margin: 0;
  padding: 0.2rem 0 0.4rem;
  display: flex;
  flex-direction: row;
  gap: 0.5rem;
  overflow-x: auto;
  overflow-y: visible;
  scroll-snap-type: x mandatory;
  scroll-padding-inline: 0.5rem;
  -webkit-overflow-scrolling: touch;
  width: 100%;
  max-width: 100%;
}

.app-screens-grid::-webkit-scrollbar {
  height: 6px;
}

.app-screens-grid::-webkit-scrollbar-thumb {
  background: rgba(119, 9, 199, 0.28);
  border-radius: 99px;
}

.phone-thumb-card {
  margin: 0;
  flex: 0 0 auto;
  scroll-snap-align: center;
}

.phone-bezel--sm {
  padding: 5px;
  border-radius: 1.25rem;
  background: linear-gradient(160deg, #1e1b2e, #0f172a);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.phone-bezel--sm img {
  display: block;
  width: min(92px, 20vw);
  height: auto;
  border-radius: 0.85rem;
}

@media (min-width: 1200px) {
  .phone-bezel--sm img {
    width: min(88px, 9vw);
  }
}

/* Mock window */
@media (max-width: 960px) {
  .hero-visual {
    justify-self: center;
    max-width: min(280px, 100%);
    min-height: 240px;
  }

  .phone-showcase {
    max-width: 200px;
  }

  .phone-img--main {
    width: min(176px, 48vw);
  }
}

.mock-window {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--color-border);
  overflow: hidden;
  animation: mock-enter 1s var(--ease-out) both;
}

@keyframes mock-enter {
  from {
    opacity: 0;
    transform: translateY(24px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.mock-chrome {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0.65rem 1rem;
  background: linear-gradient(180deg, #f9fafb, #f3f4f6);
  border-bottom: 1px solid var(--color-border);
}

.mock-chrome span:nth-child(1),
.mock-chrome span:nth-child(2),
.mock-chrome span:nth-child(3) {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #fca5a5;
}

.mock-chrome span:nth-child(2) {
  background: #fcd34d;
}

.mock-chrome span:nth-child(3) {
  background: #86efac;
}

.mock-title {
  margin-left: auto;
  font-size: 0.7rem;
  color: var(--color-muted);
  font-weight: 600;
}

.mock-body {
  display: grid;
  grid-template-columns: 120px 1fr;
  min-height: 260px;
}

.mock-sidebar {
  padding: 0.75rem;
  background: var(--color-surface);
  border-right: 1px solid var(--color-border);
}

.mock-nav-item {
  padding: 0.45rem 0.6rem;
  font-size: 0.75rem;
  border-radius: var(--radius-sm);
  margin-bottom: 0.35rem;
  color: var(--color-muted);
}

.mock-nav-item.active {
  background: rgba(119, 9, 199, 0.1);
  color: var(--color-primary);
  font-weight: 600;
}

.mock-nav-highlight {
  background: linear-gradient(90deg, rgba(119, 9, 199, 0.18), rgba(149, 69, 209, 0.1));
  color: var(--color-primary);
  font-weight: 700;
  border: 1px solid rgba(119, 9, 199, 0.2);
}

.mock-main {
  padding: 0.75rem;
}

.mock-map {
  position: relative;
  height: 220px;
  border-radius: var(--radius-md);
  background: linear-gradient(160deg, rgba(209, 165, 229, 0.35), rgba(119, 9, 199, 0.12));
  overflow: hidden;
}

.mock-pin {
  position: absolute;
  left: var(--x);
  top: var(--y);
  transform: translate(-50%, -50%);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--color-primary), var(--color-secondary));
  color: white;
  font-size: 0.75rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 16px rgba(119, 9, 199, 0.4);
  animation: pin-pulse 2.5s ease-in-out infinite;
}

.mock-pin-sm {
  width: 14px;
  height: 14px;
  font-size: 0;
  animation-delay: 0.5s;
}

.mock-pin:nth-child(2) {
  animation-delay: 0.3s;
}

.mock-pin:nth-child(3) {
  animation-delay: 0.6s;
}

@keyframes pin-pulse {
  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    transform: translate(-50%, -50%) scale(1.06);
  }
}

.float-card {
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.4rem 0.55rem;
  background: rgba(255, 255, 255, 0.95);
  border-radius: var(--radius-sm);
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.08);
  font-size: 0.68rem;
  font-weight: 600;
  border: 1px solid rgba(229, 231, 235, 0.95);
  max-width: 9.25rem;
  line-height: 1.25;
  animation: float-y 4.5s ease-in-out infinite;
  backdrop-filter: blur(8px);
}

.float-icon {
  font-size: 0.85rem;
  flex-shrink: 0;
}

.float-a {
  top: 6%;
  right: -2%;
  animation-delay: 0s;
}

.float-b {
  bottom: 20%;
  left: -4%;
  animation-delay: 1.2s;
}

.float-c {
  top: 40%;
  right: -6%;
  animation-delay: 2s;
}

@keyframes float-y {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}

/* ——— Sections ——— */
.section {
  padding: clamp(3rem, 6vw, 5rem) 0;
}

.section-alt {
  background: linear-gradient(180deg, var(--color-surface) 0%, var(--color-white) 100%);
}

.section-compact {
  padding: 2.5rem 0 3rem;
}

.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3rem;
}

.section-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-secondary);
  margin-bottom: 0.75rem;
}

.section-head h2 {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  margin: 0 0 0.75rem;
  letter-spacing: -0.02em;
}

.section-desc {
  margin: 0;
  color: var(--color-muted);
}

.section-head-left {
  text-align: left;
  margin-left: 0;
  margin-right: auto;
  max-width: 560px;
}

.text-accent {
  color: var(--color-primary);
  font-style: normal;
  font-weight: 700;
}

/* Badge parlama */
.section-badge-shine {
  position: relative;
  overflow: hidden;
}

.section-badge-shine::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    transparent 35%,
    rgba(255, 255, 255, 0.65) 50%,
    transparent 65%
  );
  animation: badge-shine 3.5s ease-in-out infinite;
  pointer-events: none;
}

@keyframes badge-shine {
  0%,
  100% {
    transform: translateX(-120%);
    opacity: 0;
  }
  40%,
  60% {
    opacity: 1;
  }
  100% {
    transform: translateX(120%);
    opacity: 0;
  }
}

/* Kampanya vitrini */
.section-showcase {
  overflow: hidden;
}

.campaign-showcase {
  display: flex;
  flex-direction: column;
  gap: clamp(1.75rem, 3vw, 2.5rem);
}

.campaign-hero {
  position: relative;
  padding: clamp(1.5rem, 3vw, 2.25rem);
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, rgba(119, 9, 199, 0.08), rgba(209, 165, 229, 0.12));
  border: 1px solid rgba(119, 9, 199, 0.15);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

.campaign-hero-glow {
  position: absolute;
  width: 280px;
  height: 280px;
  right: -80px;
  top: -100px;
  background: radial-gradient(circle, rgba(119, 9, 199, 0.25), transparent 70%);
  animation: hero-glow-drift 8s ease-in-out infinite;
  pointer-events: none;
}

@keyframes hero-glow-drift {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
    opacity: 0.7;
  }
  50% {
    transform: translate(-20px, 12px) scale(1.08);
    opacity: 1;
  }
}

.campaign-hero h3 {
  position: relative;
  margin: 0.5rem 0 0.75rem;
  font-size: clamp(1.35rem, 2.2vw, 1.75rem);
  letter-spacing: -0.02em;
}

.campaign-hero p {
  position: relative;
  margin: 0 0 1rem;
  color: var(--color-muted);
  max-width: 40rem;
  line-height: 1.65;
}

.campaign-tag {
  position: relative;
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-primary);
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: rgba(119, 9, 199, 0.12);
  border: 1px solid rgba(119, 9, 199, 0.2);
}

.campaign-perks {
  position: relative;
  margin: 0;
  padding-left: 1.2rem;
  color: var(--color-text);
  font-size: 0.9rem;
  line-height: 1.7;
}

.campaign-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.1rem;
}

.campaign-card {
  position: relative;
  padding: 1.35rem 1.25rem;
  border-radius: var(--radius-lg);
  background: var(--color-white);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s, border-color 0.35s;
}

.campaign-card:hover {
  transform: translateY(-6px);
  border-color: rgba(119, 9, 199, 0.22);
  box-shadow: var(--shadow-md);
}

.campaign-card h4 {
  margin: 0 0 0.5rem;
  font-size: 1rem;
  letter-spacing: -0.01em;
}

.campaign-card p {
  margin: 0 0 0.85rem;
  font-size: 0.86rem;
  color: var(--color-muted);
  line-height: 1.55;
}

.campaign-card-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 0.85rem;
  background: linear-gradient(145deg, rgba(119, 9, 199, 0.12), rgba(149, 69, 209, 0.08));
}

.anim-pulse {
  animation: icon-pulse 2.8s ease-in-out infinite;
}

@keyframes icon-pulse {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(119, 9, 199, 0.15);
  }
  50% {
    transform: scale(1.04);
    box-shadow: 0 0 0 10px rgba(119, 9, 199, 0);
  }
}

.campaign-pill {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
}

.campaign-pill-live {
  color: #15803d;
  background: rgba(34, 197, 94, 0.12);
  border: 1px solid rgba(34, 197, 94, 0.25);
}

.campaign-pill-soon {
  color: #b45309;
  background: rgba(251, 191, 36, 0.15);
  border: 1px solid rgba(251, 191, 36, 0.35);
}

.campaign-footnote {
  text-align: center;
  font-size: 0.82rem;
  color: var(--color-muted);
  margin: 0.5rem 0 0;
  max-width: 560px;
  margin-inline: auto;
  line-height: 1.55;
}

.campaign-hero-shine {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(
    118deg,
    transparent 35%,
    rgba(255, 255, 255, 0.5) 48%,
    transparent 62%
  );
  background-size: 220% 100%;
  animation: campaign-shine 7s ease-in-out infinite;
  pointer-events: none;
  opacity: 0.22;
  z-index: 0;
}

@keyframes campaign-shine {
  0%,
  100% {
    background-position: 100% 0;
  }
  50% {
    background-position: 0% 0;
  }
}

.campaign-hero-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(130px, 190px);
  gap: clamp(1.25rem, 3vw, 2rem);
  align-items: center;
}

.campaign-hero-copy .campaign-tag {
  margin-bottom: 0.35rem;
}

.campaign-hero-device {
  text-align: center;
}

.campaign-device-frame {
  border-radius: 1.35rem;
  padding: 0.38rem;
  background: linear-gradient(160deg, #1a1528, #0f172a);
  box-shadow: 0 18px 44px -12px rgba(119, 9, 199, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.07);
  margin-inline: auto;
  max-width: 178px;
  transition: transform 0.45s var(--ease-out), box-shadow 0.45s;
}

.campaign-hero:hover .campaign-device-frame {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 22px 50px -10px rgba(119, 9, 199, 0.4);
}

.campaign-device-frame img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 1rem;
}

.campaign-device-caption {
  display: block;
  margin-top: 0.55rem;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--color-muted);
  letter-spacing: 0.02em;
}

@media (max-width: 820px) {
  .campaign-hero-layout {
    grid-template-columns: 1fr;
  }

  .campaign-hero-device {
    order: -1;
    max-width: 200px;
    margin-inline: auto;
  }
}

/* Nasıl yakıt alınır — zaman çizelgesi */
.section-fuel-guide {
  background: linear-gradient(180deg, var(--color-white) 0%, rgba(249, 250, 251, 0.9) 100%);
}

.fuel-timeline {
  position: relative;
  max-width: 760px;
  margin: 0 auto;
  padding: 0.5rem 0 1rem;
}

.fuel-timeline-line {
  position: absolute;
  left: 27px;
  top: 12px;
  bottom: 12px;
  width: 3px;
  border-radius: 3px;
  background: linear-gradient(180deg, var(--color-primary), var(--color-accent), var(--color-secondary));
  opacity: 0.35;
  transform: scaleY(0);
  transform-origin: top center;
  transition: transform 1.1s var(--ease-out);
}

.fuel-timeline.reveal.is-visible .fuel-timeline-line {
  transform: scaleY(1);
}

.fuel-step {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 1rem 1.25rem;
  margin-bottom: 1.35rem;
  opacity: 0;
  transform: translateY(22px);
}

.fuel-timeline.reveal.is-visible .fuel-step {
  animation: fuel-step-reveal 0.65s var(--ease-out) forwards;
  animation-delay: calc(0.12s + var(--step-delay, 0s));
}

@keyframes fuel-step-reveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fuel-step-marker {
  display: flex;
  justify-content: center;
  padding-top: 0.35rem;
}

.fuel-step-num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--color-white);
  background: linear-gradient(145deg, var(--color-primary), var(--color-secondary));
  box-shadow: 0 8px 22px rgba(119, 9, 199, 0.35);
}

.fuel-step-marker-done {
  background: linear-gradient(145deg, var(--color-success), #16a34a);
  box-shadow: 0 8px 22px rgba(34, 197, 94, 0.3);
  font-size: 1.1rem;
}

.fuel-step-card {
  padding: 1.15rem 1.25rem;
  border-radius: var(--radius-lg);
  background: var(--color-white);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s var(--ease-out);
}

.fuel-step-card:hover {
  border-color: rgba(119, 9, 199, 0.2);
  box-shadow: var(--shadow-md);
  transform: translateX(4px);
}

.fuel-step-card h3 {
  margin: 0 0 0.45rem;
  font-size: 1.02rem;
}

.fuel-step-card p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--color-muted);
  line-height: 1.6;
}

.fuel-step-card a {
  font-weight: 600;
}

.fuel-step-card-accent {
  background: linear-gradient(135deg, rgba(119, 9, 199, 0.06), rgba(209, 165, 229, 0.1));
  border-color: rgba(119, 9, 199, 0.18);
}

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

/* Tabs (Bireysel / UTTS) */
.tabs {
  max-width: 900px;
  margin: 0 auto;
}

.tablist {
  display: flex;
  gap: 0.5rem;
  padding: 0.35rem;
  margin-bottom: 1.5rem;
  background: var(--color-white);
  border-radius: 999px;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
}

.tab-btn {
  flex: 1;
  padding: 0.75rem 1.25rem;
  border: none;
  border-radius: 999px;
  font: inherit;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--color-muted);
  background: transparent;
  cursor: pointer;
  transition: color 0.25s, background 0.25s, box-shadow 0.25s;
}

.tab-btn:hover {
  color: var(--color-primary);
}

.tab-btn.is-active {
  color: var(--color-white);
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  box-shadow: 0 6px 20px rgba(119, 9, 199, 0.35);
}

.tab-panel {
  display: none;
  padding: 1.5rem;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
}

.tab-panel.is-active {
  display: block;
  animation: tab-in 0.45s var(--ease-out);
}

@keyframes tab-in {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.tab-panel-grid {
  display: grid;
  grid-template-columns: 1fr minmax(200px, 260px);
  gap: 1.5rem;
  align-items: start;
}

.tab-aside {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.mini-card {
  padding: 1rem;
  border-radius: var(--radius-md);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
}

.mini-card h4 {
  margin: 0 0 0.35rem;
  font-size: 0.85rem;
  color: var(--color-primary);
}

.mini-card p {
  margin: 0;
  font-size: 0.8rem;
  color: var(--color-muted);
  line-height: 1.5;
}

.checklist-lg li {
  margin-bottom: 0.75rem;
  line-height: 1.5;
}

/* Steps */
.steps {
  list-style: none;
  margin: 0;
  padding: 0;
  max-width: 720px;
  margin-inline: auto;
  counter-reset: step;
}

.step-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.25rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--color-border);
  align-items: start;
}

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

.step-num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1rem;
  color: var(--color-white);
  background: linear-gradient(145deg, var(--color-primary), var(--color-secondary));
  box-shadow: 0 8px 20px rgba(119, 9, 199, 0.3);
}

.step-body h3 {
  margin: 0 0 0.35rem;
  font-size: 1.05rem;
}

.step-body p {
  margin: 0;
  color: var(--color-muted);
  font-size: 0.95rem;
}

/* Security cards */
.security-cards {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.security-card {
  position: relative;
  padding: 1.15rem 1.15rem 1.15rem 1.25rem;
  background: var(--color-white);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s, box-shadow 0.25s;
}

.security-card:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow-md);
}

.security-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  bottom: 12px;
  width: 4px;
  border-radius: 0 4px 4px 0;
  background: linear-gradient(180deg, var(--color-primary), var(--color-accent));
}

.security-tag {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-secondary);
  margin-bottom: 0.35rem;
}

.security-card h4 {
  margin: 0 0 0.35rem;
  font-size: 0.95rem;
}

.security-card p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--color-muted);
}

.section-tech {
  padding-bottom: 3.5rem;
}

.tech-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem;
}

.tech-pill {
  padding: 0.5rem 1rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-text);
  background: var(--color-white);
  border: 1px solid var(--color-border);
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}

.tech-pill:hover {
  border-color: rgba(119, 9, 199, 0.35);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

/* Accordion */
.accordion {
  max-width: 720px;
  margin: 0 auto;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--color-white);
  box-shadow: var(--shadow-sm);
}

.acc-item {
  border-bottom: 1px solid var(--color-border);
}

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

.acc-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 1.25rem;
  border: none;
  background: var(--color-white);
  font: inherit;
  font-weight: 600;
  font-size: 0.95rem;
  text-align: left;
  cursor: pointer;
  color: var(--color-text);
  transition: background 0.2s;
}

.acc-trigger:hover {
  background: var(--color-surface);
}

.acc-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 2px solid var(--color-primary);
  position: relative;
}

.acc-icon::before,
.acc-icon::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  background: var(--color-primary);
  transform: translate(-50%, -50%);
  transition: transform 0.3s var(--ease-out);
}

.acc-icon::before {
  width: 10px;
  height: 2px;
}

.acc-icon::after {
  width: 2px;
  height: 10px;
}

.acc-trigger[aria-expanded="true"] .acc-icon::after {
  transform: translate(-50%, -50%) scaleY(0);
}

.acc-panel {
  padding: 0 1.25rem 1.1rem;
  color: var(--color-muted);
  font-size: 0.92rem;
  line-height: 1.6;
}

.acc-panel p {
  margin: 0;
}

.acc-panel[hidden] {
  display: none !important;
}

/* Download */
.download-block {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: clamp(1.75rem, 3vw, 2.5rem);
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, rgba(119, 9, 199, 0.06), rgba(209, 165, 229, 0.15));
  border: 1px solid rgba(119, 9, 199, 0.12);
}

.download-copy {
  max-width: 480px;
}

.download-copy h2 {
  margin: 0.5rem 0 0.5rem;
  font-size: clamp(1.35rem, 2.2vw, 1.75rem);
}

.download-copy p {
  margin: 0;
  color: var(--color-muted);
}

.store-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.store-badge {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  min-width: 200px;
  padding: 0.65rem 1rem;
  border-radius: var(--radius-md);
  background: var(--color-text);
  color: var(--color-white);
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
}

.store-badge:hover {
  text-decoration: none;
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.store-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.store-text small {
  font-size: 0.65rem;
  opacity: 0.85;
  font-weight: 500;
}

.store-text strong {
  font-size: 1rem;
}

.store-google .store-icon {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  background: conic-gradient(from 180deg at 50% 50%, #ea4335 0deg, #fbbc04 90deg, #34a853 180deg, #4285f4 270deg, #ea4335 360deg);
}

.store-apple .store-icon {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  background: #fff;
}

/* Marquee (özellik şeridi — üst menüden ayrışır) */
.marquee-wrap {
  border-block: 1px solid var(--color-border);
  background: rgba(119, 9, 199, 0.03);
  overflow: hidden;
  padding: 0.65rem 0;
}

.marquee-wrap--band {
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 5%, #000 95%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 5%, #000 95%, transparent 100%);
}

.marquee {
  display: flex;
  flex-wrap: nowrap;
  gap: 1.5rem;
  width: max-content;
  animation: marquee var(--marquee-duration, 32s) linear infinite;
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(119, 9, 199, 0.75);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.marquee-group {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 1.75rem;
}

.marquee-group span {
  white-space: nowrap;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Stats */
.stats-section {
  padding-top: clamp(2.25rem, 4.5vw, 3.25rem);
  padding-bottom: clamp(2.25rem, 4.5vw, 3.25rem);
}

.stats-kicker {
  text-align: center;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--color-primary);
  margin: 0 0 1.35rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.stats-grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

.stats-grid-6 {
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem 1.1rem;
  align-items: stretch;
}

@media (min-width: 1100px) {
  .stats-grid-6 {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 0.85rem 1rem;
  }

  .stats-grid-6 .stat-value {
    font-size: 1.95rem;
  }

  .stats-grid-6 .stat-label {
    font-size: 0.86rem;
    line-height: 1.3;
  }

  .stats-grid-6 .stat-hint {
    font-size: 0.76rem;
    line-height: 1.45;
  }

  .stats-grid-6 .stat-card {
    padding: 1.25rem 0.95rem;
    min-height: 8.25rem;
  }
}

@media (min-width: 720px) and (max-width: 1099px) {
  .stats-grid-6 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
  }

  .stats-grid-6 .stat-card {
    padding: 1.25rem 1rem;
    min-height: 7.75rem;
  }

  .stats-grid-6 .stat-value {
    font-size: 1.9rem;
  }
}

.stat-card {
  padding: 1.75rem;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s;
}

.stats-grid-6 .stat-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.stats-grid-6 .stat-hint {
  flex-grow: 1;
  margin-top: 0.5rem;
  margin-bottom: 0;
}

.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.stat-value {
  display: block;
  font-size: 2.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
  margin-bottom: 0.35rem;
}

.stat-label {
  font-weight: 600;
  font-size: 0.95rem;
}

.stat-hint {
  margin: 0.5rem 0 0;
  font-size: 0.85rem;
  color: var(--color-muted);
}

.stat-value-static {
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Sözleşmeler (JSON içerik) */
.legal-wrap {
  margin-top: 0.5rem;
}

.legal-loading {
  text-align: center;
  padding: 2.5rem 1rem;
  color: var(--color-muted);
  font-weight: 500;
}

.legal-error {
  text-align: center;
  padding: 1.5rem;
  color: #b91c1c;
  background: rgba(185, 28, 28, 0.06);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(185, 28, 28, 0.2);
}

.legal-ui .tablist {
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
}

.legal-tab {
  flex: 1 1 auto;
  min-width: min(100%, 10rem);
  font-size: 0.82rem;
  padding: 0.65rem 0.9rem;
}

.legal-panels {
  margin-top: 1.25rem;
}

.legal-panel.tab-panel {
  padding: 0;
  overflow: hidden;
}

.legal-panel-title {
  margin: 0;
  padding: 1rem 1.25rem;
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.35;
  border-bottom: 1px solid var(--color-border);
  background: linear-gradient(180deg, rgba(119, 9, 199, 0.04), transparent);
}

.legal-html {
  padding: 1.25rem 1.25rem 1.5rem;
  max-height: min(70vh, 36rem);
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--color-text);
}

.legal-html p {
  margin: 0 0 0.85rem;
}

.legal-html p:last-child {
  margin-bottom: 0;
}

.legal-html strong {
  font-weight: 700;
  color: var(--color-text);
}

.legal-html ol,
.legal-html ul {
  margin: 0 0 0.85rem;
  padding-left: 1.35rem;
}

.legal-html li {
  margin-bottom: 0.35rem;
}

.legal-html table {
  width: 100%;
  border-collapse: collapse;
  margin: 1rem 0;
  font-size: 0.88rem;
}

.legal-html td {
  border: 1px solid var(--color-border);
  padding: 0.65rem 0.75rem;
  vertical-align: top;
}

.store-badge-muted {
  opacity: 0.45;
  pointer-events: none;
  cursor: not-allowed;
}

/* Features */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.feature-grid-9 {
  grid-template-columns: repeat(3, 1fr);
}

.feature-card {
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  background: var(--color-white);
  border: 1px solid var(--color-border);
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s var(--ease-out);
}

.feature-card:hover {
  border-color: rgba(119, 9, 199, 0.25);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  margin-bottom: 1rem;
  background: linear-gradient(
    135deg,
    rgba(119, 9, 199, 0.12),
    rgba(149, 69, 209, 0.08)
  );
  box-shadow: inset 0 0 0 1px rgba(119, 9, 199, 0.08);
}

.feature-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
}

.feature-card p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--color-muted);
}

/* Split / hub */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.split-visual {
  display: flex;
  justify-content: center;
}

.split--platform {
  grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.92fr);
  gap: clamp(1.5rem, 4vw, 2.75rem);
  align-items: center;
}

.split--platform .split-visual--screens {
  justify-content: flex-start;
  align-self: center;
}

.split--platform .app-screens-grid {
  flex-wrap: nowrap;
  justify-content: flex-start;
  gap: 0.42rem;
  padding: 0.15rem 0 0.45rem;
  width: 100%;
  max-width: 100%;
}

.split--platform .phone-bezel--sm {
  padding: 4px;
}

.split--platform .phone-bezel--sm img {
  width: min(72px, 15vw);
}

.split--platform.reveal.is-visible .phone-thumb-card {
  animation: platform-phone-in 0.52s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.split--platform.reveal.is-visible li:nth-child(1) .phone-thumb-card {
  animation-delay: 0.04s;
}

.split--platform.reveal.is-visible li:nth-child(2) .phone-thumb-card {
  animation-delay: 0.1s;
}

.split--platform.reveal.is-visible li:nth-child(3) .phone-thumb-card {
  animation-delay: 0.16s;
}

.split--platform.reveal.is-visible li:nth-child(4) .phone-thumb-card {
  animation-delay: 0.22s;
}

.split--platform.reveal.is-visible li:nth-child(5) .phone-thumb-card {
  animation-delay: 0.28s;
}

@keyframes platform-phone-in {
  from {
    opacity: 0.65;
    transform: translateY(10px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (max-width: 960px) {
  .split--platform {
    grid-template-columns: 1fr;
  }

  .split--platform .split-visual--screens {
    justify-content: center;
    order: -1;
    margin-bottom: 0.25rem;
  }

  .split--platform .app-screens-grid {
    justify-content: flex-start;
    max-width: min(420px, 100%);
    margin-inline: auto;
  }

  .split--platform .phone-bezel--sm img {
    width: min(68px, 14vw);
  }
}

/* ——— Platform: scroll-driven 3D phone showcase + ok vitrin ——— */
.phone-showcase-3d {
  --showcase-p: 0;
  position: relative;
  width: 100%;
  min-height: clamp(260px, 38vw, 400px);
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  gap: clamp(0.2rem, 1.2vw, 0.55rem);
}

.phone-showcase-3d__inner {
  position: relative;
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
}

.phone-showcase-3d__inner::before {
  content: "";
  position: absolute;
  bottom: 8%;
  left: 50%;
  transform: translateX(-50%);
  width: min(95%, 440px);
  height: min(160px, 28vw);
  background: radial-gradient(ellipse 80% 70% at 50% 60%, rgba(119, 9, 199, 0.28), transparent 72%);
  pointer-events: none;
  z-index: 0;
  filter: blur(2px);
}

.phone-showcase-3d__arrow {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(119, 9, 199, 0.22);
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: var(--color-primary);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 22px rgba(119, 9, 199, 0.14);
  transition: transform 0.22s var(--ease-out), box-shadow 0.22s, background 0.22s, border-color 0.22s;
  z-index: 6;
}

.phone-showcase-3d__arrow:hover {
  transform: scale(1.07);
  border-color: rgba(119, 9, 199, 0.38);
  box-shadow: 0 10px 32px rgba(119, 9, 199, 0.22);
  background: rgba(255, 255, 255, 0.98);
}

.phone-showcase-3d__arrow:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 3px;
}

.phone-showcase-3d__arrow:active {
  transform: scale(0.96);
}

.phone-showcase-3d__hint {
  position: relative;
  z-index: 2;
  order: 2;
  margin: 0.85rem 0 0;
  padding: 0.35rem 0.75rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-primary);
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(119, 9, 199, 0.18);
  border-radius: 999px;
  box-shadow: 0 4px 20px rgba(119, 9, 199, 0.1);
}

.phone-showcase-3d__grid {
  position: relative;
  z-index: 1;
  order: 1;
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: flex-end;
  gap: 0.35rem;
  margin: 0;
  padding: 1.75rem 0.35rem 0.5rem;
  width: 100%;
  max-width: 100%;
  transform-style: preserve-3d;
  list-style: none;
  overflow-x: auto;
  overflow-y: visible;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x proximity;
}

.phone-showcase-3d__grid li {
  position: relative;
  flex: 0 0 auto;
  transform-style: preserve-3d;
  scroll-snap-align: center;
  will-change: transform;
}

.phone-showcase-3d__grid .phone-thumb-card {
  margin: 0;
}

/* Eski sıralı giriş animasyonu 3D transform ile çakışmasın */
.split--platform .phone-showcase-3d.reveal.is-visible .phone-thumb-card,
.split--platform .phone-showcase-3d.reveal.is-visible li:nth-child(n) .phone-thumb-card {
  animation: none !important;
}

@media (min-width: 961px) {
  .phone-showcase-3d {
    perspective: 1200px;
    perspective-origin: 50% 35%;
  }

  .phone-showcase-3d__grid {
    overflow: visible;
    gap: clamp(0.2rem, 1vw, 0.55rem);
    padding-top: 2.25rem;
    padding-bottom: 0.65rem;
  }

  .phone-showcase-3d__grid li:nth-child(1) {
    --phone-i: -2;
  }

  .phone-showcase-3d__grid li:nth-child(2) {
    --phone-i: -1;
  }

  .phone-showcase-3d__grid li:nth-child(3) {
    --phone-i: 0;
  }

  .phone-showcase-3d__grid li:nth-child(4) {
    --phone-i: 1;
  }

  .phone-showcase-3d__grid li:nth-child(5) {
    --phone-i: 2;
  }

  .phone-showcase-3d__grid:not(.has-spotlight) li:nth-child(1),
  .phone-showcase-3d__grid:not(.has-spotlight) li:nth-child(5) {
    z-index: 1;
  }

  .phone-showcase-3d__grid:not(.has-spotlight) li:nth-child(2),
  .phone-showcase-3d__grid:not(.has-spotlight) li:nth-child(4) {
    z-index: 3;
  }

  .phone-showcase-3d__grid:not(.has-spotlight) li:nth-child(3) {
    z-index: 5;
  }

  .phone-showcase-3d__grid li {
    transition:
      transform 0.68s var(--ease-out),
      filter 0.45s ease,
      opacity 0.45s ease;
  }

  .phone-showcase-3d__grid:not(.has-spotlight) li {
    transform:
      rotateY(calc(var(--phone-i) * (12deg + var(--showcase-p, 0) * 10deg)))
      rotateX(calc(26deg * (1 - var(--showcase-p, 0))))
      translateZ(calc(-85px + var(--showcase-p, 0) * 130px))
      translateY(calc(36px * (1 - var(--showcase-p, 0))));
  }

  /* Vitrin: ok ile seçilen öne, diğerleri geride */
  .phone-showcase-3d__grid.has-spotlight li {
    z-index: 1;
  }

  .phone-showcase-3d__grid.has-spotlight li.is-spotlight {
    z-index: 20;
  }

  .phone-showcase-3d__grid.has-spotlight li:not(.is-spotlight) {
    filter: brightness(0.9) saturate(0.92);
    opacity: 0.78;
    transform:
      rotateY(calc(var(--phone-i) * (8deg + var(--showcase-p, 0) * 6deg)))
      rotateX(calc(28deg * (1 - var(--showcase-p, 0))))
      translateZ(calc(-120px + var(--showcase-p, 0) * 55px))
      translateY(calc(40px * (1 - var(--showcase-p, 0)) + 20px))
      scale(0.92);
  }

  .phone-showcase-3d__grid.has-spotlight li.is-spotlight {
    filter: brightness(1.05) drop-shadow(0 14px 32px rgba(119, 9, 199, 0.38));
    opacity: 1;
    transform:
      rotateY(0deg)
      rotateX(calc(6deg * (1 - var(--showcase-p, 0))))
      translateZ(calc(52px + var(--showcase-p, 0) * 168px))
      translateY(calc(2px * (1 - var(--showcase-p, 0))))
      scale(1.12);
  }

  .phone-showcase-3d__grid .phone-bezel--sm {
    box-shadow:
      0 20px 40px -8px rgba(37, 16, 99, 0.35),
      0 0 0 1px rgba(255, 255, 255, 0.12) inset;
    transition: box-shadow 0.45s var(--ease-out), transform 0.68s var(--ease-out);
  }

  .split--platform .phone-showcase-3d__grid .phone-bezel--sm img {
    width: min(108px, 11vw);
    max-width: none;
    transition: width 0.5s var(--ease-out);
  }

  .split--platform .phone-showcase-3d__grid:not(.has-spotlight) li:nth-child(3) .phone-bezel--sm img {
    width: min(118px, 12vw);
  }

  .split--platform .phone-showcase-3d__grid.has-spotlight li.is-spotlight .phone-bezel--sm img {
    width: min(128px, 13vw);
  }
}

@media (max-width: 960px) {
  .phone-showcase-3d {
    min-height: auto;
    perspective: none;
  }

  .phone-showcase-3d__inner::before {
    bottom: 18%;
    height: 100px;
    opacity: 0.7;
  }

  .phone-showcase-3d__arrow {
    width: 40px;
    height: 40px;
  }

  .phone-showcase-3d__hint {
    display: none;
  }

  .phone-showcase-3d__grid:not(.has-spotlight) li {
    transform: none !important;
  }

  .phone-showcase-3d__grid li {
    transition: transform 0.5s var(--ease-out), opacity 0.4s ease, filter 0.4s ease;
  }

  .phone-showcase-3d__grid.has-spotlight li:not(.is-spotlight) {
    opacity: 0.42 !important;
    transform: scale(0.86) !important;
    filter: grayscale(0.12);
  }

  .phone-showcase-3d__grid.has-spotlight li.is-spotlight {
    opacity: 1 !important;
    transform: scale(1.07) !important;
    filter: none;
    z-index: 10;
  }
}

.hub {
  position: relative;
  width: min(340px, 100%);
  aspect-ratio: 1;
}

.hub-center {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--color-primary), var(--color-secondary));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  color: white;
  font-weight: 700;
  font-size: 0.85rem;
  box-shadow: 0 20px 50px rgba(119, 9, 199, 0.4);
  z-index: 2;
}

.hub-center img {
  filter: brightness(0) invert(1);
}

.orbit {
  position: absolute;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--color-text);
  box-shadow: var(--shadow-md);
  animation: orbit-float 5s ease-in-out infinite;
}

.orbit span {
  text-align: center;
  padding: 0 4px;
}

.orbit-1 {
  left: 8%;
  top: 12%;
  animation-delay: 0s;
}

.orbit-2 {
  right: 5%;
  top: 20%;
  animation-delay: 0.8s;
}

.orbit-3 {
  left: 5%;
  bottom: 18%;
  animation-delay: 1.6s;
}

.orbit-4 {
  right: 12%;
  bottom: 22%;
  animation-delay: 0.4s;
}

.orbit-5 {
  left: 42%;
  top: 0;
  animation-delay: 1.2s;
}

@keyframes orbit-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

.split-copy h2 {
  font-size: clamp(1.6rem, 2.5vw, 2rem);
  margin: 0 0 0.75rem;
}

.split-copy p {
  color: var(--color-muted);
  margin: 0 0 1rem;
}

.checklist {
  list-style: none;
  margin: 0;
  padding: 0;
}

.checklist li {
  position: relative;
  padding-left: 1.6rem;
  margin-bottom: 0.6rem;
  font-size: 0.95rem;
  color: var(--color-text);
}

.checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
}

/* Z rows */
.z-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: center;
}

.z-row-reverse .z-copy {
  order: 1;
}

.z-row-reverse .z-visual {
  order: 2;
}

.z-copy h2 {
  font-size: clamp(1.6rem, 2.5vw, 2rem);
  margin: 0 0 0.75rem;
}

.z-copy p {
  color: var(--color-muted);
  margin: 0 0 1rem;
}

.map-card-inner {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  padding: 1rem;
}

.map-card-pro .map-card-inner {
  position: relative;
  background: linear-gradient(155deg, rgba(255, 255, 255, 0.97), rgba(249, 250, 251, 0.99));
  border: 1px solid rgba(119, 9, 199, 0.14);
  box-shadow:
    0 24px 48px -18px rgba(119, 9, 199, 0.28),
    0 0 0 1px rgba(255, 255, 255, 0.8) inset;
  backdrop-filter: blur(10px);
}

.map-card-pro .map-card-inner::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background-image:
    linear-gradient(rgba(119, 9, 199, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(119, 9, 199, 0.045) 1px, transparent 1px);
  background-size: 22px 22px;
  pointer-events: none;
  opacity: 0.85;
}

.section-stations .istasyon-lead {
  line-height: 1.65;
}

.istasyon-stat-chip {
  display: inline-flex;
  align-items: center;
  padding: 0.15rem 0.5rem;
  margin-right: 0.4rem;
  margin-bottom: 0.15rem;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  color: var(--color-white);
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  border-radius: 0.4rem;
  box-shadow: 0 4px 14px rgba(119, 9, 199, 0.3);
  vertical-align: middle;
}

.map-toolbar {
  display: flex;
  flex-direction: column;
  gap: 4px;
  position: absolute;
  left: 1.5rem;
  top: 1.5rem;
  z-index: 1;
}

.map-card-inner {
  position: relative;
}

.map-zoom {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--color-border);
  background: var(--color-white);
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  color: var(--color-primary);
  transition: background 0.2s, transform 0.2s;
}

.map-zoom:hover {
  background: var(--color-surface);
  transform: scale(1.05);
}

.map-svg {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-md);
}

.map-dot {
  animation: map-dot 3s ease-in-out infinite;
}

.map-dot:nth-of-type(2) {
  animation-delay: 0.4s;
}

.map-dot:nth-of-type(3) {
  animation-delay: 0.8s;
}

@keyframes map-dot {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.72;
  }
}

.map-caption {
  margin: 0.75rem 0 0;
  font-size: 0.8rem;
  color: var(--color-muted);
  text-align: center;
}

/* API card */
.api-window {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-lg);
  background: #1e1b4b;
  color: #e0e7ff;
}

.api-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0.65rem 1rem;
  background: #312e81;
  font-size: 0.75rem;
}

.api-bar span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #f87171;
}

.api-bar span:nth-child(2) {
  background: #fbbf24;
}

.api-bar span:nth-child(3) {
  background: #4ade80;
}

.api-bar code {
  margin-left: auto;
  font-family: ui-monospace, monospace;
  color: #c4b5fd;
}

.api-pre {
  margin: 0;
  padding: 1rem;
  font-size: 0.78rem;
  line-height: 1.5;
  overflow-x: auto;
}

.api-pre .k {
  color: #a5b4fc;
}

.api-pre .b {
  color: #86efac;
}

.api-pre .n {
  color: #fcd34d;
}

.api-pre .s {
  color: #f9a8d4;
}

.api-pre .c {
  color: #94a3b8;
  font-style: italic;
}

/* Partners */
.partner-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

.partner-pill {
  padding: 0.6rem 1.2rem;
  border-radius: 999px;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  font-weight: 600;
  font-size: 0.875rem;
  transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
}

.partner-pill:hover {
  transform: translateY(-2px);
  border-color: rgba(119, 9, 199, 0.3);
  box-shadow: var(--shadow-sm);
}

/* CTA */
.cta-section {
  padding-bottom: 2rem;
}

.cta-box {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: clamp(2rem, 4vw, 3rem);
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary) 55%, var(--color-accent));
  color: white;
  box-shadow: var(--shadow-lg);
}

.cta-content h2 {
  margin: 0 0 0.5rem;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
}

.cta-content p {
  margin: 0;
  opacity: 0.92;
  max-width: 28rem;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* Footer */
.site-footer {
  position: relative;
  margin-top: 0;
  padding: 0 0 1.75rem;
  background: linear-gradient(180deg, #f3f0f7 0%, var(--color-surface) 48%, #f4f4f5 100%);
  border-top: 1px solid var(--color-border);
  overflow: hidden;
}

.footer-accent-line {
  height: 4px;
  width: 100%;
  background: linear-gradient(90deg, var(--color-primary), var(--color-accent), var(--color-secondary));
  opacity: 0.95;
}

.footer-wrap {
  padding-top: clamp(2.25rem, 4vw, 3.25rem);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(220px, 1.35fr) repeat(4, minmax(0, 1fr));
  gap: clamp(1.5rem, 3vw, 2.5rem);
  align-items: start;
}

.footer-col-brand {
  padding-right: clamp(0.5rem, 2vw, 1.5rem);
}

.footer-logo-link {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  text-decoration: none;
  color: inherit;
  margin-bottom: 1rem;
  transition: opacity 0.2s;
}

.footer-logo-link:hover {
  opacity: 0.88;
  text-decoration: none;
}

.footer-logo-img {
  border-radius: var(--radius-md);
  box-shadow: 0 8px 24px rgba(119, 9, 199, 0.22);
  flex-shrink: 0;
}

.footer-logo-text {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.footer-logo-name {
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--color-text);
}

.footer-logo-sub {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--color-secondary);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.footer-lead {
  margin: 0 0 1.25rem;
  font-size: 0.88rem;
  line-height: 1.65;
  color: var(--color-muted);
  max-width: 22rem;
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.footer-social-btn {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  background: var(--color-white);
  border: 1px solid var(--color-border);
  color: var(--color-muted);
  transition: color 0.2s, border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}

.footer-social-btn:hover {
  color: var(--color-primary);
  border-color: rgba(119, 9, 199, 0.35);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(119, 9, 199, 0.12);
  text-decoration: none;
}

.footer-heading {
  margin: 0 0 1rem;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-text);
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-links li {
  margin-bottom: 0.55rem;
}

.footer-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-muted);
  text-decoration: none;
  transition: color 0.2s, padding-left 0.2s;
  display: inline-block;
  border-left: 2px solid transparent;
  padding-left: 0;
}

.footer-links a:hover {
  color: var(--color-primary);
  padding-left: 6px;
  border-left-color: var(--color-primary);
  text-decoration: none;
}

.footer-col-contact .footer-heading {
  margin-bottom: 0.85rem;
}

.footer-contact {
  list-style: none;
  margin: 0 0 1.15rem;
  padding: 0;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  margin-bottom: 0.75rem;
  font-size: 0.88rem;
}

.footer-contact-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  background: rgba(119, 9, 199, 0.08);
  color: var(--color-primary);
}

.footer-contact a {
  color: var(--color-text);
  font-weight: 600;
  text-decoration: none;
  word-break: break-word;
}

.footer-contact a:hover {
  color: var(--color-primary);
  text-decoration: underline;
}

.footer-contact-text {
  color: var(--color-muted);
  line-height: 1.5;
  padding-top: 0.35rem;
}

.footer-app-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.1rem;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--color-white);
  text-decoration: none;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  box-shadow: 0 8px 22px rgba(119, 9, 199, 0.35);
  transition: transform 0.2s var(--ease-out), box-shadow 0.2s;
}

.footer-app-cta:hover {
  color: var(--color-white);
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(119, 9, 199, 0.42);
}

.footer-app-cta-icon {
  font-size: 1rem;
  line-height: 1;
}

.footer-divider {
  height: 1px;
  margin: clamp(1.75rem, 3vw, 2.5rem) 0 1.25rem;
  background: linear-gradient(90deg, transparent, var(--color-border) 15%, var(--color-border) 85%, transparent);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem 1.5rem;
}

.footer-copy {
  margin: 0;
  flex: 1 1 240px;
  font-size: 0.8rem;
  line-height: 1.55;
  color: var(--color-muted);
}

.footer-copy strong {
  color: var(--color-text);
  font-weight: 700;
}

.footer-copy-sep {
  margin: 0 0.35rem;
  opacity: 0.5;
}

.footer-copy-note {
  display: inline;
  font-size: 0.76rem;
  opacity: 0.9;
}

.footer-legal-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 1.1rem;
}

.footer-legal-nav a {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--color-muted);
  text-decoration: none;
  position: relative;
}

.footer-legal-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 1px;
  background: var(--color-primary);
  transition: width 0.25s var(--ease-out);
}

.footer-legal-nav a:hover {
  color: var(--color-primary);
  text-decoration: none;
}

.footer-legal-nav a:hover::after {
  width: 100%;
}

.footer-top {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  color: var(--color-primary);
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s, border-color 0.25s, background 0.25s;
  box-shadow: var(--shadow-sm);
}

.footer-top:hover {
  text-decoration: none;
  transform: translateY(-3px);
  border-color: rgba(119, 9, 199, 0.3);
  background: rgba(119, 9, 199, 0.04);
  box-shadow: 0 10px 28px rgba(119, 9, 199, 0.12);
}

.footer-top-icon {
  font-size: 1.1rem;
  line-height: 1;
}

@media (max-width: 1100px) {
  .footer-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .footer-col-brand {
    grid-column: 1 / -1;
    max-width: 32rem;
    padding-right: 0;
  }
}

@media (max-width: 720px) {
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-col-brand {
    grid-column: 1 / -1;
  }

  .footer-col-contact {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-top {
    align-self: flex-end;
  }
}

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

  .footer-copy-note {
    display: block;
    margin-top: 0.35rem;
  }

  .footer-copy-sep {
    display: none;
  }
}

/* FAB */
.fab-wrap {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 90;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}

.fab-bubble {
  max-width: 220px;
  padding: 0.85rem 1rem;
  background: var(--color-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-border);
  font-size: 0.85rem;
  opacity: 0;
  transform: translateY(8px) scale(0.96);
  pointer-events: none;
  transition: opacity 0.3s, transform 0.3s var(--ease-out);
}

.fab-bubble.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.fab-bubble p {
  margin: 0 0 0.5rem;
  font-weight: 600;
  color: var(--color-text);
}

.fab-link {
  font-weight: 600;
  font-size: 0.8rem;
}

.fab-buttons {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.fab {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  text-decoration: none;
  color: white;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s;
}

.fab:hover {
  transform: scale(1.08);
  text-decoration: none;
  color: white;
}

.fab-chat {
  background: linear-gradient(145deg, var(--color-primary), var(--color-secondary));
}

.fab-locate {
  background: linear-gradient(145deg, var(--color-secondary), var(--color-accent));
}

.fab-wa {
  background: #25d366;
}

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

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

.reveal[data-delay="60"] {
  transition-delay: 0.06s;
}

.reveal[data-delay="80"] {
  transition-delay: 0.08s;
}

.reveal[data-delay="100"] {
  transition-delay: 0.1s;
}

.reveal[data-delay="120"] {
  transition-delay: 0.12s;
}

.reveal[data-delay="160"] {
  transition-delay: 0.16s;
}

.reveal[data-delay="180"] {
  transition-delay: 0.18s;
}

.reveal[data-delay="40"] {
  transition-delay: 0.04s;
}

.reveal[data-delay="140"] {
  transition-delay: 0.14s;
}

/* ——— Responsive ——— */
@media (max-width: 1080px) {
  .header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.75rem;
  }

  .nav {
    justify-self: stretch;
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--color-border);
    padding: 1rem 1.25rem 1.25rem;
    transform: translateY(-120%);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.4s var(--ease-out), opacity 0.3s, visibility 0.3s;
    max-height: min(72vh, 520px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .nav.is-open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .nav-list {
    flex-direction: column;
    align-items: stretch;
    flex-wrap: nowrap;
    gap: 0;
  }

  .nav-list > li {
    border-bottom: 1px solid var(--color-border);
  }

  .nav-list a,
  .nav-dropdown-btn {
    display: block;
    padding: 0.85rem 0;
    white-space: normal;
    font-size: 0.95rem;
  }

  .has-dropdown {
    padding-bottom: 0.5rem;
  }

  .dropdown {
    position: static;
    margin-top: 0;
    box-shadow: none;
    border: none;
    padding-left: 0.5rem;
  }

  .dropdown[hidden] {
    display: none !important;
  }

  .menu-toggle {
    display: flex;
  }

  .header-actions .btn-header-cta,
  .header-actions .header-store {
    display: none;
  }

  .nav-mobile-cta {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    margin-top: 1.25rem;
    padding-top: 1rem;
    border-top: 1px solid var(--color-border);
  }

  .btn-block {
    width: 100%;
  }
}

@media (max-width: 960px) {
  .hero-grid,
  .split,
  .z-row,
  .z-row-reverse {
    grid-template-columns: 1fr;
  }

  .z-row-reverse .z-copy,
  .z-row-reverse .z-visual {
    order: unset;
  }

  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .stats-grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-grid-6 {
    grid-template-columns: repeat(2, 1fr);
  }

  .feature-grid-9 {
    grid-template-columns: repeat(2, 1fr);
  }

  .tab-panel-grid {
    grid-template-columns: 1fr;
  }

  .float-a,
  .float-b,
  .float-c {
    display: none;
  }

  .hero-visual {
    min-height: 220px;
  }
}

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

  .stats-grid-4,
  .stats-grid-6 {
    grid-template-columns: 1fr;
  }

  .tablist {
    flex-direction: column;
    border-radius: var(--radius-lg);
  }

  .mock-body {
    grid-template-columns: 1fr;
  }

  .mock-sidebar {
    display: none;
  }

  .cta-box {
    flex-direction: column;
    text-align: center;
  }

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

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  html {
    scroll-behavior: auto;
  }

  .marquee {
    animation: none;
    width: 100%;
    flex-wrap: wrap;
    justify-content: center;
    transform: none;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .tab-panel.is-active {
    animation: none;
  }

  .fuel-step {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
  }

  .fuel-timeline-line {
    transform: scaleY(1) !important;
    transition: none !important;
  }

  .section-badge-shine::after {
    animation: none !important;
  }

  .campaign-hero-shine {
    animation: none !important;
    opacity: 0.1;
  }

  .split--platform .phone-thumb-card,
  .split--platform.reveal.is-visible .phone-thumb-card {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
  }

  #iletisim .cta-box::before {
    animation: none !important;
  }

  .phone-showcase-3d {
    perspective: none !important;
  }

  .phone-showcase-3d__grid:not(.has-spotlight) li {
    transform: none !important;
  }

  .phone-showcase-3d__grid.has-spotlight li {
    transition: none !important;
  }

  .phone-showcase-3d__grid.has-spotlight li:not(.is-spotlight) {
    opacity: 0.5 !important;
    transform: scale(0.9) !important;
    filter: grayscale(0.1);
  }

  .phone-showcase-3d__grid.has-spotlight li.is-spotlight {
    opacity: 1 !important;
    transform: scale(1.05) !important;
    filter: none;
    z-index: 10;
  }
}

/* ============================================================
   Premium landing refresh — scoped to high-impact sections only
   (Hero, stats, features, campaigns, platform, download, final CTA)
   No HTML structure changes required; inherits existing tokens.
   ============================================================ */

/* — Hero: depth, typography, glass badge — */
#hero.hero {
  position: relative;
  isolation: isolate;
  padding-top: clamp(2.35rem, 5.5vw, 4.75rem);
  padding-bottom: clamp(3rem, 9vw, 6rem);
}

#hero.hero::before {
  content: "";
  position: absolute;
  inset: -25% -18% 35% -18%;
  background:
    radial-gradient(ellipse 58% 48% at 72% 8%, rgba(119, 9, 199, 0.13), transparent 68%),
    radial-gradient(ellipse 42% 38% at 8% 55%, rgba(56, 189, 248, 0.07), transparent 62%);
  pointer-events: none;
  z-index: 0;
}

#hero.hero > .container {
  position: relative;
  z-index: 1;
}

#hero .hero-grid {
  gap: clamp(1.75rem, 4.5vw, 3.5rem);
}

#hero .hero-title {
  letter-spacing: -0.038em;
  line-height: 1.07;
}

#hero .hero-lead {
  font-size: clamp(1.02rem, 1.2vw, 1.12rem);
  line-height: 1.72;
  max-width: 36rem;
}

#hero .badge {
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(119, 9, 199, 0.14);
  box-shadow: 0 4px 28px rgba(119, 9, 199, 0.08);
}

/* — Stats: glass cards, stronger hierarchy — */
.stats-section {
  position: relative;
  overflow: hidden;
}

.stats-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 90% 55% at 50% -25%, rgba(119, 9, 199, 0.065), transparent 58%);
  pointer-events: none;
}

.stats-section > .container {
  position: relative;
  z-index: 1;
}

.stats-section .stats-kicker {
  letter-spacing: 0.14em;
  font-size: 0.7rem;
  text-transform: uppercase;
  font-weight: 800;
  color: var(--color-secondary);
  margin-bottom: 0.35rem;
}

.stats-section .stats-grid {
  gap: clamp(1rem, 2vw, 1.35rem);
}

.stats-section .stat-card {
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.95);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.95) inset,
    0 14px 44px -10px rgba(119, 9, 199, 0.14);
}

.stats-section .stat-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 1) inset,
    0 22px 56px -12px rgba(119, 9, 199, 0.2);
}

.stats-section .stat-value {
  font-size: clamp(2.35rem, 4vw, 2.75rem);
}

/* — Features: layered cards, subtle 3D hover — */
#ozellikler .section-head {
  max-width: 42rem;
  margin-bottom: clamp(2.5rem, 5vw, 3.85rem);
}

#ozellikler .section-head h2 {
  letter-spacing: -0.025em;
}

#ozellikler .feature-grid {
  gap: clamp(1.2rem, 2.4vw, 1.65rem);
}

#ozellikler .feature-card {
  position: relative;
  overflow: hidden;
  transform-style: preserve-3d;
  background: linear-gradient(158deg, rgba(255, 255, 255, 0.98) 0%, rgba(249, 250, 251, 1) 100%);
  box-shadow:
    0 2px 4px rgba(15, 23, 42, 0.04),
    0 14px 36px -10px rgba(119, 9, 199, 0.12);
}

#ozellikler .feature-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(125deg, rgba(119, 9, 199, 0.06) 0%, transparent 48%);
  opacity: 0;
  transition: opacity 0.4s var(--ease-out);
  pointer-events: none;
}

#ozellikler .feature-card:hover::before {
  opacity: 1;
}

#ozellikler .feature-card:hover {
  transform: translateY(-5px) perspective(920px) rotateX(2.5deg) rotateY(-2.5deg);
  border-color: rgba(119, 9, 199, 0.22);
  box-shadow:
    0 26px 52px -14px rgba(119, 9, 199, 0.18),
    0 0 0 1px rgba(119, 9, 199, 0.06);
}

#ozellikler .feature-icon {
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
}

#ozellikler .feature-card:hover .feature-icon {
  transform: scale(1.06);
  box-shadow:
    inset 0 0 0 1px rgba(119, 9, 199, 0.14),
    0 10px 24px rgba(119, 9, 199, 0.12);
}

#ozellikler .feature-card h3 {
  letter-spacing: -0.02em;
}

/* — Campaigns showcase: deeper hero, device lift — */
#kampanyalar .campaign-hero {
  border: 1px solid rgba(255, 255, 255, 0.55);
  box-shadow:
    0 4px 6px rgba(37, 16, 99, 0.04),
    0 28px 56px -16px rgba(119, 9, 199, 0.22);
}

#kampanyalar .campaign-hero-glow {
  opacity: 0.85;
}

#kampanyalar .campaign-device-frame {
  transition: transform 0.45s var(--ease-out), box-shadow 0.45s var(--ease-out);
}

#kampanyalar .campaign-hero:hover .campaign-device-frame {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 28px 48px -12px rgba(37, 16, 99, 0.28);
}

#kampanyalar .campaign-card:hover {
  transform: translateY(-5px);
  border-color: rgba(119, 9, 199, 0.24);
  box-shadow: 0 18px 40px -14px rgba(119, 9, 199, 0.16);
}

/* — Product / platform: glass copy rail + screen depth — */
#platform.section-platform {
  background: linear-gradient(180deg, #f1ecf8 0%, #faf8fc 42%, #ffffff 100%);
}

#platform .split-copy {
  padding: clamp(1.35rem, 3.2vw, 2.15rem);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.58);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.92);
  box-shadow: 0 8px 32px rgba(119, 9, 199, 0.07);
}

#platform .split-copy h2 {
  letter-spacing: -0.025em;
}

#platform .phone-bezel--sm {
  transition: transform 0.45s var(--ease-out), box-shadow 0.45s var(--ease-out);
}

#platform .phone-thumb-card:hover .phone-bezel--sm {
  transform: translateY(-8px) scale(1.04);
  box-shadow: 0 22px 44px -10px rgba(119, 9, 199, 0.26);
}

/* — Download block: premium panel + conversion focus — */
#indir .download-block {
  position: relative;
  overflow: hidden;
  background: linear-gradient(
    122deg,
    rgba(119, 9, 199, 0.09) 0%,
    rgba(255, 255, 255, 0.94) 40%,
    rgba(209, 165, 229, 0.16) 100%
  );
  border: 1px solid rgba(119, 9, 199, 0.16);
  box-shadow:
    0 2px 4px rgba(15, 23, 42, 0.03),
    0 26px 52px -14px rgba(119, 9, 199, 0.18);
}

#indir .download-block::after {
  content: "";
  position: absolute;
  top: -45%;
  right: -18%;
  width: min(52%, 380px);
  height: 120%;
  background: radial-gradient(circle, rgba(119, 9, 199, 0.1) 0%, transparent 68%);
  pointer-events: none;
}

#indir .download-copy,
#indir .store-badges {
  position: relative;
  z-index: 1;
}

#indir .download-copy h2 {
  font-size: clamp(1.45rem, 2.8vw, 2.05rem);
  letter-spacing: -0.025em;
  line-height: 1.2;
}

#indir .store-badge {
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out);
}

#indir .store-badge:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.22);
}

/* — Final CTA: mesh glow, refined conversion strip — */
#iletisim .cta-box {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.28);
  box-shadow:
    0 4px 8px rgba(37, 16, 99, 0.12),
    0 36px 72px -14px rgba(119, 9, 199, 0.38);
}

#iletisim .cta-box::before {
  content: "";
  position: absolute;
  inset: -45%;
  background:
    radial-gradient(circle at 18% 28%, rgba(255, 255, 255, 0.2) 0%, transparent 40%),
    radial-gradient(circle at 88% 72%, rgba(56, 189, 248, 0.22) 0%, transparent 36%);
  animation: premium-cta-mesh 20s ease-in-out infinite alternate;
  pointer-events: none;
}

@keyframes premium-cta-mesh {
  0% {
    transform: translate(0, 0) rotate(0deg);
    opacity: 0.9;
  }
  100% {
    transform: translate(-3%, 4%) rotate(3deg);
    opacity: 1;
  }
}

#iletisim .cta-content,
#iletisim .cta-actions {
  position: relative;
  z-index: 1;
}

#iletisim .cta-content h2 {
  letter-spacing: -0.03em;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.12);
}

#iletisim .btn-white {
  font-weight: 700;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.14);
}

#iletisim .btn-ghost-light {
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

/* Slightly longer, calmer scroll reveals on priority sections only */
#hero .reveal,
.stats-section .reveal,
#ozellikler .reveal,
#kampanyalar .reveal,
#platform .reveal,
#indir .reveal,
#iletisim .reveal {
  transition-duration: 0.82s;
}
