/* =========================================================================
   WUWUGO — Web Stil Dosyasi
   Marka: siyah / beyaz / gri (turuncu YASAK)
   Font: Poppins (Google Fonts)
   ========================================================================= */

/* ── Reset & Temel ─────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #1A1A1A;
  background: #FFFFFF;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, textarea, select { font-family: inherit; font-size: inherit; }

/* ── CSS Degiskenleri ──────────────────────────────────────────────────── */
:root {
  --primary: #1A1A1A;
  --secondary: #4A4A4A;
  --bg: #FFFFFF;
  --bg-soft: #F5F5F5;
  --bg-dark: #0F0F0F;
  --surface: #FFFFFF;
  --card: #FFFFFF;
  --text-primary: #1A1A1A;
  --text-secondary: #6B7280;
  --text-tertiary: #9CA3AF;
  --divider: #E5E7EB;
  --error: #E53935;
  --success: #43A047;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
  --shadow-lg: 0 10px 40px rgba(0,0,0,0.12);
  --shadow-xl: 0 20px 60px rgba(0,0,0,0.18);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 999px;
  --max-width: 1200px;
  --header-height: 72px;
}

/* ── Layout Yardimcilari ───────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 96px 0;
}
.section-sm {
  padding: 56px 0;
}
@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .section-sm { padding: 40px 0; }
}

/* ── Tipografi ─────────────────────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--text-primary);
}
h1 { font-size: clamp(2.25rem, 5vw, 4rem); }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.75rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.625rem); }
h4 { font-size: 1.125rem; font-weight: 700; }
p  { color: var(--text-secondary); }

.eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-secondary);
  padding: 6px 14px;
  border: 1px solid var(--divider);
  border-radius: var(--radius-full);
  margin-bottom: 24px;
}

.section-title {
  margin-bottom: 16px;
  text-align: center;
}
.section-subtitle {
  font-size: 1.0625rem;
  color: var(--text-secondary);
  max-width: 640px;
  margin: 0 auto 56px;
  text-align: center;
}

/* ── Header ────────────────────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,0.85);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease, background 0.3s ease;
}
.site-header.scrolled {
  border-bottom-color: var(--divider);
  background: rgba(255,255,255,0.95);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
  color: var(--primary);
}
.brand img {
  width: 36px;
  height: 36px;
  border-radius: 8px;
}
.brand-text { white-space: nowrap; }
.brand-text .go { font-weight: 900; }

.nav {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav a {
  padding: 8px 14px;
  border-radius: var(--radius-full);
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color 0.2s, background 0.2s;
}
.nav a:hover { color: var(--primary); background: var(--bg-soft); }
.nav a.active { color: var(--primary); }

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

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  color: var(--primary);
  -webkit-tap-highlight-color: transparent;
}
.menu-toggle:hover { background: var(--bg-soft); }
.menu-toggle svg { width: 24px; height: 24px; color: var(--primary); }

/* Desktop'ta menudeki mobil-CTA gizli (her zaman, sadece mobil menude gosterilir) */
.nav-cta-mobile { display: none !important; }

@media (max-width: 900px) {
  .nav { display: none; }
  .nav.open {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    position: absolute;
    top: var(--header-height);
    left: 0;
    right: 0;
    background: var(--bg);
    padding: 16px 24px 24px;
    border-bottom: 1px solid var(--divider);
    box-shadow: var(--shadow-md);
  }
  .nav.open a { padding: 14px 12px; border-bottom: 1px solid var(--divider); border-radius: 0; }
  .nav.open a:last-child { border-bottom: none; }
  .nav.open .nav-cta-mobile {
    display: block !important;
    margin-top: 12px;
    border-bottom: none !important;
    text-align: center;
    padding: 14px 20px !important;
    border-radius: var(--radius-full) !important;
  }
  .menu-toggle { display: inline-flex; }
  /* Mobilde Ust'teki "Uygulamayi indir" butonunu gizle —
     yerine hamburger menu icindeki CTA gosterilir */
  .header-cta .header-cta-desktop,
  .header-cta a.btn-primary { display: none !important; }
}

