/* ==========================================================================
   ClickChat — tanıtım sitesi stil sistemi
   --------------------------------------------------------------------------
   Renkler, yarıçaplar, cam (glass) yüzeyler ve tipografi ağırlıkları
   uygulamanın kendi tema dosyasından alındı.
   Harici font/ikon/CSS bağımlılığı yoktur; site tek başına çalışır.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Tasarım değişkenleri
   -------------------------------------------------------------------------- */
:root {
  /* Marka renkleri (app ile birebir) */
  --bg: #090d16;          /* kBg      — deep obsidian */
  --surface: #0f1423;     /* kSurface */
  --card: #14192b;        /* kCard    */
  --violet: #7c3aed;      /* kPurple  */
  --violet-soft: #8b5cf6; /* splash spinner */
  --pink: #db2777;        /* kPink    */
  --green: #10b981;       /* kGreen   */
  --red: #ef4444;         /* kRed     */
  --blue: #3b82f6;        /* kBlue    */
  --gold: #f59e0b;        /* kGold    */

  /* Metin katmanları — app'te vurgu renkle değil, ağırlık + alfa ile yapılır */
  --tx-1: #ffffff;
  --tx-2: rgba(255, 255, 255, 0.72);
  --tx-3: rgba(255, 255, 255, 0.54);
  --tx-4: rgba(255, 255, 255, 0.56);

  /* Cam yüzeyler */
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.14);
  --glass: rgba(255, 255, 255, 0.035);
  --glass-2: rgba(255, 255, 255, 0.06);

  /* Yarıçaplar (app: 12–14 buton/çip, 16–20 kart, 24–28 sheet) */
  --r-sm: 10px;
  --r-md: 14px;
  --r-lg: 20px;
  --r-xl: 28px;
  --r-pill: 999px;

  /* Işıma — app gölge yerine renkli düşük alfa glow kullanır */
  --glow-violet: 0 10px 30px rgba(124, 58, 237, 0.35);
  --glow-gold: 0 10px 30px rgba(245, 158, 11, 0.22);

  --container: 1160px;
  --nav-h: 68px;

  --font: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text",
    "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;

  --ease: cubic-bezier(0.33, 1, 0.68, 1); /* easeOutCubic */
}

/* --------------------------------------------------------------------------
   2. Sıfırlama ve temel
   -------------------------------------------------------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--tx-1);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

ul,
ol {
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4,
p {
  margin: 0;
}

button {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  cursor: pointer;
}

:focus-visible {
  outline: 2px solid var(--violet-soft);
  outline-offset: 3px;
  border-radius: 6px;
}

::selection {
  background: rgba(124, 58, 237, 0.4);
  color: #fff;
}

/* Ekran okuyucuya özel */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  z-index: 200;
  padding: 12px 18px;
  font-size: 14px;
  font-weight: 800;
  background: var(--violet);
  border-radius: var(--r-md);
  transition: top 0.2s var(--ease);
}

.skip-link:focus {
  top: 16px;
}

/* --------------------------------------------------------------------------
   3. Yerleşim
   -------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 24px;
}

section {
  position: relative;
  scroll-margin-top: calc(var(--nav-h) + 20px);
}

.section {
  padding-block: 104px;
}

.section--tight {
  padding-block: 72px;
}

.divider {
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.09) 20%,
    rgba(255, 255, 255, 0.09) 80%,
    transparent
  );
  border: 0;
  margin: 0;
}

/* Arka plan auraları — app'teki RadialGradient(kPurple 30α, kPink 10α) */
.aura {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  filter: blur(10px);
}

.aura--hero {
  top: -420px;
  left: 50%;
  width: 1100px;
  height: 1100px;
  transform: translateX(-50%);
  background: radial-gradient(
    circle,
    rgba(124, 58, 237, 0.28) 0%,
    rgba(219, 39, 119, 0.11) 42%,
    transparent 68%
  );
}

.aura--left {
  top: 12%;
  left: -280px;
  width: 620px;
  height: 620px;
  background: radial-gradient(
    circle,
    rgba(124, 58, 237, 0.16) 0%,
    transparent 66%
  );
}

.aura--right {
  top: 6%;
  right: -300px;
  width: 660px;
  height: 660px;
  background: radial-gradient(
    circle,
    rgba(219, 39, 119, 0.14) 0%,
    transparent 66%
  );
}

.aura--gold {
  top: -180px;
  right: -160px;
  width: 620px;
  height: 620px;
  background: radial-gradient(
    circle,
    rgba(245, 158, 11, 0.14) 0%,
    transparent 65%
  );
}

