/* ==========================================================================
   YDS Matik — Profesyonel Mobil Uygulama Tanıtım Stilleri
   Tasarım Konsepti: Koyu Tema (Dark Mode), Birebir Uygulama İçi Ekranlar ile Uyumlu
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. TASARIM DEĞİŞKENLERİ (BİREBİR MOBİL UYGULAMA DASHBOARD RENKLERİ)
   -------------------------------------------------------------------------- */
:root {
  /* Koyu Tema Arka Planlar (Ekran Görüntüsü ile %100 Uyumlu) */
  --bg-dark: #0B0E14;
  --surface-1: #141822;
  --surface-2: #1D2332;
  --border-color: #262E42;

  /* Ana Vurgu ve Buton Renkleri (Görseldeki Pembe/Kırmızı & Altın PRO) */
  --accent-rose: #F43F5E;
  --accent-rose-hover: #E11D48;
  --accent-rose-weak: rgba(244, 63, 94, 0.12);
  --accent-gold: #F59E0B;
  --accent-gold-weak: rgba(245, 158, 11, 0.15);

  /* Modül Sol Çerçeve Renkleri (Görsellerdeki Birebir Renkler) */
  --accent-purple: #8B5CF6;
  --accent-teal: #14B8A6;
  --accent-indigo: #6366F1;
  --accent-blue: #3B82F6;
  --accent-cyan: #06B6D4;
  --accent-amber: #F59E0B;

  /* Metin Renkleri */
  --text-main: #F1F3F5;
  --text-muted: #9CA3AF;
  --text-dim: #6B7280;
  --text-white: #FFFFFF;

  /* Gölgeler ve Yuvarlatma */
  --shadow-card: 0 10px 30px -5px rgba(0, 0, 0, 0.5);
  --shadow-rose: 0 8px 24px -4px rgba(244, 63, 94, 0.35);

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-full: 9999px;

  --transition-fast: 0.15s ease;
  --transition-normal: 0.25s ease;
}

/* --------------------------------------------------------------------------
   2. TEMEL TEMİZLEME & GENEL AYARLAR
   -------------------------------------------------------------------------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background-color: var(--bg-dark);
  color: var(--text-main);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4, .brand-name {
  font-family: 'Outfit', sans-serif;
  line-height: 1.25;
}

a { text-decoration: none; color: inherit; transition: color var(--transition-fast); }
ul { list-style: none; }

.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}

.text-gradient {
  background: linear-gradient(135deg, #F43F5E, #FB7185);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-rose { color: var(--accent-rose); }
.text-emerald { color: #10B981; }

/* --------------------------------------------------------------------------
   0. DUYURU BARI (TOP BANNER)
   -------------------------------------------------------------------------- */
.top-banner {
  background: var(--surface-2);
  color: var(--text-main);
  padding: 8px 0;
  font-size: 0.85rem;
  border-bottom: 1px solid var(--border-color);
}

.top-banner-content {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  text-align: center;
}

.top-banner-link {
  background: none;
  border: none;
  color: var(--accent-rose);
  font-weight: 700;
  cursor: pointer;
  text-decoration: underline;
  font-size: 0.85rem;
}

.top-banner-link:hover { color: #FB7185; }

/* --------------------------------------------------------------------------
   1. HEADER (NAVİGASYON)
   -------------------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(11, 14, 20, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-color);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

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

.logo-icon {
  width: 38px;
  height: 38px;
  background: var(--accent-rose);
  color: var(--text-white);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-rose);
}

.brand-name {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--text-main);
  letter-spacing: -0.02em;
}

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

.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
}

.nav-link:hover { color: var(--text-main); }

.btn-contact-nav {
  background: transparent;
  border: 1px solid var(--border-color);
  color: var(--text-main);
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.88rem;
  cursor: pointer;
}

.btn-contact-nav:hover {
  border-color: var(--accent-rose);
  color: var(--accent-rose);
}

.btn-primary-sm {
  background-color: var(--accent-rose);
  color: var(--text-white);
  border: none;
  padding: 9px 20px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.88rem;
  box-shadow: var(--shadow-rose);
  cursor: pointer;
  transition: transform var(--transition-fast), background-color var(--transition-fast);
}

.btn-primary-sm:hover {
  background-color: var(--accent-rose-hover);
  transform: translateY(-1px);
}

/* --------------------------------------------------------------------------
   2. HERO SECTION & MOBİL UYGULAMA SİMÜLATÖRÜ
   -------------------------------------------------------------------------- */
.hero-section {
  padding: 56px 0 90px;
  background: radial-gradient(circle at 85% 15%, var(--accent-rose-weak) 0%, transparent 60%),
              radial-gradient(circle at 15% 85%, rgba(29, 35, 50, 0.4) 0%, transparent 50%);
}

.hero-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: var(--surface-2);
  border: 1px solid var(--border-color);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent-rose);
  margin-bottom: 24px;
}

