@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,300..700&family=Inter:wght@300..700&display=swap');
@import 'reset.css';
@import 'variables.css';

/* ============================================================
   TEMEL
   ============================================================ */

body {
  font-family: var(--font-body);
  font-size: var(--text-md);
  font-optical-sizing: auto;
  letter-spacing: var(--tracking-body);
  color: var(--color-text-body);
  background-color: var(--color-bg);
  text-rendering: optimizeLegibility;
}

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

::selection {
  background: var(--navy-500);
  color: #fff;
}

:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 3px;
  border-radius: var(--radius-xs);
}

/* İnce kaydırma çubuğu */
@supports selector(::-webkit-scrollbar) {
  ::-webkit-scrollbar { width: 12px; height: 12px; }
  ::-webkit-scrollbar-track { background: var(--ink-100); }
  ::-webkit-scrollbar-thumb {
    background: var(--ink-250);
    border-radius: var(--radius-full);
    border: 3px solid var(--ink-100);
  }
  ::-webkit-scrollbar-thumb:hover { background: var(--ink-300); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ============================================================
   TİPOGRAFİ
   ============================================================ */

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-optical-sizing: auto;
  font-weight: 600;
  line-height: var(--leading-snug);
  letter-spacing: var(--tracking-heading);
  color: var(--color-text);
  text-wrap: balance;
}

h1 {
  font-size: var(--h1);
  line-height: var(--leading-tight);
  letter-spacing: var(--tracking-display);
}
h2 { font-size: var(--h2); }
h3 { font-size: var(--h3); }
h4 { font-size: var(--h4); }

p {
  line-height: var(--leading-body);
  color: var(--color-text-body);
  text-wrap: pretty;
}

strong { color: var(--color-text); font-weight: 600; }

/* Küçük büyük-harf etiket */
.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  color: var(--color-accent-dark);
  margin-bottom: var(--space-2);
  position: relative;
  padding-left: 28px;
}

.section-label::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 20px;
  height: 1px;
  background: var(--color-accent);
}

/* ============================================================
   BUTONLAR
   ============================================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-1);
  padding: 14px 30px;
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: 600;
  letter-spacing: -0.005em;
  line-height: 1.2;
  cursor: pointer;
  border: 1px solid transparent;
  white-space: nowrap;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  transition: background var(--dur-base) var(--ease),
              color var(--dur-base) var(--ease),
              box-shadow var(--dur-base) var(--ease),
              border-color var(--dur-base) var(--ease),
              transform var(--dur-fast) var(--ease-out);
}

/* Üstten ince parlaklık — dolgulu butonlara derinlik verir */
.btn-primary::before,
.btn-accent::before {
  content: '';
  position: absolute;
  inset: 0 0 auto 0;
  height: 50%;
  background: linear-gradient(to bottom, rgba(255,255,255,0.16), transparent);
  pointer-events: none;
  z-index: -1;
}

.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); transition-duration: 60ms; }
.btn:focus-visible { outline: none; box-shadow: var(--focus-ring); }

.btn-primary {
  background: linear-gradient(180deg, var(--navy-500) 0%, var(--navy-700) 100%);
  color: var(--color-white);
  border-color: var(--navy-700);
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover {
  background: linear-gradient(180deg, var(--navy-600) 0%, var(--navy-800) 100%);
  box-shadow: var(--shadow-lg);
  color: var(--color-white);
}

.btn-accent {
  background: linear-gradient(180deg, var(--gold-400) 0%, var(--gold-600) 100%);
  color: #33270A;
  border-color: var(--gold-600);
  box-shadow: var(--shadow-sm);
}
.btn-accent:hover {
  background: linear-gradient(180deg, var(--gold-300) 0%, var(--gold-500) 100%);
  box-shadow: var(--shadow-accent);
  color: #2B2008;
}

.btn-outline {
  background: rgba(255, 255, 255, 0.04);
  color: var(--color-white);
  border-color: rgba(255, 255, 255, 0.34);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.btn-outline:hover {
  background: rgba(255, 255, 255, 0.13);
  border-color: rgba(255, 255, 255, 0.7);
  color: var(--color-white);
}

.btn-outline-primary {
  background: transparent;
  color: var(--color-primary);
  border-color: var(--ink-250);
}
.btn-outline-primary:hover {
  background: var(--color-primary);
  color: var(--color-white);
  border-color: var(--color-primary);
  box-shadow: var(--shadow-md);
}

/* ============================================================
   HEADER
   ============================================================ */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  border-bottom: 1px solid var(--color-hairline);
  transition: box-shadow var(--dur-base) var(--ease),
              background var(--dur-base) var(--ease);
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 1px 0 var(--color-hairline), var(--shadow-md);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  gap: var(--space-3);
}

.site-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.site-logo .logo-img {
  height: 50px;
  width: auto;
  display: block;
  transition: opacity var(--transition);
}
.site-logo:hover .logo-img { opacity: 0.82; }

.nav-menu {
  display: flex;
  align-items: center;
  gap: var(--space-4);
}

.nav-menu a {
  font-size: var(--text-base);
  font-weight: 500;
  color: var(--ink-600);
  transition: color var(--transition);
  position: relative;
  padding: 6px 0;
}

/* Ortadan açılan altın çizgi */
.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 1.5px;
  background: var(--color-accent);
  border-radius: 2px;
  transform: translateX(-50%);
  transition: width var(--dur-base) var(--ease-out);
}