/* --------------------------------------------------------------------------
   4. Tipografi
   -------------------------------------------------------------------------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(196, 181, 253, 0.9);
}

.eyebrow::before {
  content: "";
  width: 20px;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--violet), var(--pink));
}

h1,
.h1 {
  font-size: clamp(38px, 6.4vw, 68px);
  font-weight: 900;
  line-height: 1.03;
  letter-spacing: -0.032em;
}

h2,
.h2 {
  font-size: clamp(29px, 4vw, 44px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.028em;
}

h3,
.h3 {
  font-size: 19px;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -0.015em;
}

.lead {
  max-width: 58ch;
  font-size: clamp(16px, 1.5vw, 18.5px);
  line-height: 1.62;
  color: var(--tx-2);
}

.section-head {
  max-width: 720px;
  margin-bottom: 56px;
}

.section-head--center {
  margin-inline: auto;
  text-align: center;
}

.section-head p {
  margin-top: 18px;
  color: var(--tx-2);
  font-size: 17px;
  line-height: 1.62;
}

.grad-text {
  background: linear-gradient(100deg, #a78bfa 0%, #f472b6 55%, #fbbf24 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* --------------------------------------------------------------------------
   5. Butonlar ve çipler
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 14px 22px;
  font-size: 14.5px;
  font-weight: 800;
  letter-spacing: -0.01em;
  border-radius: var(--r-md);
  border: 1px solid transparent;
  transition: transform 0.18s var(--ease), box-shadow 0.22s var(--ease),
    background 0.22s var(--ease), border-color 0.22s var(--ease);
  white-space: nowrap;
}

.btn:active {
  transform: scale(0.97);
}

.btn svg {
  flex: none;
  width: 18px;
  height: 18px;
}

.btn--primary {
  background: linear-gradient(135deg, var(--violet) 0%, var(--pink) 100%);
  box-shadow: var(--glow-violet);
  color: #fff;
}

.btn--primary:hover {
  box-shadow: 0 14px 38px rgba(124, 58, 237, 0.48);
  transform: translateY(-2px);
}

.btn--ghost {
  background: var(--glass-2);
  border-color: var(--line-strong);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
}

.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.22);
  transform: translateY(-2px);
}

.btn--sm {
  padding: 10px 16px;
  font-size: 13px;
  border-radius: 12px;
  min-height: 44px;
}

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

/* Mağaza butonları */
.stores {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.store-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 20px 12px 18px;
  background: var(--glass-2);
  border: 1px solid var(--line-strong);
  border-radius: var(--r-md);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  transition: transform 0.18s var(--ease), background 0.22s var(--ease),
    border-color 0.22s var(--ease);
}

.store-btn:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.24);
}

.store-btn svg {
  width: 24px;
  height: 24px;
  flex: none;
}

.store-btn span {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--tx-4);
}

.store-btn b {
  display: block;
  font-size: 15.5px;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.25;
}

.store-btn[aria-disabled="true"] {
  cursor: default;
}

.store-btn[aria-disabled="true"]:hover {
  transform: none;
}

/* Çipler — app'teki _Chip: 30α tint + eşleşen ikon/metin rengi */
.chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 13px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--tx-2);
  background: var(--glass);
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
}

.chip svg {
  width: 15px;
  height: 15px;
  flex: none;
}

.chip--violet {
  color: #c4b5fd;
  background: rgba(124, 58, 237, 0.14);
  border-color: rgba(124, 58, 237, 0.32);
}

.chip--green {
  color: #6ee7b7;
  background: rgba(16, 185, 129, 0.13);
  border-color: rgba(16, 185, 129, 0.3);
}

.chip--pink {
  color: #f9a8d4;
  background: rgba(219, 39, 119, 0.13);
  border-color: rgba(219, 39, 119, 0.3);
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

/* --------------------------------------------------------------------------
   6. Cam kart
   -------------------------------------------------------------------------- */
.glass {
  position: relative;
  background: var(--glass);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
}

.glass--card {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.055) 0%,
    rgba(255, 255, 255, 0.022) 100%
  );
}

/* --------------------------------------------------------------------------
   7. Üst menü
   -------------------------------------------------------------------------- */
.header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--nav-h);
  border-bottom: 1px solid transparent;
  transition: background 0.25s var(--ease), border-color 0.25s var(--ease);
}

.header.is-stuck {
  background: rgba(15, 20, 35, 0.82);
  border-bottom-color: var(--line);
  -webkit-backdrop-filter: blur(30px) saturate(160%);
  backdrop-filter: blur(30px) saturate(160%);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  height: var(--nav-h);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-size: 17px;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.brand img {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  border: 1px solid var(--line-strong);
}

.nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav a {
  padding: 9px 13px;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--tx-3);
  border-radius: 11px;
  transition: color 0.2s var(--ease), background 0.2s var(--ease);
}

.nav a:hover {
  color: var(--tx-1);
  background: var(--glass-2);
}

