/* ═══════════════════════════════════════════════════════════════════════════
   Glowing Partners — Premium Design System
   Lüks • Kurumsal • Etkileyici • Görsel Odaklı
   ═══════════════════════════════════════════════════════════════════════════ */

/* ── Google Fonts ──────────────────────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Oswald:wght@400;500;600;700&display=swap');

/* ── CSS Değişkenleri ──────────────────────────────────────────────────────── */
:root {
  --gold:        #E8712B;
  --gold-light:  #F09445;
  --gold-dark:   #C85D1A;
  --gold-pale:   #FDE8D2;
  --dark:        #1A1A2E;
  --dark-2:      #16213E;
  --dark-3:      #0F3460;
  --cream:       #F2F0ED;
  --cream-2:     #EDEBE8;
  --white:       #FFFFFF;
  --gray-100:    #F8F8F6;
  --gray-200:    #EEECE8;
  --gray-400:    #B0ABA0;
  --gray-600:    #6B6760;
  --gray-800:    #3A3730;
  --text:        #2C2A26;
  --text-light:  #6B6760;

  --shadow-sm:   0 1px 3px rgba(0,0,0,0.06);
  --shadow-md:   0 4px 20px rgba(0,0,0,0.08);
  --shadow-lg:   0 10px 40px rgba(0,0,0,0.12);
  --shadow-xl:   0 20px 60px rgba(0,0,0,0.18);
  --shadow-gold: 0 6px 30px rgba(232,113,43,0.3);

  --radius-sm:   4px;
  --radius-md:   8px;
  --radius-lg:   16px;
  --radius-xl:   24px;
  --radius-full: 9999px;

  --transition:  0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);

  --nav-height:  80px;
  --container:   1200px;
  --gap:         clamp(1rem, 3vw, 2rem);
}

/* ── Reset & Base ──────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
button { border: none; cursor: pointer; font-family: inherit; }

/* ── Tipografi ─────────────────────────────────────────────────────────────── */
h1, h2 {
  font-family: 'Oswald', 'Calibri', sans-serif;
  font-weight: 600;
  line-height: 1.15;
  color: var(--dark);
  letter-spacing: 0.01em;
  text-transform: none;
}
h3, h4, h5 {
  font-weight: 700;
  line-height: 1.2;
  color: var(--dark);
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(2.4rem, 5.5vw, 4.2rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.1rem; }
p  { margin-bottom: 1em; }
p:last-child { margin-bottom: 0; }

.text-gold   { color: var(--gold); }
.text-dark   { color: var(--dark); }
.text-light  { color: var(--text-light); }
.text-white  { color: var(--white); }
.text-center { text-align: center; }

/* ── Layout ────────────────────────────────────────────────────────────────── */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 5vw, 2.5rem);
}
.section {
  padding: clamp(4.5rem, 9vw, 8.5rem) 0;
}
.section--dark   { background: var(--dark); color: var(--white); }
.section--cream  { background: linear-gradient(180deg, var(--cream) 0%, #F5F4F2 100%); }
.section--gray   { background: linear-gradient(180deg, var(--gray-100) 0%, #f0eeea 100%); }
.section--black  { background: #0d0d0d; }
.section--gold   { background: var(--gold); }

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--gap); }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--gap); }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--gap); }
.grid-split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(3rem, 6vw, 6rem); align-items: center; }
.grid-split--reverse { direction: rtl; }
.grid-split--reverse > * { direction: ltr; }
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.gap-sm { gap: 0.75rem; }
.gap-md { gap: 1.5rem; }
.gap-lg { gap: 2.5rem; }

/* ── Section Başlık ────────────────────────────────────────────────────────── */
.section-header { margin-bottom: clamp(2.75rem, 5vw, 5rem); }
.section-header--center { text-align: center; }
.section-label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.9rem;
}
.section-header h2 {
  font-size: clamp(1.9rem, 3.8vw, 2.9rem);
  margin-bottom: 0.5rem;
}
.section-header p {
  font-size: 1.12rem;
  color: var(--text-light);
  max-width: 640px;
  margin: 1rem auto 0;
  line-height: 1.85;
}

/* ── Divider ────────────────────────────────────────────────────────────────── */
.divider {
  width: 64px;
  height: 3px;
  background: linear-gradient(to right, var(--gold), var(--gold-light));
  margin: 1.1rem 0 1.5rem;
  border-radius: 3px;
  box-shadow: 0 0 20px rgba(232,113,43,0.2);
}
.divider--center { margin: 1.1rem auto 1.5rem; }
.divider--wide { width: 80px; }

