/* ═══════════════════════════════════════════
   CSS VARIABLES & RESET - Modern
   ═══════════════════════════════════════════ */
:root {
  --primary: #0891B2;
  --primary-dark: #0E7490;
  --primary-light: #22D3EE;
  --accent: #14B8A6;
  --accent-dark: #0D9488;
  --gold: #F59E0B;
  --gold-light: #FCD34D;
  --dark: #0F172A;
  --dark-2: #1E293B;
  --dark-3: #334155;
  --gray: #64748B;
  --gray-light: #94A3B8;
  --light: #F8FAFC;
  --light-2: #F1F5F9;
  --white: #FFFFFF;
  --gradient-1: linear-gradient(135deg, #0891B2 0%, #14B8A6 100%);
  --gradient-2: linear-gradient(160deg, #0F172A 0%, #1E293B 50%, #0F172A 100%);
  --gradient-hero: linear-gradient(180deg, rgba(15,23,42,0.94) 0%, rgba(15,23,42,0.78) 50%, rgba(15,23,42,0.94) 100%);
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.06);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.08);
  --shadow-xl: 0 24px 48px rgba(0,0,0,0.1);
  --shadow-soft: 0 20px 60px rgba(15,23,42,0.06);
  --radius: 20px;
  --radius-sm: 12px;
  --radius-xs: 8px;
  --radius-lg: 24px;
  --surface: #FAFBFC;
  --surface-2: #F1F5F9;
  --line: rgba(148,163,184,0.2);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-heading: 'Outfit', -apple-system, sans-serif;
  --font-body: 'DM Sans', -apple-system, sans-serif;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  overflow-x: hidden;
  overflow-x: clip;
  max-width: 100%;
  /* Kaydırma çubuğu sonradan gelince genişlik zıplamasını azaltır (kenar boşluğu / beyaz şerit) */
  scrollbar-gutter: stable;
}

body {
  font-family: var(--font-body);
  color: var(--dark);
  background:
    radial-gradient(ellipse 80% 50% at 0% 0%, rgba(8,145,178,0.04), transparent 50%),
    radial-gradient(ellipse 60% 40% at 100% 0%, rgba(20,184,166,0.05), transparent 45%),
    var(--white);
  line-height: 1.65;
  overflow-x: hidden;
  overflow-x: clip;
  max-width: 100%;
  -webkit-font-smoothing: antialiased;
}
body.no-scroll { overflow: hidden; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul { list-style: none; }

.mi {
  font-family: 'Material Symbols Rounded';
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-variation-settings: 'FILL' 1, 'wght' 600, 'GRAD' 0, 'opsz' 28;
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ═══════════════════════════════════════════
   PRELOADER
   ═══════════════════════════════════════════ */
#preloader {
  position: fixed;
  inset: 0;
  width: 100%;
  min-height: 100%;
  min-height: 100svh;
  z-index: 99999;
  background: var(--dark);
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.6s ease;
}
#preloader.loaded { opacity: 0; pointer-events: none; }
.spinner {
  width: 44px; height: 44px;
  border: 3px solid rgba(255,255,255,0.1);
  border-top-color: var(--primary-light);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:0.4} }

/* ═══════════════════════════════════════════
   NAVBAR - Floating Pill Design
   ═══════════════════════════════════════════ */
.navbar {
  position: fixed; top: 0; left: 0; right: 0;
  width: 100%;
  max-width: 100%;
  z-index: 1000;
  padding: 18px 0;
  transition: all 0.4s ease;
}
.navbar.scrolled { padding: 12px 0; }

.nav-shell {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 10px 16px; border-radius: 28px;
  background: rgba(15,23,42,0.12);
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
  transition: all 0.35s ease;
}
.navbar.scrolled .nav-shell {
  background: rgba(255,255,255,0.88);
  border-color: rgba(148,163,184,0.12);
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
}

.navbar-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px; font-weight: 700;
  color: #e5f2ff;
  transition: color 0.3s;
  letter-spacing: -0.02em;
  text-decoration: none;
}
.navbar-logo em {
  font-style: normal;
  color: var(--primary-light);
}
.navbar.scrolled .navbar-logo { color: #0f172a; }
.navbar.scrolled .navbar-logo em { color: var(--primary); }

.nav-links {
  display: none; align-items: center; gap: 4px;
  margin-left: auto; margin-right: 16px;
  background: rgba(255,255,255,0.08);
  padding: 6px 8px; border-radius: 50px;
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  flex-wrap: nowrap;
  justify-content: flex-end;
}
.navbar.scrolled .nav-links {
  background: rgba(241,245,249,0.8);
  border-color: rgba(148,163,184,0.2);
}

.nav-links a {
  font-size: 12px; font-weight: 600;
  color: rgba(255,255,255,0.95);
  transition: all 0.25s cubic-bezier(0.4,0,0.2,1);
  padding: 8px 12px; border-radius: 50px;
  background: transparent; position: relative; overflow: hidden;
  white-space: nowrap;
}
.nav-links a::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(8,145,178,0.18), rgba(20,184,166,0.18));
  opacity: 0; transition: opacity 0.3s ease; border-radius: 50px;
}
.nav-links a:hover { color: #fff; transform: translateY(-1px); }
.nav-links a:hover::before { opacity: 1; }
.nav-links a:active { transform: translateY(0) scale(0.98); }
.nav-links a.active { color: #fff; }
.nav-links a.active::before { opacity: 1; }

.navbar.scrolled .nav-links a { color: var(--dark-3); }
.navbar.scrolled .nav-links a:hover { color: var(--primary-dark); }
.navbar.scrolled .nav-links a::before {
  background: linear-gradient(135deg, rgba(8,145,178,0.12), rgba(20,184,166,0.12));
}
.navbar.scrolled .nav-links a.active { color: var(--primary-dark); }

.nav-cta {
  display: inline-flex !important; align-items: center; justify-content: center;
  padding: 8px 16px !important; border-radius: 50px !important;
  background: var(--gradient-1) !important;
  color: var(--white) !important;
  font-weight: 600 !important; font-size: 13px !important;
  box-shadow: 0 4px 14px rgba(8,145,178,0.3);
  border: none;
  transition: all 0.3s ease !important;
}
.nav-cta::before { display: none !important; }
.nav-cta:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 24px rgba(8,145,178,0.4) !important;
  color: var(--white) !important;
}
.navbar.scrolled .nav-cta { color: var(--white) !important; }

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

/* Dil seçici - açılır liste */
.lang-dropdown {
  position: relative;
}
.lang-dropdown-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.9);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.lang-dropdown-btn .mi { font-size: 18px; transition: transform 0.3s; }
.lang-dropdown.open .lang-dropdown-btn .mi { transform: rotate(180deg); }
.lang-dropdown-btn:hover { background: rgba(255,255,255,0.2); }
.navbar.scrolled .lang-dropdown-btn {
  background: var(--surface);
  border-color: rgba(148,163,184,0.2);
  color: var(--dark);
}
.navbar.scrolled .lang-dropdown-btn:hover { background: var(--light); }

.lang-dropdown-menu {
  position: absolute;
  top: 100%;
  right: 0;
  margin-top: 8px;
  min-width: 180px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--line);
  padding: 6px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all 0.25s ease;
  z-index: 1001;
}
.lang-dropdown.open .lang-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.lang-dropdown-menu a,
.lang-dropdown-menu .lang-dropdown-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--dark);
  text-decoration: none;
  transition: var(--transition);
}
.lang-dropdown-menu a:hover,
.lang-dropdown-menu .lang-dropdown-item:hover { background: var(--light); color: var(--primary); }
.lang-dropdown-menu a.active,
.lang-dropdown-menu .lang-dropdown-item.active { background: rgba(14,165,233,0.1); color: var(--primary); }

/* Mobil nav dil dropdown */
.mobile-nav .lang-dropdown-btn {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.15);
  color: #fff;
}
.mobile-nav .lang-dropdown-menu { right: 0; left: auto; }

.hamburger {
  display: none; align-items: center; justify-content: center;
  width: 48px; height: 48px; border-radius: 16px;
  background: rgba(255,255,255,0.12); color: var(--white);
  border: 1px solid rgba(255,255,255,0.15);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
}
.hamburger:hover { background: rgba(255,255,255,0.2); transform: scale(1.05); }
.hamburger .mi { font-size: 24px; }
.navbar.scrolled .hamburger {
  background: var(--surface); color: var(--dark);
  border-color: rgba(148,163,184,0.2);
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

/* ═══════════════════════════════════════════
   MOBILE NAV
   ═══════════════════════════════════════════ */
.mobile-nav {
  display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(160deg, rgba(15,23,42,0.98) 0%, rgba(30,41,59,0.98) 50%, rgba(15,23,42,0.99) 100%);
  z-index: 9999;
  backdrop-filter: blur(40px) saturate(180%);
  -webkit-backdrop-filter: blur(40px) saturate(180%);
  flex-direction: column; align-items: stretch;
  padding: 0; overflow-y: auto;
  opacity: 0; transform: translateY(-20px);
  transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.4,0,0.2,1);
}
.mobile-nav.open {
  display: flex; opacity: 1; transform: translateY(0);
}