.nav a.is-active {
  color: #fff;
  background: rgba(124, 58, 237, 0.18);
}

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

/* Mobil menü */
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  background: var(--glass-2);
  border: 1px solid var(--line-strong);
  border-radius: 13px;
}

.nav-toggle svg {
  width: 20px;
  height: 20px;
}

.nav-toggle .ic-close,
.nav-toggle[aria-expanded="true"] .ic-menu {
  display: none;
}

.nav-toggle[aria-expanded="true"] .ic-close {
  display: block;
}

.mobile-nav {
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  z-index: 99;
  display: none;
  padding: 16px 24px 24px;
  background: rgba(15, 20, 35, 0.96);
  border-bottom: 1px solid var(--line);
  -webkit-backdrop-filter: blur(30px);
  backdrop-filter: blur(30px);
}

.mobile-nav.is-open {
  display: block;
}

.mobile-nav a {
  display: block;
  padding: 14px 4px;
  font-size: 15.5px;
  font-weight: 800;
  letter-spacing: -0.02em;
  border-bottom: 1px solid var(--line);
}

.mobile-nav a:last-of-type {
  border-bottom: 0;
}

.mobile-nav .btn {
  margin-top: 16px;
}

/* --------------------------------------------------------------------------
   7b. Dil değiştirici
   -------------------------------------------------------------------------- */
.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  padding: 3px;
  background: var(--glass-2);
  border: 1px solid var(--line-strong);
  border-radius: var(--r-pill);
}

.lang-switch a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  min-height: 34px;
  padding: 0 10px;
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: 0.05em;
  color: var(--tx-3);
  border-radius: var(--r-pill);
  transition: color 0.18s var(--ease), background 0.18s var(--ease);
}

.lang-switch a:hover {
  color: var(--tx-1);
}

.lang-switch a[aria-current="true"] {
  color: #fff;
  background: var(--violet);
}

/* --------------------------------------------------------------------------
   8. Hero
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  padding-top: calc(var(--nav-h) + 76px);
  padding-bottom: 96px;
  overflow: hidden;
}

.hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(0, 0.94fr);
  gap: 56px;
  align-items: center;
}

.hero h1 {
  margin-bottom: 22px;
}

.hero .lead {
  margin-bottom: 32px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 26px;
  padding: 7px 15px 7px 11px;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--tx-2);
  background: var(--glass-2);
  border: 1px solid var(--line-strong);
  border-radius: var(--r-pill);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
}

.badge b {
  color: #fff;
  font-weight: 800;
}

.dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.2);
  animation: pulse 2.4s var(--ease) infinite;
}

@keyframes pulse {
  0%,
  100% {
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.2);
  }
  50% {
    box-shadow: 0 0 0 7px rgba(16, 185, 129, 0);
  }
}

.hero__note {
  margin-top: 18px;
  font-size: 12.5px;
  color: var(--tx-4);
}

.hero__chips {
  margin-top: 34px;
  padding-top: 30px;
  border-top: 1px solid var(--line);
}

/* --------------------------------------------------------------------------
   9. Telefon mockup — app arayüzünün HTML/CSS ile yeniden çizimi
   -------------------------------------------------------------------------- */
.phone-wrap {
  position: relative;
  width: 316px;
  max-width: 100%;
  margin-inline: auto;
}

.phone {
  position: relative;
  width: 316px;
  max-width: 100%;
  padding: 11px;
  background: linear-gradient(
    160deg,
    rgba(255, 255, 255, 0.19) 0%,
    rgba(255, 255, 255, 0.05) 38%,
    rgba(255, 255, 255, 0.12) 100%
  );
  border-radius: 46px;
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.62),
    0 0 0 1px rgba(255, 255, 255, 0.06), var(--glow-violet);
}

.phone__screen {
  position: relative;
  aspect-ratio: 375 / 780;
  padding: 0 14px;
  overflow: hidden;
  background: radial-gradient(
      120% 55% at 50% -8%,
      rgba(124, 58, 237, 0.28) 0%,
      rgba(219, 39, 119, 0.1) 45%,
      transparent 72%
    ),
    var(--bg);
  border-radius: 36px;
  display: flex;
  flex-direction: column;
}

.pn-notch {
  width: 86px;
  height: 22px;
  margin: 9px auto 4px;
  background: #04060c;
  border-radius: var(--r-pill);
}

.pn-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 2px 12px;
}

.pn-top b {
  font-size: 16px;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.pn-city {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 11px;
  font-size: 10.5px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--r-pill);
}