/* ── Butonlar ──────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2.25rem;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  cursor: pointer;
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: var(--dark);
  box-shadow: 0 6px 28px rgba(232,113,43,0.35), 0 1px 0 rgba(255,255,255,0.2) inset;
}
.btn-primary:hover {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
  transform: translateY(-3px);
  box-shadow: 0 10px 40px rgba(232,113,43,0.45), 0 1px 0 rgba(255,255,255,0.25) inset;
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.4);
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}
.btn-outline-dark {
  background: transparent;
  color: var(--dark);
  border: 1.5px solid var(--dark);
}
.btn-outline-dark:hover {
  background: var(--dark);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-outline-gold {
  background: transparent;
  color: var(--gold);
  border: 1.5px solid var(--gold);
}
.btn-outline-gold:hover {
  background: var(--gold);
  color: var(--dark);
  transform: translateY(-2px);
}
.btn-ghost {
  background: transparent;
  color: var(--gold);
  padding: 0;
  gap: 0.4rem;
}
.btn-ghost::after {
  content: '→';
  transition: transform var(--transition);
}
.btn-ghost:hover::after { transform: translateX(5px); }

/* ── Navbar ────────────────────────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-height);
  z-index: 1000;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(232,113,43,0.15);
  transition: box-shadow var(--transition);
}
.navbar.scrolled {
  box-shadow: 0 2px 40px rgba(0,0,0,0.09);
}
.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.navbar__logo img {
  height: 72px;
  width: auto;
}
.navbar__nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.navbar__nav a {
  padding: 0.5rem 0.9rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gray-800);
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
  position: relative;
}
.navbar__nav a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%; right: 50%;
  height: 2px;
  background: var(--gold);
  transition: left var(--transition), right var(--transition);
}
.navbar__nav a:hover, .navbar__nav a.active { color: var(--gold); }
.navbar__nav a:hover::after, .navbar__nav a.active::after { left: 0.9rem; right: 0.9rem; }
.navbar__actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
}
.lang-switcher a {
  padding: 0.3rem 0.5rem;
  border-radius: var(--radius-sm);
  color: var(--gray-600);
  transition: all var(--transition);
}
.lang-switcher a.active { color: var(--gold); }
.lang-switcher a:hover { color: var(--gold); }
.lang-switcher span { color: var(--gray-400); }
.navbar__cta { display: none; }
@media (min-width: 900px) { .navbar__cta { display: inline-flex; } }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
  background: none;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: all var(--transition);
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile Nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: var(--nav-height);
  left: 0; right: 0;
  background: var(--white);
  border-top: 1px solid var(--gray-200);
  padding: 1.5rem;
  z-index: 999;
  box-shadow: var(--shadow-lg);
  transform: translateY(-10px);
  opacity: 0;
  transition: all var(--transition);
}
.mobile-nav.open {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  transform: translateY(0);
  opacity: 1;
}
.mobile-nav a {
  padding: 0.75rem 1rem;
  font-weight: 500;
  color: var(--gray-800);
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}
.mobile-nav a:hover { background: var(--gray-100); color: var(--gold); }
.mobile-nav .mobile-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--gray-200);
}

/* ════════════════════════════════════════════════════════════════════════════
   HERO — PREMIUM SPLIT LAYOUT + ENTRANCE ANIMATIONS
   ════════════════════════════════════════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  background: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding-top: var(--nav-height);
}
/* Tam alan arka plan fotoğrafı */
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  pointer-events: none;
}
/* Overlay: metin okunaklılığı + hafif ton */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(22,22,42,0.88) 0%, rgba(26,26,46,0.75) 45%, rgba(22,22,42,0.82) 100%),
    radial-gradient(ellipse 80% 70% at 50% 30%, rgba(232,113,43,0.06) 0%, transparent 50%);
  pointer-events: none;
  z-index: 1;
}
@keyframes heroGlow {
  0%   { opacity: 1; }
  100% { opacity: 0.85; }
}
.hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(232,113,43,0.25) 20%, rgba(232,113,43,0.4) 50%, rgba(232,113,43,0.25) 80%, transparent 100%);
  opacity: 0.6;
  pointer-events: none;
  z-index: 1;
}
.hero__left {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(3rem, 6vw, 6rem) clamp(1.5rem, 4vw, 4rem) clamp(3rem, 6vw, 6rem) clamp(1.5rem, 5vw, 5rem);
  position: relative;
  z-index: 2;
  width: 100%;
}
.hero__content {
  max-width: 720px;
  text-align: center;
}
/* Hero entrance: elements start hidden and animate in */
.hero-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.hero-in.hero-in--done {
  opacity: 1;
  transform: translateY(0);
}
.hero-in[data-hero-delay="0"] { transition-delay: 0.05s; }
.hero-in[data-hero-delay="1"] { transition-delay: 0.18s; }
.hero-in[data-hero-delay="2"] { transition-delay: 0.32s; }
.hero-in[data-hero-delay="3"] { transition-delay: 0.46s; }
.hero-in[data-hero-delay="4"] { transition-delay: 0.6s; }
.hero-in[data-hero-delay="5"] { transition-delay: 0.78s; }
.hero__label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.9rem;
}
.hero__label::before {
  content: '';
  display: block;
  width: 48px;
  height: 2px;
  background: linear-gradient(to right, var(--gold), var(--gold-light));
  border-radius: 2px;
  box-shadow: 0 0 12px rgba(232,113,43,0.3);
}
.hero__h1 {
  font-size: clamp(3rem, 6.2vw, 5.6rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  margin-bottom: 1.5rem;
  font-family: 'Oswald', 'Calibri', sans-serif;
  letter-spacing: -0.03em;
  text-shadow: 0 2px 40px rgba(0,0,0,0.2);
}
.hero__h1 span { color: var(--gold); }
.hero__h1 em   { font-style: italic; color: var(--gold-light); font-weight: 600; }
.hero__subtitle {
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  color: rgba(255,255,255,0.82);
  font-weight: 300;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.hero__desc {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.52);
  line-height: 1.88;
  max-width: 620px;
  margin-bottom: 2.5rem;
  margin-left: auto;
  margin-right: auto;
}
.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3rem;
  justify-content: center;
}
.hero__ctas.hero-in.hero-in--done {
  margin-top: 0.75rem;
}
.hero__trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  padding-top: 2.25rem;
  border-top: 1px solid rgba(255,255,255,0.15);
  flex-wrap: wrap;
}
.hero__trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
  color: rgba(255,255,255,0.6);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.hero__trust-item strong {
  color: var(--gold);
  font-size: 1.35rem;
  font-family: 'Oswald', 'Calibri', sans-serif;
  letter-spacing: -0.02em;
}
/* Hero: logo badge (sağ alt) */
.hero__badge {
  position: absolute;
  bottom: 2.5rem;
  right: 2rem;
  background: rgba(255,255,255,0.98);
  padding: 1rem 1.5rem;
  border-radius: var(--radius-lg);
  text-align: center;
  backdrop-filter: blur(12px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.35), 0 0 0 1px rgba(0,0,0,0.06);
  z-index: 2;
}
.hero__badge-logo {
  display: block;
  height: 68px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  object-position: center;
}
/* Scroll indicator */
.hero__scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  color: rgba(255,255,255,0.4);
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  z-index: 2;
  text-decoration: none;
  transition: color 0.3s ease;
}
.hero__scroll:hover { color: var(--gold); }
.hero__scroll-line {
  width: 1px;
  height: 52px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  border-radius: 2px;
  animation: heroScrollLine 2.2s ease-in-out infinite;
}
.hero__scroll-text {
  opacity: 0.9;
}
@keyframes heroScrollLine {
  0%, 100% { opacity: 0.4; transform: scaleY(0.6); transform-origin: top; }
  50%      { opacity: 1; transform: scaleY(1); transform-origin: top; }
}
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(8px); }
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.8; }
  50%       { transform: scale(1.1); opacity: 1; }
}

/* ════════════════════════════════════════════════════════════════════════════
   STATS BAR — premium strip + arka plan görseli
   ════════════════════════════════════════════════════════════════════════════ */
.stats-bar {
  position: relative;
  background: linear-gradient(135deg, #C85D1A 0%, var(--gold) 50%, #C85D1A 100%);
  padding: clamp(3.5rem, 7vw, 5.5rem) 0;
  box-shadow:
    0 10px 50px rgba(0,0,0,0.25),
    0 2px 0 rgba(255,255,255,0.15) inset,
    0 -2px 0 rgba(0,0,0,0.1) inset;
  overflow: hidden;
}
.stats-bar__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.22;
  pointer-events: none;
}
.stats-bar__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    135deg,
    rgba(200,93,26,0.92) 0%,
    rgba(232,113,43,0.88) 25%,
    rgba(240,148,69,0.85) 50%,
    rgba(232,113,43,0.88) 75%,
    rgba(200,93,26,0.92) 100%
  );
  pointer-events: none;
}
.stats-bar__accent {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  z-index: 2;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.5) 15%, rgba(255,255,255,0.75) 50%, rgba(255,255,255,0.5) 85%, transparent 100%);
  pointer-events: none;
}
.stats-bar .container {
  position: relative;
  z-index: 2;
}
.stats-bar__inner {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem 2rem;
  text-align: center;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 0.5rem;
}
.stats-bar__item {
  position: relative;
  padding: 1rem 1.25rem;
  transition: transform 0.3s ease, color 0.2s ease;
  border-radius: var(--radius-lg);
}
.stats-bar__item:hover {
  transform: translateY(-3px);
}
.stats-bar__item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -0.25rem;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 3rem;
  background: linear-gradient(180deg, transparent 0%, rgba(26,26,46,0.4) 30%, rgba(26,26,46,0.5) 50%, rgba(26,26,46,0.4) 70%, transparent 100%);
  border-radius: 1px;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.1);
}
.stats-bar__num {
  display: block;
  font-family: 'Oswald', 'Calibri', sans-serif;
  font-size: clamp(2.75rem, 5.5vw, 3.75rem);
  font-weight: 800;
  color: var(--dark);
  line-height: 1.05;
  margin-bottom: 0.5rem;
  letter-spacing: -0.04em;
  text-shadow: 0 2px 4px rgba(255,255,255,0.2), 0 1px 2px rgba(0,0,0,0.08);
}
.stats-bar__label {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: rgba(26,26,46,0.9);
  text-transform: uppercase;
  line-height: 1.45;
  max-width: 11em;
  margin: 0 auto;
  text-shadow: 0 1px 1px rgba(255,255,255,0.15);
}