.mobile-nav-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 20px;
  background: rgba(255,255,255,0.03);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.mobile-nav-header .navbar-logo { font-size: 24px; font-weight: 800; color: #fff; letter-spacing: -0.5px; }
.mobile-nav-header .close-btn {
  width: 42px; height: 42px; border-radius: 12px;
  background: rgba(255,255,255,0.1); color: #fff;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(255,255,255,0.15);
  cursor: pointer; transition: all 0.3s ease;
}
.mobile-nav-header-actions { display: flex; align-items: center; gap: 12px; }
.mobile-nav-header .close-btn:hover { background: rgba(255,255,255,0.2); transform: rotate(90deg); }

.mobile-nav-content {
  flex: 1; display: flex; flex-direction: column; padding: 16px 20px; gap: 6px;
}
.mobile-nav-item {
  display: flex; align-items: center; gap: 14px;
  padding: 12px 18px; border-radius: 12px;
  background: linear-gradient(135deg, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0.02) 100%);
  border: 1px solid rgba(255,255,255,0.1);
  font-size: 14px; font-weight: 600; color: #fff;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
  position: relative; overflow: hidden;
}
.mobile-nav-item::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(14,165,233,0.2) 0%, rgba(20,184,166,0.15) 100%);
  opacity: 0; transition: opacity 0.3s ease;
}
.mobile-nav-item:hover {
  transform: translateX(8px);
  border-color: rgba(14,165,233,0.4);
  box-shadow: 0 8px 32px rgba(14,165,233,0.2);
}
.mobile-nav-item:hover::before { opacity: 1; }
.mobile-nav-item.active { border-color: rgba(14,165,233,0.3); }
.mobile-nav-item.active::before { opacity: 0.5; }
.mobile-nav-item .mi {
  font-size: 22px;
  color: var(--primary-light);
  font-variation-settings: 'FILL' 1, 'wght' 600, 'GRAD' 0, 'opsz' 24;
  position: relative; z-index: 1;
}
.mobile-nav-item span:not(.mi) { position: relative; z-index: 1; }

.mobile-nav-footer {
  padding: 16px 20px;
  background: rgba(255,255,255,0.03);
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex; flex-direction: column; gap: 8px;
}
.mobile-nav-cta {
  width: 100%; padding: 14px; font-size: 14px; font-weight: 600;
  border-radius: 14px;
  background: var(--gradient-1);
  color: var(--white); display: flex; align-items: center; justify-content: center; gap: 8px;
  box-shadow: 0 4px 20px rgba(8,145,178,0.35); transition: all 0.3s ease;
}
.mobile-nav-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(8,145,178,0.45); color: var(--white); }
.mobile-nav-wa {
  width: 100%; padding: 14px; font-size: 14px; font-weight: 600;
  border-radius: 14px; background: #25d366; color: var(--white);
  display: flex; align-items: center; justify-content: center; gap: 8px;
  box-shadow: 0 4px 20px rgba(37,211,102,0.3); transition: all 0.3s ease;
}
.mobile-nav-wa:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(37,211,102,0.4); color: var(--white); }

/* ═══════════════════════════════════════════
   HERO SECTION
   ═══════════════════════════════════════════ */
.hero {
  position: relative;
  width: 100%;
  max-width: 100%;
  /* 100vh: bazı tarayıcılarda adres çubuğu / scrollbar ile üst bölümde boşluk; svh/dvh tercih */
  min-height: 100vh;
  min-height: 100svh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  background: var(--gradient-hero),
    url('https://images.unsplash.com/photo-1629909613654-28e377c37b09?w=1920&q=80') center/cover no-repeat;
  overflow: hidden;
  isolation: isolate;
}
/* Flex/grid sütunlarında içerik taşmasını azalt */
.hero .row { min-width: 0; }
.hero .row > [class*="col"] { min-width: 0; }
.hero::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 160px;
  background: linear-gradient(to top, var(--white), transparent);
  z-index: 1;
}

/* Animated orbs */
.hero-orbs { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.orb {
  position: absolute; border-radius: 50%;
  filter: blur(80px); opacity: 0.4;
  animation: orbFloat 12s ease-in-out infinite;
}
.orb-1 {
  width: 400px; height: 400px; top: -10%; right: 10%;
  background: radial-gradient(circle, rgba(8,145,178,0.4), transparent 70%);
  animation-delay: 0s;
}
.orb-2 {
  width: 300px; height: 300px; bottom: 10%; left: -3%;
  background: radial-gradient(circle, rgba(20,184,166,0.4), transparent 70%);
  animation-delay: -4s;
}
.orb-3 {
  width: 200px; height: 200px; top: 40%; right: 30%;
  background: radial-gradient(circle, rgba(245,158,11,0.3), transparent 70%);
  animation-delay: -8s;
}
@keyframes orbFloat {
  0%,100% { transform: translate(0,0) scale(1); }
  33% { transform: translate(24px,-16px) scale(1.05); }
  66% { transform: translate(-16px,12px) scale(0.95); }
}

.hero-content { position: relative; z-index: 2; padding: 140px 0 100px; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(8,145,178,0.12);
  border: 1px solid rgba(8,145,178,0.2);
  border-radius: 999px; padding: 10px 20px; margin-bottom: 28px;
  font-size: 13px; font-weight: 600; color: var(--primary-light);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
}
.badge-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--accent); animation: pulse 2s infinite;
  flex-shrink: 0;
}

.hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(38px, 6vw, 68px); font-weight: 800;
  line-height: 1.08; color: var(--white); margin-bottom: 24px;
  letter-spacing: -0.02em;
}
.hero h1 .highlight {
  background: var(--gradient-1);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-desc {
  font-size: 18px; color: rgba(255,255,255,0.72);
  max-width: 540px; margin-bottom: 36px; line-height: 1.7;
}

.hero-buttons { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 32px; }
.btn-hero-primary {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 28px; border-radius: 14px;
  background: var(--gradient-1); color: var(--white);
  font-weight: 600; font-size: 15px;
  box-shadow: 0 4px 20px rgba(8,145,178,0.35);
  border: none;
  transition: var(--transition);
}
.btn-hero-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(8,145,178,0.45);
  color: var(--white);
}
.btn-hero-secondary {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 28px; border-radius: 14px;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--white); font-weight: 600; font-size: 15px;
  transition: var(--transition);
}
.btn-hero-secondary:hover {
  background: rgba(255,255,255,0.2); border-color: rgba(255,255,255,0.35);
  color: var(--white); transform: translateY(-2px);
}

/* Hero trust badge */
.hero-trust {
  display: inline-flex; align-items: center; gap: 14px;
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 999px; padding: 10px 20px;
}
.hero-trust-rating { display: flex; align-items: center; gap: 8px; }
.trust-stars { color: var(--gold); font-size: 14px; letter-spacing: 1px; }
.hero-trust-rating span { color: var(--white); font-weight: 700; font-size: 13px; }
.trust-sep { width: 1px; height: 20px; background: rgba(255,255,255,0.15); }
.trust-text { color: rgba(255,255,255,0.55); font-size: 12px; font-weight: 600; }

/* Hero visual (right column) */
.hero-visual { position: relative; z-index: 2; }
.hero-image-wrapper {
  position: relative; border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.3);
  border: 1px solid rgba(255,255,255,0.1);
}
.hero-image-wrapper img {
  width: 100%; height: 500px; object-fit: cover;
  display: block;
}
.hero-float-card {
  position: absolute; display: flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-radius: var(--radius-sm); padding: 14px 18px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.15);
  border: 1px solid rgba(255,255,255,0.8);
  animation: floatBounce 4s ease-in-out infinite;
}
.hero-float-card .mi {
  width: 48px; height: 48px; border-radius: 14px;
  background: var(--gradient-1);
  color: var(--white);
  font-size: 24px;
  font-variation-settings: 'FILL' 1, 'wght' 600, 'GRAD' 0, 'opsz' 28;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(8,145,178,0.35);
}
.hero-float-card strong { font-size: 14px; color: var(--dark); display: block; }
.hero-float-card small { font-size: 11px; color: var(--gray); display: block; }
.hero-float-1 { top: 20%; left: -30px; animation-delay: 0s; }
.hero-float-2 { bottom: 15%; right: -20px; animation-delay: -2s; }
@keyframes floatBounce {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* HERO STATS */
.hero-stats {
  display: flex; gap: 0; margin-top: 48px;
  position: relative; z-index: 2;
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border-radius: var(--radius); border: 1px solid rgba(255,255,255,0.1);
}
.hero-stat-item {
  padding: 24px 32px;
  border-right: 1px solid rgba(255,255,255,0.08);
  text-align: center; flex: 1;
}
.hero-stat-item:last-child { border-right: none; }
.hero-stat-item h3 {
  font-family: var(--font-heading);
  font-size: 2.5rem; font-weight: 800; color: var(--white);
  margin-bottom: 4px; line-height: 1;
}
.hero-stat-item p {
  font-size: 0.78rem; color: rgba(255,255,255,0.92);
  margin: 0; text-transform: uppercase; letter-spacing: 0.5px; font-weight: 600;
}

/* HERO FEATURES STRIP - tek satır */
.hero-features-strip {
  position: relative; z-index: 3;
  margin-top: -50px; padding-bottom: 2rem;
}
@media (min-width: 992px) {
  .hero-features-strip { margin-top: -16px; }
}
.feature-strip-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}
.feature-strip-card {
  background: var(--white);
  border-radius: var(--radius-sm); padding: 12px 16px;
  display: flex; align-items: center; gap: 10px;
  transition: var(--transition);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}