/* Eşleş kartı */
.pn-card {
  position: relative;
  flex: 1;
  min-height: 0;
  border-radius: 22px;
  overflow: hidden;
  background: linear-gradient(150deg, #8b5cf6 0%, #ec4899 100%);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
  transform: rotate(-1.4deg);
  animation: cardIdle 7s var(--ease) infinite;
}

@keyframes cardIdle {
  0%,
  100% {
    transform: rotate(-1.4deg) translateY(0);
  }
  50% {
    transform: rotate(0.6deg) translateY(-6px);
  }
}

.pn-card__initial {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 108px;
  font-weight: 900;
  letter-spacing: -0.05em;
  color: rgba(255, 255, 255, 0.24);
}

.pn-card__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(6, 8, 15, 0.9) 0%,
    rgba(6, 8, 15, 0.35) 34%,
    transparent 62%
  );
}

.pn-stamp {
  position: absolute;
  top: 16px;
  left: 14px;
  padding: 5px 10px;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.1em;
  color: #6ee7b7;
  border: 2px solid rgba(16, 185, 129, 0.85);
  border-radius: 8px;
  transform: rotate(-11deg);
  background: rgba(6, 8, 15, 0.35);
}

.pn-card__info {
  position: absolute;
  inset: auto 14px 14px;
}

.pn-card__info b {
  display: block;
  font-size: 20px;
  font-weight: 900;
  letter-spacing: -0.035em;
}

.pn-meta {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 4px;
  font-size: 11px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.76);
}

.pn-meta i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
}

.pn-tags {
  display: flex;
  gap: 6px;
  margin-top: 10px;
}

.pn-tags span {
  padding: 4px 9px;
  font-size: 10px;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--r-pill);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

/* Eşleş aksiyonları */
.pn-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 16px 0 12px;
}

.pn-btn {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid var(--line-strong);
}

.pn-btn svg {
  width: 21px;
  height: 21px;
}

.pn-btn--pass {
  color: #fca5a5;
}

.pn-btn--like {
  width: 58px;
  height: 58px;
  color: #fff;
  background: linear-gradient(135deg, var(--violet), var(--pink));
  border-color: transparent;
  box-shadow: 0 8px 22px rgba(124, 58, 237, 0.55);
}

.pn-btn--like svg {
  width: 26px;
  height: 26px;
}

.pn-btn--star {
  color: #93c5fd;
}

/* Alt bar — app'teki blur(30) cam nav */
.pn-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 -14px;
  padding: 11px 20px 20px;
  background: rgba(15, 20, 35, 0.92);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  -webkit-backdrop-filter: blur(30px);
  backdrop-filter: blur(30px);
}

.pn-nav i {
  position: relative;
  display: grid;
  place-items: center;
  width: 34px;
  height: 30px;
  color: rgba(255, 255, 255, 0.32);
}

.pn-nav i svg {
  width: 20px;
  height: 20px;
}

.pn-nav i.is-active {
  color: #fff;
}

.pn-nav i.is-active::after {
  content: "";
  position: absolute;
  inset: -5px -7px;
  background: rgba(124, 58, 237, 0.2);
  border-radius: 11px;
  z-index: -1;
}

.pn-nav i b {
  position: absolute;
  top: -2px;
  right: 0;
  min-width: 14px;
  height: 14px;
  padding: 0 3px;
  font-size: 8.5px;
  font-weight: 900;
  line-height: 14px;
  text-align: center;
  color: #fff;
  background: var(--red);
  border-radius: var(--r-pill);
  box-shadow: 0 0 8px rgba(239, 68, 68, 0.6);
}

/* Telefonun yanında süzülen kartlar */
.float {
  position: absolute;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 14px;
  background: rgba(20, 25, 43, 0.86);
  border: 1px solid var(--line-strong);
  border-radius: var(--r-md);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.5);
  animation: floaty 6s var(--ease) infinite;
  white-space: nowrap;
}

.float svg {
  width: 18px;
  height: 18px;
  flex: none;
}

.float b {
  display: block;
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.float span {
  display: block;
  font-size: 10.5px;
  font-weight: 600;
  color: var(--tx-4);
}

/* Kartlar telefonun dışında durur, kenarına 46px binerler. */
.float--match {
  top: 96px;
  right: calc(100% - 20px);
  color: var(--green);
}

.float--voice {
  bottom: 152px;
  left: calc(100% - 20px);
  color: #c4b5fd;
  animation-delay: -3s;
}

@keyframes floaty {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-11px);
  }
}

/* --------------------------------------------------------------------------
   10. Adımlar (nasıl çalışır)
   -------------------------------------------------------------------------- */
.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  counter-reset: step;
}

.step {
  position: relative;
  padding: 30px 26px;
  overflow: hidden;
}

.step::before {
  counter-increment: step;
  content: "0" counter(step);
  position: absolute;
  top: 14px;
  right: 20px;
  font-size: 46px;
  font-weight: 900;
  letter-spacing: -0.05em;
  color: rgba(255, 255, 255, 0.05);
}

.step h3 {
  margin-bottom: 10px;
}