/* ── Butonlar ──────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.9375rem;
  letter-spacing: -0.01em;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s, color 0.2s;
  white-space: nowrap;
  cursor: pointer;
  border: 1px solid transparent;
}
.btn-primary {
  background: var(--primary);
  color: #FFFFFF;
}
.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-lg);
  background: #000;
}
.btn-secondary {
  background: transparent;
  color: var(--primary);
  border-color: var(--divider);
}
.btn-secondary:hover {
  background: var(--bg-soft);
  border-color: var(--primary);
}
.btn-ghost {
  background: transparent;
  color: var(--primary);
}
.btn-ghost:hover { background: var(--bg-soft); }
.btn-lg { padding: 18px 36px; font-size: 1rem; }
.btn-sm { padding: 8px 16px; font-size: 0.875rem; }

/* ── Hero ──────────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  padding: 120px 0 80px;
  overflow: hidden;
  background:
    radial-gradient(ellipse at top right, rgba(0,0,0,0.04), transparent 60%),
    radial-gradient(ellipse at bottom left, rgba(0,0,0,0.03), transparent 60%),
    #FFFFFF;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 64px;
  align-items: center;
}
.hero h1 {
  font-size: clamp(2.5rem, 5.5vw, 4.25rem);
  margin-bottom: 24px;
}
.hero h1 .accent {
  position: relative;
  display: inline-block;
}
.hero h1 .accent::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 4px;
  height: 12px;
  background: rgba(0,0,0,0.08);
  z-index: -1;
  border-radius: 4px;
}
.hero p.lede {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: 32px;
  max-width: 520px;
}
.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.hero-stats {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
}
.hero-stat .num {
  font-size: 1.875rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.hero-stat .label {
  font-size: 0.875rem;
  color: var(--text-secondary);
  margin-top: 2px;
}
.hero-art {
  position: relative;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-art .blob {
  position: absolute;
  inset: 0;
  background: var(--bg-soft);
  border-radius: 32% 68% 70% 30% / 30% 30% 70% 70%;
  animation: blobMove 20s ease-in-out infinite;
}
.hero-art .logo-card {
  position: relative;
  width: 60%;
  aspect-ratio: 1 / 1;
  background: var(--primary);
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  box-shadow: var(--shadow-xl);
  z-index: 1;
  animation: floatCard 6s ease-in-out infinite;
}
.hero-art .logo-card img { width: 100%; height: auto; }
.hero-art .floating {
  position: absolute;
  background: var(--surface);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 0.875rem;
  z-index: 2;
}
.hero-art .floating .ico {
  width: 32px; height: 32px;
  background: var(--bg-soft);
  border-radius: 8px;
  display: grid; place-items: center;
}
.hero-art .floating-tl { top: 8%; left: -4%; animation: floatA 5s ease-in-out infinite; }
.hero-art .floating-br { bottom: 12%; right: -2%; animation: floatB 6s ease-in-out infinite 0.6s; }
.hero-art .floating-bl { bottom: 22%; left: 6%; animation: floatA 7s ease-in-out infinite 1.2s; }

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero { padding: 64px 0 40px; }
  .hero-art { max-width: 380px; margin: 0 auto; }
}

@keyframes blobMove {
  0%, 100% { border-radius: 32% 68% 70% 30% / 30% 30% 70% 70%; transform: rotate(0deg); }
  50% { border-radius: 60% 40% 30% 70% / 50% 60% 40% 50%; transform: rotate(8deg); }
}
@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
@keyframes floatA {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
@keyframes floatB {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}

/* ── Brand Bar (rakipler / sosyal kanit) ───────────────────────────────── */
.brand-bar {
  padding: 32px 0;
  border-top: 1px solid var(--divider);
  border-bottom: 1px solid var(--divider);
}
.brand-bar p {
  text-align: center;
  font-size: 0.8125rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-tertiary);
  margin-bottom: 18px;
}
.brand-bar .marquee {
  display: flex;
  justify-content: center;
  gap: 56px;
  flex-wrap: wrap;
  align-items: center;
  opacity: 0.6;
}
.brand-bar .marquee span {
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--text-secondary);
}