/* ════════════════════════════════════════════════════════════════════════════
   IMAGE + TEXT SPLIT SECTIONS
   ════════════════════════════════════════════════════════════════════════════ */
.img-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 600px;
}
.img-split--reverse { direction: rtl; }
.img-split--reverse > * { direction: ltr; }
.img-split__image {
  position: relative;
  overflow: hidden;
  min-height: 500px;
}
.img-split__image {
  border-radius: var(--radius-xl) 0 0 var(--radius-xl);
}
.img-split--reverse .img-split__image { border-radius: 0 var(--radius-xl) var(--radius-xl) 0; }
.img-split__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s cubic-bezier(0.22, 1, 0.36, 1);
}
.img-split:hover .img-split__image img { transform: scale(1.05); }
.img-split__image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(232,113,43,0.12) 0%, transparent 55%), linear-gradient(to top, rgba(26,26,46,0.1) 0%, transparent 40%);
}
.img-split__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(3rem, 6vw, 6rem) clamp(2rem, 5vw, 5rem);
  background: var(--white);
}
.img-split__content.dark {
  background: var(--dark);
}
.img-split__content.cream {
  background: var(--cream);
}
/* Homepage: first content block extra breathing room */
.img-split--about {
  min-height: 640px;
}
.img-split--about .img-split__content {
  padding: clamp(3.5rem, 7vw, 6.5rem) clamp(2rem, 5vw, 5rem);
}

/* ════════════════════════════════════════════════════════════════════════════
   PHOTO GALLERY — MASONRY GRID
   ════════════════════════════════════════════════════════════════════════════ */
.photo-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 300px);
  gap: 0.75rem;
}
.photo-gallery__item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
}
.photo-gallery__item:first-child {
  grid-row: 1 / 3;
}
.photo-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}
.photo-gallery__item:hover img { transform: scale(1.06); }
.photo-gallery__item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,26,46,0.6) 0%, transparent 50%);
  opacity: 0;
  transition: opacity var(--transition);
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
}
.photo-gallery__item:hover .photo-gallery__item-overlay { opacity: 1; }
.photo-gallery__item-label {
  color: var(--white);
  font-size: 0.875rem;
  font-weight: 600;
}

/* ════════════════════════════════════════════════════════════════════════════
   PHOTO MOSAIC (alternative 4-photo grid)
   ════════════════════════════════════════════════════════════════════════════ */
.photo-mosaic {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 0.75rem;
  height: 580px;
}
.photo-mosaic__item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
}
.photo-mosaic__item--tall { grid-row: 1 / 3; }
.photo-mosaic__item--wide { grid-column: 2 / 4; }
.photo-mosaic__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.photo-mosaic__item:hover img { transform: scale(1.08); }
.photo-mosaic__item:hover { box-shadow: 0 16px 48px rgba(0,0,0,0.18); }

/* ════════════════════════════════════════════════════════════════════════════
   QUOTE / PULL-QUOTE SECTION
   ════════════════════════════════════════════════════════════════════════════ */
.quote-section {
  position: relative;
  overflow: hidden;
  background: var(--dark);
  padding: clamp(5rem, 10vw, 9rem) 0;
}
.quote-section::before {
  content: '\201C';
  position: absolute;
  top: -3rem;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Oswald', 'Calibri', sans-serif;
  font-size: clamp(12rem, 25vw, 22rem);
  color: rgba(232,113,43,0.07);
  line-height: 1;
  pointer-events: none;
}
.quote-section__bg {
  position: absolute;
  inset: 0;
}
.quote-section__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.15;
}
.quote-section .container { position: relative; z-index: 1; }
.quote-text {
  font-family: 'Oswald', 'Calibri', sans-serif;
  font-size: clamp(1.5rem, 3.2vw, 2.4rem);
  font-style: italic;
  color: var(--white);
  line-height: 1.55;
  max-width: 880px;
  margin: 0 auto 2.25rem;
  text-align: center;
  letter-spacing: 0.01em;
}
.quote-text span { color: var(--gold); text-shadow: 0 0 30px rgba(232,113,43,0.2); }
.quote-author {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
.quote-author::before, .quote-author::after {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--gold);
}
.quote-author-name {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ════════════════════════════════════════════════════════════════════════════
   PROBLEM KARTLARI
   ════════════════════════════════════════════════════════════════════════════ */
.problem-card {
  padding: 2.5rem;
  border-radius: var(--radius-xl);
  background: var(--white);
  border: 1px solid var(--gray-200);
  box-shadow: 0 4px 24px rgba(0,0,0,0.06), 0 1px 0 rgba(255,255,255,0.8) inset;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.problem-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(to bottom, var(--gold), var(--gold-light));
  transform: scaleY(0);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  transform-origin: bottom;
  border-radius: 0 4px 4px 0;
}
.problem-card:hover {
  box-shadow: 0 20px 50px rgba(0,0,0,0.12), 0 0 0 1px rgba(232,113,43,0.15);
  border-color: rgba(232,113,43,0.2);
  transform: translateY(-8px);
}
.problem-card:hover::before { transform: scaleY(1); }
.problem-card__icon {
  width: 60px;
  height: 60px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 1.5rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--gold-pale), rgba(232,113,43,0.15));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 4px 16px rgba(232,113,43,0.15);
}
.problem-card h4 { font-size: 1.1rem; margin-bottom: 0.65rem; }
.problem-card p  { font-size: 0.92rem; color: var(--text-light); line-height: 1.75; }

/* ════════════════════════════════════════════════════════════════════════════
   DEĞER ÖNERİSİ
   ════════════════════════════════════════════════════════════════════════════ */
.value-item {
  text-align: center;
  padding: 2.75rem 2.25rem;
  border-radius: var(--radius-xl);
  background: var(--white);
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  border: 1px solid var(--gray-200);
  box-shadow: 0 4px 20px rgba(0,0,0,0.04);
  position: relative;
  overflow: hidden;
}
.value-item::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), var(--gold-light), transparent);
  opacity: 0.6;
  transform: scaleX(0);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.value-item:hover {
  background: var(--white);
  box-shadow: 0 24px 48px rgba(0,0,0,0.1), 0 0 0 1px rgba(232,113,43,0.12);
  border-color: rgba(232,113,43,0.15);
  transform: translateY(-6px);
}
.value-item:hover::before { transform: scaleX(1); }
.value-item__num {
  font-size: 3.75rem;
  font-weight: 800;
  color: var(--gold);
  opacity: 0.18;
  line-height: 1;
  margin-bottom: -0.5rem;
  font-family: 'Oswald', 'Calibri', sans-serif;
}
.value-item h3 { font-size: 1.2rem; margin-bottom: 0.85rem; }
.value-item p  { font-size: 0.92rem; color: var(--text-light); line-height: 1.75; }