.step p {
  font-size: 14.5px;
  color: var(--tx-3);
  line-height: 1.6;
}

.i-badge {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 18px;
  border-radius: var(--r-md);
  background: rgba(124, 58, 237, 0.16);
  border: 1px solid rgba(124, 58, 237, 0.3);
  color: #c4b5fd;
}

.i-badge svg {
  width: 22px;
  height: 22px;
}

.i-badge--pink {
  background: rgba(219, 39, 119, 0.15);
  border-color: rgba(219, 39, 119, 0.3);
  color: #f9a8d4;
}

.i-badge--gold {
  background: rgba(245, 158, 11, 0.14);
  border-color: rgba(245, 158, 11, 0.3);
  color: #fcd34d;
}

.i-badge--green {
  background: rgba(16, 185, 129, 0.14);
  border-color: rgba(16, 185, 129, 0.3);
  color: #6ee7b7;
}

.i-badge--blue {
  background: rgba(59, 130, 246, 0.14);
  border-color: rgba(59, 130, 246, 0.3);
  color: #93c5fd;
}

/* --------------------------------------------------------------------------
   11. Özellik kartları
   -------------------------------------------------------------------------- */
.features {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

/* Kart sayısı tek olduğunda (5. özellik: sesli odalar) son kart
   satırda yalnız kalmasın, satırı tam kaplasın. */
.features .feature:last-child:nth-child(odd) {
  grid-column: 1 / -1;
}

.feature {
  padding: 28px 26px 30px;
  transition: transform 0.24s var(--ease), border-color 0.24s var(--ease),
    background 0.24s var(--ease);
}

.feature:hover {
  transform: translateY(-4px);
  border-color: rgba(124, 58, 237, 0.36);
  background: linear-gradient(
    180deg,
    rgba(124, 58, 237, 0.09) 0%,
    rgba(255, 255, 255, 0.02) 100%
  );
}

.feature h3 {
  margin-bottom: 10px;
}

.feature p {
  font-size: 14.5px;
  line-height: 1.62;
  color: var(--tx-3);
}

.feature ul {
  margin-top: 16px;
  list-style: none;
  display: grid;
  gap: 8px;
}

.feature li {
  position: relative;
  padding-left: 18px;
  font-size: 13px;
  font-weight: 600;
  color: var(--tx-2);
}

.feature li::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 2px;
  background: linear-gradient(135deg, var(--violet), var(--pink));
}

/* --------------------------------------------------------------------------
   12. İkili tanıtım blokları (split)
   -------------------------------------------------------------------------- */
.split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 64px;
  align-items: center;
}
.split h2 {
  margin-bottom: 18px;
}

.split p {
  color: var(--tx-2);
  font-size: 16.5px;
  line-height: 1.65;
}

.split .chip-row {
  margin-top: 28px;
}

.split__list {
  margin-top: 26px;
  list-style: none;
  display: grid;
  gap: 14px;
}

.split__list li {
  display: flex;
  gap: 12px;
  font-size: 14.5px;
  color: var(--tx-2);
  line-height: 1.55;
}

.split__list svg {
  flex: none;
  width: 19px;
  height: 19px;
  margin-top: 2px;
  color: #a78bfa;
}

.split__list b {
  color: #fff;
  font-weight: 800;
}

/* Sohbet görseli */
.chatbox {
  padding: 22px 20px;
  display: grid;
  gap: 12px;
}

.bubble {
  max-width: 84%;
  padding: 12px 15px;
  font-size: 14px;
  line-height: 1.5;
  border-radius: 18px;
}

.bubble--in {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--line);
  border-bottom-left-radius: 6px;
  color: var(--tx-1);
}

.bubble--out {
  margin-left: auto;
  background: linear-gradient(135deg, var(--violet), #9333ea);
  border-bottom-right-radius: 6px;
  box-shadow: 0 8px 22px rgba(124, 58, 237, 0.32);
}

.bubble time {
  display: block;
  margin-top: 5px;
  font-size: 10px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.62);
}

/* Mor gradyan zeminde 0.62 alfa hâlâ zayıf kalıyor. */
.bubble--out time {
  color: rgba(255, 255, 255, 0.82);
}

/* Sesli mesaj baloncuğu */
.bubble--voice {
  display: flex;
  align-items: center;
  gap: 11px;
  max-width: 84%;
  padding: 12px 15px;
}

.bubble--voice .play {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  flex: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
}

.bubble--voice .play svg {
  width: 13px;
  height: 13px;
}

.wave {
  display: flex;
  align-items: center;
  gap: 3px;
  height: 26px;
  flex: 1;
}

.wave i {
  flex: 1;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.55);
}

.bubble--voice em {
  font-size: 10.5px;
  font-style: normal;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.65);
}