/* ── Features Grid ─────────────────────────────────────────────────────── */
.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feature-card {
  padding: 32px;
  border: 1px solid var(--divider);
  border-radius: var(--radius-lg);
  background: var(--surface);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s;
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.feature-card .ico {
  width: 56px; height: 56px;
  background: var(--bg-soft);
  border-radius: 14px;
  display: grid; place-items: center;
  margin-bottom: 20px;
  font-size: 1.5rem;
}
.feature-card h3 { margin-bottom: 8px; }
.feature-card p { font-size: 0.9375rem; }

@media (max-width: 900px) {
  .features { grid-template-columns: 1fr; gap: 16px; }
  .feature-card { padding: 24px; }
}

/* ── Steps (Nasil Calisir) ─────────────────────────────────────────────── */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative;
}
.step {
  text-align: center;
}
.step .num {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  font-size: 1.5rem;
  font-weight: 800;
  display: grid; place-items: center;
  margin: 0 auto 20px;
}
.step h3 { margin-bottom: 10px; }
.step p { font-size: 0.9375rem; }

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

/* ── Categories ────────────────────────────────────────────────────────── */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}
.cat-card {
  position: relative;
  padding: 28px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--divider);
  background: var(--surface);
  transition: all 0.3s ease;
  overflow: hidden;
}
.cat-card:hover {
  transform: translateY(-3px);
  border-color: var(--primary);
  box-shadow: var(--shadow-lg);
}
.cat-card .img-wrap {
  width: 100%;
  aspect-ratio: 1 / 1;
  background: var(--bg-soft);
  border-radius: var(--radius-md);
  margin-bottom: 16px;
  display: grid; place-items: center;
  overflow: hidden;
}
.cat-card .img-wrap img {
  width: 70%;
  object-fit: contain;
  transition: transform 0.4s ease;
}
.cat-card:hover .img-wrap img { transform: scale(1.06); }
.cat-card h3 { font-size: 1.125rem; margin-bottom: 4px; }
.cat-card p { font-size: 0.875rem; color: var(--text-tertiary); }