.nav-menu a:hover,
.nav-menu a.active { color: var(--color-primary); }

.nav-menu a:hover::after,
.nav-menu a.active::after { width: 100%; }

.nav-cta { margin-left: var(--space-1); }

/* Nav içindeki buton — alt çizgi almasın */
.nav-menu a.btn-primary {
  color: var(--color-white);
  padding: 12px 24px;
  font-size: var(--text-base);
}
.nav-menu a.btn-primary::after { display: none; }
.nav-menu a.btn-primary:hover,
.nav-menu a.btn-primary.active { color: var(--color-white); }

/* Dil değiştirici */
.lang-switch {
  display: flex;
  align-items: center;
  gap: 2px;
  font-size: var(--text-sm);
  font-weight: 600;
  margin-left: var(--space-1);
  padding: 3px;
  background: var(--ink-100);
  border: 1px solid var(--color-hairline);
  border-radius: var(--radius-full);
}
.lang-switch a {
  color: var(--ink-500);
  text-decoration: none;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  transition: color var(--transition), background var(--transition);
  line-height: 1.3;
}
.lang-switch a::after { display: none; }
.lang-switch a:hover { color: var(--color-primary); background: rgba(255,255,255,0.8); }
.lang-switch a.lang-active {
  color: var(--color-primary);
  background: var(--color-white);
  box-shadow: var(--shadow-xs);
}
.lang-switch span { display: none; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 9px 7px;
  cursor: pointer;
  background: none;
  border: none;
  border-radius: var(--radius-sm);
}

.hamburger span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--color-text);
  border-radius: 2px;
  transition: transform var(--dur-base) var(--ease-out),
              opacity var(--dur-fast) var(--ease);
  transform-origin: center;
}

.hamburger--active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger--active span:nth-child(2) { opacity: 0; }
.hamburger--active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 767px) {
  .hamburger { display: flex; }

  .nav-menu {
    position: absolute;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--color-border);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: var(--space-2) var(--container-padding) var(--space-3);
    box-shadow: var(--shadow-lg);
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: transform var(--dur-base) var(--ease-out),
                opacity var(--dur-base) var(--ease);
  }

  .nav-menu.nav-open { transform: translateY(0); opacity: 1; pointer-events: all; }

  .nav-menu a {
    display: block;
    padding: 15px 0;
    width: 100%;
    font-size: var(--text-lg);
    border-bottom: 1px solid var(--ink-150);
  }
  .nav-menu a::after { display: none; }
  .nav-menu a:last-of-type { border-bottom: none; }

  .nav-cta { margin: var(--space-2) 0 0; width: 100%; }
  .nav-menu a.btn-primary { width: 100%; text-align: center; padding: 15px 24px; }

  .lang-switch { margin: var(--space-3) 0 0; align-self: flex-start; }
}

/* ============================================================
   HERO
   ============================================================ */

.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: var(--section-y-lg) 0;
  color: var(--color-white);
  background:
    radial-gradient(120% 90% at 12% 8%, var(--navy-600) 0%, transparent 55%),
    radial-gradient(90% 80% at 92% 92%, var(--navy-800) 0%, transparent 60%),
    linear-gradient(152deg, var(--navy-850) 0%, var(--navy-600) 48%, var(--navy-900) 100%);
}

/* Altın parıltı */
.hero::before {
  content: '';
  position: absolute;
  z-index: -2;
  top: -22%;
  right: -8%;
  width: 62vw;
  height: 62vw;
  max-width: 760px;
  max-height: 760px;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.20) 0%, rgba(201, 168, 76, 0.05) 42%, transparent 68%);
  pointer-events: none;
}

/* İnce grain dokusu — dijital düzlüğü kırar */
.hero::after {
  content: '';
  position: absolute;
  z-index: -1;
  inset: 0;
  opacity: 0.5;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)' opacity='0.32'/%3E%3C/svg%3E");
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: var(--space-6);
  align-items: center;
  position: relative;
}

.hero-content { position: relative; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-1);
  background: rgba(201, 168, 76, 0.14);
  border: 1px solid rgba(201, 168, 76, 0.36);
  color: var(--color-accent-glow);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: var(--radius-full);
  margin-bottom: var(--space-3);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.hero-title {
  font-family: var(--font-heading);
  font-size: var(--display);
  font-weight: 500;
  color: var(--color-white);
  margin-bottom: var(--space-3);
  line-height: var(--leading-tight);
  letter-spacing: var(--tracking-display);
  text-wrap: balance;
}

.hero-title span {
  display: inline-block;
  color: var(--color-accent-glow);
  font-style: italic;
  font-weight: 400;
}

.hero-desc {
  font-size: var(--text-lg);
  line-height: var(--leading-loose);
  color: var(--on-dark);
  margin-bottom: var(--space-4);
  max-width: 30em;
}

.hero-actions {
  display: flex;
  gap: var(--space-2);
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: var(--space-4);
  margin-top: var(--space-5);
  padding-top: var(--space-4);
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.stat-item {
  display: flex;
  flex-direction: column;
  position: relative;
  padding-right: var(--space-4);
}
.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 6px;
  bottom: 6px;
  width: 1px;
  background: rgba(255, 255, 255, 0.14);
}
.stat-item:last-child { padding-right: 0; }