/* Konum baloncuğu */
.bubble--loc {
  padding: 0;
  overflow: hidden;
  max-width: 84%;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.05);
  border-bottom-left-radius: 6px;
}

.map {
  position: relative;
  height: 96px;
  background: linear-gradient(135deg, #132033 0%, #1b1233 100%);
}

.map::before,
.map::after {
  content: "";
  position: absolute;
  background: rgba(255, 255, 255, 0.06);
}

.map::before {
  inset: 30% 0 auto 0;
  height: 8px;
}

.map::after {
  inset: 0 auto 0 42%;
  width: 8px;
}

/* Nokta, yol çizgilerinin kesiştiği yere oturur. */
.map i {
  position: absolute;
  top: 34%;
  left: 43%;
  width: 14px;
  height: 14px;
  margin: -7px 0 0 -7px;
  border-radius: 50%;
  background: var(--pink);
  box-shadow: 0 0 0 5px rgba(219, 39, 119, 0.28),
    0 0 20px rgba(219, 39, 119, 0.6);
}

.bubble--loc div:last-child {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 11px 14px;
  font-size: 13px;
  font-weight: 700;
}

.bubble--loc svg {
  width: 16px;
  height: 16px;
  color: #f9a8d4;
}

.chat-input {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 6px;
  padding: 11px 14px;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
  font-size: 13.5px;
  color: var(--tx-4);
}

.chat-input .grow {
  flex: 1;
}

.chat-input svg {
  width: 18px;
  height: 18px;
  color: var(--tx-3);
}

.chat-input .send {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--violet), var(--pink));
  color: #fff;
}

.chat-input .send svg {
  width: 15px;
  height: 15px;
  color: #fff;
}

/* --------------------------------------------------------------------------
/* --------------------------------------------------------------------------
   13. Bilgi notu
   -------------------------------------------------------------------------- */
.note {
  margin-top: 24px;
  padding: 16px 18px;
  font-size: 12.5px;
  line-height: 1.6;
  color: var(--tx-3);
  background: var(--glass);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
}

.note b {
  color: var(--tx-2);
}

/* --------------------------------------------------------------------------
   14. Güvenlik
   -------------------------------------------------------------------------- */
.safety {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.safety > div {
  padding: 24px 22px 26px;
}

.safety h3 {
  margin-bottom: 9px;
  font-size: 16.5px;
}

.safety p {
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--tx-3);
}

/* --------------------------------------------------------------------------
   15. SSS
   -------------------------------------------------------------------------- */
.faq {
  max-width: 860px;
  margin-inline: auto;
  display: grid;
  gap: 12px;
}

.faq details {
  padding: 4px 22px;
  background: var(--glass);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  transition: border-color 0.2s var(--ease), background 0.2s var(--ease);
}

.faq details[open] {
  border-color: rgba(124, 58, 237, 0.34);
  background: rgba(124, 58, 237, 0.06);
}

.faq summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 0;
  font-size: 15.5px;
  font-weight: 800;
  letter-spacing: -0.02em;
  cursor: pointer;
  list-style: none;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::after {
  content: "";
  flex: none;
  width: 10px;
  height: 10px;
  margin-right: 4px;
  border-right: 2.2px solid var(--tx-3);
  border-bottom: 2.2px solid var(--tx-3);
  transform: rotate(45deg) translateY(-2px);
  transition: transform 0.22s var(--ease), border-color 0.22s var(--ease);
}

.faq details[open] summary::after {
  transform: rotate(-135deg) translateY(-2px);
  border-color: #c4b5fd;
}

.faq p {
  margin: 0 0 20px;
  padding-right: 34px;
  font-size: 14.5px;
  line-height: 1.68;
  color: var(--tx-2);
}

/* --------------------------------------------------------------------------
   16. Kapanış CTA
   -------------------------------------------------------------------------- */
.cta {
  position: relative;
  overflow: hidden;
  padding: 64px 56px;
  text-align: center;
  border-radius: var(--r-xl);
  background: linear-gradient(
      140deg,
      rgba(124, 58, 237, 0.24) 0%,
      rgba(219, 39, 119, 0.16) 52%,
      rgba(245, 158, 11, 0.1) 100%
    ),
    var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.11);
}

.cta > * {
  position: relative;
  z-index: 1;
}

.cta img {
  width: 66px;
  height: 66px;
  margin: 0 auto 24px;
  border-radius: 20px;
  border: 1px solid var(--line-strong);
  box-shadow: var(--glow-violet);
}

.cta p {
  max-width: 52ch;
  margin: 18px auto 32px;
  color: var(--tx-2);
  font-size: 17px;
}

.cta .stores {
  justify-content: center;
}

/* --------------------------------------------------------------------------
   17. Footer
   -------------------------------------------------------------------------- */