/* ── Hizmetler — kategori basligi + alt grid ───────────────────────────── */
.cat-section { margin-bottom: 64px; }
.cat-section .cat-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--primary);
}
.cat-section .cat-head h2 { font-size: 1.75rem; }
.cat-section .cat-head .meta {
  color: var(--text-secondary);
  font-size: 0.9375rem;
  font-weight: 500;
}
.subcat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 16px;
}
.subcat-card {
  padding: 16px;
  border: 1px solid var(--divider);
  border-radius: var(--radius-md);
  background: var(--surface);
  transition: all 0.2s ease;
}
.subcat-card:hover {
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.subcat-card .img-box {
  width: 100%;
  aspect-ratio: 4 / 3;
  background: var(--bg-soft);
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
  display: grid; place-items: center;
  overflow: hidden;
}
.subcat-card .img-box img {
  width: 75%;
  object-fit: contain;
}
.subcat-card h4 {
  font-size: 0.9375rem;
  font-weight: 700;
  margin-bottom: 4px;
}
.subcat-card .price {
  font-size: 0.8125rem;
  color: var(--text-secondary);
}

/* ── CTA Banner ────────────────────────────────────────────────────────── */
.cta-banner {
  background: linear-gradient(135deg, #0F0F0F 0%, #1A1A1A 100%);
  color: #FFFFFF;
  padding: 80px 48px;
  border-radius: var(--radius-xl);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(255,255,255,0.05), transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(255,255,255,0.04), transparent 40%);
}
.cta-banner > * { position: relative; }
.cta-banner h2 { color: #FFFFFF; margin-bottom: 12px; }
.cta-banner p { color: rgba(255,255,255,0.75); margin-bottom: 32px; max-width: 540px; margin-left: auto; margin-right: auto; }
.cta-banner .btn-primary {
  background: #FFFFFF;
  color: #1A1A1A;
}
.cta-banner .btn-primary:hover { background: #F0F0F0; }
@media (max-width: 768px) { .cta-banner { padding: 56px 24px; } }

/* ── Footer ────────────────────────────────────────────────────────────── */
.site-footer {
  background: #0F0F0F;
  color: #B0B0B0;
  padding: 72px 0 32px;
}
.site-footer h4 {
  color: #FFFFFF;
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 18px;
  font-weight: 700;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-grid .brand {
  color: #FFFFFF;
  margin-bottom: 16px;
}
.footer-grid p { color: #888; font-size: 0.875rem; line-height: 1.7; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  color: #B0B0B0;
  font-size: 0.9375rem;
  transition: color 0.2s;
}
.footer-links a:hover { color: #FFFFFF; }

.payment-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
  align-items: center;
}
.payment-logo {
  height: 32px;
  width: auto;
  display: block;
  filter: drop-shadow(0 1px 2px rgba(0,0,0,0.12));
  border-radius: 5px;
  background: #FFFFFF;
  transition: transform 0.2s ease;
}
.payment-logo:hover { transform: translateY(-1px); }
/* Guvenlik sayfasinda biraz daha buyuk gosterim */
.prose .payment-logo { height: 38px; }

.security-strip {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 14px 18px;
  border-radius: var(--radius-md);
  margin-top: 16px;
  font-size: 0.8125rem;
}
.security-strip .lock {
  width: 28px; height: 28px;
  background: rgba(67, 160, 71, 0.15);
  color: #66BB6A;
  border-radius: 8px;
  display: grid; place-items: center;
}

.footer-bottom {
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.8125rem;
  color: #888;
}

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

/* ── Legal / Bilgi sayfalari icin tipografi ────────────────────────────── */
.page-head {
  padding: 80px 0 32px;
  border-bottom: 1px solid var(--divider);
  background: var(--bg-soft);
}
.page-head h1 { margin-bottom: 8px; }
.page-head p { color: var(--text-secondary); font-size: 1.0625rem; }

.prose {
  max-width: 760px;
  margin: 0 auto;
  padding: 56px 0 96px;
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text-secondary);
}
.prose h2 {
  font-size: 1.5rem;
  margin: 40px 0 16px;
  color: var(--text-primary);
}
.prose h3 {
  font-size: 1.125rem;
  margin: 24px 0 8px;
  color: var(--text-primary);
}
.prose p { margin-bottom: 16px; }
.prose ul, .prose ol { padding-left: 24px; margin-bottom: 16px; }
.prose li { margin-bottom: 8px; }
.prose strong { color: var(--text-primary); font-weight: 600; }
.prose a { color: var(--primary); text-decoration: underline; }
.prose .info-card {
  background: var(--bg-soft);
  border-left: 4px solid var(--primary);
  padding: 20px 24px;
  border-radius: var(--radius-sm);
  margin: 24px 0;
}
.prose .info-card p:last-child { margin-bottom: 0; }

/* ── Auth Sayfalari (giris/kayit) ──────────────────────────────────────── */
.auth-shell {
  min-height: calc(100vh - var(--header-height));
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.auth-side {
  background: linear-gradient(135deg, #1A1A1A 0%, #0F0F0F 100%);
  color: #fff;
  padding: 64px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}
.auth-side::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 20%, rgba(255,255,255,0.06), transparent 40%),
    radial-gradient(circle at 20% 80%, rgba(255,255,255,0.04), transparent 50%);
}
.auth-side > * { position: relative; }
.auth-side h2 { color: #fff; margin-bottom: 16px; }
.auth-side p { color: rgba(255,255,255,0.75); }
.auth-side .quote {
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.4;
  margin-top: 32px;
}
.auth-side .credit { color: rgba(255,255,255,0.6); margin-top: 16px; font-size: 0.875rem; }

.auth-form {
  padding: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.auth-form-inner {
  width: 100%;
  max-width: 420px;
}
.auth-form h1 { font-size: 2rem; margin-bottom: 8px; }
.auth-form .subtitle { margin-bottom: 32px; color: var(--text-secondary); }

.form-group { margin-bottom: 20px; }
.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text-primary);
}
.form-input {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--divider);
  border-radius: var(--radius-md);
  font-size: 1rem;
  background: var(--surface);
  color: var(--text-primary);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(0,0,0,0.04);
}
.form-input.error { border-color: var(--error); }
.form-error {
  font-size: 0.8125rem;
  color: var(--error);
  margin-top: 6px;
}
.form-help {
  font-size: 0.8125rem;
  color: var(--text-secondary);
  margin-top: 6px;
}

.phone-input {
  display: flex;
  align-items: center;
  border: 1px solid var(--divider);
  border-radius: var(--radius-md);
  background: var(--surface);
  overflow: hidden;
}
.phone-input:focus-within {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(0,0,0,0.04);
}
.phone-input .prefix {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 12px 0 14px;
  color: var(--text-primary);
  font-weight: 500;
  border-right: 1px solid var(--divider);
  height: 50px;
}
.phone-input .tr-badge {
  background: var(--bg-soft);
  padding: 3px 8px;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 700;
}
.phone-input input {
  flex: 1;
  padding: 14px 14px;
  border: none;
  background: transparent;
  font-size: 1rem;
  outline: none;
  font-family: inherit;
}

.otp-input {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin: 24px 0;
}
.otp-input input {
  width: 48px;
  height: 56px;
  text-align: center;
  font-size: 1.5rem;
  font-weight: 700;
  border: 1px solid var(--divider);
  border-radius: var(--radius-md);
  background: var(--surface);
  outline: none;
  transition: border-color 0.2s, transform 0.15s;
}
.otp-input input:focus {
  border-color: var(--primary);
  transform: scale(1.05);
}

.btn-block {
  width: 100%;
  padding: 16px;
  font-size: 1rem;
}

.legal-note {
  font-size: 0.8125rem;
  color: var(--text-secondary);
  text-align: center;
  margin-top: 24px;
  line-height: 1.5;
}
.legal-note a {
  color: var(--primary);
  text-decoration: underline;
  font-weight: 600;
}

.alert {
  padding: 12px 16px;
  border-radius: var(--radius-md);
  margin-bottom: 16px;
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  gap: 10px;
}
.alert.error {
  background: rgba(229, 57, 53, 0.08);
  color: #b3170f;
  border: 1px solid rgba(229, 57, 53, 0.2);
}
.alert.success {
  background: rgba(67, 160, 71, 0.08);
  color: #2d7831;
  border: 1px solid rgba(67, 160, 71, 0.2);
}
.alert.info {
  background: var(--bg-soft);
  color: var(--text-primary);
  border: 1px solid var(--divider);
}

@media (max-width: 900px) {
  .auth-shell { grid-template-columns: 1fr; min-height: auto; }
  .auth-side { padding: 48px 32px; min-height: 240px; }
  .auth-side .quote { font-size: 1.25rem; }
  .auth-form { padding: 40px 24px; }
}

/* ── Iletisim ─────────────────────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.contact-cards {
  display: grid;
  gap: 16px;
}
.contact-card {
  display: flex;
  gap: 16px;
  padding: 24px;
  border: 1px solid var(--divider);
  border-radius: var(--radius-lg);
}
.contact-card .ico {
  width: 48px; height: 48px;
  background: var(--bg-soft);
  border-radius: 12px;
  display: grid; place-items: center;
  flex-shrink: 0;
}
.contact-card h3 { font-size: 1rem; margin-bottom: 4px; }
.contact-card p { font-size: 0.9375rem; }
.contact-card a { color: var(--primary); font-weight: 600; }

.contact-form {
  padding: 32px;
  border: 1px solid var(--divider);
  border-radius: var(--radius-lg);
  background: var(--surface);
}
@media (max-width: 768px) {
  .contact-grid { grid-template-columns: 1fr; }
}

/* ── Animasyonlar (scroll triggered reveal) ────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal-stagger.in > *:nth-child(1) { transition-delay: 0.05s; opacity: 1; transform: translateY(0); }
.reveal-stagger.in > *:nth-child(2) { transition-delay: 0.12s; opacity: 1; transform: translateY(0); }
.reveal-stagger.in > *:nth-child(3) { transition-delay: 0.19s; opacity: 1; transform: translateY(0); }
.reveal-stagger.in > *:nth-child(4) { transition-delay: 0.26s; opacity: 1; transform: translateY(0); }
.reveal-stagger.in > *:nth-child(5) { transition-delay: 0.33s; opacity: 1; transform: translateY(0); }
.reveal-stagger.in > *:nth-child(6) { transition-delay: 0.40s; opacity: 1; transform: translateY(0); }
.reveal-stagger.in > *:nth-child(7) { transition-delay: 0.47s; opacity: 1; transform: translateY(0); }
.reveal-stagger.in > *:nth-child(8) { transition-delay: 0.54s; opacity: 1; transform: translateY(0); }
.reveal-stagger.in > *:nth-child(n+9) { transition-delay: 0.6s; opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .reveal, .reveal-stagger > * { opacity: 1; transform: none; }
}

/* ── Mobil Uygulama Showcase ──────────────────────────────────────────── */
.app-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.app-showcase h2 { font-size: clamp(1.875rem, 3.5vw, 2.5rem); margin-bottom: 16px; }
.app-showcase p.lede { font-size: 1.0625rem; margin-bottom: 28px; }
.app-showcase .features-list {
  list-style: none;
  margin-bottom: 32px;
}
.app-showcase .features-list li {
  display: flex;
  gap: 14px;
  align-items: start;
  margin-bottom: 18px;
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.5;
}
.app-showcase .features-list .check {
  flex-shrink: 0;
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--primary);
  color: #FFFFFF;
  display: grid; place-items: center;
  margin-top: 1px;
}
.app-showcase .features-list strong { color: var(--text-primary); font-weight: 700; display: block; margin-bottom: 2px; }

.store-badges {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 22px;
  background: var(--primary);
  color: #FFFFFF;
  border-radius: 14px;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  min-width: 180px;
}
.store-badge:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  background: #000;
}
.store-badge svg { flex-shrink: 0; }
.store-badge .label { font-size: 0.625rem; line-height: 1; opacity: 0.85; letter-spacing: 0.05em; }
.store-badge .name { font-size: 1.125rem; font-weight: 700; line-height: 1.1; margin-top: 3px; }