.badge-dot {
  width: 8px;
  height: 8px;
  background-color: var(--accent-rose);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(244, 63, 94, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(244, 63, 94, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(244, 63, 94, 0); }
}

.hero-title {
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  font-weight: 800;
  color: var(--text-main);
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}

.hero-description {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--text-muted);
  margin-bottom: 36px;
  max-width: 560px;
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 32px;
}

.btn-store {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 12px 24px;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.btn-google-play {
  background-color: var(--accent-rose);
  color: var(--text-white);
  box-shadow: var(--shadow-rose);
}

.btn-google-play:hover {
  background-color: var(--accent-rose-hover);
  transform: translateY(-2px);
}

.btn-contact-hero {
  background-color: var(--surface-1);
  color: var(--text-main);
  border: 1px solid var(--border-color);
}

.btn-contact-hero:hover {
  border-color: var(--accent-rose);
  transform: translateY(-2px);
}

.store-text { text-align: left; }
.store-text small { display: block; font-size: 0.65rem; letter-spacing: 0.05em; opacity: 0.8; font-weight: 600; }
.store-text span { font-size: 1.05rem; font-weight: 700; line-height: 1; }

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.trust-badge-label {
  background: var(--surface-1);
  border: 1px solid var(--border-color);
  color: var(--text-muted);
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  font-weight: 600;
}

/* --------------------------------------------------------------------------
   3. CANLI MOBİL TELEFON SİMÜLATÖRÜ (3 GERÇEK EKRAN BİREBİR MOCKUP)
   -------------------------------------------------------------------------- */
.hero-visual { display: flex; justify-content: center; }

.phone-frame-container {
  width: 100%;
  max-width: 360px;
}

.phone-frame {
  background: #090D16;
  border: 10px solid #1E293B;
  border-radius: 40px;
  padding: 12px 10px 18px;
  box-shadow: 0 25px 60px -15px rgba(0, 0, 0, 0.7);
  position: relative;
}

.phone-notch {
  width: 110px;
  height: 16px;
  background: #1E293B;
  border-radius: 0 0 12px 12px;
  margin: 0 auto 12px;
}

.phone-screen-content {
  background: var(--bg-dark);
  border-radius: 24px;
  padding: 12px 10px 10px;
  color: var(--text-main);
  min-height: 480px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* Uygulama Üst Barı (Birebir Screenshot) */
.app-top-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border-color);
  font-size: 0.75rem;
}

.app-btn-icon {
  background: var(--surface-2);
  border: 1px solid var(--border-color);
  color: var(--text-main);
  width: 28px;
  height: 28px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  cursor: pointer;
}

.app-screen-title {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text-white);
  margin-left: 2px;
}

.app-header-right {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 4px;
}

.streak-badge {
  background: var(--surface-2);
  border: 1px solid var(--border-color);
  padding: 2px 6px;
  border-radius: var(--radius-full);
  font-size: 0.65rem;
  font-weight: 700;
}

.pro-badge {
  background: var(--accent-gold);
  color: #000;
  font-weight: 800;
  font-size: 0.65rem;
  padding: 3px 8px;
  border-radius: var(--radius-full);
}

.login-btn-sm {
  background: var(--accent-rose);
  color: var(--text-white);
  border: none;
  padding: 3px 8px;
  border-radius: 6px;
  font-size: 0.65rem;
  font-weight: 700;
  cursor: pointer;
}

/* Ekran Geçiş Modları */
.app-view-screen {
  display: none;
  flex: 1;
  padding: 10px 0;
}

.app-view-screen.active {
  display: block;
}

/* Karşılama Kartı */
.app-welcome-banner {
  background: var(--surface-1);
  border: 1.5px solid var(--accent-rose);
  border-radius: var(--radius-md);
  padding: 12px;
  margin-bottom: 12px;
}