.feature-strip-card:hover {
  transform: translateY(-4px); box-shadow: var(--shadow-lg);
}
.feature-strip-icon {
  width: 48px; height: 48px; min-width: 48px; border-radius: 14px;
  background: linear-gradient(145deg, rgba(8,145,178,0.15) 0%, rgba(20,184,166,0.12) 100%);
  border: 1px solid rgba(8,145,178,0.12);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(8,145,178,0.08);
  transition: var(--transition);
}
.feature-strip-card:hover .feature-strip-icon {
  background: linear-gradient(145deg, rgba(8,145,178,0.2), rgba(20,184,166,0.18));
  border-color: rgba(8,145,178,0.2);
  box-shadow: 0 4px 16px rgba(8,145,178,0.15);
}
.feature-strip-icon .mi { font-size: 22px; color: var(--primary); font-variation-settings: 'FILL' 1, 'wght' 600, 'GRAD' 0, 'opsz' 24; }
.feature-strip-card h5 { font-size: 0.8rem; font-weight: 700; margin-bottom: 0.15rem; color: var(--dark); line-height: 1.25; }
.feature-strip-card p { font-size: 0.7rem; color: var(--gray); margin: 0; line-height: 1.3; }

/* ═══════════════════════════════════════════
   SECTION HELPERS
   ═══════════════════════════════════════════ */
.section { padding: 100px 0; }
.page-header + .section { padding-top: 55px; }
.section-light { background: var(--surface); }
.section-dark { background: var(--dark); color: var(--white); }

.section-header { text-align: center; margin-bottom: 56px; }

.section-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  color: var(--primary); margin-bottom: 16px;
}
.section-label::before {
  content: ''; width: 32px; height: 2px;
  background: var(--gradient-1); border-radius: 2px;
}

.badge-label {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 18px; border-radius: 999px;
  background: var(--white); border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  font-size: 13px; font-weight: 700; color: var(--dark-3);
  margin-bottom: 20px;
}
.badge-label .mi {
  width: 36px; height: 36px; border-radius: 12px;
  background: linear-gradient(145deg, rgba(8,145,178,0.18), rgba(20,184,166,0.15));
  border: 1px solid rgba(8,145,178,0.15);
  color: var(--primary);
  font-size: 20px;
  font-variation-settings: 'FILL' 1, 'wght' 600, 'GRAD' 0, 'opsz' 24;
  box-shadow: 0 2px 8px rgba(8,145,178,0.1);
}
.section-dark .badge-label {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.8);
}

.section-header h2 {
  font-family: var(--font-heading);
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 800; line-height: 1.15; margin-bottom: 20px;
  color: var(--dark); letter-spacing: -0.02em;
}
.section-dark .section-header h2 { color: var(--white); }

.section-header p {
  font-size: 18px; color: var(--gray); max-width: 640px; margin: 0 auto; line-height: 1.7;
}
.section-dark .section-header p { color: var(--gray-light); }

/* ═══════════════════════════════════════════
   FEATURE CARDS (Technology)
   ═══════════════════════════════════════════ */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.feature-grid-4 {
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 991px) {
  .feature-grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 575px) {
  .feature-grid-4 { grid-template-columns: 1fr; }
}
.feature-card {
  background: var(--white);
  border-radius: var(--radius); padding: 2rem;
  transition: var(--transition);
  border: 1px solid var(--line);
  position: relative; overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.feature-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: var(--gradient-1);
  transform: scaleX(0); transition: var(--transition);
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(8,145,178,0.1);
}
.feature-card:hover::before { transform: scaleX(1); }

.feature-icon {
  width: 64px; height: 64px; border-radius: 18px;
  background: linear-gradient(145deg, rgba(8,145,178,0.12) 0%, rgba(20,184,166,0.1) 100%);
  border: 1px solid rgba(8,145,178,0.1);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem; transition: var(--transition);
  box-shadow: 0 4px 16px rgba(8,145,178,0.08), inset 0 1px 0 rgba(255,255,255,0.5);
}
.feature-card:hover .feature-icon {
  background: var(--gradient-1);
  border-color: transparent;
  box-shadow: 0 8px 24px rgba(8,145,178,0.25);
}
.feature-icon .mi {
  font-size: 30px;
  color: var(--primary);
  font-variation-settings: 'FILL' 1, 'wght' 600, 'GRAD' 0, 'opsz' 32;
  transition: var(--transition);
}
.feature-card:hover .feature-icon .mi { color: var(--white); }

/* Happy patient videos */
.happy-video-card {
  display: block;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  text-decoration: none;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}