.stat-value {
  font-family: var(--font-heading);
  font-size: 2.25rem;
  font-weight: 600;
  color: var(--color-accent-glow);
  line-height: 1;
  letter-spacing: -0.02em;
}

.stat-label {
  font-size: var(--text-xs);
  line-height: 1.45;
  color: var(--on-dark-soft);
  margin-top: 8px;
  max-width: 13ch;
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-photo,
.hero-video {
  width: 100%;
  max-width: 430px;
  border-radius: var(--radius-xl);
  object-fit: cover;
  box-shadow: var(--shadow-dark);
  border: 1px solid rgba(255, 255, 255, 0.18);
  outline: 8px solid rgba(255, 255, 255, 0.05);
  display: block;
}
.hero-video { pointer-events: none; }

@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: var(--space-5); }
  .hero-visual { order: -1; }
  .hero-desc { max-width: none; }
}

@media (max-width: 767px) {
  .hero { padding: var(--space-5) 0 var(--space-6); }
  .hero-stats { gap: var(--space-3); flex-wrap: wrap; }
  .stat-item { padding-right: var(--space-3); }
  .stat-value { font-size: 1.75rem; }
  .hero-photo, .hero-video {
    max-width: 100%;
    max-height: 380px;
    border-radius: var(--radius-lg);
    outline-width: 5px;
  }
  .hero-actions .btn { flex: 1 1 auto; }
}

/* ============================================================
   BÖLÜM ORTAK
   ============================================================ */

.section { padding: var(--section-y) 0; }

.section--alt {
  background: var(--color-white);
  border-top: 1px solid var(--color-hairline);
  border-bottom: 1px solid var(--color-hairline);
}

.section-header {
  text-align: center;
  max-width: 660px;
  margin: 0 auto var(--space-5);
}

.section-header .section-label { padding-left: 0; }
.section-header .section-label::before { display: none; }

/* Başlık altı altın çizgi */
.section-header h2 { position: relative; padding-bottom: var(--space-3); }
.section-header h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 56px;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, transparent, var(--color-accent), transparent);
}

.section-header p {
  margin-top: var(--space-1);
  font-size: var(--text-lg);
  color: var(--color-text-light);
  line-height: var(--leading-loose);
}

/* ============================================================
   KART ORTAK YÜZEYİ
   ============================================================ */

.specialty-card,
.treatment-card,
.contact-card,
.sidebar-card,
.cv-info-card,
.author-box {
  background: var(--color-surface);
  border: 1px solid var(--color-hairline);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

/* ============================================================
   UZMANLIK ALANLARI
   ============================================================ */

.specialties-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-3);
}

.specialty-card {
  padding: var(--space-4);
  transition: box-shadow var(--dur-base) var(--ease),
              transform var(--dur-base) var(--ease-out),
              border-color var(--dur-base) var(--ease);
}

.specialty-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: var(--navy-100);
}

.specialty-icon {
  width: 54px;
  height: 54px;
  background: linear-gradient(145deg, var(--navy-50), var(--navy-100));
  border: 1px solid var(--navy-100);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-3);
  font-size: 1.5rem;
}

.specialty-card h3 { font-size: var(--text-xl); margin-bottom: var(--space-1); }
.specialty-card p { font-size: var(--text-base); color: var(--color-text-light); }

@media (max-width: 1023px) { .specialties-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 599px)  { .specialties-grid { grid-template-columns: 1fr; } }

/* ============================================================
   DOKTOR TANITIM
   ============================================================ */

.about-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: var(--space-6);
  align-items: center;
}

.about-image-wrap { position: relative; isolation: isolate; }

.about-image-wrap img {
  position: relative;
  z-index: 1;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--color-hairline);
}

/* Altın çerçeve aksanı — görselin arkasından taşar */
.about-image-wrap::after {
  content: '';
  position: absolute;
  inset: 14px -14px -14px 14px;
  border: 1px solid var(--gold-300);
  border-radius: var(--radius-lg);
  z-index: 0;
  pointer-events: none;
}

.about-image-placeholder {
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, var(--navy-50), var(--navy-100));
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  color: var(--color-primary);
}

.about-badge {
  position: absolute;
  bottom: var(--space-3);
  left: calc(-1 * var(--space-3));
  background: var(--color-white);
  border: 1px solid var(--color-hairline);
  border-radius: var(--radius-md);
  padding: var(--space-2) var(--space-3);
  box-shadow: var(--shadow-xl);
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.about-badge-value {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--color-primary);
  line-height: 1;
}

.about-badge-label { font-size: var(--text-sm); color: var(--color-text-light); }

.about-content h2 { margin-bottom: var(--space-3); }
.about-content > p { margin-bottom: var(--space-3); font-size: var(--text-lg); line-height: var(--leading-loose); }

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2);
  margin-bottom: var(--space-4);
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: var(--text-base);
  color: var(--color-text-body);
}