.welcome-header { display: flex; align-items: center; gap: 6px; margin-bottom: 4px; }
.sparkle-icon { font-size: 0.9rem; }
.welcome-title { font-size: 0.88rem; color: var(--text-white); font-weight: 700; }
.welcome-desc { font-size: 0.7rem; color: var(--text-muted); line-height: 1.4; margin-bottom: 10px; }

.welcome-actions { display: flex; flex-direction: column; gap: 6px; }

.app-btn-pink {
  background: var(--accent-rose);
  color: var(--text-white);
  border: none;
  padding: 7px 12px;
  border-radius: 8px;
  font-size: 0.72rem;
  font-weight: 700;
  cursor: pointer;
  text-align: center;
}

.app-btn-dark {
  background: var(--surface-2);
  border: 1px solid var(--border-color);
  color: var(--text-main);
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 0.7rem;
  font-weight: 600;
  cursor: pointer;
  text-align: center;
}

.app-section-label {
  font-size: 0.65rem;
  font-weight: 800;
  color: var(--text-dim);
  letter-spacing: 0.08em;
  margin: 8px 0 6px;
}

/* Modül Kartları (Birebir Ekran Görüntülerindeki Sol Kenarlık Renkleri) */
.app-module-cards {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.app-card {
  background: var(--surface-1);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  padding: 8px 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.border-rose { border-left: 4px solid var(--accent-rose); }
.border-purple { border-left: 4px solid var(--accent-purple); }
.border-gold { border-left: 4px solid var(--accent-gold); }
.border-teal { border-left: 4px solid var(--accent-teal); }
.border-indigo { border-left: 4px solid var(--accent-indigo); }
.border-blue { border-left: 4px solid var(--accent-blue); }
.border-cyan { border-left: 4px solid var(--accent-cyan); }
.border-amber { border-left: 4px solid var(--accent-amber); }

.app-card-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
}

.icon-bg-rose { background: rgba(244, 63, 94, 0.15); }
.icon-bg-purple { background: rgba(139, 92, 246, 0.15); }
.icon-bg-gold { background: rgba(245, 158, 11, 0.15); }
.icon-bg-teal { background: rgba(20, 184, 166, 0.15); }
.icon-bg-indigo { background: rgba(99, 102, 241, 0.15); }
.icon-bg-blue { background: rgba(59, 130, 246, 0.15); }
.icon-bg-cyan { background: rgba(6, 182, 212, 0.15); }
.icon-bg-amber { background: rgba(245, 158, 11, 0.15); }

.app-card-body strong { display: block; font-size: 0.78rem; color: var(--text-white); font-weight: 700; }
.app-card-body small { font-size: 0.65rem; color: var(--text-muted); display: block; }

/* Alt Tab Barı (Birebir Screenshot) */
.app-bottom-nav {
  display: flex;
  justify-content: space-around;
  background: var(--surface-1);
  border-top: 1px solid var(--border-color);
  padding: 6px 0 2px;
  margin-top: 6px;
  border-radius: 0 0 16px 16px;
}

.nav-tab-item {
  background: none;
  border: none;
  color: var(--text-dim);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  cursor: pointer;
  padding: 2px 4px;
  position: relative;
}

.nav-tab-icon { font-size: 0.9rem; }
.nav-tab-label { font-size: 0.6rem; font-weight: 600; }

.nav-tab-item.active {
  color: var(--accent-rose);
}

.nav-tab-item.active::before {
  content: '';
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 16px;
  height: 3px;
  background: var(--accent-rose);
  border-radius: 2px;
}

/* --------------------------------------------------------------------------
   4. MODÜLLER SEKSİYONU (MODULES GRID)
   -------------------------------------------------------------------------- */
.modules-section {
  padding: 90px 0;
  background: var(--surface-1);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
}

.section-subtitle {
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--accent-rose);
  letter-spacing: 0.1em;
  display: block;
  margin-bottom: 10px;
}

.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 14px;
}

.section-description {
  font-size: 1rem;
  color: var(--text-muted);
}

.modules-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.module-card {
  background: var(--surface-2);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 24px 20px;
  transition: transform var(--transition-normal), border-color var(--transition-normal);
}

.module-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent-rose);
}