.happy-video-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.happy-video-thumb { position: relative; aspect-ratio: 16/10; overflow: hidden; }
.happy-video-thumb img { width: 100%; height: 100%; object-fit: cover; }
.happy-video-thumb-vid {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  z-index: 1;
}
.happy-video-thumb--placeholder {
  background: linear-gradient(145deg, rgba(8,145,178,0.14) 0%, #F1F5F9 55%, #E2E8F0 100%);
}
.happy-video-play {
  position: absolute; inset: 0;
  z-index: 2;
  display: flex; align-items: center; justify-content: center;
  color: #fff; background: linear-gradient(to top, rgba(15,23,42,0.5), rgba(15,23,42,0.1));
  pointer-events: none;
}
.happy-video-play .mi { font-size: 58px; }
.happy-video-duration {
  position: absolute; right: 10px; bottom: 10px;
  z-index: 3;
  background: rgba(15,23,42,0.85); color: #fff;
  border-radius: 8px; font-size: 12px; padding: 3px 8px; font-weight: 600;
}
.happy-video-body { padding: 16px; }
.happy-video-body h4 { font-size: 1rem; margin-bottom: 6px; color: var(--dark); }
.happy-video-body p { margin: 0; color: var(--gray); font-size: 0.9rem; }

/* Media popup */
.media-popup {
  position: fixed; inset: 0; z-index: 12000;
  display: none; align-items: center; justify-content: center;
}
.media-popup.active { display: flex; }
.media-popup-backdrop {
  position: absolute; inset: 0; background: rgba(2, 6, 23, 0.78);
  backdrop-filter: blur(4px);
}
.media-popup-content {
  position: relative; z-index: 1;
  width: min(920px, calc(100vw - 28px));
  background: #0f172a; color: #fff;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 18px; overflow: hidden;
}
/* Eski: küçük önizleme boyutu — artık kullanılmıyor; geri uyumluluk için bırakıldı */
.media-popup.media-popup--thumbnail-match .media-popup-content {
  width: min(var(--media-popup-w, 280px), calc(100vw - 28px));
}
.media-popup.media-popup--thumbnail-match .media-popup-body {
  display: flex;
  align-items: center;
  justify-content: center;
  height: min(var(--media-popup-h, 360px), calc(100vh - 140px));
  min-height: 0;
  box-sizing: border-box;
}
.media-popup.media-popup--thumbnail-match .media-popup-body img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
/* Fotoğraf popup: görselin gerçek boyutuna yakın (içerik kadar geniş, ekranı aşmaz) */
.media-popup.media-popup--photo .media-popup-content {
  width: auto;
  max-width: min(96vw, 1320px);
}
.media-popup.media-popup--photo .media-popup-body {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 12px;
  min-height: 0;
  background: #020617;
}
.media-popup.media-popup--photo .media-popup-body img {
  display: block;
  width: auto;
  height: auto;
  max-width: min(92vw, 1200px);
  max-height: min(86vh, 1100px);
  object-fit: contain;
}
.media-popup-body { background: #020617; }
.media-popup-body iframe,
.media-popup-body video {
  width: 100%; display: block; max-height: 72vh; object-fit: contain;
}
.media-popup:not(.media-popup--photo) .media-popup-body img {
  width: 100%; display: block; max-height: 72vh; object-fit: contain;
}
.media-popup.media-popup--thumbnail-match .media-popup-body iframe,
.media-popup.media-popup--thumbnail-match .media-popup-body video {
  width: 100%;
  height: 100%;
  max-height: min(var(--media-popup-h, 360px), calc(100vh - 140px));
}
.media-popup-caption { padding: 14px 16px 16px; }
.media-popup-caption h4 { margin: 0 0 4px; font-size: 1rem; color: #fff; }
.media-popup-caption p { margin: 0; color: #cbd5e1; font-size: 0.9rem; }
.media-popup-close {
  position: absolute; top: 10px; right: 10px; z-index: 2;
  width: 34px; height: 34px; border-radius: 999px;
  background: rgba(15,23,42,0.7); color: #fff; border: 1px solid rgba(255,255,255,0.2);
}
.feature-card h4 { font-size: 1.1rem; font-weight: 700; margin-bottom: 0.6rem; }
.feature-card p { font-size: 0.88rem; color: var(--gray); margin: 0; line-height: 1.7; }

/* ═══════════════════════════════════════════
   TREATMENT CARDS
   ═══════════════════════════════════════════ */
.treatment-card-link { text-decoration: none; display: block; height: 100%; }
.treatment-card {
  background: var(--white); border-radius: var(--radius);
  overflow: hidden; transition: var(--transition);
  border: 1px solid var(--line); height: 100%;
  position: relative;
  box-shadow: var(--shadow-sm);
}
.treatment-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(8,145,178,0.12);
}
.treatment-card-img {
  height: 220px; background: var(--gradient-1);
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.treatment-card-icon {
  width: 88px; height: 88px; border-radius: 24px;
  background: rgba(255,255,255,0.2);
  border: 1px solid rgba(255,255,255,0.25);
  backdrop-filter: blur(12px);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12), inset 0 1px 0 rgba(255,255,255,0.4);
  transition: var(--transition);
}
.treatment-card:hover .treatment-card-icon {
  background: rgba(255,255,255,0.28);
  box-shadow: 0 12px 40px rgba(0,0,0,0.15), inset 0 1px 0 rgba(255,255,255,0.5);
  transform: scale(1.05);
}
.treatment-card-icon .mi {
  font-size: 40px;
  color: rgba(255,255,255,0.98);
  font-variation-settings: 'FILL' 1, 'wght' 600, 'GRAD' 0, 'opsz' 40;
}
.treatment-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.treatment-card:hover .treatment-card-img img { transform: scale(1.08); }
.treatment-card-tag {
  position: absolute; top: 14px; right: 14px;
  display: inline-flex; align-items: center; gap: 4px;
  background: rgba(255,255,255,0.92); backdrop-filter: blur(8px);
  border-radius: 999px; padding: 6px 14px;
  font-size: 11px; font-weight: 700; color: var(--dark-3);
  border: 1px solid rgba(255,255,255,0.8);
}
.treatment-card-body { padding: 1.5rem; }
.treatment-card-body h4 { font-size: 1.08rem; font-weight: 700; margin-bottom: 0.5rem; color: var(--dark); }
.treatment-card-body p { font-size: 0.86rem; color: var(--gray); margin-bottom: 1rem; line-height: 1.6; }
.treatment-card-body .btn-more {
  color: var(--primary); font-weight: 600; font-size: 0.86rem;
  text-decoration: none; display: inline-flex; align-items: center;
  gap: 6px; transition: var(--transition);
}
.treatment-card-body .btn-more:hover { gap: 10px; color: var(--primary-dark); }

/* ═══════════════════════════════════════════
   ABOUT
   ═══════════════════════════════════════════ */
.about-content h3 {
  font-family: var(--font-heading);
  font-size: clamp(28px, 3vw, 38px); font-weight: 800;
  margin-bottom: 1.5rem; line-height: 1.2; letter-spacing: -0.02em;
}
.about-content p { color: var(--gray); margin-bottom: 1.5rem; line-height: 1.8; }
.about-features { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 2rem; }
.about-feature { display: flex; align-items: center; gap: 12px; }
.about-feature .mi {
  width: 40px; height: 40px; min-width: 40px; border-radius: 12px;
  background: linear-gradient(145deg, rgba(20,184,166,0.15), rgba(8,145,178,0.1));
  border: 1px solid rgba(20,184,166,0.2);
  color: var(--accent);
  font-size: 20px;
  font-variation-settings: 'FILL' 1, 'wght' 600, 'GRAD' 0, 'opsz' 24;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 2px 8px rgba(20,184,166,0.1);
}
.about-feature span { font-weight: 600; font-size: 0.9rem; }
.about-image-wrapper { position: relative; }
.about-image-wrapper img { width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.about-experience {
  position: absolute; bottom: -20px; left: -20px;
  background: var(--gradient-1); color: var(--white);
  padding: 1.5rem 2rem; border-radius: var(--radius);
  box-shadow: var(--shadow-lg); text-align: center;
}
.about-experience h3 {
  font-family: var(--font-heading);
  font-size: 2.5rem; font-weight: 800; margin: 0; line-height: 1; color: var(--white);
}
.about-experience p { font-size: 0.82rem; margin: 0; opacity: 0.85; }

.about-badge-float {
  position: absolute; top: 20px; right: -15px;
  display: flex; align-items: center; gap: 8px;
  background: var(--white); border-radius: var(--radius-sm);
  padding: 12px 16px; box-shadow: var(--shadow-lg);
  border: 1px solid var(--line);
  animation: floatBounce 5s ease-in-out infinite;
  animation-delay: -1.5s;
}
.about-badge-float .mi {
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--gradient-1);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  font-variation-settings: 'FILL' 1, 'wght' 600, 'GRAD' 0, 'opsz' 24;
  box-shadow: 0 4px 16px rgba(8,145,178,0.3);
}
.about-badge-float span { font-size: 12px; font-weight: 700; line-height: 1.3; color: var(--dark); }

/* ═══════════════════════════════════════════
   TEAM CARDS - Modern
   ═══════════════════════════════════════════ */
.section-team {
  background: linear-gradient(180deg, var(--white) 0%, var(--surface) 50%, var(--white) 100%);
}

/* ── Team Card ── */
.team-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.team-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.08);
}

.team-card-img {
  position: relative;
  width: 100%;
  height: 300px;
  background: var(--light-2);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.team-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.5s ease;
}
.team-card:hover .team-card-img img { transform: scale(1.04); }
.team-card-img .mi {
  font-size: 72px;
  color: var(--gray-light);
  opacity: 0.4;
}

.page-ekibimiz .team-card-img { height: 300px; }

/* Hover overlay */
.team-card-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: rgba(15,23,42,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  color: #fff;
  font-size: 0.88rem;
  font-weight: 600;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.team-card:hover .team-card-overlay { opacity: 1; }
.team-card-overlay .mi { font-size: 20px; }

/* Experience badge */
.team-card-exp {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 3;
  background: var(--primary);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
}

/* Body */
.team-card-body {
  padding: 1.25rem;
  text-align: center;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.team-card-body h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 0.25rem;
  color: var(--dark);
}
.team-card-body .team-title {
  color: var(--primary);
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 0;
}
.team-card-link-text {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--primary);
  margin-top: auto;
  padding-top: 0.75rem;
  transition: gap 0.2s ease;
}
.team-card:hover .team-card-link-text { gap: 8px; }

.team-card-popup { cursor: pointer; }
.team-card-tap-hint { display: none; }

/* Team popup - merkezi modal */
.team-popup {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  visibility: hidden;
  padding: 24px;
}
.team-popup.active {
  pointer-events: auto;
  visibility: visible;
}
.team-popup-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15,23,42,0.7);
  backdrop-filter: blur(10px);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.team-popup.active .team-popup-backdrop { opacity: 1; }
.team-popup-content {
  position: relative;
  width: 100%;
  max-width: 440px;
  max-height: 90vh;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  overflow-y: auto;
  box-shadow: 0 32px 80px rgba(0,0,0,0.2), 0 0 0 1px rgba(255,255,255,0.05);
  transform: scale(0.96);
  opacity: 0;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.3s ease;
}
.team-popup.active .team-popup-content {
  transform: scale(1);
  opacity: 1;
}
.team-popup-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--light);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--dark);
  transition: var(--transition);
  z-index: 2;
}
.team-popup-close:hover {
  background: var(--light-2);
  color: var(--primary);
}
.team-popup-img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  margin: 0 auto 1.25rem;
  background: linear-gradient(135deg, var(--light), var(--light-2));
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 4px solid var(--light-2);
  box-shadow: var(--shadow-md);
}
.team-popup-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.team-popup-img .mi {
  font-size: 56px;
  color: var(--gray-light);
  font-variation-settings: 'FILL' 0.3, 'wght' 400, 'GRAD' 0, 'opsz' 48;
}
.team-popup-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  text-align: left;
}
.team-popup-header .team-popup-img {
  flex-shrink: 0;
  margin: 0;
}
.team-popup-header-info {
  min-width: 0;
}
.team-popup-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 2px;
  color: var(--dark);
}
.team-popup-title {
  color: var(--primary);
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.team-popup-exp-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 999px;
}
.team-popup-bio {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.75;
  margin: 0 0 1.25rem 0;
  text-align: left;
}
.team-popup-meta {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.9rem;
  margin-bottom: 1.25rem;
}
.team-popup-meta-card {
  background: linear-gradient(180deg, #f9fcff 0%, #f3f8fb 100%);
  border: 1px solid rgba(8,145,178,0.12);
  border-radius: 14px;
  padding: 0.9rem 1rem;
  text-align: left;
}
.team-popup-meta-card h5 {
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--dark-2);
  margin: 0 0 0.55rem 0;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}
.team-popup-meta-card h5 .mi {
  font-size: 18px;
  color: var(--primary);
}
.team-popup-list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.team-popup-list li {
  position: relative;
  padding-left: 0.95rem;
  font-size: 0.84rem;
  color: var(--gray);
  line-height: 1.55;
}
.team-popup-list li + li { margin-top: 0.35rem; }
.team-popup-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.58rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary);
}
.team-popup-tags {
  margin: 0;
  padding: 0;
  list-style: none;
}
.team-popup-tag {
  position: relative;
  display: block;
  padding-left: 0.95rem;
  font-size: 0.84rem;
  color: var(--gray);
  line-height: 1.55;
}
.team-popup-tag + .team-popup-tag { margin-top: 0.35rem; }
.team-popup-tag::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.58rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary);
}
.team-popup-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  justify-content: center;
  margin-top: 0.5rem;
}

/* ═══════════════════════════════════════════
   TESTIMONIALS - modern
   ═══════════════════════════════════════════ */
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
  border: 1px solid var(--line);
  height: 100%;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.testimonial-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  border-color: rgba(8,145,178,0.12);
}
.testimonial-quote-mark {
  font-family: var(--font-heading);
  font-size: 48px; font-weight: 800; line-height: 0.8;
  background: var(--gradient-1);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.2; margin-bottom: 4px; display: block;
}
.testimonial-stars {
  color: var(--gold);
  font-size: 1rem;
  margin-bottom: 1rem;
  letter-spacing: 2px;
}
.testimonial-card blockquote {
  font-size: 0.95rem;
  color: var(--dark-2);
  line-height: 1.75;
  font-style: normal;
  margin-bottom: 1.25rem;
  border-left: 3px solid var(--primary-light);
  padding-left: 1rem;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 1rem;
  border-top: 1px solid var(--light-2);
}
.testimonial-avatar {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--gradient-1);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.05rem;
}
.testimonial-author-info h5 {
  font-weight: 700;
  font-size: 0.95rem;
  margin: 0 0 2px 0;
  color: var(--dark);
}
.testimonial-author-info span {
  font-size: 0.8rem;
  color: var(--gray);
}