/* ════════════════════════════════════════════════════════════════════════════
   NASIL ÇALIŞIYORUZ — STEP CARDS + HOW SECTION (orantılı, hizalı)
   ════════════════════════════════════════════════════════════════════════════ */
.how-section {
  padding: clamp(4.5rem, 9vw, 7rem) 0;
}
.how-section__header {
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
  text-align: center;
}
.how-section__header .divider--center {
  margin: 1rem auto 1.25rem;
}
.how-section__intro {
  max-width: 560px;
  margin: 0 auto !important;
  font-size: 1.05rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.65) !important;
}
.how-section__grid {
  align-items: stretch;
  gap: clamp(1.5rem, 3vw, 2rem);
}
.how-section__cta {
  margin-top: clamp(2.5rem, 5vw, 3.5rem);
  text-align: center;
}

.step-card {
  display: flex;
  gap: 1.5rem;
  padding: 2.25rem 2rem;
  border-radius: var(--radius-xl);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(232,113,43,0.25);
  align-items: flex-start;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  min-height: 100%;
  box-sizing: border-box;
}
.how-section .step-card {
  padding: 2.5rem 2rem;
}
.step-card:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(232,113,43,0.4);
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.25);
}
.step-num {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.1rem;
  font-family: 'Oswald', 'Calibri', sans-serif;
  box-shadow: 0 6px 28px rgba(232,113,43,0.35);
}
.step-card__body {
  flex: 1;
  min-width: 0;
}
.step-card h3 { font-size: 1.12rem; margin-bottom: 0.6rem; color: var(--white); line-height: 1.3; }
.step-card p  { font-size: 0.9rem; color: rgba(255,255,255,0.65); line-height: 1.75; margin: 0; }

/* ════════════════════════════════════════════════════════════════════════════
   NEDEN GP
   ════════════════════════════════════════════════════════════════════════════ */
.why-item {
  padding: 2.25rem;
  border-radius: var(--radius-xl);
  background: var(--white);
  border: 1px solid var(--gray-200);
  position: relative;
  transition: all var(--transition);
}
.why-item::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(to right, var(--gold), var(--gold-light));
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}
.why-item:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: rgba(232,113,43,0.2);
}
.why-item__icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}
.why-item h4 { font-size: 1.05rem; margin-bottom: 0.6rem; }
.why-item p  { font-size: 0.9rem; color: var(--text-light); line-height: 1.75; }

/* ════════════════════════════════════════════════════════════════════════════
   REFERANS BÖLÜMÜ
   ════════════════════════════════════════════════════════════════════════════ */

/* Ana sayfa: Güven strip — kompakt, CTA ile Hakkımızda’ya yönlendirme */
.trust-strip {
  background: linear-gradient(180deg, var(--gray-100) 0%, var(--cream) 50%, #F3F2F0 100%);
  padding: clamp(3.5rem, 7vw, 5.5rem) 0;
}
.trust-strip__inner {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}
.trust-strip__content .section-label {
  display: block;
  margin-bottom: 0.5rem;
}
.trust-strip__title {
  font-size: clamp(1.6rem, 3.2vw, 2.1rem);
  margin-bottom: 0.75rem;
}
.trust-strip__content .divider--center {
  margin: 1rem auto 1.25rem;
}
.trust-strip__text {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-light);
  margin-bottom: 1.75rem;
}
.trust-strip__cta {
  display: inline-flex;
}

.refs-track {
  display: flex;
  align-items: center;
  gap: 3.5rem;
  flex-wrap: wrap;
  justify-content: center;
  padding: 1rem 0;
}
.ref-logo {
  height: 56px;
  max-width: 140px;
  object-fit: contain;
  filter: grayscale(100%) opacity(0.5);
  transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
.ref-logo:hover { filter: grayscale(0%) opacity(1); transform: scale(1.08); }

/* About page: Güvenimizi kazanan kurumlar — kompakt strip (2 öğe boş görünmesin) */
.about-refs {
  background: linear-gradient(180deg, var(--cream) 0%, #F5F4F2 50%, var(--gray-100) 100%);
  padding: clamp(4rem, 8vw, 6rem) 0;
}
.about-refs__block {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.about-refs__header {
  margin-bottom: 0;
}
.about-refs__header .section-label,
.about-refs__header h2,
.about-refs__header .divider--center {
  margin-left: auto;
  margin-right: auto;
}
.about-refs__intro {
  max-width: 560px;
  margin: 0 auto 1.75rem;
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-light);
}
.about-refs__strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1.5rem 2.5rem;
  margin-top: 0.5rem;
}
.about-refs__strip-item {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  padding: 1.5rem 2rem;
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: 0 6px 24px rgba(0,0,0,0.06);
  border: 1px solid var(--gray-200);
  transition: all 0.3s ease;
  width: 220px;
}
.about-refs__strip-item:hover {
  box-shadow: 0 12px 36px rgba(0,0,0,0.1);
  border-color: rgba(232,113,43,0.25);
  transform: translateY(-3px);
}
.about-refs__strip-logo {
  max-height: 52px;
  max-width: 140px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(25%) opacity(0.95);
  transition: filter 0.3s ease;
}
.about-refs__strip-item:hover .about-refs__strip-logo {
  filter: grayscale(0%) opacity(1);
}
.about-refs__strip-initial {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-pale), rgba(232,113,43,0.2));
  color: var(--gold-dark);
  font-family: 'Oswald', 'Calibri', sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
}
.about-refs__strip-name {
  font-family: 'Oswald', 'Calibri', sans-serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--dark);
  letter-spacing: 0.02em;
}

/* Referans workshops fotoğraf grid */
.ref-photo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 3rem;
}
.ref-photo-grid__item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  aspect-ratio: 4/3;
}
.ref-photo-grid__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}
.ref-photo-grid__item:hover img { transform: scale(1.08); }
.ref-photo-grid__label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1rem;
  background: linear-gradient(to top, rgba(26,26,46,0.85), transparent);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 600;
}

/* ════════════════════════════════════════════════════════════════════════════
   EKİP KARTLARI
   ════════════════════════════════════════════════════════════════════════════ */
.team-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all var(--transition);
}
.team-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-xl); }
.team-card__photo {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  object-position: top;
}
.team-card__body { padding: 2rem; }
.team-card__name { font-size: 1.25rem; font-weight: 700; margin-bottom: 0.3rem; font-family: 'Oswald', 'Calibri', sans-serif; }
.team-card__title { font-size: 0.85rem; color: var(--gold); margin-bottom: 1.25rem; line-height: 1.5; font-weight: 600; }
.team-card__bio   { font-size: 0.875rem; color: var(--text-light); margin-bottom: 1.5rem; line-height: 1.75; }
.team-card__links { display: flex; gap: 0.75rem; }
.team-card__links a {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--gray-100);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; color: var(--gray-600);
  transition: all var(--transition);
  font-weight: 700;
}
.team-card__links a:hover { background: var(--gold); color: var(--dark); transform: scale(1.1); }

/* ════════════════════════════════════════════════════════════════════════════
   LINKEDIN FEED
   ════════════════════════════════════════════════════════════════════════════ */