.module-icon-wrapper {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.icon-rose { background: var(--accent-rose-weak); color: var(--accent-rose); }
.icon-purple { background: rgba(139, 92, 246, 0.15); color: var(--accent-purple); }
.icon-amber { background: var(--accent-gold-weak); color: var(--accent-gold); }
.icon-emerald { background: rgba(16, 185, 129, 0.15); color: var(--accent-emerald); }
.icon-blue { background: rgba(59, 130, 246, 0.15); color: var(--accent-blue); }
.icon-teal { background: rgba(20, 184, 166, 0.15); color: var(--accent-teal); }
.icon-indigo { background: rgba(99, 102, 241, 0.15); color: var(--accent-indigo); }

.module-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 4px;
}

.module-stats {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--accent-rose);
  margin-bottom: 10px;
}

.module-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* --------------------------------------------------------------------------
   5. CALCULATOR WIDGET
   -------------------------------------------------------------------------- */
.calculator-section { padding: 90px 0; }

.calculator-card {
  background: var(--surface-1);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 44px 32px;
  color: var(--text-main);
  box-shadow: var(--shadow-card);
}

.calc-header { text-align: center; max-width: 620px; margin: 0 auto 36px; }
.calc-title { font-size: clamp(1.5rem, 3vw, 2.2rem); font-weight: 800; margin-bottom: 10px; color: var(--text-white); }
.calc-sub { color: var(--text-muted); font-size: 0.95rem; }

.calc-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  align-items: center;
}

.calc-group { margin-bottom: 24px; }

.calc-group label {
  display: block;
  font-size: 0.92rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--text-main);
}

input[type="range"] {
  width: 100%;
  accent-color: var(--accent-rose);
  height: 8px;
  border-radius: 4px;
  background: var(--surface-2);
}

.range-labels {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  color: var(--text-dim);
  margin-top: 6px;
}

.calc-disclaimer-note {
  font-size: 0.8rem;
  color: var(--text-muted);
  background: var(--surface-2);
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--accent-rose);
}

.calc-result {
  background: var(--surface-2);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  text-align: center;
}

.res-label { font-size: 0.85rem; color: var(--text-muted); }

.res-days {
  font-size: 3.2rem;
  font-weight: 800;
  font-family: 'Outfit', sans-serif;
  color: var(--accent-rose);
  line-height: 1.1;
  margin: 6px 0 16px;
}

.res-days small { font-size: 1.1rem; color: var(--text-main); }

.res-details {
  border-top: 1px solid var(--border-color);
  padding-top: 16px;
  margin-bottom: 24px;
  text-align: left;
}

.res-item {
  display: flex;
  justify-content: space-between;
  font-size: 0.88rem;
  margin-bottom: 8px;
  color: var(--text-muted);
}

.res-item strong { color: var(--text-white); }
.btn-block { display: block; width: 100%; text-align: center; }

.btn-rose-lg {
  background: var(--accent-rose);
  color: var(--text-white);
  border: none;
  padding: 14px 28px;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 1rem;
  box-shadow: var(--shadow-rose);
  cursor: pointer;
  transition: background-color var(--transition-fast);
}

.btn-rose-lg:hover { background-color: var(--accent-rose-hover); }

/* --------------------------------------------------------------------------
   6. GERÇEKÇİ KULLANICI GERİ BİLDİRİMLERİ (REVIEWS)
   -------------------------------------------------------------------------- */
.reviews-section {
  padding: 90px 0;
  background: var(--surface-1);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.review-card {
  background: var(--surface-2);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 24px 20px;
}

.review-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.user-avatar {
  width: 40px;
  height: 40px;
  background: var(--accent-rose-weak);
  color: var(--accent-rose);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
}

.user-meta h4 { font-size: 0.95rem; color: var(--text-white); }
.user-meta p { font-size: 0.78rem; color: var(--text-muted); }
.review-text { font-size: 0.88rem; color: var(--text-muted); line-height: 1.6; }

/* --------------------------------------------------------------------------
   7. SIKÇA SORULAN SORULAR (FAQ ACCORDION)
   -------------------------------------------------------------------------- */
.faq-section { padding: 90px 0; }

.faq-accordion { max-width: 800px; margin: 0 auto; }

.faq-item {
  background: var(--surface-1);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  margin-bottom: 14px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 18px 24px;
  text-align: left;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-main);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-family: 'Outfit', sans-serif;
}