/* ═══════════════════════════════════════════
   STATS
   ═══════════════════════════════════════════ */
.stats-section {
  background: var(--gradient-2);
  padding: 80px 0; position: relative; overflow: hidden;
}
.stats-section::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(14,165,233,0.15), transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(20,184,166,0.1), transparent 50%);
}
.stat-item { text-align: center; color: var(--white); position: relative; }
.stat-item .mi {
  font-size: 40px;
  margin-bottom: 0.75rem;
  display: block;
  font-variation-settings: 'FILL' 1, 'wght' 500, 'GRAD' 0, 'opsz' 40;
  color: rgba(255,255,255,0.7);
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.2));
}
.stat-item h3 {
  font-family: var(--font-heading);
  font-size: 2.5rem; font-weight: 800; margin-bottom: 0.2rem;
}
.stat-item p { font-size: 0.85rem; opacity: 0.7; }

/* ═══════════════════════════════════════════
   PROCESS STEPS V2
   ═══════════════════════════════════════════ */
.process-timeline { position: relative; }
.process-timeline .row > [class*="col-"] { display: flex; }
.process-timeline-line {
  display: none; position: absolute; top: 80px; left: 10%; right: 10%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(14,165,233,0.3), rgba(20,184,166,0.3), transparent);
}
@media(min-width:992px){ .process-timeline-line { display: block; } }

.process-step-v2 {
  flex: 1;
  display: flex;
  flex-direction: column;
  text-align: center;
  padding: 2rem 1rem;
  position: relative;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  transition: var(--transition);
  min-height: 100%;
}
.process-step-v2 p { flex: 1; }
.process-step-v2:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(14,165,233,0.2);
  transform: translateY(-4px);
}
.process-step-num {
  font-family: var(--font-heading);
  font-size: 42px; font-weight: 800;
  background: var(--gradient-1);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; margin-bottom: 8px; line-height: 1;
}
.process-step-icon {
  width: 60px; height: 60px; border-radius: 18px;
  background: rgba(8,145,178,0.15);
  border: 1px solid rgba(8,145,178,0.2);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem;
  box-shadow: 0 4px 16px rgba(0,0,0,0.15), inset 0 1px 0 rgba(255,255,255,0.1);
  transition: var(--transition);
}
.process-step-v2:hover .process-step-icon {
  background: rgba(8,145,178,0.22);
  box-shadow: 0 6px 20px rgba(0,0,0,0.2), inset 0 1px 0 rgba(255,255,255,0.15);
}
.process-step-icon .mi {
  font-size: 28px;
  color: var(--primary-light);
  font-variation-settings: 'FILL' 1, 'wght' 600, 'GRAD' 0, 'opsz' 28;
}
.process-step-v2 h4 { font-weight: 700; font-size: 1rem; margin-bottom: 0.6rem; color: var(--white); }
.process-step-v2 p { font-size: 0.85rem; color: rgba(255,255,255,0.55); margin-bottom: 1rem; }
.process-step-tag {
  display: inline-block; padding: 5px 14px; border-radius: 999px;
  background: rgba(14,165,233,0.15); border: 1px solid rgba(14,165,233,0.25);
  font-size: 11px; font-weight: 700; color: var(--primary-light);
  letter-spacing: 0.3px;
}

/* ═══════════════════════════════════════════
   PRICE COMPARISON TABLE
   ═══════════════════════════════════════════ */
.comparison-wrap {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.comparison-table {
  width: 100%;
  border-collapse: collapse;
}
.comparison-table thead th {
  background: var(--gradient-2);
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.3px;
  padding: 14px 16px;
  text-align: left;
}
.comparison-table tbody td {
  padding: 13px 16px;
  border-top: 1px solid var(--line);
  font-size: 0.88rem;
  color: var(--dark-3);
}
.comparison-table tbody tr:nth-child(odd) {
  background: rgba(148,163,184,0.05);
}
.comparison-table .is-good {
  color: #0f9f6e;
  font-weight: 700;
}

/* ═══════════════════════════════════════════
   FAQ ACCORDION
   ═══════════════════════════════════════════ */
.faq-accordion .accordion-item {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm) !important;
  margin-bottom: 0.75rem; overflow: hidden;
}
.faq-accordion .accordion-button {
  font-weight: 600; font-size: 0.95rem; padding: 1.15rem 1.5rem;
  color: var(--dark); background: var(--white);
}
.faq-accordion .accordion-button:not(.collapsed) {
  color: var(--primary); background: rgba(8,145,178,0.04); box-shadow: none;
}
.faq-accordion .accordion-button:focus { box-shadow: none; }
.faq-accordion .accordion-body {
  padding: 0 1.5rem 1.15rem; color: var(--gray); line-height: 1.8;
}

/* ═══════════════════════════════════════════
   CONTACT
   ═══════════════════════════════════════════ */
.contact-info-card {
  background: var(--white); border-radius: var(--radius); padding: 1.75rem;
  border: 1px solid var(--line); display: flex; align-items: flex-start;
  gap: 1rem; transition: var(--transition); height: 100%;
}
.contact-info-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.contact-info-card > div:last-child {
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.contact-info-card .icon-box {
  width: 52px; height: 52px; border-radius: 16px;
  background: linear-gradient(145deg, rgba(8,145,178,0.14), rgba(20,184,166,0.1));
  border: 1px solid rgba(8,145,178,0.12);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(8,145,178,0.08);
  transition: var(--transition);
}
.contact-info-card:hover .icon-box {
  background: linear-gradient(145deg, rgba(8,145,178,0.2), rgba(20,184,166,0.15));
  box-shadow: 0 6px 20px rgba(8,145,178,0.12);
}
.contact-info-card .icon-box .mi {
  color: var(--primary);
  font-size: 24px;
  font-variation-settings: 'FILL' 1, 'wght' 600, 'GRAD' 0, 'opsz' 28;
}
.contact-info-card h5 { font-weight: 700; font-size: 0.9rem; margin-bottom: 0.2rem; }
.contact-info-card p, .contact-info-card a {
  color: var(--gray); font-size: 0.85rem; margin: 0; text-decoration: none;
}
.contact-info-card a:hover { color: var(--primary); }

.contact-form {
  background: var(--white); border-radius: var(--radius);
  padding: 2.5rem; box-shadow: var(--shadow-soft); border: 1px solid var(--line);
}
.contact-form .form-control,
.contact-form .form-select {
  border: 1px solid var(--light-2); border-radius: var(--radius-sm);
  padding: 12px 16px; font-size: 0.88rem; transition: var(--transition);
}
.contact-form .form-control:focus,
.contact-form .form-select:focus {
  border-color: var(--primary); box-shadow: 0 0 0 3px rgba(8,145,178,0.12);
}
.contact-form label {
  font-weight: 600; font-size: 0.85rem; margin-bottom: 0.4rem; color: var(--dark);
}

.btn-submit {
  background: var(--gradient-1); color: var(--white); border: none;
  padding: 12px 28px; border-radius: 12px;
  font-weight: 600; font-size: 0.95rem; transition: var(--transition);
  display: inline-flex; align-items: center; gap: 8px;
  box-shadow: 0 4px 14px rgba(8,145,178,0.25);
}
.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(8,145,178,0.35);
  color: var(--white);
}

/* ═══════════════════════════════════════════
   GALLERY
   ═══════════════════════════════════════════ */
.gallery-filter-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 1.5rem;
}
.gallery-filter {
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--gray);
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 0.84rem;
  font-weight: 600;
  transition: var(--transition);
}
.gallery-filter.active,
.gallery-filter:hover {
  background: var(--gradient-1);
  color: var(--white);
  border-color: transparent;
  box-shadow: 0 8px 24px rgba(8,145,178,0.25);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.1rem;
}
.gallery-item {
  border-radius: 18px; overflow: hidden;
  position: relative; cursor: pointer; aspect-ratio: 1 / 1;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.45s ease; }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(15,23,42,0.82), rgba(15,23,42,0.15) 55%, transparent);
  display: flex; align-items: flex-end; padding: 1.25rem;
  opacity: 0; transition: var(--transition);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span { color: var(--white); font-weight: 700; font-size: 0.88rem; }