.linkedin-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.linkedin-card::before {
  content: 'in';
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  font-size: 1.1rem;
  font-weight: 900;
  color: rgba(232,113,43,0.15);
}
.linkedin-card:hover {
  border-color: rgba(232,113,43,0.3);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.linkedin-card__date { font-size: 0.75rem; color: var(--text-light); }
.linkedin-card__title { font-size: 1.05rem; font-weight: 700; color: var(--dark); line-height: 1.4; }
.linkedin-card__summary { font-size: 0.875rem; color: var(--text-light); flex: 1; line-height: 1.75; }
.linkedin-card__link { font-size: 0.8rem; color: var(--gold); font-weight: 700; display: flex; align-items: center; gap: 0.3rem; }
.linkedin-card__link:hover { color: var(--gold-dark); }

/* ════════════════════════════════════════════════════════════════════════════
   KAPANIŞ CTA — IMAGE BACKGROUND
   ════════════════════════════════════════════════════════════════════════════ */
.closing-cta {
  position: relative;
  overflow: hidden;
  padding: clamp(6rem, 12vw, 11rem) 0;
}
.closing-cta__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.closing-cta__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 8s ease-out;
}
.closing-cta:hover .closing-cta__bg img { transform: scale(1.05); }
.closing-cta__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,26,46,0.92) 0%, rgba(15,52,96,0.88) 50%, rgba(26,26,46,0.9) 100%);
}
.closing-cta .container { position: relative; z-index: 1; text-align: center; }
.closing-cta .section-label { margin-bottom: 1rem; }
.closing-cta h2 { color: var(--white); font-size: clamp(1.9rem, 4vw, 2.8rem); margin-bottom: 1.25rem; line-height: 1.2; letter-spacing: -0.02em; }
.closing-cta p  { color: rgba(255,255,255,0.7); margin-bottom: 2.5rem; font-size: 1.08rem; max-width: 580px; margin-left: auto; margin-right: auto; line-height: 1.75; }
.closing-cta .cta-buttons { display: flex; gap: 1.25rem; justify-content: center; flex-wrap: wrap; }
.closing-cta .btn-primary { padding: 1rem 2.5rem; font-size: 0.95rem; box-shadow: 0 8px 36px rgba(232,113,43,0.35); }
.closing-cta .btn-primary:hover { box-shadow: 0 12px 44px rgba(232,113,43,0.45); }

/* ════════════════════════════════════════════════════════════════════════════
   BLOG KARTLARI
   ════════════════════════════════════════════════════════════════════════════ */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.blog-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}
.blog-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
  border-color: rgba(232,113,43,0.2);
}
.blog-card__img {
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 100%);
  overflow: hidden;
  position: relative;
}
.blog-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--transition-slow); }
.blog-card:hover .blog-card__img img { transform: scale(1.06); }
.blog-card__img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.blog-card__body { padding: 1.75rem; flex: 1; display: flex; flex-direction: column; }
.blog-card__cat {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.blog-card__title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.75rem;
  line-height: 1.4;
}
.blog-card__summary { font-size: 0.875rem; color: var(--text-light); flex: 1; line-height: 1.75; }
.blog-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid var(--gray-200);
}
.blog-card__date { font-size: 0.75rem; color: var(--text-light); }

/* ── Blog Filtre ──────────────────────────────────────────────────────────── */
.blog-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2.5rem;
  align-items: center;
}
.blogs-search {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
}
.search-input {
  flex: 1;
  padding: 0.875rem 1.25rem;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 0.9rem;
  color: var(--text);
  transition: border-color var(--transition);
  outline: none;
}
.search-input:focus { border-color: var(--gold); }
.filter-btn {
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 600;
  background: var(--gray-100);
  color: var(--gray-600);
  transition: all var(--transition);
}
.filter-btn.active, .filter-btn:hover {
  background: var(--dark);
  color: var(--white);
}
.filter-btn[data-cat].active { background: var(--gold); color: var(--dark); }

/* Blog Detay */
.blog-detail__cover {
  width: 100%;
  height: 320px;
  overflow: hidden;
  background: var(--dark);
}
.blog-detail__cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.blog-detail__header {
  background: var(--dark);
  padding: clamp(4rem, 8vw, 6rem) 0 clamp(3rem, 6vw, 5rem);
  position: relative;
}
.blog-detail__header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 60% at 30% 50%, rgba(232,113,43,0.1) 0%, transparent 70%);
}
.blog-detail__header .container { position: relative; z-index: 1; }
.blog-detail__cat { color: var(--gold); font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 1rem; }
.blog-detail__title { color: var(--white); max-width: 760px; margin-bottom: 1.5rem; }
.blog-detail__meta { color: rgba(255,255,255,0.5); font-size: 0.875rem; display: flex; gap: 1.5rem; flex-wrap: wrap; }
.blog-detail__content { max-width: 760px; margin: 0 auto; padding: clamp(3rem, 6vw, 5rem) 0; }
.blog-detail__content h2, .blog-detail__content h3 { margin: 2rem 0 1rem; }
.blog-detail__content p { font-size: 1.05rem; line-height: 1.9; color: var(--text); margin-bottom: 1.25rem; }
.blog-detail__content ul, .blog-detail__content ol { padding-left: 1.5rem; margin-bottom: 1.5rem; }
.blog-detail__content li { font-size: 1.05rem; line-height: 1.8; margin-bottom: 0.5rem; }
.blog-detail__content blockquote {
  border-left: 3px solid var(--gold);
  padding: 1.5rem 2rem;
  background: var(--cream);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  font-style: italic;
  color: var(--dark);
  font-size: 1.15rem;
  margin: 2.5rem 0;
  font-family: 'Oswald', 'Calibri', sans-serif;
}
.blog-share { display: flex; gap: 1rem; align-items: center; margin-top: 3rem; padding-top: 2rem; border-top: 1px solid var(--gray-200); }
.blog-share a {
  padding: 0.5rem 1rem;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  font-weight: 600;
  transition: all var(--transition);
  color: var(--gray-600);
}
.blog-share a:hover { background: var(--dark); color: var(--white); border-color: var(--dark); }

/* ════════════════════════════════════════════════════════════════════════════
   ÇÖZÜMLER
   ════════════════════════════════════════════════════════════════════════════ */
.sol-tabs {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}
.sol-tab {
  padding: 0.7rem 1.75rem;
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 600;
  background: var(--gray-100);
  color: var(--gray-600);
  transition: all var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
}
.sol-tab.active { background: var(--dark); color: var(--white); box-shadow: var(--shadow-md); }
.sol-tab:hover:not(.active) { border-color: var(--dark); color: var(--dark); }
.sol-section { display: none; }
.sol-section.active { display: block; }
.sol-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 1.75rem; }
.sol-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 2.25rem;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}
.sol-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(to right, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.sol-card:hover { box-shadow: var(--shadow-lg); border-color: rgba(232,113,43,0.25); transform: translateY(-4px); }
.sol-card:hover::before { transform: scaleX(1); }
.sol-card__icon { font-size: 2.25rem; margin-bottom: 1.25rem; }
.sol-card__title { font-size: 1.15rem; font-weight: 700; margin-bottom: 0.3rem; }
.sol-card__subtitle { font-size: 0.8rem; color: var(--gold); font-weight: 700; margin-bottom: 1rem; letter-spacing: 0.05em; }
.sol-card__desc { font-size: 0.9rem; color: var(--text-light); flex: 1; margin-bottom: 1.5rem; line-height: 1.75; }
.sol-card__outputs { margin-bottom: 1.75rem; }
.sol-card__outputs h5 { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--gray-400); margin-bottom: 0.6rem; font-weight: 700; }
.sol-card__outputs li { font-size: 0.83rem; color: var(--text-light); padding: 0.3rem 0; padding-left: 1.1rem; position: relative; }
.sol-card__outputs li::before { content: '✓'; position: absolute; left: 0; color: var(--gold); font-weight: 700; }