/* Telefon mockup */
.phone-stack {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 580px;
}
.phone {
  position: relative;
  width: 280px;
  aspect-ratio: 9 / 19.5;
  background: #1A1A1A;
  border-radius: 42px;
  padding: 8px;
  box-shadow: var(--shadow-xl), 0 0 0 1px rgba(0,0,0,0.05);
  z-index: 2;
  animation: phoneFloat 8s ease-in-out infinite;
}
.phone::before {
  /* Notch */
  content: '';
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 90px;
  height: 24px;
  background: #1A1A1A;
  border-radius: 14px;
  z-index: 5;
}
.phone-screen {
  width: 100%;
  height: 100%;
  background: #F5F5F5;
  border-radius: 36px;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
}
.phone-status {
  display: flex;
  justify-content: space-between;
  padding: 14px 28px 8px;
  font-size: 0.75rem;
  font-weight: 700;
  color: #1A1A1A;
}
.phone-status .right { display: flex; gap: 4px; align-items: center; }
.phone-status svg { width: 14px; height: 14px; }

.phone-content { flex: 1; padding: 16px 14px 0; overflow: hidden; }
.phone-header-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
  padding: 0 4px;
}
.phone-header-row .ico-pill {
  width: 28px; height: 28px;
  background: #FFFFFF;
  border-radius: 50%;
  display: grid; place-items: center;
  box-shadow: 0 1px 3px rgba(0,0,0,0.06);
}
.phone-header-row .ico-pill.has-badge { position: relative; }
.phone-header-row .ico-pill.has-badge::after {
  content: '';
  position: absolute;
  top: -2px; right: -2px;
  width: 10px; height: 10px;
  background: #E53935;
  border-radius: 50%;
  border: 2px solid #F5F5F5;
}
.phone-brand {
  text-align: center;
  font-weight: 900;
  font-size: 1.125rem;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
  color: #1A1A1A;
}
.phone-search {
  background: #FFFFFF;
  border-radius: 12px;
  padding: 10px 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.75rem;
  color: #1A1A1A;
  margin-bottom: 12px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.06);
  font-weight: 600;
}
.phone-search .l { display: flex; align-items: center; gap: 6px; }
.phone-search .r { display: flex; align-items: center; gap: 4px; padding-left: 10px; border-left: 1px solid #E5E7EB; font-size: 0.6875rem; }

.phone-map {
  background: linear-gradient(135deg, #E0E5EA 0%, #EFF1F4 100%);
  border-radius: 12px;
  height: 116px;
  position: relative;
  overflow: hidden;
  margin-bottom: 12px;
  border: 1px solid rgba(0,0,0,0.04);
}
.phone-map::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(0deg, transparent 50%, rgba(255,255,255,0.5) 50.5%, rgba(255,255,255,0.5) 51%, transparent 51%),
    linear-gradient(90deg, transparent 30%, rgba(255,255,255,0.5) 30.5%, rgba(255,255,255,0.5) 31%, transparent 31%),
    linear-gradient(90deg, transparent 70%, rgba(255,255,255,0.5) 70.5%, rgba(255,255,255,0.5) 71%, transparent 71%);
  opacity: 0.7;
}
.phone-map .pin {
  position: absolute;
  width: 14px; height: 14px;
  background: #1A1A1A;
  border: 2px solid #fff;
  border-radius: 50%;
  box-shadow: 0 1px 3px rgba(0,0,0,0.2);
}
.phone-map .pin.user {
  background: #4285F4;
  width: 12px; height: 12px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 0 6px rgba(66,133,244,0.18);
  z-index: 2;
}
.phone-map .pin.p1 { top: 28%; left: 32%; }
.phone-map .pin.p2 { top: 70%; left: 60%; }
.phone-map .pin.p3 { top: 38%; left: 75%; }
.phone-map .label {
  position: absolute;
  top: 8px; left: 8px; right: 8px;
  background: rgba(255,255,255,0.95);
  border-radius: 8px;
  padding: 5px 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.625rem;
  font-weight: 700;
  color: #1A1A1A;
  box-shadow: 0 1px 4px rgba(0,0,0,0.08);
}

.phone-cats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.phone-cats .big {
  background: #fff;
  border-radius: 10px;
  padding: 10px 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
  height: 110px;
}
.phone-cats .big img { width: 44px; height: 44px; object-fit: contain; }
.phone-cats .big .ttl { font-size: 0.6875rem; font-weight: 800; margin-top: 4px; color: #1A1A1A; }
.phone-cats .big .sub { font-size: 0.5625rem; color: #6B7280; margin-top: 2px; line-height: 1.2; }
.phone-cats .grid4 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 6px;
}
.phone-cats .grid4 .small {
  background: #fff;
  border-radius: 8px;
  padding: 6px 4px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 1px 2px rgba(0,0,0,0.04);
}
.phone-cats .grid4 .small img { width: 24px; height: 24px; object-fit: contain; }
.phone-cats .grid4 .small .ttl { font-size: 0.5625rem; font-weight: 700; margin-top: 2px; color: #1A1A1A; }

/* Phone arka dekorasyon */
.phone-stack::before, .phone-stack::after {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,0,0,0.04) 0%, transparent 70%);
  z-index: 0;
}
.phone-stack::before { top: 8%; left: 5%; }
.phone-stack::after { bottom: 12%; right: 8%; }

@keyframes phoneFloat {
  0%, 100% { transform: translateY(0) rotate(-1deg); }
  50% { transform: translateY(-12px) rotate(1deg); }
}

@media (max-width: 900px) {
  .app-showcase { grid-template-columns: 1fr; gap: 48px; }
  .phone-stack { min-height: 540px; }
}

/* ── Yardimci ─────────────────────────────────────────────────────────── */
.text-center { text-align: center; }
.mt-8 { margin-top: 32px; }
.mt-16 { margin-top: 64px; }
.hidden { display: none !important; }
.divider { height: 1px; background: var(--divider); margin: 64px 0; }