.footer {
  margin-top: 40px;
  padding-block: 60px 34px;
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg, transparent, rgba(15, 20, 35, 0.7));
}

.footer__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) repeat(3, minmax(0, 1fr));
  gap: 44px;
  margin-bottom: 48px;
}

.footer__brand p {
  max-width: 34ch;
  margin-top: 16px;
  font-size: 13.5px;
  line-height: 1.62;
  color: var(--tx-4);
}

.footer h3,
.footer h4 {
  margin: 0 0 16px;
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--tx-4);
}

.footer ul {
  list-style: none;
  display: grid;
  gap: 11px;
}

.footer li a,
.footer li span {
  display: inline-block;
  padding: 5px 0;
  font-size: 14px;
  font-weight: 600;
  color: var(--tx-2);
  transition: color 0.18s var(--ease);
}

.footer li a:hover {
  color: #c4b5fd;
}

.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
  font-size: 12.5px;
  color: var(--tx-4);
}

.footer__bottom nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.footer__bottom nav a {
  display: inline-block;
  padding: 6px 0;
}

.footer__bottom a:hover {
  color: #c4b5fd;
}

/* --------------------------------------------------------------------------
   18. Yasal metin sayfaları
   -------------------------------------------------------------------------- */
.legal-hero {
  position: relative;
  padding-top: calc(var(--nav-h) + 64px);
  padding-bottom: 40px;
  overflow: hidden;
}

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

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 22px;
  font-size: 13px;
  font-weight: 700;
  color: var(--tx-3);
  transition: color 0.18s var(--ease);
}

.back-link:hover {
  color: #c4b5fd;
}

.back-link svg {
  width: 16px;
  height: 16px;
}

.legal-hero h1 {
  font-size: clamp(31px, 4.6vw, 48px);
}

.legal-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.legal-layout {
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  gap: 56px;
  align-items: start;
  padding-bottom: 40px;
}

.legal-nav {
  position: sticky;
  top: calc(var(--nav-h) + 24px);
  padding: 20px 18px;
}

.legal-nav h2 {
  margin: 0 0 14px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--tx-4);
}

.legal-nav ul {
  list-style: none;
  display: grid;
  gap: 3px;
}

.legal-nav a {
  display: block;
  padding: 9px 11px;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--tx-3);
  border-radius: 10px;
  transition: color 0.18s var(--ease), background 0.18s var(--ease);
}

.legal-nav a:hover {
  color: #fff;
  background: var(--glass-2);
}

.legal-nav a[aria-current="page"] {
  color: #fff;
  background: rgba(124, 58, 237, 0.18);
}

.doc {
  max-width: 74ch;
  font-size: 15.5px;
  line-height: 1.75;
  color: var(--tx-2);
}

.doc > section {
  padding-bottom: 34px;
}

.doc > section + section {
  padding-top: 34px;
  border-top: 1px solid var(--line);
}

.doc h2 {
  margin-bottom: 16px;
  font-size: 21px;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: #fff;
}

.doc h2 small {
  display: block;
  margin-bottom: 7px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: rgba(196, 181, 253, 0.9);
}

.doc h3 {
  margin: 26px 0 10px;
  font-size: 16px;
  color: #fff;
}

.doc p + p {
  margin-top: 14px;
}

.doc ul {
  margin: 14px 0 0;
  padding-left: 0;
  list-style: none;
  display: grid;
  gap: 11px;
}

.doc ul li {
  position: relative;
  padding-left: 20px;
}

.doc ul li::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 2px;
  width: 6px;
  height: 6px;
  border-radius: 2px;
  background: linear-gradient(135deg, var(--violet), var(--pink));
}

.doc ol {
  margin: 14px 0 0;
  padding-left: 22px;
  display: grid;
  gap: 11px;
}

.doc strong {
  color: #fff;
  font-weight: 800;
}

.doc a {
  color: #c4b5fd;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.callout {
  margin-top: 22px;
  padding: 20px 22px;
  border-radius: var(--r-md);
  background: rgba(124, 58, 237, 0.09);
  border: 1px solid rgba(124, 58, 237, 0.26);
  font-size: 14.5px;
}

.callout--gold {
  background: rgba(245, 158, 11, 0.08);
  border-color: rgba(245, 158, 11, 0.24);
}

.callout--red {
  background: rgba(239, 68, 68, 0.07);
  border-color: rgba(239, 68, 68, 0.22);
}

.callout b {
  display: block;
  margin-bottom: 6px;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: -0.01em;
  color: #fff;
}

.contact-card {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-top: 20px;
  padding: 20px 22px;
  border-radius: var(--r-md);
  background: var(--glass);
  border: 1px solid var(--line);
}

.contact-card svg {
  width: 22px;
  height: 22px;
  color: #c4b5fd;
}

