:root {
  --primary: #E11D48;
  --primary-hover: #BE123C;
  --primary-light: #FFF1F2;
  --primary-border: #FFE4E6;
  
  --bg-page: #FFFFFF;
  --bg-subtle: #F8FAFC;
  --bg-card: #FFFFFF;
  
  --text-main: #0F172A;
  --text-muted: #475569;
  --text-dim: #64748B;
  
  --border: #E2E8F0;
  --border-light: #F1F5F9;
  
  --shadow-sm: 0 2px 8px rgba(15, 23, 42, 0.04);
  --shadow-md: 0 8px 24px rgba(15, 23, 42, 0.06);
  --shadow-lg: 0 16px 36px rgba(15, 23, 42, 0.08);
  
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background-color: var(--bg-page);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
  width: 100%;
  -webkit-font-smoothing: antialiased;
}

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

.text-center { text-align: center; }

/* Navbar */
.navbar {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid var(--border);
}
.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 20px;
  max-width: 1140px;
  margin: 0 auto;
}
.brand-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}
.logo-icon {
  width: 34px;
  height: 34px;
  background: var(--primary-light);
  color: var(--primary);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  border: 1px solid var(--primary-border);
}
.logo-brand {
  font-size: 19px;
  font-weight: 800;
  color: var(--text-main);
  letter-spacing: -0.5px;
}
.logo-brand span { color: var(--primary); }

.nav-menu { display: flex; gap: 24px; }
.nav-menu a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: color 0.15s;
}
.nav-menu a:hover { color: var(--primary); }