/* Ana sayfa — Gerçek Gülümsemeler: kare ızgara (temel .gallery-item 1:1) */
.happy-patient-gallery.gallery-grid {
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1.25rem;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

/* ═══════════════════════════════════════════
   CERTIFICATES
   ═══════════════════════════════════════════ */
.cert-card {
  background: var(--white); border-radius: var(--radius);
  padding: 2rem; text-align: center;
  border: 1px solid var(--line); transition: var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
}
.cert-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.cert-media {
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.cert-card--icon .cert-media {
  height: 84px;
  margin-bottom: 0.8rem;
}
.cert-card--icon {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}
.cert-card img {
  max-height: 170px;
  max-width: 100%;
  object-fit: contain;
}
.cert-icon {
  font-size: 56px !important;
  color: var(--primary);
}
.cert-card h5 { font-weight: 700; margin-bottom: 0.5rem; }
.cert-card p { color: var(--gray); font-size: 0.88rem; }

/* ═══════════════════════════════════════════
   BLOG CARDS
   ═══════════════════════════════════════════ */
.blog-card {
  background: var(--white); border-radius: var(--radius);
  overflow: hidden; transition: var(--transition);
  border: 1px solid var(--line); height: 100%;
}
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.blog-card-img { height: 200px; overflow: hidden; background: var(--light); }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition); }
.blog-card:hover .blog-card-img img { transform: scale(1.05); }
.blog-card-body { padding: 1.5rem; }
.blog-card-body .blog-date {
  font-size: 0.78rem; color: var(--gray-light); margin-bottom: 0.5rem;
  display: flex; align-items: center; gap: 4px;
}
.blog-card-body h4 { font-size: 1.05rem; font-weight: 700; margin-bottom: 0.6rem; line-height: 1.4; }
.blog-card-body h4 a { color: var(--dark); text-decoration: none; transition: var(--transition); }
.blog-card-body h4 a:hover { color: var(--primary); }
.blog-card-body p { font-size: 0.88rem; color: var(--gray); }

/* ═══════════════════════════════════════════
   PAGE HEADER (Inner pages)
   ═══════════════════════════════════════════ */
.page-header {
  background: var(--gradient-hero),
    url('https://images.unsplash.com/photo-1629909613654-28e377c37b09?w=1920&q=80') center/cover no-repeat;
  padding: 150px 0 50px; text-align: center;
  position: relative; overflow: hidden;
}
.page-header::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(circle at 20% 80%, rgba(14,165,233,0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(20,184,166,0.08) 0%, transparent 50%);
}
.page-header h1 {
  font-family: var(--font-heading);
  font-size: clamp(32px, 4.5vw, 52px); font-weight: 800;
  color: var(--white); position: relative;
  margin-bottom: 0.5rem; letter-spacing: -0.02em;
}
.page-header .breadcrumb {
  justify-content: center; position: relative;
  font-size: 0.75rem; padding: 0; margin: 0;
}
.page-header .breadcrumb-item,
.page-header .breadcrumb-item a {
  color: rgba(255,255,255,0.65); font-size: 0.75rem; text-decoration: none;
}
.page-header .breadcrumb-item.active { color: var(--white); }
.page-header .breadcrumb-item + .breadcrumb-item::before { font-size: 0.65rem; }

/* Legal pages */
.legal-section { padding-top: 48px; }
.legal-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(248,250,252,0.96));
  border: 1px solid rgba(148,163,184,0.18);
  border-radius: 28px;
  box-shadow: var(--shadow-soft);
  padding: 36px;
}
.legal-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(148,163,184,0.18);
}
.legal-meta p {
  margin: 0;
  color: var(--gray);
  font-weight: 600;
}
.legal-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(8,145,178,0.08);
  color: var(--primary-dark);
  font-weight: 700;
}
.legal-block + .legal-block { margin-top: 28px; }
.legal-block h2 {
  font-size: 1.35rem;
  font-weight: 800;
  margin-bottom: 14px;
  color: var(--dark);
}
.legal-block p {
  margin-bottom: 0;
  color: var(--dark-3);
}
.legal-list {
  list-style: disc;
  padding-left: 22px;
  color: var(--dark-3);
}
.legal-list li + li { margin-top: 10px; }
.legal-note {
  margin-top: 32px;
  padding: 18px 20px;
  border-radius: 18px;
  background: rgba(245,158,11,0.08);
  border: 1px solid rgba(245,158,11,0.18);
  color: #92400e;
  font-weight: 600;
}

/* Cookie consent */
.cookie-consent {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 1300;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.cookie-consent.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.cookie-consent-card {
  max-width: 980px;
  margin: 0 auto;
  padding: 16px 18px;
  border-radius: 20px;
  background: rgba(15,23,42,0.96);
  color: var(--white);
  box-shadow: 0 18px 40px rgba(15,23,42,0.22);
  border: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.cookie-consent-copy h4 {
  margin: 8px 0 6px;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.25;
}
.cookie-consent-copy p {
  margin: 0;
  color: rgba(255,255,255,0.78);
  max-width: 640px;
  font-size: 0.88rem;
  line-height: 1.55;
}
.cookie-consent-copy a {
  color: var(--primary-light);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.cookie-consent-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(34,211,238,0.12);
  color: #a5f3fc;
  font-size: 0.8rem;
  font-weight: 700;
}
.cookie-consent-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.cookie-btn {
  min-height: 40px;
  padding: 0 16px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.92rem;
  transition: var(--transition);
}
.cookie-btn-primary {
  background: var(--gradient-1);
  color: var(--white);
  box-shadow: 0 10px 26px rgba(8,145,178,0.28);
}
.cookie-btn-secondary {
  background: rgba(255,255,255,0.06);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.12);
}
.cookie-btn:hover { transform: translateY(-1px); }

/* ═══════════════════════════════════════════
   CTA SECTION
   ═══════════════════════════════════════════ */
.cta-section {
  background: var(--gradient-2);
  padding: 120px 0; text-align: center;
  position: relative; overflow: hidden;
}
.cta-decor { position: absolute; inset: 0; pointer-events: none; }
.cta-orb {
  position: absolute; border-radius: 50%; filter: blur(100px);
  animation: orbFloat 15s ease-in-out infinite;
}
.cta-orb-1 {
  width: 500px; height: 500px; top: -20%; left: -10%;
  background: rgba(14,165,233,0.2);
}
.cta-orb-2 {
  width: 400px; height: 400px; bottom: -20%; right: -5%;
  background: rgba(20,184,166,0.15);
  animation-delay: -6s;
}
.cta-inner { position: relative; z-index: 1; }
.cta-section h2 {
  font-family: var(--font-heading);
  font-size: clamp(34px, 4.5vw, 56px); font-weight: 800;
  color: var(--white); margin-bottom: 1.25rem;
}
.cta-section p {
  color: rgba(255,255,255,0.65); font-size: 18px;
  max-width: 520px; margin: 0 auto 2.5rem; line-height: 1.7;
}
.cta-buttons {
  display: flex; gap: 14px; justify-content: center; flex-wrap: wrap;
}

/* ═══════════════════════════════════════════
   DETAIL PAGES
   ═══════════════════════════════════════════ */
.detail-content { font-size: 1.02rem; line-height: 1.9; color: var(--dark-2); }
.detail-content p { margin-bottom: 1.5rem; }
.detail-content h2, .detail-content h3 { font-weight: 700; margin: 2rem 0 1rem; }
.detail-sidebar { background: var(--surface); border-radius: var(--radius); padding: 2rem; }
.detail-sidebar h4 { font-weight: 700; margin-bottom: 1rem; font-size: 1.05rem; }
.detail-sidebar ul { list-style: none; padding: 0; }
.detail-sidebar ul li { margin-bottom: 0.4rem; }
.detail-sidebar ul li a {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 14px; border-radius: 8px;
  color: var(--dark); text-decoration: none;
  font-size: 0.88rem; font-weight: 500; transition: var(--transition);
}
.detail-sidebar ul li a .mi { color: var(--accent-dark); }
.detail-sidebar ul li a:hover,
.detail-sidebar ul li a.active {
  background: var(--white); color: var(--primary); box-shadow: var(--shadow-sm);
}

/* ═══════════════════════════════════════════
   FOOTER - Modern
   ═══════════════════════════════════════════ */
.site-footer {
  background: var(--gradient-2);
  color: rgba(255,255,255,0.75);
  font-family: var(--font-body);
}
.footer-top { padding: 72px 0 48px; }
.footer-brand { margin-bottom: 1.25rem; }
.footer-brand .navbar-logo {
  font-family: 'Cormorant Garamond', serif;
  color: var(--white);
  font-size: 1.5rem;
  font-weight: 700;
}
.footer-brand .navbar-logo em { color: var(--primary-light); }
.footer-desc { font-size: 0.9rem; line-height: 1.75; max-width: 280px; margin-bottom: 1.5rem; opacity: 0.85; }
.footer-social { display: flex; gap: 8px; }
.footer-social a {
  width: 40px; height: 40px; border-radius: 12px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.06);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.6); transition: var(--transition);
}
.footer-social a svg { width: 18px; height: 18px; display: block; }
.footer-social a:hover {
  background: rgba(8,145,178,0.3);
  color: var(--white);
  border-color: rgba(8,145,178,0.4);
  transform: translateY(-2px);
}
.footer-heading {
  font-family: var(--font-heading);
  color: var(--white);
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 1.25rem;
  letter-spacing: 0.02em;
}
.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 0.5rem; }
.footer-links a {
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  font-size: 0.9rem;
  transition: var(--transition);
}
.footer-links a:hover { color: var(--primary-light); }
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-legal-inline {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-legal-inline a {
  color: rgba(255,255,255,0.72);
  font-size: 0.9rem;
  transition: var(--transition);
}
.footer-legal-inline a:hover { color: var(--primary-light); }
.footer-contact { list-style: none; padding: 0; }
.footer-contact li {
  display: flex; gap: 10px; margin-bottom: 0.85rem;
  font-size: 0.88rem; align-items: flex-start;
}
.footer-contact .mi {
  font-size: 20px;
  color: var(--primary-light);
  font-variation-settings: 'FILL' 1, 'wght' 500, 'GRAD' 0, 'opsz' 24;
  flex-shrink: 0; margin-top: 3px;
}
.footer-contact a { color: rgba(255,255,255,0.5); text-decoration: none; transition: var(--transition); }
.footer-contact a:hover { color: var(--primary-light); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 1.25rem 0;
  text-align: center;
}
.footer-bottom p { margin: 0; font-size: 0.85rem; color: rgba(255,255,255,0.4); }

/* ═══════════════════════════════════════════
   MOBILE BOTTOM CTA (sadece mobil)
   ═══════════════════════════════════════════ */
.mobile-bottom-cta {
  display: none;
}

/* ═══════════════════════════════════════════
   CALLBACK SHEET (Sizi Arayalım formu)
   ═══════════════════════════════════════════ */
.callback-sheet {
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  visibility: hidden;
  transition: visibility 0.4s ease;
}
.callback-sheet.active {
  pointer-events: auto;
  visibility: visible;
}
.callback-sheet-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15,23,42,0.4);
  backdrop-filter: blur(4px);
  opacity: 0;
  transition: opacity 0.35s ease;
}
.callback-sheet.active .callback-sheet-backdrop {
  opacity: 1;
}
.callback-sheet-panel {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--white);
  border-radius: 24px 24px 0 0;
  box-shadow: 0 -8px 40px rgba(0,0,0,0.12);
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.32, 0.72, 0, 1);
  max-height: 85vh;
  overflow-y: auto;
  padding-bottom: env(safe-area-inset-bottom);
}
.callback-sheet.active .callback-sheet-panel {
  transform: translateY(0);
}
.callback-sheet-handle {
  width: 40px;
  height: 4px;
  background: var(--light-2);
  border-radius: 2px;
  margin: 12px auto 16px;
  flex-shrink: 0;
}
.callback-sheet-content {
  padding: 0 24px 32px;
}
.callback-sheet-content h4 {
  font-weight: 700;
  font-size: 1.35rem;
  margin-bottom: 0.5rem;
}
.callback-sheet-desc {
  color: var(--gray);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}