.contact-card b {
  display: block;
  font-size: 15px;
  font-weight: 800;
}

.contact-card span {
  display: block;
  font-size: 12.5px;
  color: var(--tx-4);
}

/* --------------------------------------------------------------------------
   19. Kaydırma animasyonu
   -------------------------------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.62s var(--ease), transform 0.62s var(--ease);
}

.reveal.is-in {
  opacity: 1;
  transform: none;
}

/* JS çalışmazsa .is-in hiç eklenmez ve sayfanın gövdesi görünmez kalırdı.
   Betik devre dışıysa animasyonu tamamen atla. */
@media (scripting: none) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.reveal[data-delay="1"] {
  transition-delay: 0.07s;
}
.reveal[data-delay="2"] {
  transition-delay: 0.14s;
}
.reveal[data-delay="3"] {
  transition-delay: 0.21s;
}
.reveal[data-delay="4"] {
  transition-delay: 0.28s;
}
.reveal[data-delay="5"] {
  transition-delay: 0.35s;
}

/* --------------------------------------------------------------------------
   20. Duyarlı (responsive) düzen
   -------------------------------------------------------------------------- */
@media (max-width: 1080px) {
  .hero__grid {
    grid-template-columns: 1fr;
    gap: 64px;
    text-align: center;
  }

  .hero .lead,
  .hero .stores,
  .hero .chip-row {
    justify-content: center;
    margin-inline: auto;
  }

  .hero .eyebrow,
  .hero .badge {
    justify-content: center;
  }

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

  .footer__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 36px;
  }

  .legal-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .legal-nav {
    position: static;
  }

  .legal-nav ul {
    grid-auto-flow: column;
    grid-auto-columns: max-content;
    overflow-x: auto;
    padding-bottom: 4px;
  }
}

@media (max-width: 900px) {
  .nav,
  .header__actions .btn {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .features,
  .steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .split {
    grid-template-columns: 1fr;
    gap: 44px;
  }
}

@media (max-width: 700px) {
  .section {
    padding-block: 76px;
  }

  .container {
    padding-inline: 18px;
  }

  .features,
  .steps,
  .safety {
    grid-template-columns: 1fr;
  }

  .cta {
    padding: 46px 22px;
  }

  .stores {
    flex-direction: column;
  }

  .store-btn {
    justify-content: center;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .float {
    display: none;
  }

  .doc {
    font-size: 15px;
  }
}

/* --------------------------------------------------------------------------
   21. Hareket azaltma tercihi
   -------------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }

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

/* Yazdırma — yasal metinler kağıda okunur çıksın */
@media print {
  .header,
  .mobile-nav,
  .legal-nav,
  .footer,
  .aura,
  .back-link {
    display: none !important;
  }

  body {
    background: #fff;
    color: #111;
  }

  .doc,
  .doc h2,
  .doc h3,
  .doc strong,
  .doc a,
  .callout b,
  .contact-card b,
  .legal-hero h1 {
    color: #111;
  }

  /* background-clip:text kullanan başlıklar yazdırmada boş çıkıyordu. */
  .grad-text {
    -webkit-text-fill-color: #111;
    color: #111;
    background: none;
  }

  /* JS çalışmadan yazdırılırsa içerik görünmez kalmasın. */
  .reveal {
    opacity: 1 !important;
    transform: none !important;
  }

  a[href^="http"]::after,
  a[href^="mailto"]::after {
    content: " (" attr(href) ")";
    font-size: 11px;
    word-break: break-all;
  }
}

/* --------------------------------------------------------------------------
   22. Yardımcı sınıflar
   -------------------------------------------------------------------------- */

/* Sprite'tan çağrılan ikonların varsayılan ölçüsü */
.ic {
  width: 20px;
  height: 20px;
  flex: none;
}

/* Avatar gradyanları — app'teki kAvatarGrads listesiyle birebir
   (clickchat/lib/constants/theme_constants.dart) */
.g1 {
  background: linear-gradient(135deg, #d97706, #dc2626);
}
.g2 {
  background: linear-gradient(135deg, #4f46e5, #7c3aed);
}
.g3 {
  background: linear-gradient(135deg, #0284c7, #0d9488);
}
.g4 {
  background: linear-gradient(135deg, #059669, #10b981);
}
.g5 {
  background: linear-gradient(135deg, #d97706, #ea580c);
}
.g6 {
  background: linear-gradient(135deg, #8b5cf6, #ec4899);
}
.g7 {
  background: linear-gradient(135deg, #e11d48, #f59e0b);
}
.g8 {
  background: linear-gradient(135deg, #2563eb, #7c3aed);
}
.g9 {
  background: linear-gradient(135deg, #ec4899, #8b5cf6);
}
.g10 {
  background: linear-gradient(135deg, #0ea5e9, #2563eb);
}