.faq-icon {
  font-size: 1.4rem;
  color: var(--accent-rose);
  transition: transform var(--transition-fast);
}

.faq-item.active .faq-icon { transform: rotate(45deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 24px;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  padding: 0 24px 20px;
}

.faq-answer p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.6; }

/* --------------------------------------------------------------------------
   8. FOOTER & YASAL SORUMLULUK REDDİ
   -------------------------------------------------------------------------- */
.site-footer {
  background-color: var(--surface-1);
  color: var(--text-muted);
  padding-top: 60px;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 36px;
  padding-bottom: 44px;
}

.footer-brand-col .brand-name { color: var(--text-white); }
.footer-desc { margin-top: 12px; font-size: 0.85rem; max-width: 300px; }
.footer-col h4 { color: var(--text-white); font-size: 1rem; margin-bottom: 16px; }
.footer-menu li { margin-bottom: 10px; }
.footer-menu a:hover { color: var(--accent-rose); }

.footer-link-btn {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 0.88rem;
  cursor: pointer;
  padding: 0;
}

.footer-link-btn:hover { color: var(--accent-rose); }

.legal-disclaimer-bar {
  background: var(--bg-dark);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  padding: 16px 0;
  font-size: 0.78rem;
  color: var(--text-dim);
  line-height: 1.5;
}

.copyright-bar {
  padding: 20px 0;
  text-align: center;
  font-size: 0.82rem;
  color: var(--text-dim);
}

.copyright-bar a { color: var(--accent-rose); }

/* --------------------------------------------------------------------------
   9. CANLI MODAL STİLLERİ (WORKING MODALS)
   -------------------------------------------------------------------------- */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(6px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-card {
  background: var(--surface-1);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 480px;
  padding: 28px;
  position: relative;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8);
  transform: translateY(20px);
  transition: transform 0.25s ease;
}

.modal-overlay.active .modal-card {
  transform: translateY(0);
}

.modal-lg { max-width: 640px; }

.modal-close {
  position: absolute;
  top: 16px;
  right: 18px;
  background: none;
  border: none;
  font-size: 1.8rem;
  color: var(--text-muted);
  cursor: pointer;
  line-height: 1;
}

.modal-close:hover { color: var(--accent-rose); }

.modal-header {
  margin-bottom: 18px;
  padding-right: 30px;
}

.modal-header h3 { font-size: 1.25rem; color: var(--text-white); }
.modal-icon { font-size: 1.8rem; display: block; margin-bottom: 8px; }

.modal-body p { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 16px; }
.modal-scroll-body { max-height: 380px; overflow-y: auto; padding-right: 10px; }
.modal-scroll-body h4 { font-size: 0.98rem; color: var(--text-white); margin: 16px 0 6px; }

.modal-download-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 16px;
}

.btn-store-modal {
  display: block;
  text-align: center;
  padding: 12px 20px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.92rem;
}

.btn-google-play { background: var(--accent-rose); color: var(--text-white); }

.modal-note { font-size: 0.75rem; color: var(--text-dim); text-align: center; display: block; }

/* Form Stilleri */
.modal-form { display: flex; flex-direction: column; gap: 14px; margin-bottom: 14px; }
.form-group { text-align: left; }
.form-group label { display: block; font-size: 0.82rem; font-weight: 600; color: var(--text-main); margin-bottom: 6px; }

.form-group input,
.form-group textarea {
  width: 100%;
  background: var(--surface-2);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  color: var(--text-white);
  font-family: inherit;
  font-size: 0.88rem;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent-rose);
}

.contact-status-msg {
  font-size: 0.85rem;
  font-weight: 600;
  text-align: center;
  margin-top: 10px;
}

.direct-email-text { font-size: 0.8rem; color: var(--text-dim); text-align: center; margin-top: 12px; }
.direct-email-text a { color: var(--accent-rose); }

/* Media Queries */
@media (min-width: 992px) {
  .hero-container { grid-template-columns: 1.1fr 0.9fr; gap: 60px; }
  .calc-grid { grid-template-columns: 1.2fr 0.8fr; }
}

@media (max-width: 640px) {
  .header-nav .nav-link { display: none; }
  .hero-trust { justify-content: center; }
}