.feature-item::before {
  content: '✓';
  color: var(--color-accent-dark);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: var(--space-5); }
  .about-image-wrap::after { display: none; }
  .about-image-placeholder { aspect-ratio: 16/9; }
  .about-features { grid-template-columns: 1fr; }
  .about-badge { left: var(--space-2); }
}

/* ============================================================
   TEDAVİ KARTLARI
   ============================================================ */

.treatments-category-header {
  margin-bottom: var(--space-4);
  padding-bottom: var(--space-2);
  border-bottom: 1px solid var(--color-border);
  position: relative;
}

.treatments-category-header::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 64px;
  height: 2px;
  background: var(--color-accent);
  border-radius: 2px;
}

.treatments-category-header h3 {
  font-size: 1.375rem;
  color: var(--color-primary);
  margin-bottom: 4px;
}

.treatments-category-header p {
  font-size: var(--text-base);
  color: var(--color-text-light);
  margin: 0;
}

.treatments-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-3);
}

.treatment-card {
  padding: var(--space-4);
  display: flex;
  flex-direction: column;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  transition: box-shadow var(--dur-base) var(--ease),
              transform var(--dur-base) var(--ease-out),
              border-color var(--dur-base) var(--ease);
}

/* Üstte hover'da açılan altın şerit */
.treatment-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--color-accent), var(--gold-300));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--dur-slow) var(--ease-out);
}

.treatment-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
  border-color: var(--navy-100);
}
.treatment-card:hover::before { transform: scaleX(1); }

.treatment-card-icon { display: none; }

.treatment-card h3 {
  font-size: var(--text-xl);
  margin-bottom: 2px;
  color: var(--color-text);
}

.treatment-sub {
  font-size: var(--text-sm) !important;
  color: var(--color-accent-dark) !important;
  font-weight: 600;
  letter-spacing: 0.01em;
  margin-bottom: 10px !important;
  flex: none !important;
}

.treatment-card p {
  font-size: var(--text-base);
  color: var(--color-text-light);
  line-height: 1.7;
  flex: 1;
  margin-bottom: var(--space-3);
}

.treatment-card-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--color-primary);
  align-self: flex-start;
  transition: gap var(--dur-base) var(--ease-out), color var(--transition);
}

.treatment-card-link::after {
  content: '→';
  transition: transform var(--dur-base) var(--ease-out);
}
.treatment-card-link:hover { gap: 12px; color: var(--navy-700); }

@media (max-width: 1023px) { .treatments-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 599px)  { .treatments-grid { grid-template-columns: 1fr; } }

/* ============================================================
   CTA BANNER
   ============================================================ */

.cta-banner {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border-radius: var(--radius-xl);
  padding: var(--space-6) var(--space-5);
  text-align: center;
  color: var(--color-white);
  box-shadow: var(--shadow-xl);
  background:
    radial-gradient(90% 120% at 15% 0%, var(--navy-600) 0%, transparent 58%),
    linear-gradient(140deg, var(--navy-800) 0%, var(--navy-600) 52%, var(--navy-900) 100%);
}

.cta-banner::before {
  content: '';
  position: absolute;
  z-index: -1;
  top: -55%;
  right: -12%;
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.22) 0%, transparent 65%);
  pointer-events: none;
}

.cta-banner h2 {
  color: var(--color-white);
  margin-bottom: var(--space-2);
  font-weight: 500;
}

.cta-banner p {
  color: var(--on-dark);
  font-size: var(--text-lg);
  line-height: var(--leading-loose);
  margin: 0 auto var(--space-4);
  max-width: 52ch;
}

.cta-actions {
  display: flex;
  gap: var(--space-2);
  justify-content: center;
  flex-wrap: wrap;
}

@media (max-width: 599px) {
  .cta-banner { padding: var(--space-5) var(--space-3); }
  .cta-actions .btn { width: 100%; }
}

/* ============================================================
   PAGE HEADER (İç Sayfalar)
   ============================================================ */

.page-header {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  color: var(--color-white);
  padding: var(--space-6) 0 var(--space-5);
  background:
    radial-gradient(100% 140% at 10% 0%, var(--navy-600) 0%, transparent 60%),
    linear-gradient(145deg, var(--navy-850) 0%, var(--navy-600) 60%, var(--navy-800) 100%);
}

.page-header::before {
  content: '';
  position: absolute;
  z-index: -1;
  top: -60%;
  right: -5%;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.16) 0%, transparent 66%);
  pointer-events: none;
}

.page-header .breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: var(--text-sm);
  color: var(--on-dark-soft);
  margin-bottom: var(--space-3);
}

.page-header .breadcrumb a {
  color: var(--on-dark-soft);
  transition: color var(--transition);
}
.page-header .breadcrumb a:hover { color: var(--color-accent-glow); }
.page-header .breadcrumb span { color: var(--on-dark-faint); }

.page-header h1 {
  color: var(--color-white);
  font-weight: 500;
  margin-bottom: var(--space-2);
  max-width: 20ch;
}

.page-header p {
  color: var(--on-dark);
  font-size: var(--text-lg);
  line-height: var(--leading-loose);
  max-width: 62ch;
}

/* ============================================================
   HAKKIMDA SAYFASI
   ============================================================ */

.cv-section { padding: var(--section-y) 0; }

.cv-grid {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: var(--space-6);
  align-items: start;
}