.callback-form .form-control {
  border-radius: var(--radius-sm);
  padding: 14px 16px;
}

/* Desktop: ortada modal */
@media (min-width: 768px) {
  .callback-sheet {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
  }
  .callback-sheet-panel {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    width: 100%;
    max-width: 520px;
    max-height: 90vh;
    border-radius: 20px;
    box-shadow: 0 24px 60px rgba(0,0,0,0.2);
    transform: scale(0.96);
    transition: transform 0.3s ease, opacity 0.3s ease;
    opacity: 0;
    padding-bottom: 0;
  }
  .callback-sheet.active .callback-sheet-panel {
    transform: scale(1);
    opacity: 1;
  }
  .callback-sheet-handle {
    display: none;
  }
  .callback-sheet-content {
    padding: 24px 24px 28px;
  }
}

/* WhatsApp icon */
.whatsapp-icon {
  flex-shrink: 0;
  display: inline-block;
  vertical-align: middle;
}

/* ═══════════════════════════════════════════
   WHATSAPP FLOAT
   ═══════════════════════════════════════════ */
.whatsapp-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 999;
  background: #25d366; color: var(--white);
  padding: 12px 20px; border-radius: 14px;
  display: flex; align-items: center; gap: 8px;
  text-decoration: none; font-weight: 600; font-size: 0.9rem;
  box-shadow: 0 4px 16px rgba(37,211,102,0.35);
  transition: var(--transition);
}
.whatsapp-float:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37,211,102,0.45);
  color: var(--white);
}

/* ═══════════════════════════════════════════
   SCROLL TOP
   ═══════════════════════════════════════════ */
.scroll-top-btn {
  position: fixed; bottom: 28px; left: 28px; z-index: 999;
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--white); border: 1px solid var(--line);
  color: var(--dark); display: flex; align-items: center; justify-content: center;
  cursor: pointer; box-shadow: var(--shadow-md);
  transition: var(--transition);
  opacity: 0; transform: translateY(20px);
}
.scroll-top-btn.visible { opacity: 1; transform: translateY(0); }
.scroll-top-btn:hover { background: var(--primary); color: var(--white); border-color: var(--primary); }

/* ═══════════════════════════════════════════
   LIGHTBOX
   ═══════════════════════════════════════════ */
.lightbox-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 10000; display: none;
  align-items: center; justify-content: center;
  cursor: pointer;
}
.lightbox-overlay.active { display: flex; }
.lightbox-overlay img { max-width: 90%; max-height: 90vh; border-radius: 8px; }

/* ═══════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════ */
@media (min-width: 768px) {
  .nav-links { display: flex; }
  .hamburger { display: none; }
}

/* Desktop German menu should stay single-line */
@media (min-width: 992px) {
  html[lang="de"] .nav-shell {
    gap: 8px;
    padding: 8px 12px;
  }
  html[lang="de"] .nav-links {
    gap: 2px;
    margin-right: 8px;
    padding: 4px 6px;
    min-width: 0;
  }
  html[lang="de"] .nav-links a {
    font-size: 11px;
    padding: 7px 9px;
    letter-spacing: -0.01em;
  }
  html[lang="de"] .nav-cta {
    padding: 7px 11px !important;
    font-size: 11px !important;
  }

  html[lang="ru"] .nav-shell {
    gap: 8px;
    padding: 8px 12px;
  }
  html[lang="ru"] .nav-links {
    gap: 2px;
    margin-right: 8px;
    padding: 4px 6px;
    min-width: 0;
  }
  html[lang="ru"] .nav-links a {
    font-size: 11px;
    padding: 7px 9px;
    letter-spacing: -0.01em;
  }
  html[lang="ru"] .nav-cta {
    padding: 7px 11px !important;
    font-size: 11px !important;
  }

  html[lang="es"] .nav-shell {
    gap: 8px;
    padding: 8px 12px;
  }
  html[lang="es"] .nav-links {
    gap: 2px;
    margin-right: 8px;
    padding: 4px 6px;
    min-width: 0;
  }
  html[lang="es"] .nav-links a {
    font-size: 11px;
    padding: 7px 9px;
    letter-spacing: -0.01em;
  }
  html[lang="es"] .nav-cta {
    padding: 7px 11px !important;
    font-size: 11px !important;
  }

  html[lang="fr"] .nav-shell {
    gap: 8px;
    padding: 8px 12px;
  }
  html[lang="fr"] .nav-links {
    gap: 2px;
    margin-right: 8px;
    padding: 4px 6px;
    min-width: 0;
  }
  html[lang="fr"] .nav-links a {
    font-size: 11px;
    padding: 7px 9px;
    letter-spacing: -0.01em;
  }
  html[lang="fr"] .nav-cta {
    padding: 7px 11px !important;
    font-size: 11px !important;
  }
}

@media (max-width: 767px) {
  .nav-links { display: none !important; }
  .hamburger { display: flex; }
  .hamburger {
    width: 42px;
    height: 42px;
    border-radius: 12px;
  }
  .hamburger .mi { font-size: 20px; }
  .nav-utilities { gap: 8px; }
  .lang-dropdown-btn {
    min-height: 42px;
    padding: 0 12px;
    font-size: 12px;
    border-radius: 12px;
  }
  .lang-dropdown-btn .mi { font-size: 16px; }
  .hero { min-height: auto; }
  .hero-content { padding: 130px 0 80px; }
  .hero h1 { font-size: clamp(30px, 7vw, 44px); }
  .hero-stats { flex-wrap: nowrap; }
  .hero-stat-item { flex: 1; min-width: 0; padding: 12px 8px; }
  .hero-features-strip { margin-top: -50px; }
  .feature-strip-grid { grid-template-columns: repeat(2, 1fr); }
  .about-features { grid-template-columns: 1fr; }
  .about-experience { display: none; }
  .about-badge-float { display: none; }
}