.nav-actions { display: flex; align-items: center; gap: 8px; }
.btn-nav-wa {
  background: #16A34A;
  color: #FFF;
  padding: 7px 14px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  transition: all 0.2s;
  white-space: nowrap;
}
.btn-nav-wa:hover { background: #15803D; }
.btn-nav-login {
  background: var(--bg-subtle);
  border: 1px solid var(--border);
  color: var(--text-main);
  padding: 7px 14px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
}
.btn-nav-login:hover { background: #EDF2F7; }

/* Hero */
.hero-section {
  padding: 60px 0 45px;
  background: radial-gradient(circle at 50% 10%, rgba(225, 29, 72, 0.05) 0%, transparent 60%);
  text-align: center;
}
.hero-container { max-width: 820px; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--primary-light);
  border: 1px solid var(--primary-border);
  padding: 6px 14px;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 20px;
}
.badge-star { color: #F59E0B; }
.hero-title {
  font-size: clamp(30px, 6vw, 48px);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -1px;
  color: var(--text-main);
  margin-bottom: 16px;
}
.highlight { color: var(--primary); display: inline-block; }
.hero-sub {
  font-size: clamp(15px, 3.5vw, 17px);
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 660px;
  margin: 0 auto 30px;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.btn-primary {
  background: var(--primary);
  color: #FFF;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(225, 29, 72, 0.3);
  transition: all 0.2s;
  display: inline-block;
  text-align: center;
}
.btn-primary:hover { background: var(--primary-hover); transform: translateY(-2px); }
.btn-secondary {
  background: #FFF;
  border: 1px solid var(--border);
  color: var(--text-main);
  padding: 14px 24px;
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: var(--shadow-sm);
  transition: all 0.2s;
  display: inline-block;
  text-align: center;
}
.btn-secondary:hover { background: var(--bg-subtle); }

.hero-stats-row {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.stat-pill {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-dim);
  display: flex;
  align-items: center;
  gap: 4px;
}
.check-icon { color: #10B981; font-weight: 800; }

/* Metrics Bar (Güven Barı) */
.section-metrics {
  background: #FFF;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 24px 0;
}
.metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}
.metric-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  border-right: 1px solid var(--border-light);
}
.metric-item:last-child { border-right: none; }
.m-number {
  font-size: 28px;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.5px;
}
.m-text { font-size: 12px; font-weight: 600; color: var(--text-muted); text-transform: uppercase; }

/* Section Common */
.section-title { margin-bottom: 40px; }
.section-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: var(--primary);
  background: var(--primary-light);
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 10px;
}
.section-title h2 {
  font-size: clamp(24px, 5vw, 34px);
  font-weight: 800;
  letter-spacing: -0.8px;
  color: var(--text-main);
  margin-bottom: 10px;
}
.section-title p {
  font-size: 15px;
  color: var(--text-muted);
  max-width: 620px;
  margin: 0 auto;
}

/* 3 Temel Çözüm */
.section-services {
  padding: 70px 0;
  background: var(--bg-subtle);
  border-bottom: 1px solid var(--border);
}
.services-3-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.srv-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 30px 24px;
  position: relative;
  box-shadow: var(--shadow-sm);
  transition: all 0.2s;
}
.srv-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.srv-card.featured {
  border-color: var(--primary);
  box-shadow: 0 6px 24px rgba(225, 29, 72, 0.1);
}
.badge-card {
  position: absolute;
  top: -11px;
  right: 20px;
  background: var(--primary);
  color: #FFF;
  font-size: 10px;
  font-weight: 800;
  padding: 3px 10px;
  border-radius: 20px;
}
.srv-icon-box {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 16px;
}
.srv-icon-box.pink { background: #FFE4E6; }
.srv-icon-box.rose { background: #FFE4E6; color: var(--primary); }
.srv-icon-box.green { background: #DCFCE7; }
.srv-card h3 { font-size: 18px; font-weight: 800; color: var(--text-main); margin-bottom: 10px; }
.srv-card p { font-size: 13.5px; color: var(--text-muted); line-height: 1.55; margin-bottom: 18px; }
.srv-benefits {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-top: 1px solid var(--border-light);
  padding-top: 16px;
}
.srv-benefits li {
  font-size: 12.5px;
  color: var(--text-muted);
  position: relative;
  padding-left: 18px;
}
.srv-benefits li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #10B981;
  font-weight: 800;
}

/* İNTERAKTİF SİMÜLATÖR */
.section-interactive {
  padding: 70px 0;
  background: #FFFFFF;
}
.interactive-simulator-box {
  background: var(--bg-subtle);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 30px;
  align-items: center;
  box-shadow: var(--shadow-md);
}
.sim-label { font-size: 12.5px; font-weight: 700; color: var(--text-muted); display: block; margin-bottom: 8px; }
.sim-pills { display: flex; flex-wrap: wrap; gap: 8px; }
.sim-pill {
  padding: 10px 16px;
  background: #FFF;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 600;
  color: var(--text-main);
  cursor: pointer;
  transition: all 0.2s;
}
.sim-pill:hover { border-color: var(--primary); }
.sim-pill.active {
  background: var(--primary-light);
  border-color: var(--primary);
  color: var(--primary);
}

.sim-hours { display: flex; flex-wrap: wrap; gap: 8px; }
.sim-hour {
  padding: 8px 14px;
  background: #FFF;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
}
.sim-hour:hover:not(:disabled) { border-color: var(--primary); }
.sim-hour.active { background: var(--primary); color: #FFF; border-color: var(--primary); }
.sim-hour.booked { background: #F1F5F9; color: #94A3B8; border-style: dashed; cursor: not-allowed; }

.sim-phone-screen {
  background: #FFF;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px;
  box-shadow: var(--shadow-sm);
}
.sim-screen-header {
  font-size: 11px;
  font-weight: 800;
  color: #16A34A;
  text-transform: uppercase;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.sim-chat-bubble {
  background: #DCFCE7;
  border-radius: 12px 12px 12px 2px;
  padding: 14px 16px;
  font-size: 13px;
  color: #064E3B;
  line-height: 1.5;
  margin-bottom: 12px;
}
.chat-sender { font-size: 10px; font-weight: 800; color: #047857; text-transform: uppercase; margin-bottom: 4px; }
.chat-time { font-size: 10px; color: #059669; text-align: right; margin-top: 6px; font-weight: 600; }
.sim-screen-status {
  font-size: 11.5px;
  color: var(--text-dim);
  display: flex;
  align-items: center;
  gap: 6px;
}
.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #10B981;
  display: inline-block;
}

/* Referanslar & Sosyal Kanıt */
.section-testimonials {
  padding: 70px 0;
  background: var(--bg-subtle);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.testi-card {
  background: #FFF;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.testi-card.featured {
  border-color: var(--primary);
  box-shadow: 0 6px 20px rgba(225, 29, 72, 0.08);
}
.testi-badge {
  position: absolute;
  top: -10px;
  right: 18px;
  background: #10B981;
  color: #FFF;
  font-size: 9px;
  font-weight: 800;
  padding: 3px 10px;
  border-radius: 20px;
  letter-spacing: 0.5px;
}
.testi-stars { color: #F59E0B; font-size: 15px; margin-bottom: 12px; }
.testi-quote {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 20px;
  font-style: italic;
}
.testi-author { display: flex; align-items: center; gap: 10px; }
.author-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}
.testi-author strong { font-size: 13px; color: var(--text-main); display: block; }
.testi-author small { font-size: 11.5px; color: var(--text-dim); }

/* Güvenlik & KVKK Rozetleri */
.section-security {
  padding: 40px 0;
  background: #FFF;
}
.security-box {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  padding: 24px;
  background: var(--bg-subtle);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
}
.sec-item { display: flex; align-items: center; gap: 12px; }
.sec-icon { font-size: 24px; }
.sec-item strong { display: block; font-size: 13px; color: var(--text-main); }
.sec-item small { font-size: 11px; color: var(--text-dim); }

/* Fiyatlandırma (Sade 2 Paket) */
.section-pricing {
  padding: 70px 0;
  background: var(--bg-subtle);
  border-top: 1px solid var(--border);
}
.pricing-2-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 800px;
  margin: 0 auto;
}
.pricing-card {
  background: #FFF;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: all 0.2s;
}
.pricing-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.pricing-card.pop {
  border-color: var(--primary);
  box-shadow: 0 8px 24px rgba(225, 29, 72, 0.1);
}
.pop-tag {
  position: absolute;
  top: -11px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: #FFF;
  font-size: 10px;
  font-weight: 800;
  padding: 3px 12px;
  border-radius: 20px;
  white-space: nowrap;
}
.p-top { margin-bottom: 20px; text-align: center; }
.p-type { font-size: 11px; font-weight: 800; color: var(--primary); letter-spacing: 1px; }
.p-price { font-size: 36px; font-weight: 800; color: var(--text-main); margin: 6px 0; }
.p-price span { font-size: 13px; font-weight: 500; color: var(--text-dim); }
.p-top p { font-size: 12.5px; color: var(--text-muted); }
.p-list { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; }
.p-list li { font-size: 13px; color: var(--text-muted); }
.p-list li strong { color: var(--text-main); }
.btn-pricing {
  display: block;
  width: 100%;
  padding: 12px;
  text-align: center;
  background: var(--bg-subtle);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text-main);
  text-decoration: none;
  font-weight: 700;
  font-size: 13px;
  transition: all 0.2s;
}
.btn-pricing:hover { background: #E2E8F0; }
.btn-pricing.primary {
  background: var(--primary);
  border-color: var(--primary);
  color: #FFF;
  box-shadow: 0 3px 12px rgba(225, 29, 72, 0.3);
}
.btn-pricing.primary:hover { background: var(--primary-hover); }

/* Sıkça Sorulan Sorular (Accordion) */
.section-faq {
  padding: 70px 0;
  background: #FFF;
  border-top: 1px solid var(--border);
}
.faq-container {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.faq-item {
  background: var(--bg-subtle);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.faq-btn {
  width: 100%;
  padding: 16px 20px;
  background: transparent;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  font-weight: 700;
  color: var(--text-main);
  cursor: pointer;
  text-align: left;
}
.faq-icon { font-size: 18px; color: var(--primary); transition: transform 0.2s; }
.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
  padding: 0 20px;
  color: var(--text-muted);
  font-size: 13.5px;
  line-height: 1.6;
}
.faq-item.active .faq-content {
  max-height: 200px;
  padding-bottom: 16px;
}
.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

/* Lead Form Section */
.section-lead {
  padding: 70px 0;
  background: var(--bg-subtle);
  border-top: 1px solid var(--border);
}
.lead-wrapper {
  max-width: 640px;
  margin: 0 auto;
  background: #FFF;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  box-shadow: var(--shadow-md);
}
.lead-text { margin-bottom: 24px; }
.lead-text h2 { font-size: 24px; font-weight: 800; margin-bottom: 6px; }
.lead-text p { font-size: 13.5px; color: var(--text-muted); }
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 16px;
}
.f-group { display: flex; flex-direction: column; gap: 4px; }
.f-group label { font-size: 11.5px; font-weight: 700; color: var(--text-muted); }
.f-group input, .f-group select {
  padding: 11px 12px;
  background: #FFF;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 13.5px;
  color: var(--text-main);
  outline: none;
}
.f-group input:focus, .f-group select:focus { border-color: var(--primary); }
.btn-submit-lead {
  width: 100%;
  padding: 14px;
  background: var(--primary);
  color: #FFF;
  border: none;
  border-radius: var(--radius-sm);
  font-size: 14.5px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(225, 29, 72, 0.25);
  transition: all 0.2s;
}
.btn-submit-lead:hover { background: var(--primary-hover); }
.form-trust-note {
  font-size: 11.5px;
  color: var(--text-dim);
  text-align: center;
  margin-top: 10px;
}
.alert-box { padding: 10px; border-radius: var(--radius-sm); font-size: 12.5px; margin-top: 10px; text-align: center; }
.alert-box.err { background: #FEE2E2; color: #DC2626; border: 1px solid #FECACA; }
.done-box { text-align: center; padding: 20px 10px; }
.done-icon { font-size: 40px; margin-bottom: 10px; }
.done-box h3 { font-size: 20px; margin-bottom: 6px; color: var(--text-main); }
.done-box p { color: var(--text-muted); font-size: 13.5px; margin-bottom: 16px; }
.btn-wa-done {
  background: #16A34A;
  color: #FFF;
  padding: 11px 20px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  font-weight: 700;
  font-size: 13px;
  display: inline-block;
}

/* Footer */
.footer {
  background: #0F172A;
  color: #F8FAFC;
  padding: 40px 0 20px;
}
.footer-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  padding-bottom: 24px;
  border-bottom: 1px solid #1E293B;
}
.f-brand strong { font-size: 17px; color: #FFF; }
.f-brand strong span { color: var(--primary); }
.f-brand p { font-size: 12.5px; color: #94A3B8; margin-top: 4px; }
.f-links { display: flex; gap: 16px; flex-wrap: wrap; }
.f-links a { color: #94A3B8; text-decoration: none; font-size: 12.5px; }
.f-links a:hover { color: #FFF; }
.f-bottom { padding-top: 16px; font-size: 11.5px; color: #64748B; }

/* Floating WA */
.float-wa {
  position: fixed;
  bottom: 16px;
  right: 16px;
  background: #16A34A;
  color: #FFF;
  padding: 10px 16px;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(22, 163, 74, 0.4);
  z-index: 1000;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: all 0.2s;
}
.float-wa:hover { transform: translateY(-2px); }

/* Responsive (Mobile) */
@media (max-width: 768px) {
  .nav-menu { display: none; }
  .nav-container { padding: 12px 16px; }
  .logo-brand { font-size: 17px; }
  .btn-nav-wa { padding: 6px 10px; font-size: 12px; }
  .btn-nav-login { padding: 6px 10px; font-size: 12px; }
  
  .hero-section { padding: 40px 0 32px; }
  .hero-actions { flex-direction: column; width: 100%; }
  .hero-actions .btn-primary, .hero-actions .btn-secondary { width: 100%; }
  .hero-stats-row { flex-direction: column; gap: 8px; }
  
  .metrics-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .metric-item { border-right: none; }
  
  .services-3-grid { grid-template-columns: 1fr; }
  .interactive-simulator-box { grid-template-columns: 1fr; padding: 20px 16px; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .security-box { grid-template-columns: 1fr; padding: 16px; }
  
  .pricing-2-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .lead-wrapper { padding: 20px 14px; }
  
  .footer-flex { flex-direction: column; text-align: center; gap: 14px; }
  .f-links { justify-content: center; }
}

/* -------------------------------------------------------------
   Kurumsal Sayfalar (Hakkımızda, İletişim, KVKK)
------------------------------------------------------------- */
.nav-menu a.active { color: var(--primary); font-weight: 700; }

.page-header {
  padding: 55px 0 35px;
  background: radial-gradient(circle at 50% 0%, rgba(225, 29, 72, 0.04) 0%, transparent 60%);
  text-align: center;
}
.page-title {
  font-size: clamp(28px, 5vw, 40px);
  font-weight: 800;
  letter-spacing: -0.8px;
  color: var(--text-main);
  margin-bottom: 12px;
}
.page-sub {
  font-size: 15.5px;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}

/* Hakkımızda İçerik */
.section-about-content { padding: 60px 0; }
.about-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 36px;
  align-items: start;
}
.sub-badge {
  font-size: 11px;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: 1.5px;
  background: var(--primary-light);
  padding: 4px 12px;
  border-radius: 20px;
  display: inline-block;
  margin-bottom: 10px;
}
.about-story h2 { font-size: 26px; font-weight: 800; margin-bottom: 14px; }
.about-story p { font-size: 14px; color: var(--text-muted); line-height: 1.7; margin-bottom: 14px; }

.mission-vision-cards { display: flex; flex-direction: column; gap: 16px; }
.mv-card {
  background: var(--bg-subtle);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px;
}
.mv-icon { font-size: 28px; margin-bottom: 8px; }
.mv-card h3 { font-size: 17px; font-weight: 800; margin-bottom: 6px; color: var(--text-main); }
.mv-card p { font-size: 13px; color: var(--text-muted); line-height: 1.6; }

/* Değerlerimiz */
.section-values {
  padding: 70px 0;
  background: var(--bg-subtle);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 18px;
}
.value-item {
  background: #FFF;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px 20px;
}
.val-num { font-size: 13px; font-weight: 800; color: var(--primary); margin-bottom: 8px; }
.value-item h3 { font-size: 16px; font-weight: 800; margin-bottom: 6px; }
.value-item p { font-size: 12.5px; color: var(--text-muted); line-height: 1.55; }

/* Kurumsal Çatı (Metaton Danışmanlık Hafif Geçiş) */
.section-corporate { padding: 45px 0; background: #FFF; }
.corporate-banner {
  background: var(--bg-subtle);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 30px 28px;
  display: flex;
  gap: 22px;
  align-items: center;
}
.corp-icon { font-size: 40px; flex-shrink: 0; }
.corp-tag {
  font-size: 10.5px;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: 1px;
  display: block;
  margin-bottom: 4px;
}
.corp-text h3 { font-size: 18px; font-weight: 800; margin-bottom: 6px; }
.corp-text p { font-size: 13px; color: var(--text-muted); line-height: 1.6; }

.section-cta-about {
  padding: 60px 0;
  background: var(--bg-subtle);
  border-top: 1px solid var(--border);
}
.cta-actions { display: flex; justify-content: center; gap: 12px; margin-top: 20px; flex-wrap: wrap; }

/* İletişim Sayfası */
.section-contact-content { padding: 50px 0 70px; }
.contact-layout-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.contact-cards-col { display: flex; flex-direction: column; gap: 14px; }
.contact-info-card {
  background: var(--bg-subtle);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.ci-icon { font-size: 26px; }
.contact-info-card strong { font-size: 14px; color: var(--text-main); display: block; margin-bottom: 4px; }
.contact-info-card p { font-size: 12.5px; color: var(--text-muted); line-height: 1.5; }
.ci-link {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
  display: inline-block;
  margin-top: 6px;
}

.contact-form-box {
  background: #FFF;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 30px 24px;
  box-shadow: var(--shadow-sm);
}
.contact-form-box h3 { font-size: 20px; font-weight: 800; margin-bottom: 6px; }
.contact-form-box p { font-size: 13px; color: var(--text-muted); margin-bottom: 20px; }
.contact-form-box .form-field { margin-bottom: 14px; }
.contact-form-box textarea {
  width: 100%;
  padding: 11px 12px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 13.5px;
  outline: none;
  font-family: inherit;
}
.contact-form-box textarea:focus { border-color: var(--primary); }

/* KVKK & Legal */
.section-legal { padding: 50px 0 70px; }
.legal-container {
  max-width: 800px;
  margin: 0 auto;
  background: #FFF;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  box-shadow: var(--shadow-sm);
}
.legal-container h3 { font-size: 17px; font-weight: 800; margin: 24px 0 8px; color: var(--text-main); }
.legal-container h3:first-child { margin-top: 0; }
.legal-container p { font-size: 13.5px; color: var(--text-muted); line-height: 1.7; margin-bottom: 10px; }
.legal-container ul { margin-left: 20px; margin-bottom: 14px; }
.legal-container li { font-size: 13px; color: var(--text-muted); line-height: 1.6; margin-bottom: 6px; }

@media (max-width: 768px) {
  .about-grid { grid-template-columns: 1fr; }
  .contact-layout-grid { grid-template-columns: 1fr; }
  .corporate-banner { flex-direction: column; text-align: center; }
  .legal-container { padding: 24px 16px; }
}

/* -------------------------------------------------------------
   Hero Split Grid & iPhone Mockup
------------------------------------------------------------- */
.hero-split-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 40px;
  align-items: center;
  text-align: left;
}
.hero-text-col { max-width: 580px; }
.hero-text-col .hero-actions { justify-content: flex-start; }
.hero-text-col .hero-stats-row { justify-content: flex-start; }

.hero-visual-col {
  display: flex;
  justify-content: center;
  position: relative;
}

/* Phone Mockup Wrapper */
.phone-mockup-wrapper {
  position: relative;
  width: 100%;
  max-width: 320px;
  margin: 0 auto;
}

/* iPhone Frame */
.phone-frame {
  background: #0F172A;
  border: 10px solid #1E293B;
  border-radius: 44px;
  padding: 10px 8px;
  box-shadow: 0 25px 60px rgba(15, 23, 42, 0.2), 0 0 30px rgba(225, 29, 72, 0.08);
  position: relative;
}
.phone-island {
  width: 90px;
  height: 22px;
  background: #000;
  border-radius: 20px;
  margin: 0 auto 12px;
}
.phone-screen {
  background: #FFFFFF;
  border-radius: 32px;
  padding: 20px 16px;
  overflow: hidden;
  box-shadow: inset 0 2px 6px rgba(0,0,0,0.04);
}

/* Inside Phone App */
.p-app-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}
.p-sub { font-size: 11px; color: var(--text-dim); display: block; font-weight: 600; }
.p-title { font-size: 13.5px; font-weight: 800; color: var(--text-main); }
.p-avatar {
  width: 32px;
  height: 32px;
  background: var(--primary-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

.p-calendar-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
  margin-bottom: 16px;
}
.p-day {
  background: var(--bg-subtle);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 8px 4px;
  text-align: center;
  font-size: 11px;
}
.p-day span { display: block; font-size: 10px; color: var(--text-dim); }
.p-day strong { font-size: 14px; color: var(--text-main); }
.p-day.active {
  background: var(--primary);
  border-color: var(--primary);
  color: #FFF;
}
.p-day.active span { color: rgba(255,255,255,0.8); }
.p-day.active strong { color: #FFF; }

.p-session-card {
  background: var(--primary-light);
  border: 1px solid var(--primary-border);
  border-radius: 14px;
  padding: 14px;
  margin-bottom: 12px;
}
.p-card-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 6px; }
.p-tag-active { font-size: 9.5px; font-weight: 800; color: var(--primary); letter-spacing: 0.5px; }
.p-clock { font-size: 11px; color: var(--primary); font-weight: 600; }
.p-session-card h4 { font-size: 13px; font-weight: 800; color: var(--text-main); margin-bottom: 2px; }
.p-session-card p { font-size: 11px; color: var(--text-dim); margin-bottom: 10px; }
.p-card-footer { display: flex; justify-content: space-between; align-items: center; }
.p-time-badge { background: #FFF; padding: 3px 8px; border-radius: 6px; font-size: 10.5px; font-weight: 800; color: var(--text-main); }
.p-session-remain { font-size: 10.5px; color: var(--text-dim); }
.p-session-remain strong { color: var(--primary); }

.p-next-card {
  background: var(--bg-subtle);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 10px 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.p-next-time { font-size: 12.5px; font-weight: 800; color: var(--text-main); }
.p-next-info { flex-grow: 1; }
.p-next-info strong { display: block; font-size: 11.5px; color: var(--text-main); }
.p-next-info small { font-size: 10px; color: var(--text-dim); }
.p-next-badge { background: #DCFCE7; color: #16A34A; font-size: 9.5px; font-weight: 800; padding: 2px 6px; border-radius: 10px; }

.p-book-btn {
  width: 100%;
  padding: 11px;
  background: var(--primary);
  color: #FFF;
  border: none;
  border-radius: 10px;
  font-size: 12.5px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(225, 29, 72, 0.25);
}

/* Floating Dynamic Badges */
.floating-badge {
  position: absolute;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.12);
  z-index: 10;
  white-space: nowrap;
}
.fb-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}
.fb-icon.green { background: #DCFCE7; }
.fb-icon.pink { background: #FFE4E6; }
.floating-badge strong { font-size: 12px; color: var(--text-main); display: block; }
.floating-badge small { font-size: 10.5px; color: var(--text-dim); display: block; }

.badge-top {
  top: 15px;
  left: -40px;
}
.badge-bottom {
  bottom: 25px;
  right: -30px;
}

@keyframes floatBadge1 {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-8px); }
  100% { transform: translateY(0px); }
}
@keyframes floatBadge2 {
  0% { transform: translateY(0px); }
  50% { transform: translateY(8px); }
  100% { transform: translateY(0px); }
}
.float-anim-1 { animation: floatBadge1 4s ease-in-out infinite; }
.float-anim-2 { animation: floatBadge2 4.5s ease-in-out infinite 0.5s; }

/* -------------------------------------------------------------
   Pilates Salonu & Reformer Görsel Vitrini
------------------------------------------------------------- */
.section-studio-showcase {
  padding: 75px 0;
  background: #FFFFFF;
}
.showcase-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
  gap: 24px;
}
.showcase-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}
.showcase-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: #CBD5E1;
}

.showcase-img-wrap {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
  background: #F1F5F9;
}
.showcase-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.showcase-card:hover .showcase-img {
  transform: scale(1.05);
}

.showcase-overlay-chip {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(8px);
  color: #FFF;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
}
.showcase-overlay-chip.pink {
  background: rgba(225, 29, 72, 0.9);
}

.showcase-content {
  padding: 24px;
}
.showcase-meta {
  font-size: 10.5px;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: 1px;
  margin-bottom: 6px;
}
.showcase-content h3 {
  font-size: 18px;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 8px;
}
.showcase-content p {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Responsive Tweak for Hero Split */
@media (max-width: 900px) {
  .hero-split-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }
  .hero-text-col {
    max-width: 100%;
  }
  .hero-text-col .hero-actions { justify-content: center; }
  .hero-text-col .hero-stats-row { justify-content: center; }
  .badge-top { left: 0px; top: -10px; }
  .badge-bottom { right: 0px; bottom: -10px; }
}