.cv-sidebar {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  position: sticky;
  top: calc(var(--header-h) + var(--space-3));
}

.cv-sidebar img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--color-hairline);
}

.cv-photo-placeholder {
  aspect-ratio: 3/4;
  background: linear-gradient(135deg, var(--navy-50), var(--navy-100));
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 6rem;
  color: var(--color-primary);
}

.cv-info-card { padding: var(--space-3); }

.cv-info-card h4 {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: var(--tracking-wide);
  color: var(--color-accent-dark);
  margin-bottom: var(--space-2);
}

.cv-info-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 10px 0;
  border-bottom: 1px solid var(--ink-150);
  font-size: var(--text-base);
}
.cv-info-item:last-child { border-bottom: none; padding-bottom: 0; }
.cv-info-item strong { color: var(--color-text); font-weight: 600; }
.cv-info-item span { color: var(--color-text-light); }

.cv-main { display: flex; flex-direction: column; gap: var(--space-6); }

.cv-block h2 {
  font-size: 1.625rem;
  margin-bottom: var(--space-3);
  padding-bottom: var(--space-2);
  border-bottom: 1px solid var(--color-border);
  position: relative;
}

.cv-block h2::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 64px;
  height: 2px;
  background: var(--color-accent);
  border-radius: 2px;
}

.cv-block > p { line-height: var(--leading-loose); }

/* Zaman çizelgesi */
.cv-timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}

.timeline-item {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: var(--space-3);
  padding: 0 0 var(--space-4) var(--space-3);
  position: relative;
  border-left: 1px solid var(--color-border);
}
.timeline-item:last-child { padding-bottom: 0; border-left-color: transparent; }

/* Altın nokta */
.timeline-item::before {
  content: '';
  position: absolute;
  left: -5px;
  top: 5px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--color-accent);
  box-shadow: 0 0 0 4px var(--color-bg);
}

.timeline-year {
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--color-accent-dark);
  padding-top: 1px;
}

.timeline-content h4 {
  font-family: var(--font-body);
  font-size: var(--text-md);
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 4px;
}

.timeline-content p { font-size: var(--text-base); color: var(--color-text-light); }

.cert-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-2);
}

.cert-item {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  padding: 14px var(--space-2);
  background: linear-gradient(135deg, var(--navy-50), rgba(237, 244, 252, 0.4));
  border: 1px solid var(--navy-100);
  border-radius: var(--radius-md);
  font-size: var(--text-base);
  font-weight: 500;
  color: var(--color-primary);
}

.cert-item::before { content: '🏅'; }

@media (max-width: 900px) {
  .cv-grid { grid-template-columns: 1fr; gap: var(--space-5); }
  .cv-sidebar { position: static; }
  .cert-grid { grid-template-columns: 1fr; }
  .timeline-item { grid-template-columns: 1fr; gap: 6px; }
}

/* Yayın listesi (about sayfaları inline <style> ile birlikte çalışır) */
.pub-list { display: flex; flex-direction: column; gap: 10px; }
.pub-year-group { margin-bottom: var(--space-4); }

/* ============================================================
   İLETİŞİM SAYFASI
   ============================================================ */

.contact-section { padding: var(--section-y) 0; }

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.4fr;
  gap: var(--space-5);
  align-items: start;
}

.contact-info { display: flex; flex-direction: column; gap: var(--space-2); }

.contact-card {
  padding: var(--space-3);
  display: flex;
  gap: var(--space-3);
  align-items: center;
  transition: box-shadow var(--dur-base) var(--ease),
              transform var(--dur-base) var(--ease-out),
              border-color var(--dur-base) var(--ease);
}

.contact-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateX(3px);
  border-color: var(--navy-100);
}

.contact-card-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(145deg, var(--navy-50), var(--navy-100));
  border: 1px solid var(--navy-100);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.contact-card-content { min-width: 0; }

.contact-card-content h4 {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: var(--tracking-wide);
  color: var(--color-text-light);
  margin-bottom: 5px;
}

.contact-card-content p {
  font-size: var(--text-base);
  color: var(--color-text);
  line-height: 1.6;
}

.map-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-hairline);
  box-shadow: var(--shadow-md);
}

.map-placeholder {
  height: 400px;
  background: var(--navy-50);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  color: var(--color-primary);
  font-size: 3rem;
}
.map-placeholder p { font-size: var(--text-base); color: var(--color-text-light); }

@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   TEDAVİ DETAY SAYFASI
   ============================================================ */

.treatment-detail { padding: var(--section-y) 0; }

.treatment-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: var(--space-6);
  align-items: start;
}

/* Makale tipografisi */
.treatment-content { max-width: 72ch; }

.treatment-content h2 {
  font-size: clamp(1.375rem, 2.4vw, 1.75rem);
  margin: var(--space-5) 0 var(--space-2);
  padding-top: var(--space-2);
  border-top: 1px solid var(--ink-150);
}
.treatment-content h2:first-child { margin-top: 0; padding-top: 0; border-top: none; }

/* SSS soruları */
.treatment-content h3 {
  font-family: var(--font-body);
  font-size: var(--text-lg);
  font-weight: 600;
  letter-spacing: -0.008em;
  color: var(--color-primary);
  margin: var(--space-4) 0 6px;
  line-height: 1.5;
}