@media (max-width: 767px) {
  html,
  body {
    width: 100%;
    overflow-x: hidden;
    overflow-x: clip;
  }
  .section { padding: 60px 0; }
  .hero-content { padding: 110px 0 36px; }
  .hero-stats { flex-wrap: nowrap; margin-top: 0; }
  .hero-stat-item {
    padding: 8px 6px; min-width: 0; flex: 1;
  }
  .hero-stat-item h3 { font-size: 1.1rem; }
  .hero-stat-item p { font-size: 0.58rem; letter-spacing: 0.2px; }
  .hero-buttons { flex-direction: row; flex-wrap: wrap; }
  .hero-buttons a { text-align: center; justify-content: center; }
  .hero-trust { flex-direction: row; flex-wrap: wrap; gap: 8px; }
  .trust-sep { width: 40px; height: 1px; }
  .hero-features-strip { margin-top: -8px; padding-bottom: 1.25rem; }
  .feature-strip-grid { grid-template-columns: repeat(2, 1fr); gap: 0.5rem; }
  .feature-strip-card { padding: 0.65rem 0.75rem; }
  .feature-strip-card p { display: block; font-size: 0.6rem; }
  .feature-strip-icon { width: 36px; height: 36px; min-width: 36px; border-radius: 10px; }
  /* Team section - mobil */
  .team-card-img { height: 260px; }
  .team-card-body { padding: 1rem; }
  .team-card-body h4 { font-size: 0.95rem; }
  .team-card-body .team-title { font-size: 0.75rem; }
  #homeTeamSection .team-card-img { height: 200px; }
  #homeTeamSection .team-card-body { padding: 0.85rem; }
  #homeTeamSection .team-card-body h4 { font-size: 0.88rem; }
  .page-ekibimiz .team-card-img { height: 280px; }
  /* Testimonials - mobil modern */
  .section.section-light .row.g-4 { gap: 1rem; }
  .testimonial-card {
    padding: 1.25rem 1rem;
    border-radius: 16px;
  }
  .testimonial-quote-mark { font-size: 36px; margin-bottom: 0; }
  .testimonial-stars { font-size: 0.9rem; margin-bottom: 0.75rem; }
  .testimonial-card blockquote {
    font-size: 0.88rem; padding-left: 0.75rem;
    border-left-width: 2px; margin-bottom: 1rem;
  }
  .testimonial-author { padding-top: 0.85rem; gap: 10px; }
  .testimonial-avatar {
    width: 42px; height: 42px;
    border-radius: 10px;
    font-size: 0.95rem;
  }
  .testimonial-author-info h5 { font-size: 0.88rem; }
  .testimonial-author-info span { font-size: 0.72rem; }
  .feature-strip-icon .mi { font-size: 18px; }
  .feature-strip-card h5 { font-size: 0.72rem; }
  .feature-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); }
  .happy-patient-gallery.gallery-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .whatsapp-float { display: none !important; }
  /* Mobil alt CTA bar - arka plan yok, modern minimal */
  .mobile-bottom-cta {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    position: fixed;
    bottom: 0;
    left: max(0px, env(safe-area-inset-left));
    right: max(0px, env(safe-area-inset-right));
    z-index: 998;
    width: auto;
    max-width: 100%;
    padding: 10px clamp(8px, 2.4vw, 14px);
    padding-bottom: max(10px, env(safe-area-inset-bottom));
    gap: clamp(6px, 1.8vw, 10px);
    background: transparent;
    overflow: hidden;
  }
  .mobile-cta-call,
  .mobile-cta-whatsapp {
    flex: 1 1 0;
    min-width: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(5px, 1.6vw, 8px);
    padding: 11px clamp(8px, 2.2vw, 12px);
    border-radius: 50px;
    font-weight: 700;
    font-size: clamp(0.68rem, 2.5vw, 0.84rem);
    line-height: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-decoration: none;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-family: inherit;
    -webkit-tap-highlight-color: transparent;
  }
  .mobile-cta-call .cta-text,
  .mobile-cta-whatsapp .cta-text {
    padding-inline: 2px;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .mobile-cta-phone {
    width: 64px;
    min-width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #ffffff;
    background: linear-gradient(145deg, #0ea5e9, #22c55e);
    border: 1px solid rgba(255,255,255,0.35);
    box-shadow: 0 8px 24px rgba(14,165,233,0.35);
    transition: var(--transition);
    -webkit-tap-highlight-color: transparent;
  }
  .mobile-cta-phone:hover, .mobile-cta-phone:active {
    color: #ffffff;
    transform: translateY(-1px) scale(0.97);
    box-shadow: 0 10px 26px rgba(14,165,233,0.45);
  }
  .mobile-cta-phone .modern-call-icon {
    font-size: 30px;
    font-variation-settings: 'FILL' 1, 'wght' 700, 'GRAD' 150, 'opsz' 24;
    transform: translate(1px, -1px);
  }
  .mobile-cta-call {
    background: var(--gradient-1);
    color: var(--white);
  }
  .mobile-cta-call:hover, .mobile-cta-call:active {
    color: var(--white);
    transform: scale(0.98);
  }
  .mobile-cta-whatsapp {
    background: #25d366;
    color: var(--white);
  }
  .mobile-cta-whatsapp:hover, .mobile-cta-whatsapp:active {
    color: var(--white);
    transform: scale(0.98);
  }
  .mobile-bottom-cta .mi { font-size: clamp(16px, 4.6vw, 20px); }
  .mobile-cta-whatsapp .whatsapp-icon { flex-shrink: 0; }
  .mobile-cta-call .mi,
  .mobile-cta-whatsapp .whatsapp-icon {
    width: clamp(14px, 4vw, 18px);
    height: clamp(14px, 4vw, 18px);
  }
  body { padding-bottom: 85px; }
  .scroll-top-btn { bottom: 80px; }
  .stat-item h3 { font-size: 2rem; }
  .page-header { padding: 130px 0 50px; }
  .legal-card { padding: 28px; }
  .cookie-consent-card {
    flex-direction: column;
    align-items: flex-start;
  }
  .cookie-consent-actions {
    width: 100%;
    flex-wrap: wrap;
  }
  .section.section-dark { padding: 50px 0; }
  .section-header { margin-bottom: 36px; }
  .section-header p { font-size: 0.9rem; }
  .process-timeline .row { gap: 0.75rem; }
  .process-step-v2 {
    padding: 1rem 0.85rem;
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-rows: auto auto auto;
    gap: 0 12px;
    text-align: left;
    align-items: start;
  }
  .process-step-num {
    font-size: 28px; margin-bottom: 0;
    grid-column: 2; grid-row: 1;
    text-align: right;
  }
  .process-step-icon {
    width: 44px; height: 44px;
    margin: 0; grid-column: 2; grid-row: 2;
    margin-left: auto;
  }
  .process-step-icon .mi { font-size: 20px; }
  .process-step-v2 h4 {
    font-size: 0.9rem; margin-bottom: 0.4rem;
    grid-column: 1; grid-row: 1;
  }
  .process-step-v2 p {
    font-size: 0.78rem; margin-bottom: 0.5rem;
    grid-column: 1; grid-row: 2;
  }
  .process-step-tag {
    font-size: 10px; padding: 4px 10px;
    grid-column: 1; grid-row: 3;
    justify-self: start;
  }
  .cta-section { padding: 80px 0; }
  .comparison-wrap { overflow-x: auto; }
  .comparison-table { min-width: 640px; }
}

@media (max-width: 575px) {
  .hero-content { padding: 100px 0 28px; }
  .hero h1 { font-size: clamp(26px, 8vw, 36px); }
  .hero-stats { flex-wrap: nowrap; gap: 0; border-radius: var(--radius-sm); margin-top: -4px; }
  .hero-stat-item {
    padding: 6px 4px; min-width: 0; flex: 1;
  }
  .hero-stat-item h3 { font-size: 0.95rem; }
  .hero-stat-item p { font-size: 0.5rem; }
  .hero-stat-item { border-right-color: rgba(255,255,255,0.06); }
  .section-header h2 { font-size: clamp(26px, 6vw, 36px); }
  .contact-form { padding: 1.5rem; }
  .section.section-dark { padding: 40px 0; }
  .section-header { margin-bottom: 28px; }
  .section-header h2 { font-size: clamp(22px, 5vw, 28px); }
  .process-step-v2 { padding: 0.85rem 0.65rem; }
  .process-step-num { font-size: 24px; }
  .process-step-icon { width: 38px; height: 38px; }
  .process-step-icon .mi { font-size: 18px; }
  .process-step-v2 h4 { font-size: 0.85rem; }
  .process-step-v2 p { font-size: 0.72rem; line-height: 1.4; }
  .hero-features-strip { margin-top: -4px; padding-bottom: 1rem; }
  .feature-strip-grid { grid-template-columns: repeat(2, 1fr); gap: 0.5rem; }
  .feature-strip-card { padding: 0.55rem 0.65rem; }
  .feature-strip-card p { display: block; font-size: 0.55rem; }
  .feature-strip-icon { width: 28px; height: 28px; min-width: 28px; }
  .feature-strip-icon .mi { font-size: 14px; }
  .feature-strip-card h5 { font-size: 0.65rem; }
  .nav-shell { padding: 10px 14px; border-radius: 24px; }
  .navbar-logo { font-size: 24px; }
  .footer-bottom-inner { flex-direction: column; align-items: flex-start; }
  .legal-card { padding: 22px; border-radius: 22px; }
  .legal-block h2 { font-size: 1.15rem; }
  .cookie-consent {
    left: 12px;
    right: 12px;
    bottom: 12px;
  }
  .cookie-consent-card {
    padding: 14px;
    border-radius: 18px;
  }
  .cookie-consent-actions {
    flex-direction: column-reverse;
    align-items: stretch;
  }
  .cookie-btn { width: 100%; }
  .orb-1 { width: 200px; height: 200px; }
  .orb-2, .orb-3 { display: none; }
  .mobile-bottom-cta {
    gap: 6px;
    padding-left: 8px;
    padding-right: 8px;
  }
  .mobile-cta-call,
  .mobile-cta-whatsapp {
    font-size: 0.62rem;
    gap: 4px;
    padding: 10px 7px;
    font-weight: 700;
  }
  .mobile-cta-phone {
    width: 56px;
    min-width: 56px;
    height: 56px;
  }
  .mobile-cta-phone .modern-call-icon { font-size: 23px; }
}

@media (max-width: 430px) {
  .mobile-bottom-cta {
    gap: 4px;
    padding-left: 6px;
    padding-right: 6px;
  }
  .mobile-cta-call,
  .mobile-cta-whatsapp {
    font-size: 0.6rem;
    padding-left: 7px;
    padding-right: 7px;
    gap: 3px;
  }
  .mobile-cta-phone {
    width: 50px;
    min-width: 50px;
    height: 50px;
  }
  .mobile-cta-phone .modern-call-icon { font-size: 21px; }
}

@media (max-width: 390px) {
  .mobile-cta-call,
  .mobile-cta-whatsapp {
    font-size: 0.58rem;
    padding-left: 6px;
    padding-right: 6px;
  }
}