/* Solutions accordion (homepage + solutions page) */
.sol-accordion { display: flex; flex-direction: column; gap: 1rem; }
.sol-accordion__item {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: all var(--transition);
}
.sol-accordion__item:hover { border-color: rgba(232,113,43,0.25); }
.sol-accordion__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 2rem;
  cursor: pointer;
  background: var(--white);
  transition: all var(--transition);
  user-select: none;
}
.sol-accordion__header:hover { background: var(--gray-100); }
.sol-accordion__header h3 {
  font-size: 1.15rem;
  margin: 0;
  color: var(--dark);
}
.sol-accordion__arrow {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--gold-pale);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; color: var(--gold);
  transition: transform var(--transition);
  flex-shrink: 0;
}
.sol-accordion__item.open .sol-accordion__arrow { transform: rotate(180deg); }
.sol-accordion__body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.sol-accordion__item.open .sol-accordion__body { max-height: 2000px; }
.sol-accordion__body-inner {
  padding: 0 2rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.sol-accordion__entry {
  padding: 1.25rem 1.5rem;
  background: var(--gray-100);
  border-radius: var(--radius-lg);
  border-left: 3px solid var(--gold);
  display: block;
}
a.sol-accordion__entry--link {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}
a.sol-accordion__entry--link:hover {
  background: var(--cream-2);
  border-left-color: var(--gold-dark);
  transform: translateX(4px);
}
.sol-accordion__entry h4 {
  font-size: 0.95rem;
  margin-bottom: 0.3rem;
  color: var(--dark);
}
.sol-accordion__entry p {
  font-size: 0.85rem;
  color: var(--text-light);
  margin: 0;
  line-height: 1.6;
}

/* Solutions page image banner */
.sol-image-banner {
  position: relative;
  height: 340px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  margin-bottom: 3rem;
}
.sol-image-banner img { width: 100%; height: 100%; object-fit: cover; }
.sol-image-banner__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,26,46,0.85) 0%, rgba(26,26,46,0.4) 100%);
  display: flex;
  align-items: center;
  padding: 3rem;
}
.sol-image-banner__text h2 { color: var(--white); margin-bottom: 0.75rem; }
.sol-image-banner__text p  { color: rgba(255,255,255,0.75); max-width: 500px; }

/* ════════════════════════════════════════════════════════════════════════════
   BİZ KİMİZ / HAKKIMIZDA
   ════════════════════════════════════════════════════════════════════════════ */
.about-story {
  max-width: 760px;
  margin: 0 auto;
  font-size: 1.1rem;
  line-height: 1.9;
  color: var(--text-light);
}
.about-story strong { color: var(--dark); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
.gallery-grid img { border-radius: var(--radius-lg); width: 100%; height: 300px; object-fit: cover; }

/* About page — expanded gallery */
.about-gallery {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 280px 280px;
  gap: 1rem;
}
.about-gallery__item { position: relative; overflow: hidden; border-radius: var(--radius-lg); }
.about-gallery__item--span2 { grid-row: 1 / 3; }
.about-gallery__item img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--transition-slow); }
.about-gallery__item:hover img { transform: scale(1.04); }
.about-gallery__caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1.25rem;
  background: linear-gradient(to top, rgba(26,26,46,0.8), transparent);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 600;
}

/* Founder profile detail */
.founder-profile {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 4rem;
  align-items: start;
  padding: clamp(3rem, 5vw, 5rem) 0;
}
.founder-profile:not(:first-child) { 
  border-top: 1px solid var(--gray-200);
}
.founder-profile__image {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}
.founder-profile__image img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: top;
}
.founder-profile__image-badge {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  background: rgba(232,113,43,0.95);
  backdrop-filter: blur(10px);
  padding: 1rem 1.25rem;
  border-radius: var(--radius-md);
}
.founder-profile__image-badge .name {
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--dark);
  font-family: 'Oswald', 'Calibri', sans-serif;
}
.founder-profile__image-badge .title {
  font-size: 0.78rem;
  color: rgba(26,26,46,0.7);
  font-weight: 600;
}
.founder-profile__content {}
.founder-profile__links {
  display: flex;
  gap: 0.75rem;
  margin-top: 2rem;
}

/* ════════════════════════════════════════════════════════════════════════════
   YAKLAŞIMIMIZ
   ════════════════════════════════════════════════════════════════════════════ */
.approach-timeline { display: flex; flex-direction: column; gap: 0; }
.approach-step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2rem;
  align-items: start;
  padding: 3rem 0;
  border-bottom: 1px solid var(--gray-200);
  position: relative;
}
.approach-step:last-child { border-bottom: none; }
.approach-step__line {
  position: absolute;
  left: 27px;
  top: calc(3rem + 56px);
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--gold), transparent);
}
.approach-step:last-child .approach-step__line { display: none; }
.approach-step__num {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--dark);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 1.1rem;
  flex-shrink: 0;
  box-shadow: var(--shadow-gold);
  font-family: 'Oswald', 'Calibri', sans-serif;
}
.approach-step h3 { margin-bottom: 0.75rem; font-size: 1.3rem; }
.approach-step p  { color: var(--text-light); font-size: 0.95rem; line-height: 1.85; }
.approach-step__tools {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}
.approach-step__tool {
  padding: 0.3rem 0.85rem;
  background: var(--cream);
  border: 1px solid rgba(232,113,43,0.3);
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gold-dark);
}

.belief-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 2.25rem;
  border-top: 3px solid var(--gold);
  transition: all var(--transition);
}
.belief-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.belief-card__icon { font-size: 2rem; margin-bottom: 1.25rem; }
.belief-card h3 { font-size: 1.05rem; margin-bottom: 0.75rem; }
.belief-card p  { font-size: 0.9rem; color: var(--text-light); line-height: 1.75; }

.principle-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 4rem;
}
@media (min-width: 1024px) {
  .principle-tags {
    flex-wrap: nowrap;
  }
}
.principle-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.25rem;
  background: var(--cream);
  border: 1.5px solid rgba(232,113,43,0.3);
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--dark);
  transition: all var(--transition);
  white-space: nowrap;
  flex-shrink: 0;
}
.principle-tag:hover { background: var(--gold); color: var(--dark); border-color: var(--gold); transform: scale(1.03); }

/* Yaklaşım sayfası: sidebar sticky + mobilde akış */
.approach-section__sidebar { position: relative; }
.approach-section__sidebar-inner {
  position: sticky;
  top: calc(var(--nav-height) + 2rem);
}
.approach-section__sidebar-img {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}
.approach-section__sidebar-img img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  display: block;
}
.approach-section__quote-box {
  margin-top: 1.5rem;
  padding: 2rem;
  background: var(--cream);
  border-radius: var(--radius-xl);
  border-left: 4px solid var(--gold);
}
.approach-section__quote-box p {
  font-style: italic;
  font-size: 0.95rem;
  color: var(--text-light);
  margin: 0;
  line-height: 1.8;
}