.treatment-content p {
  font-size: var(--text-md);
  line-height: var(--leading-loose);
  color: var(--color-text-body);
  margin-bottom: var(--space-3);
}

/* İlk paragraf — giriş vurgusu */
.treatment-content > h2:first-child + p {
  font-size: var(--text-lg);
  color: var(--color-text);
  line-height: 1.8;
}

.treatment-content ul {
  list-style: none;
  padding-left: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 0 0 var(--space-4);
}

.treatment-content ul li {
  position: relative;
  padding-left: 30px;
  font-size: var(--text-md);
  line-height: 1.7;
  color: var(--color-text-body);
}

/* Altın onay işareti */
.treatment-content ul li::before {
  content: '';
  position: absolute;
  left: 4px;
  top: 0.62em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--color-accent);
  box-shadow: 0 0 0 3px var(--gold-100);
}

.treatment-content .article-image { margin: var(--space-5) 0; }

/* Kenar çubuğu */
.treatment-sidebar {
  position: sticky;
  top: calc(var(--header-h) + var(--space-3));
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.sidebar-card { padding: var(--space-3); }

.sidebar-card h4 {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: var(--tracking-wide);
  color: var(--color-accent-dark);
  margin-bottom: var(--space-2);
}

.sidebar-card ul li a {
  display: block;
  padding: 7px 0;
  border-bottom: 1px solid var(--ink-150);
  transition: color var(--transition), padding-left var(--dur-base) var(--ease-out);
}
.sidebar-card ul li:last-child a { border-bottom: none; }
.sidebar-card ul li a:hover { color: var(--color-primary) !important; padding-left: 5px; }

/* CTA kenar kartı */
.sidebar-cta {
  border: none !important;
  text-align: center;
  padding: var(--space-4) var(--space-3) !important;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  box-shadow: var(--shadow-lg) !important;
  background:
    radial-gradient(120% 100% at 50% 0%, var(--navy-600) 0%, transparent 60%),
    linear-gradient(160deg, var(--navy-700) 0%, var(--navy-900) 100%) !important;
}

.sidebar-cta::before {
  content: '';
  position: absolute;
  z-index: -1;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.2) 0%, transparent 66%);
}

.sidebar-cta h4 {
  font-family: var(--font-heading);
  color: var(--color-white);
  font-size: var(--text-xl);
  font-weight: 600;
  text-transform: none;
  letter-spacing: var(--tracking-heading);
  margin-bottom: var(--space-1);
}

.sidebar-cta p {
  font-size: var(--text-base);
  color: var(--on-dark);
  line-height: 1.65;
  margin-bottom: var(--space-3);
}

@media (max-width: 1023px) {
  .treatment-detail-grid { grid-template-columns: 1fr; gap: var(--space-5); }
  .treatment-sidebar { position: static; }
  .treatment-content { max-width: none; }
}

/* ── Makale İçi Görsel ── */
.article-image {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--color-hairline);
  margin: var(--space-5) 0;
  display: block;
}

@media (max-width: 767px) {
  .article-image { margin: var(--space-4) 0; }
}

/* ============================================================
   RİNOPLASTİ BÖLÜMÜ (Ana Sayfa)
   ============================================================ */

.rino-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: var(--space-6);
  align-items: start;
  margin-top: var(--space-4);
}

.rino-image { position: relative; }

.rino-image img {
  width: 100%;
  border-radius: var(--radius-lg);
  object-fit: cover;
  display: block;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--color-hairline);
}

.rino-content h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--color-primary);
  margin-top: var(--space-4);
  margin-bottom: var(--space-2);
}

.rino-lead {
  font-size: var(--text-xl);
  font-weight: 400;
  color: var(--color-text);
  line-height: 1.7;
  margin-bottom: var(--space-2);
}

.rino-content p {
  color: var(--color-text-body);
  line-height: var(--leading-loose);
  margin-bottom: var(--space-2);
}

.rino-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin-bottom: var(--space-3);
}

.rino-list li {
  padding-left: 26px;
  position: relative;
  color: var(--color-text-body);
  line-height: 1.65;
}

.rino-list li::before {
  content: '';
  position: absolute;
  left: 4px;
  top: 0.6em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--color-accent);
  box-shadow: 0 0 0 3px var(--gold-100);
}

.rino-quote {
  border: none;
  border-left: 2px solid var(--color-accent);
  padding: var(--space-2) var(--space-3);
  margin: var(--space-4) 0 0;
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  font-style: italic;
  font-weight: 400;
  color: var(--color-text);
  background: linear-gradient(90deg, var(--gold-100), rgba(247, 241, 222, 0));
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  line-height: 1.6;
}

@media (max-width: 900px) {
  .rino-grid { grid-template-columns: 1fr; gap: var(--space-4); }
}

/* ============================================================
   SAĞLIK TURİZMİ YETKİ BELGESİ
   ============================================================ */

.cert-section {
  background:
    radial-gradient(80% 60% at 50% 0%, var(--navy-50) 0%, transparent 70%),
    linear-gradient(180deg, var(--ink-50) 0%, #fff 65%);
  border-top: 1px solid var(--color-hairline);
  border-bottom: 1px solid var(--color-hairline);
}

.cert-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-5);
  text-align: center;
}

.cert-text { width: 100%; max-width: 700px; }

.cert-badge-label {
  display: inline-block;
  background: linear-gradient(180deg, var(--gold-400), var(--gold-600));
  color: #33270A;
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  margin-bottom: var(--space-3);
  box-shadow: var(--shadow-xs);
}

.cert-title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2.125rem);
  font-weight: 500;
  color: var(--color-primary);
  line-height: var(--leading-snug);
  letter-spacing: var(--tracking-heading);
  margin-bottom: var(--space-3);
}

.cert-desc {
  font-size: var(--text-md);
  color: var(--color-text-body);
  line-height: var(--leading-loose);
  margin: 0 auto var(--space-4);
  max-width: 60ch;
}

.cert-desc strong { color: var(--color-text); }

.cert-btn { display: inline-flex; align-items: center; }

.cert-preview { width: 100%; }

.cert-pdf-frame {
  width: 100%;
  height: 760px;
  border: 1px solid var(--color-hairline);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  display: block;
  background: #fff;
}

@media (max-width: 767px) {
  .cert-pdf-frame { height: 480px; }
}

/* ============================================================
   YAZAR KUTUSU
   ============================================================ */

.author-box-section {
  padding: var(--space-5) 0;
  background: var(--color-white);
  border-top: 1px solid var(--color-hairline);
}

.author-box {
  display: flex;
  gap: var(--space-4);
  align-items: flex-start;
  padding: var(--space-4);
  box-shadow: var(--shadow-md) !important;
  background: linear-gradient(150deg, var(--ink-50) 0%, #fff 45%) !important;
}

.author-photo {
  width: 118px;
  height: 118px;
  object-fit: cover;
  object-position: top center;
  border-radius: var(--radius-md);
  flex-shrink: 0;
  border: 1px solid var(--color-hairline);
  box-shadow: var(--shadow-sm);
}

.author-content { flex: 1; min-width: 0; }

.author-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--space-3);
  flex-wrap: wrap;
  margin-bottom: var(--space-2);
}

.author-role {
  display: block;
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: var(--tracking-wide);
  color: var(--color-accent-dark);
  margin-bottom: 3px;
}

.author-name {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--color-primary);
  margin: 0;
}

.author-social-links { display: flex; gap: 8px; flex-shrink: 0; }

.author-social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  color: var(--color-primary);
  transition: background var(--transition), color var(--transition),
              border-color var(--transition), transform var(--dur-fast) var(--ease-out);
}

.author-social-links a:hover {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: #fff;
  transform: translateY(-2px);
}

.author-dates {
  display: flex;
  gap: var(--space-3);
  flex-wrap: wrap;
  font-size: var(--text-sm);
  color: var(--color-text-light);
  margin-bottom: var(--space-3);
  padding-bottom: var(--space-2);
  border-bottom: 1px solid var(--ink-150);
}

.author-dates span { display: flex; align-items: center; gap: 5px; }

.author-bio {
  font-size: var(--text-base);
  color: var(--color-text-light);
  line-height: 1.75;
  margin: 0;
}

@media (max-width: 599px) {
  .author-box { flex-direction: column; gap: var(--space-3); }
  .author-photo { width: 84px; height: 84px; }
  .author-dates { flex-direction: column; gap: 5px; }
}

/* ============================================================
   FOOTER
   ============================================================ */

.site-footer {
  position: relative;
  color: var(--on-dark-soft);
  padding: var(--space-6) 0 var(--space-3);
  background:
    radial-gradient(90% 120% at 10% 0%, var(--navy-900) 0%, transparent 62%),
    linear-gradient(170deg, var(--navy-950) 0%, #050D18 100%);
}

/* Üstte altın hairline */
.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold-600), var(--color-accent), var(--gold-600), transparent);
  opacity: 0.65;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1.3fr;
  gap: var(--space-5);
  margin-bottom: var(--space-5);
}

.footer-brand .site-logo {
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.25;
}

.footer-brand .logo-name {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: var(--tracking-heading);
  color: var(--color-white);
}

.footer-brand .logo-title {
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-top: 3px;
}

.footer-brand p {
  margin-top: var(--space-2);
  font-size: var(--text-base);
  line-height: 1.75;
  color: var(--on-dark-soft);
  max-width: 42ch;
}

/* Health Türkiye logosu — taşmasın */
.footer-brand img {
  max-width: 148px;
  height: auto;
  opacity: 0.9;
}

.footer-col h4 {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: var(--tracking-wide);
  color: var(--color-white);
  margin-bottom: var(--space-3);
}

.footer-col ul { display: flex; flex-direction: column; gap: 10px; }

.footer-col ul li a {
  font-size: var(--text-base);
  color: var(--on-dark-soft);
  transition: color var(--transition), padding-left var(--dur-base) var(--ease-out);
  display: inline-block;
}
.footer-col ul li a:hover { color: var(--color-accent); padding-left: 4px; }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: var(--text-base);
  line-height: 1.65;
  color: var(--on-dark-soft);
  margin-bottom: 12px;
}
.footer-contact-item a { transition: color var(--transition); }
.footer-contact-item a:hover { color: var(--color-accent) !important; }