/* ════════════════════════════════════════════════════════════════════════════
   İLETİŞİM FORMU
   ════════════════════════════════════════════════════════════════════════════ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  align-items: start;
}

/* Contact page: Team Teaser (section--cream) — readable cards + visible mail/phone icons */
.contact-teaser {
  padding: clamp(3rem, 6vw, 4rem) 0;
}
.contact-teaser__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}
.contact-teaser__card {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  background: var(--white);
  padding: 2rem 2.25rem;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-200);
  min-width: 0;
}
.contact-teaser__photo {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top;
  flex-shrink: 0;
  box-shadow: var(--shadow-md);
}
.contact-teaser__body {
  min-width: 0;
  overflow: hidden;
}
.contact-teaser__name {
  font-family: 'Oswald', 'Calibri', sans-serif;
  font-weight: 700;
  font-size: 1.35rem;
  margin-bottom: 0.35rem;
  color: var(--dark);
}
.contact-teaser__title {
  font-size: 0.95rem;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 0.85rem;
  line-height: 1.4;
}
.contact-teaser__link {
  display: inline-flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 0.5rem;
  font-size: 1rem;
  color: var(--text);
  line-height: 1.5;
  transition: color var(--transition);
  max-width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.contact-teaser__link:hover {
  color: var(--gold);
}
.contact-teaser__link--phone {
  margin-top: 0.4rem;
}
.contact-teaser__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
}
.contact-teaser__icon--mail,
.contact-teaser__icon--phone {
  width: 22px;
  height: 22px;
}
.contact-teaser__icon svg {
  width: 100%;
  height: 100%;
}

.contact-info__item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 2rem;
}
.contact-info__icon {
  width: 48px; height: 48px;
  border-radius: var(--radius-md);
  background: rgba(232,113,43,0.12);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.contact-info__label { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--gold); font-weight: 700; margin-bottom: 0.3rem; }
.contact-info__value { font-size: 0.9rem; color: var(--text); }
.contact-info__value a:hover { color: var(--gold); }
.form-wrapper {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 3rem;
  box-shadow: var(--shadow-xl);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.form-group { margin-bottom: 1.25rem; }
.form-label { display: block; font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--gray-600); margin-bottom: 0.5rem; }
.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 0.9rem 1.15rem;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--text);
  background: var(--white);
  transition: all var(--transition);
  outline: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(232,113,43,0.1);
}
.form-textarea { min-height: 150px; resize: vertical; }
.form-submit { width: 100%; padding: 1.1rem; font-size: 1rem; }
.form-message {
  padding: 1rem 1.25rem;
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  margin-bottom: 1.25rem;
  display: none;
}
.form-message.success { background: #d1fae5; color: #065f46; border: 1px solid #6ee7b7; display: block; }
.form-message.error   { background: #fee2e2; color: #991b1b; border: 1px solid #fca5a5; display: block; }

/* ════════════════════════════════════════════════════════════════════════════
   HUKUKİ SAYFALAR
   ════════════════════════════════════════════════════════════════════════════ */
.legal-content {
  max-width: 800px;
  margin: 0 auto;
  padding: clamp(3rem, 6vw, 5rem) 0;
}
.legal-content h2 { margin-bottom: 1.25rem; }
.legal-content h3 { font-size: 1.1rem; margin: 2rem 0 0.75rem; }
.legal-content p  { font-size: 0.95rem; color: var(--text-light); }
.legal-content ul { padding-left: 1.5rem; }
.legal-content li { font-size: 0.95rem; color: var(--text-light); margin-bottom: 0.4rem; }
.legal-content table { width: 100%; border-collapse: collapse; margin: 1rem 0; }
.legal-content table th, .legal-content table td { border: 1px solid var(--gray-200); padding: 0.75rem 1rem; font-size: 0.875rem; text-align: left; }
.legal-content table th { background: var(--gray-100); font-weight: 700; }
.legal-content a { color: var(--gold); }

/* ════════════════════════════════════════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════════════════════════════════════════ */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,0.7);
  padding: 5rem 0 2rem;
}
.footer__top {
  margin-bottom: 4rem;
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer__brand img {
  height: 56px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
  object-position: left center;
  margin-bottom: 1.5rem;
  display: block;
}
.footer__brand p { font-size: 0.875rem; line-height: 1.8; color: rgba(255,255,255,0.45); max-width: 280px; }
.footer__col h4 { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.18em; color: rgba(255,255,255,0.35); margin-bottom: 1.5rem; }
.footer__col ul { display: flex; flex-direction: column; gap: 0.7rem; }
.footer__col a { font-size: 0.875rem; color: rgba(255,255,255,0.55); transition: color var(--transition); }
.footer__col a:hover { color: var(--gold); }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer__bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.3); }
.footer__legal { display: flex; gap: 1.5rem; }
.footer__legal a { font-size: 0.8rem; color: rgba(255,255,255,0.3); transition: color var(--transition); }
.footer__legal a:hover { color: var(--gold); }

/* ════════════════════════════════════════════════════════════════════════════
   ÇEREZ BANNER
   ════════════════════════════════════════════════════════════════════════════ */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--dark);
  border-top: 1px solid rgba(232,113,43,0.2);
  padding: 1.5rem 2rem;
  z-index: 9999;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.cookie-banner.show { transform: translateY(0); }
.cookie-banner__inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.cookie-banner p { font-size: 0.875rem; color: rgba(255,255,255,0.7); margin: 0; }
.cookie-banner a { color: var(--gold); }
.cookie-banner__actions { display: flex; gap: 0.75rem; flex-shrink: 0; }
.cookie-btn {
  padding: 0.6rem 1.5rem;
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  transition: all var(--transition);
}
.cookie-btn--accept { background: var(--gold); color: var(--dark); }
.cookie-btn--accept:hover { background: var(--gold-light); }
.cookie-btn--reject { background: transparent; color: rgba(255,255,255,0.5); border: 1px solid rgba(255,255,255,0.2); }
.cookie-btn--reject:hover { border-color: rgba(255,255,255,0.5); color: rgba(255,255,255,0.8); }

/* ════════════════════════════════════════════════════════════════════════════
   SCROLL REVEAL — animasyon scroll yapıldığında
   ════════════════════════════════════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(42px);
  transition: opacity 0.82s cubic-bezier(0.22, 1, 0.36, 1), transform 0.82s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.32s; }
.reveal-delay-4 { transition-delay: 0.44s; }
/* Stats bar: fade + slight scale on scroll */
.stats-bar .reveal {
  transform: translateY(24px) scale(0.98);
}
.stats-bar .reveal.visible {
  transform: translateY(0) scale(1);
}

/* ════════════════════════════════════════════════════════════════════════════
   PAGE HERO (inner pages)
   ════════════════════════════════════════════════════════════════════════════ */