.footer-bottom {
  padding-top: var(--space-3);
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  color: var(--on-dark-soft);
}

@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: var(--space-4); }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 599px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: var(--space-1); text-align: center; }
}

/* ============================================================
   SOSYAL MEDYA STICKY BUTONLARI
   ============================================================ */

.social-sticky {
  position: fixed;
  bottom: 28px;
  right: 22px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.social-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 3px 10px rgba(10, 31, 56, 0.18), 0 10px 28px rgba(10, 31, 56, 0.22);
  transition: transform var(--dur-base) var(--ease-out), box-shadow var(--dur-base) var(--ease);
  flex-shrink: 0;
}

.social-btn:hover {
  transform: scale(1.09) translateY(-2px);
  box-shadow: 0 6px 16px rgba(10, 31, 56, 0.2), 0 16px 40px rgba(10, 31, 56, 0.3);
  color: #fff;
}

.social-btn--phone     { background: linear-gradient(160deg, var(--navy-500), var(--navy-800)); }
.social-btn--whatsapp  { background: linear-gradient(160deg, #2CE573, #1EA34E); }
.social-btn--google    { background: #fff; color: #4285F4; border: 1px solid var(--ink-200); }
.social-btn--google:hover { color: #4285F4; }
.social-btn--instagram { background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%); }

@media (max-width: 599px) {
  .social-sticky { bottom: 18px; right: 14px; gap: 9px; }
  .social-btn { width: 46px; height: 46px; }
}

/* ============================================================
   FOOTER — YASAL LİNKLER SATIRI
   ============================================================ */

.footer-legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 18px;
  order: -1;
  width: 100%;
  padding-bottom: var(--space-2);
  margin-bottom: var(--space-2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

.footer-legal-links a {
  font-size: var(--text-sm);
  color: var(--on-dark-soft);
  transition: color var(--transition);
}
.footer-legal-links a:hover { color: var(--color-accent); }

@media (max-width: 767px) {
  .footer-legal-links { justify-content: center; text-align: center; gap: 6px 14px; }
}

/* ============================================================
   YASAL SAYFALAR (Disclaimer / Privacy / Cookie / Terms)
   ============================================================ */

.legal-content {
  max-width: 760px;
  margin: 0 auto;
}

.legal-updated {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: var(--text-sm);
  color: var(--color-text-light);
  background: var(--navy-50);
  border: 1px solid var(--navy-100);
  padding: 8px 16px;
  border-radius: var(--radius-full);
  margin-bottom: var(--space-5);
}

.legal-content h2 {
  font-size: clamp(1.25rem, 2.2vw, 1.5rem);
  margin: var(--space-5) 0 var(--space-2);
  padding-top: var(--space-2);
  border-top: 1px solid var(--ink-150);
}
.legal-content h2:first-of-type { margin-top: 0; padding-top: 0; border-top: none; }

.legal-content p {
  font-size: var(--text-md);
  line-height: var(--leading-loose);
  color: var(--color-text-body);
  margin-bottom: var(--space-3);
}

.legal-content ul,
.legal-content ol {
  padding-left: 1.4em;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0 0 var(--space-3);
}
.legal-content ul { list-style: none; padding-left: 0; }
.legal-content ol { list-style: decimal; }

.legal-content ul li {
  position: relative;
  padding-left: 26px;
  font-size: var(--text-md);
  line-height: 1.7;
  color: var(--color-text-body);
}
.legal-content ul li::before {
  content: '';
  position: absolute;
  left: 4px;
  top: 0.62em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--color-accent);
  box-shadow: 0 0 0 3px var(--gold-100);
}

.legal-content ol li {
  font-size: var(--text-md);
  line-height: 1.7;
  color: var(--color-text-body);
  padding-left: 6px;
}

.legal-content strong { color: var(--color-text); }

.legal-content a:not(.btn) {
  color: var(--color-primary);
  text-decoration: underline;
  text-decoration-color: var(--navy-200);
  text-underline-offset: 2px;
}
.legal-content a:not(.btn):hover { text-decoration-color: var(--color-primary); }

.legal-callout {
  background: linear-gradient(135deg, var(--navy-50), rgba(237, 244, 252, 0.4));
  border: 1px solid var(--navy-100);
  border-left: 3px solid var(--color-primary);
  border-radius: var(--radius-md);
  padding: var(--space-3);
  margin: var(--space-3) 0;
}
.legal-callout p { margin-bottom: 0; }
.legal-callout p + p { margin-top: var(--space-2); }

.legal-callout--warn {
  background: linear-gradient(135deg, var(--gold-100), rgba(247, 241, 222, 0.3));
  border-color: var(--gold-300);
  border-left-color: var(--color-accent-dark);
}

.legal-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: var(--space-5);
  padding-bottom: var(--space-4);
  border-bottom: 1px solid var(--color-border);
}

.legal-nav a {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-text-light);
  background: var(--color-white);
  border: 1px solid var(--color-border);
  padding: 8px 16px;
  border-radius: var(--radius-full);
  text-decoration: none !important;
  transition: color var(--transition), border-color var(--transition), background var(--transition);
}
.legal-nav a:hover,
.legal-nav a.active {
  color: var(--color-primary);
  border-color: var(--navy-200);
  background: var(--navy-50);
}