.page-hero {
  background: var(--dark);
  padding: calc(var(--nav-height) + 4rem) 0 4rem;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 70% at 70% 50%, rgba(232,113,43,0.1) 0%, transparent 70%);
}
.page-hero__bg {
  position: absolute;
  inset: 0;
}
.page-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.1;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { color: var(--white); margin-bottom: 0.75rem; }
.page-hero p  { color: rgba(255,255,255,0.6); font-size: 1.1rem; max-width: 600px; margin-top: 0.75rem; line-height: 1.75; }

/* ════════════════════════════════════════════════════════════════════════════
   404
   ════════════════════════════════════════════════════════════════════════════ */
.not-found {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
}
.not-found__num { font-size: 10rem; font-weight: 800; color: var(--gold); opacity: 0.15; line-height: 1; font-family: 'Oswald', 'Calibri', sans-serif; }
.not-found h2   { margin-bottom: 1rem; }
.not-found p    { color: var(--text-light); margin-bottom: 2rem; }

/* ════════════════════════════════════════════════════════════════════════════
   YARDIMCILAR
   ════════════════════════════════════════════════════════════════════════════ */
.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 0.5rem; }
.mb-0 { margin-bottom: 0; }
.mb-2 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 2rem; }
.pt-0 { padding-top: 0; }
.d-none { display: none; }
.d-flex { display: flex; }

/* ── Loader ───────────────────────────────────────────────────────────────── */
.spinner {
  width: 24px; height: 24px;
  border: 2px solid rgba(232,113,43,0.3);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  display: inline-block;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ════════════════════════════════════════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .photo-gallery { grid-template-columns: repeat(2, 1fr); grid-template-rows: auto; }
  .photo-gallery__item:first-child { grid-row: auto; }
  .photo-mosaic { grid-template-columns: 1fr 1fr; grid-template-rows: auto; height: auto; }
  .photo-mosaic__item--tall { grid-row: auto; }
  .ref-photo-grid { grid-template-columns: repeat(2, 1fr); }
  .about-gallery { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .about-gallery__item--span2 { grid-row: auto; }
  .founder-profile { grid-template-columns: 300px 1fr; gap: 2.5rem; }
  .img-split { grid-template-columns: 1fr; min-height: auto; }
  .img-split--reverse { direction: ltr; }
  .img-split__image { min-height: 280px; }
  .img-split__content { padding: 2rem 1.25rem; }
  .stats-bar__inner {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
  .stats-bar__item:not(:last-child)::after { display: none; }
}

@media (max-width: 900px) {
  .navbar__nav, .navbar__cta { display: none; }
  .hamburger { display: flex; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .hero__left { padding: calc(var(--nav-height) + 3rem) 1.5rem 4rem; }
  .hero__badge { right: 1rem; bottom: 1.5rem; padding: 0.75rem 1rem; }
  .hero__badge-logo { height: 32px; }
  .founder-profile { grid-template-columns: 1fr; }
  .founder-profile__image { max-width: 320px; }
  /* Yaklaşım: grid tek sütun, sidebar akışta */
  .approach-section__grid { grid-template-columns: 1fr; gap: 2.5rem; align-items: stretch; }
  .approach-section__sidebar-inner { position: relative; top: auto; }
  .approach-section__sidebar-img { max-width: 400px; margin: 0 auto; }
  .approach-section__quote-box { margin-top: 1.25rem; }
}

@media (max-width: 600px) {
  .hero__badge {
    display: none;
  }
}

@media (max-width: 768px) {
  .grid-2 { grid-template-columns: 1fr; }
  .grid-split { grid-template-columns: 1fr; gap: 2rem; }
  .contact-teaser__grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .team-card__photo { aspect-ratio: 4/3; }
  .form-row { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; text-align: center; }
  .cookie-banner__inner { flex-direction: column; align-items: flex-start; }
  .gallery-grid { grid-template-columns: 1fr; }
  .approach-step {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 2rem 0;
    padding-left: 0;
    padding-right: 0;
  }
  .approach-step__line { display: none; }
  .approach-step__num {
    width: 48px;
    height: 48px;
    font-size: 1rem;
    margin: 0 auto;
  }
  .approach-step h3 { font-size: 1.15rem; }
  .approach-step p { font-size: 0.9rem; }
  .approach-section__sidebar-img { max-width: 100%; }
  .approach-section__quote-box { padding: 1.5rem; margin-top: 1rem; }
  .approach-section__quote-box p { font-size: 0.9rem; }
  .navbar__logo img { height: 52px; }
  .section .container { padding-left: 1.25rem; padding-right: 1.25rem; }
  .principle-tags { margin-bottom: 2.5rem; gap: 0.75rem; }
  .principle-tag { padding: 0.5rem 1rem; font-size: 0.82rem; }
  .belief-card { padding: 1.75rem 1.5rem; }
  .belief-card h3 { font-size: 1rem; }
  .value-item { padding: 2rem 1.5rem; }
  .value-item h3 { font-size: 1.1rem; }
  .quote-section { padding: 3.5rem 0 4rem; }
  .quote-text { font-size: 1.25rem; margin-bottom: 1.5rem; }
  .closing-cta .container { padding-left: 1.25rem; padding-right: 1.25rem; }
  .sol-tabs { flex-direction: column; align-items: stretch; width: 100%; }
  .sol-tab { width: 100%; text-align: center; }
  .photo-gallery { grid-template-columns: 1fr; }
  .photo-mosaic { grid-template-columns: 1fr; }
  .ref-photo-grid { grid-template-columns: 1fr; }
  .about-gallery {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 1rem;
  }
  .about-gallery__item { min-height: 220px; }
  .about-gallery__item--span2 { grid-row: auto; }
  .about-gallery__caption { padding: 1rem; font-size: 0.75rem; }
  .founder-profile {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 2.5rem 0;
    text-align: center;
  }
  .founder-profile__image {
    max-width: 280px;
    margin: 0 auto;
    width: 100%;
  }
  .founder-profile__content { text-align: left; }
  .founder-profile__content .section-label,
  .founder-profile__content h2,
  .founder-profile__content .divider { margin-left: 0; margin-right: 0; }
  .founder-profile__links {
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: flex-start;
  }
  .founder-profile__links .btn,
  .founder-profile__links a { font-size: 0.8rem; padding: 0.5rem 1rem; }
  .about-refs { padding: clamp(3rem, 6vw, 4rem) 0; }
  .about-refs__block { max-width: 100%; }
  .about-refs__strip {
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
  }
  .about-refs__strip-item { min-width: 0; width: 100%; max-width: 280px; margin: 0 auto; }
  .page-hero .container { padding-left: 1.25rem; padding-right: 1.25rem; }
  .page-hero h1 { font-size: clamp(1.75rem, 6vw, 2.5rem); }
  .page-hero p { font-size: 0.95rem; }
  .img-split__image { min-height: 260px; }
  .img-split__content { padding: 2rem 1.25rem; }
  .stats-bar__inner { grid-template-columns: 1fr; gap: 1.25rem; }
  .stats-bar__item:not(:last-child)::after { display: none; }
  .contact-grid { gap: 2rem; }
  .form-wrapper { padding: 1.75rem; }
}

@media (max-width: 480px) {
  .hero__ctas { flex-direction: column; }
  .btn { width: 100%; justify-content: center; }
  .closing-cta .cta-buttons .btn { width: auto; }
  .stats-bar__inner { grid-template-columns: 1fr; }
  .sol-grid { grid-template-columns: 1fr; }
}
