/* =========================================================
   EURO TEKSTIL — Design System
   Renkler: koyu zemin + altın aksan (görsel referansa sadık)
   Tipografi: Space Grotesk
   ========================================================= */

:root {
  /* Renk paleti */
  --bg: #0a0806;
  --bg-mid: #14100c;
  --bg-elev: #1b1610;
  --bg-section: #0f0c08;
  --bg-light: #f6efe4;        /* açık zemin bantlar için */
  --bg-light-2: #efe6d7;

  --card-bg: rgba(255, 240, 210, 0.04);
  --card-bg-hover: rgba(255, 240, 210, 0.07);
  --card-border: rgba(255, 215, 140, 0.14);
  --card-border-strong: rgba(255, 215, 140, 0.25);

  --accent: #d4a444;
  --accent-bright: #f4c97a;
  --accent-soft: rgba(212, 164, 68, 0.16);
  --accent-glow: rgba(212, 164, 68, 0.35);

  /* Dark navy / lacivert paleti — kahverengi tonlarla dengeli kullanım */
  --navy-deep: #08121f;
  --navy: #0e1a2d;
  --navy-mid: #142441;
  --navy-elev: #1a2c4a;
  --navy-soft: rgba(40, 80, 150, 0.12);
  --navy-border: rgba(120, 165, 230, 0.16);
  --navy-border-strong: rgba(120, 165, 230, 0.28);
  --navy-accent: #6ea6e3;

  --text: #f5efe1;
  --text-dim: #a59c8b;
  --text-mute: #6e6657;
  --text-dark: #1a1410;
  --text-dark-dim: #6b5d49;

  /* Tipografi */
  --font: 'Space Grotesk', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;

  /* Boyut */
  --container: 1240px;
  --radius: 18px;
  --radius-sm: 12px;
  --radius-lg: 24px;

  /* Geçiş */
  --t: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --t-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img, svg, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; border: 0; background: transparent; cursor: pointer; color: inherit; }
input, textarea, select { font: inherit; color: inherit; }
ul, ol { list-style: none; }

/* ---------- Helpers ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}
@media (min-width: 768px) {
  .container { padding: 0 32px; }
}

.section { padding: 64px 0; }
.section-sm { padding: 40px 0; }
@media (min-width: 768px) {
  .section { padding: 96px 0; }
  .section-sm { padding: 56px 0; }
}

.section-light {
  background: var(--bg-light);
  color: var(--text-dark);
}
.section-dark {
  background: var(--bg-mid);
}

.eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.section-light .eyebrow { color: #a07820; }

.section-title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.section-subtitle {
  font-size: 16px;
  color: var(--text-dim);
  max-width: 640px;
  line-height: 1.6;
}
.section-light .section-subtitle { color: var(--text-dark-dim); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.02em;
  transition: transform var(--t), background var(--t), color var(--t), box-shadow var(--t);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: var(--accent);
  color: #1a1410;
  box-shadow: 0 8px 24px -8px var(--accent-glow);
}
.btn-primary:hover {
  background: var(--accent-bright);
  box-shadow: 0 12px 32px -10px var(--accent-glow);
}
.btn-secondary {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--card-border-strong);
}
.btn-secondary:hover {
  background: var(--card-bg-hover);
  border-color: var(--accent);
  color: var(--accent);
}
.btn-ghost {
  padding: 12px 0;
  color: var(--accent);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.btn-ghost::after {
  content: '→';
  display: inline-block;
  margin-left: 6px;
  transition: transform var(--t);
}
.btn-ghost:hover::after { transform: translateX(4px); }

/* =========================================================
   HEADER
   ========================================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 8, 6, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--card-border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 0;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: -0.01em;
}
.logo-img {
  height: 51px;
  width: auto;
  max-width: 230px;
  max-height: 51px;
  object-fit: contain;
  display: block;
}
.site-footer .logo-img { filter: brightness(1.05); }
/* Eski mark/text fallback (kullanılmıyorsa görünmez) */
.logo-mark {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--accent), #b08628);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1a1410;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: -0.02em;
}
.logo-text { line-height: 1.1; }
.logo-text small { display: block; font-size: 10px; font-weight: 500; color: var(--text-dim); letter-spacing: 0.18em; }

.main-nav {
  display: none;
  gap: 6px;
}
@media (min-width: 1024px) {
  .main-nav { display: flex; }
}
.main-nav a {
  position: relative;
  padding: 10px 16px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-dim);
  transition: color var(--t);
}
.main-nav a:hover { color: var(--text); }
.main-nav a.active {
  color: var(--accent);
}
.main-nav a.active::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 16px; right: 16px;
  height: 2px;
  background: var(--accent);
}

/* ----- Dropdown menu (Hizmetler) ----- */
.has-dropdown {
  position: relative;
  display: inline-block;
}
.nav-toggle {
  background: none;
  border: 0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 16px;
  font: inherit;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-dim);
  transition: color var(--t);
  font-family: var(--font);
  position: relative;
}
.nav-toggle:hover { color: var(--text); }
.nav-toggle svg {
  transition: transform var(--t);
}
.has-dropdown.has-dropdown--active .nav-toggle {
  color: var(--accent);
}
.has-dropdown.has-dropdown--active .nav-toggle::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 16px; right: 30px;
  height: 2px;
  background: var(--accent);
}
.has-dropdown.open .nav-toggle svg,
.has-dropdown:hover .nav-toggle svg { transform: rotate(180deg); }

.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  background:
    linear-gradient(180deg, var(--navy) 0%, var(--bg-elev) 100%);
  border: 1px solid var(--navy-border);
  border-radius: var(--radius-sm);
  padding: 8px;
  min-width: 260px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.18s var(--t), transform 0.22s var(--t), visibility 0s linear 0.22s;
  box-shadow:
    0 20px 50px rgba(0,0,0,0.5),
    0 0 0 1px var(--accent-soft);
  z-index: 90;
}
.nav-dropdown::before {
  content: '';
  position: absolute;
  top: -6px; left: 0; right: 0;
  height: 6px;
}
.has-dropdown:hover .nav-dropdown,
.has-dropdown.open .nav-dropdown,
.nav-dropdown:hover {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(2px);
  transition: opacity 0.18s var(--t), transform 0.22s var(--t), visibility 0s;
}
.nav-dropdown a {
  display: block;
  padding: 11px 14px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: none;
  color: var(--text);
  background: transparent;
  transition: background var(--t), color var(--t), padding-left var(--t);
  white-space: nowrap;
}
.nav-dropdown a::after { display: none; }
.nav-dropdown a:hover {
  background: var(--navy-elev);
  color: var(--accent);
  padding-left: 18px;
}

/* ----- Mobile menu group (Hizmetler alt başlıkları) ----- */
.mobile-group {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 8px 0;
  padding: 14px 0 10px;
  border-top: 1px solid var(--card-border);
  border-bottom: 1px solid var(--card-border);
}
.mobile-group-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  padding: 6px 0 10px;
}
.mobile-group a {
  font-size: 17px !important;
  font-weight: 500 !important;
  padding: 10px 0 !important;
  color: var(--text) !important;
  border-bottom: none !important;
}
.mobile-group a:hover {
  color: var(--accent) !important;
}
.mobile-group--active .mobile-group-label {
  color: var(--accent-bright);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
.lang-switch {
  display: none;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  border: 1px solid var(--card-border);
  border-radius: 999px;
  font-size: 12px;
  color: var(--text-dim);
  cursor: pointer;
}
@media (min-width: 768px) {
  .lang-switch { display: inline-flex; }
}
.lang-switch:hover { color: var(--text); border-color: var(--card-border-strong); }

.header-cta { display: none; }
@media (min-width: 768px) {
  .header-cta { display: inline-flex; }
}

.menu-toggle {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  color: var(--text);
}
@media (min-width: 1024px) {
  .menu-toggle { display: none; }
}
.menu-toggle span {
  width: 20px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  position: relative;
}
.menu-toggle span::before,
.menu-toggle span::after {
  content: '';
  position: absolute;
  left: 0; width: 20px; height: 2px;
  background: currentColor; border-radius: 2px;
  transition: transform var(--t), top var(--t);
}
.menu-toggle span::before { top: -6px; }
.menu-toggle span::after { top: 6px; }

/* Mobile menu open */
body.menu-open { overflow: hidden; }
.mobile-menu {
  position: fixed;
  inset: 64px 0 0 0;
  background: var(--bg);
  z-index: 90;
  padding: 32px 24px;
  transform: translateY(-100%);
  transition: transform var(--t-slow);
  overflow-y: auto;
}
body.menu-open .mobile-menu { transform: translateY(0); }
.mobile-menu nav { display: flex; flex-direction: column; gap: 4px; }
.mobile-menu a {
  display: block;
  padding: 16px 0;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.01em;
  border-bottom: 1px solid var(--card-border);
}
.mobile-menu a.active { color: var(--accent); }
.mobile-menu .mobile-actions { margin-top: 32px; display: flex; flex-direction: column; gap: 12px; }
@media (min-width: 1024px) {
  .mobile-menu { display: none; }
}

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  padding: 32px 0 64px;
  overflow: hidden;
}
@media (min-width: 768px) {
  .hero { padding: 48px 0 96px; }
}

/* Hero slider: 3 katmanlı cross-fade */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-mid) 100%);
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 1.4s ease-in-out;
  will-change: opacity;
}
.hero-slide.active { opacity: 1; }

/* Üstüne binen okuma overlay'i */
.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(10,8,6,0.10) 0%, rgba(10,8,6,0.35) 60%, rgba(10,8,6,0.65) 100%);
  pointer-events: none;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20 20l20 20H0z' fill='%23d4a444' fill-opacity='0.03'/%3E%3C/svg%3E");
  opacity: 0.25;
  pointer-events: none;
}

/* Hero: sol ana metin + alt stats + sağda story slider */
.hero-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) and (max-width: 1023.98px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 18px;
    grid-template-areas:
      "main"
      "stories"
      "stats";
  }
  .hero-card-main      { grid-area: main; }
  .hero-stories-wrap   { grid-area: stories; }
  .hero-stats-row      { grid-area: stats; }
}
@media (min-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1.55fr 1fr;
    grid-template-rows: auto auto;
    gap: 28px;
    grid-template-areas:
      "main  stories"
      "stats stories";
  }
  .hero-card-main      { grid-area: main; padding: 12px 0 0; }
  .hero-stories-wrap   { grid-area: stories; align-self: stretch; }
  .hero-stats-row      { grid-area: stats; align-self: end; }
}

.glass {
  position: relative;
  background: rgba(255, 248, 230, 0.06);
  backdrop-filter: blur(14px) saturate(110%);
  -webkit-backdrop-filter: blur(14px) saturate(110%);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  padding: 22px;
  transition: background var(--t), border-color var(--t), transform var(--t);
  box-shadow: 0 8px 32px -12px rgba(0,0,0,0.35);
}
.glass::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255, 245, 220, 0.10), transparent 60%);
  pointer-events: none;
}
.glass:hover {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 248, 230, 0.10);
}

/* Hero card areas */
.hero-card-logos { grid-area: auto; }
.hero-card-map   { grid-area: auto; min-height: 220px; }
.hero-card-stat  { grid-area: auto; }

/* Ana metin alanı KART DEĞİL — doğrudan görsel üstünde */
.hero-card-main {
  grid-area: auto;
  padding: 8px 0;
  background: transparent;
  border: 0;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: none;
}
.hero-card-main::before { display: none; }
.hero-card-main:hover { background: transparent; border: 0; }

@media (min-width: 1024px) {
  .hero-card-logos { grid-area: logos; }
  .hero-card-map   { grid-area: map; }
  .hero-card-main  { grid-area: main; padding: 24px 0 0; }
  .hero-card-stat-1 { grid-area: stat1; }
  .hero-card-stat-2 { grid-area: stat2; }
  .hero-card-stat-3 { grid-area: stat3; }
}

.hero-card-main .eyebrow {
  color: var(--text);
  opacity: 0.85;
  font-weight: 700;
}
.hero-card-main h1 {
  font-size: clamp(36px, 6vw, 68px);
  font-weight: 700;
  line-height: 1.0;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
  text-shadow: 0 2px 24px rgba(0,0,0,0.5);
}
.hero-card-main h1 .accent-line {
  display: block;
}
.hero-card-main p {
  font-size: 16px;
  color: rgba(245, 239, 225, 0.9);
  margin-bottom: 28px;
  max-width: 460px;
  text-shadow: 0 1px 8px rgba(0,0,0,0.5);
}
.hero-card-main .hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; }

/* =========================================================
   HERO STORY SLIDER (sağda dikey YouTube video listesi)
   ========================================================= */
.hero-stories-wrap {
  position: relative;
}
/* Alt fade-out gradient (eritme efekti) — sonraki video kartı yumuşak fade-out */
.hero-stories-wrap::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 22%;
  background: linear-gradient(to bottom, rgba(10,8,6,0) 0%, rgba(10,8,6,0.75) 70%, rgba(10,8,6,0.92) 100%);
  pointer-events: none;
  z-index: 4;
  opacity: 1;
  transition: opacity 0.35s ease;
  border-radius: 0 0 36px 36px;
}
/* Tıkladığında / hover olduğunda eritme kalkar */
.hero-stories-wrap:hover::after,
.hero-stories-wrap:focus-within::after,
.hero-stories-wrap.engaged::after { opacity: 0; }

.hero-stories {
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
}

/* Mobilde yatay scroll'a dönüştürelim — telefonun yan sayfayı kaplamadan kaymasın */
@media (max-width: 1023.98px) {
  .hero-stories {
    flex-direction: row;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 8px 4px 16px;
    margin: 0 -20px;
    padding-left: 20px;
    padding-right: 20px;
    scrollbar-width: none;
  }
  .hero-stories::-webkit-scrollbar { display: none; }
}

.story-video-card {
  position: relative;
  width: 100%;
  max-width: 360px;
  aspect-ratio: 9/16;
  border-radius: 36px;                      /* oval/yumuşak kenar */
  overflow: hidden;
  background: #14100c;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 18px 48px -16px rgba(0,0,0,0.65), 0 0 0 6px rgba(212, 164, 68, 0.05);
  flex: 0 0 auto;
  isolation: isolate;
}
@media (max-width: 1023.98px) {
  .story-video-card { width: 70vw; max-width: 280px; scroll-snap-align: center; }
}
@media (min-width: 1024px) {
  .story-video-card { margin-left: auto; scroll-snap-align: start; }
  /* Desktop'ta hero-stories dikey scroll + snap */
  .hero-stories {
    max-height: 78vh;
    overflow-y: auto;
    scroll-snap-type: y mandatory;
    scrollbar-width: none;
    padding-right: 4px;
  }
  .hero-stories::-webkit-scrollbar { display: none; }
}

.story-video-card iframe,
.story-video-card video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  object-fit: cover;
  pointer-events: none;                      /* iframe kendi click'ini yutmasın */
}

/* Dış parıltı/altın çerçeve hafif gradient */
.story-video-card::before {
  content: '';
  position: absolute; inset: 0;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(0,0,0,0.0) 0%, rgba(0,0,0,0.0) 65%, rgba(0,0,0,0.55) 100%);
  pointer-events: none;
  z-index: 2;
}

.story-video-card .story-label {
  position: absolute;
  left: 18px; bottom: 18px;
  z-index: 3;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #fff;
  text-shadow: 0 1px 6px rgba(0,0,0,0.6);
}

/* Play/Pause toggle butonu */
.story-toggle {
  position: absolute;
  top: 16px; right: 16px;
  z-index: 4;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background var(--t), transform var(--t);
}
.story-toggle:hover { background: rgba(0,0,0,0.75); transform: scale(1.05); }
.story-toggle .icon-play  { display: none; }
.story-toggle .icon-pause { display: block; }
.story-toggle.paused .icon-play  { display: block; }
.story-toggle.paused .icon-pause { display: none; }

/* Slider okları — sliderın dışında, büyük beyaz transparan */
.hero-stories-nav {
  display: none;
  position: absolute;
  right: -72px;             /* slider'ın sağ dışına çıkar */
  top: 50%;
  transform: translateY(-50%);
  flex-direction: column;
  gap: 14px;
  z-index: 5;
}
@media (min-width: 1024px) {
  .hero-stories-nav { display: flex; }
}
@media (min-width: 1280px) {
  .hero-stories-nav { right: -88px; }
}
.hero-stories-nav button {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  border: 1.5px solid rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(12px) saturate(120%);
  -webkit-backdrop-filter: blur(12px) saturate(120%);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 6px 18px -6px rgba(0,0,0,0.35);
  transition: background var(--t), transform var(--t), border-color var(--t);
}
.hero-stories-nav button:hover {
  background: rgba(255, 255, 255, 0.32);
  border-color: rgba(255, 255, 255, 0.7);
  transform: scale(1.06);
}
.hero-stories-nav button svg {
  width: 22px;
  height: 22px;
  stroke-width: 2.2;
}

/* 3 stat kart yan yana — yeni hero-stats-row wrapper */
.hero-stats-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
@media (min-width: 640px) {
  .hero-stats-row { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 1024px) {
  .hero-stats-row { grid-template-columns: repeat(3, 1fr); gap: 14px; }
}
.hero-stats-row .glass { padding: 18px 20px; }
.hero-stats-row .stat-card-content { flex-direction: row; align-items: center; gap: 14px; }
.hero-stats-row .stat-icon { margin-bottom: 0; flex-shrink: 0; }
.hero-stats-row .stat-card-content h3 { font-size: 14px; }
.hero-stats-row .stat-card-content p { font-size: 10px; }

.brand-chips {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.brand-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: rgba(255, 245, 220, 0.06);
  border: 1px solid var(--card-border);
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
}
.brand-chip-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px var(--accent-soft);
}

.mini-map {
  position: relative;
  width: 100%;
  min-height: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mini-map svg { width: 100%; max-width: 260px; opacity: 0.75; }

.mini-map-icons {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 12px;
}
.mm-ic {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255, 245, 220, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.18);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent-bright);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.mini-map .dot {
  position: absolute;
  width: 8px; height: 8px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 0 4px var(--accent-soft);
  animation: pulse 2.4s ease-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 var(--accent-soft); }
  50% { box-shadow: 0 0 0 10px transparent; }
}

.stat-card-content {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.stat-card-content .stat-icon {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: var(--accent-soft);
  color: var(--accent);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 8px;
}
.stat-card-content h3 {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.stat-card-content p {
  font-size: 12px;
  color: var(--text-dim);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.4;
}

/* Hero alt feature bar */
.hero-features {
  margin-top: 32px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  background: rgba(10, 8, 6, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: var(--radius);
  overflow: hidden;
  backdrop-filter: blur(14px) saturate(110%);
  -webkit-backdrop-filter: blur(14px) saturate(110%);
  box-shadow: 0 12px 32px -16px rgba(0,0,0,0.5);
}
@media (min-width: 640px) {
  .hero-features { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 1024px) {
  .hero-features { grid-template-columns: repeat(6, 1fr); margin-top: 24px; }
}
.hero-feature {
  background: transparent;
  padding: 14px 10px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  border-right: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.hero-feature:nth-child(2n) { border-right: 0; }
@media (min-width: 640px) {
  .hero-feature { border-right: 1px solid rgba(255,255,255,0.08); }
  .hero-feature:nth-child(2n) { border-right: 1px solid rgba(255,255,255,0.08); }
  .hero-feature:nth-child(3n) { border-right: 0; }
}
@media (min-width: 1024px) {
  .hero-feature { padding: 18px 16px; border-right: 1px solid rgba(255,255,255,0.08); }
  .hero-feature:nth-child(3n) { border-right: 1px solid rgba(255,255,255,0.08); }
  .hero-feature:last-child { border-right: 0; }
}
.hero-feature .ic {
  width: 28px; height: 28px;
  color: var(--accent);
}
.hero-feature span {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dim);
  line-height: 1.3;
}

/* =========================================================
   MARKETPLACES — hero altı pazaryeri logo bandı (açık zemin)
   ========================================================= */
.marketplaces {
  background: var(--bg-light);
  border-top: 1px solid #e9e0cf;
  border-bottom: 1px solid #e9e0cf;
  padding: 36px 0;
}
.marketplaces-title {
  text-align: center;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--text-dark-dim);
  margin-bottom: 28px;
}
.marketplaces-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px 20px;
  align-items: center;
  justify-items: center;
  max-width: 1100px;
  margin: 0 auto;
}
@media (min-width: 640px) { .marketplaces-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .marketplaces-grid { grid-template-columns: repeat(6, 1fr); gap: 24px; } }
.marketplaces-grid .marketplace-logo { width: 100%; max-width: 160px; }

.marketplace-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  padding: 8px;
  border-radius: 12px;
  background: #ffffff;
  border: 1px solid #ece3d2;
  box-shadow: 0 2px 8px -4px rgba(26, 20, 16, 0.08);
  opacity: 0.95;
  transition: opacity var(--t), transform var(--t), box-shadow var(--t);
}
.marketplace-logo:hover {
  opacity: 1;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px -8px rgba(26, 20, 16, 0.18);
}
.marketplace-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.marketplace-fallback {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text-dark);
  text-align: center;
  opacity: 0.5;
}

/* =========================================================
   FOOTER MARKETPLACES — footer içinde mini logo bandı
   ========================================================= */
.footer-marketplaces {
  padding: 28px 0 32px;
  border-bottom: 1px solid var(--card-border);
  margin-bottom: 40px;
}
.footer-marketplaces-title {
  text-align: center;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 18px;
}
.footer-marketplaces-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  align-items: center;
  justify-items: center;
  max-width: 800px;
  margin: 0 auto;
}
@media (min-width: 768px) { .footer-marketplaces-grid { grid-template-columns: repeat(6, 1fr); } }
.footer-marketplaces-grid .footer-marketplace-logo { width: 100%; max-width: 110px; }

.footer-marketplace-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 32px;
  padding: 4px 6px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  opacity: 0.85;
  transition: opacity var(--t), transform var(--t);
}
.footer-marketplace-logo:hover { opacity: 1; transform: translateY(-1px); }
.footer-marketplace-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

/* =========================================================
   BRAND BANNERS — 6 kare marka kartı (Çatımız Altındaki Markalar)
   ========================================================= */
.brand-banners-section {
  padding: 56px 0 64px;
  background: var(--bg-light);
}
@media (min-width: 768px) { .brand-banners-section { padding: 80px 0; } }

.brand-banners-head {
  text-align: center;
  margin-bottom: 32px;
}
.brand-banners-head .eyebrow { color: #a07820; }
.brand-banners-head h2 {
  font-size: clamp(26px, 3.6vw, 38px);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text-dark);
  margin-bottom: 12px;
}
.brand-banners-head p {
  color: var(--text-dark-dim);
  font-size: 15px;
  max-width: 580px;
  margin: 0 auto;
}

.brand-banners-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
@media (min-width: 640px)  { .brand-banners-grid { grid-template-columns: repeat(3, 1fr); gap: 16px; } }
@media (min-width: 1024px) { .brand-banners-grid { grid-template-columns: repeat(6, 1fr); gap: 18px; } }

.brand-banner-card {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: 18px;
  overflow: hidden;
  background: #2a2218;
  cursor: pointer;
  isolation: isolate;
  border: 1px solid #e9e0cf;
  transition: transform var(--t), box-shadow var(--t), border-color var(--t);
}
.brand-banner-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 36px -16px rgba(26, 20, 16, 0.32);
  border-color: var(--accent);
}

.brand-banner-card .bb-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform var(--t-slow);
  background-color: #2a2218;
  z-index: 0;
}
.brand-banner-card:hover .bb-img { transform: scale(1.06); }

/* YouTube Shorts iframe arka plan — 9:16 dikey videoyu kare karta cover et */
.brand-banner-card .bb-video {
  position: absolute;
  top: 50%;
  left: 50%;
  /* Shorts (9:16) için: yükseklik %100 sabit, genişlik 177.78% (9/16 oran) */
  width: 177.78%;
  height: 100%;
  transform: translate(-50%, -50%);
  border: 0;
  pointer-events: none;
  z-index: 0;
  background: #14100c;
}
.brand-banner-card .bb-overlay { z-index: 2; }

.brand-banner-card .bb-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,8,6,0.0) 0%, rgba(10,8,6,0.25) 55%, rgba(10,8,6,0.85) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 14px;
}
.brand-banner-card .bb-name {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  line-height: 1.2;
}
.brand-banner-card .bb-sub {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  margin-top: 4px;
}

/* Placeholder durumu (görsel yokken) */
.brand-banner-card .bb-img.ph::after {
  content: attr(data-name);
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(245, 239, 225, 0.25);
}

/* =========================================================
   LOGO BAND (Müşteri markaları)
   ========================================================= */
.logo-band-title {
  text-align: center;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--text-dark-dim);
  margin-bottom: 32px;
}
.logo-band {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  align-items: center;
}
@media (min-width: 640px) { .logo-band { grid-template-columns: repeat(4, 1fr); } }
@media (min-width: 1024px) { .logo-band { grid-template-columns: repeat(8, 1fr); gap: 32px; } }
.logo-band-item {
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
  color: var(--text-dark);
  opacity: 0.5;
  transition: opacity var(--t);
  letter-spacing: -0.02em;
  text-align: center;
  padding: 12px;
}
.logo-band-item:hover { opacity: 1; }

/* =========================================================
   FEATURE CARDS (6'lı görsel kart bölümü)
   ========================================================= */
.feature-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 40px;
}
@media (min-width: 640px) { .feature-cards { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .feature-cards { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1280px) { .feature-cards { grid-template-columns: repeat(5, 1fr); } }

.feature-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform var(--t), box-shadow var(--t);
  cursor: pointer;
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 48px -12px rgba(26, 20, 16, 0.18);
}
.feature-card-img {
  aspect-ratio: 4/3;
  background: var(--bg-light-2);
  background-size: cover;
  background-position: center;
  position: relative;
}
.feature-card-img.ph::after {
  content: 'görsel';
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; letter-spacing: 0.2em;
  color: rgba(26, 20, 16, 0.3);
  text-transform: uppercase;
}
.feature-card-body { padding: 20px; }
.feature-card-body h3 {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-dark);
  margin-bottom: 6px;
}
.feature-card-body p {
  font-size: 13px;
  color: var(--text-dark-dim);
  line-height: 1.5;
}

/* =========================================================
   CTA BAND — f1.jpg arka planlı, 400px yüksek davet bandı
   ========================================================= */
.cta-band {
  position: relative;
  min-height: 400px;
  display: flex;
  align-items: center;
  background:
    linear-gradient(180deg, rgba(10,8,6,0.55) 0%, rgba(10,8,6,0.65) 100%),
    url('../images/f1.jpg') center/cover no-repeat,
    linear-gradient(135deg, #1a1410, #0a0806);
  color: #fff;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 70% at 30% 40%, rgba(40, 80, 150, 0.22), transparent 60%),
    radial-gradient(ellipse 60% 70% at 70% 60%, rgba(212,164,68,0.20), transparent 70%);
  pointer-events: none;
}
.cta-band-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  padding: 56px 24px;
}
.cta-band .eyebrow {
  color: var(--accent-bright);
  margin-bottom: 14px;
}
.cta-band h2 {
  font-size: clamp(28px, 4.5vw, 46px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 16px;
  text-shadow: 0 2px 16px rgba(0,0,0,0.55);
}
.cta-band p {
  font-size: 16px;
  line-height: 1.65;
  color: rgba(245, 239, 225, 0.92);
  margin-bottom: 28px;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 0 1px 6px rgba(0,0,0,0.5);
}
.cta-band .cta-ctas {
  display: inline-flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}

/* =========================================================
   SERVICES (Hizmetler bölümü)
   ========================================================= */
.services {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-top: 40px;
}
@media (min-width: 1024px) {
  .services { grid-template-columns: 1fr 2fr; gap: 56px; align-items: start; }
}
.services-intro h2 {
  font-size: clamp(28px, 4vw, 38px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 16px;
  color: var(--text-dark);
}
.services-intro p {
  font-size: 14px;
  color: var(--text-dark-dim);
  line-height: 1.6;
  max-width: 380px;
}
.services-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
@media (min-width: 768px) { .services-list { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .services-list { grid-template-columns: repeat(5, 1fr); gap: 16px; } }

.service-card {
  background: #fff;
  border: 1px solid #e9e0cf;
  border-radius: var(--radius-sm);
  padding: 22px 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform var(--t), border-color var(--t);
}
.service-card:hover { transform: translateY(-3px); border-color: var(--accent); }
.service-card .svc-icon {
  width: 110px; height: 110px;
  border-radius: 18px;
  background: var(--bg-light-2);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent);
  overflow: hidden;
}
.service-card .svc-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.service-card h4 {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-dark);
}
.service-card p {
  font-size: 12px;
  color: var(--text-dark-dim);
  line-height: 1.5;
}
.service-card .detail-link {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--accent);
  text-transform: uppercase;
  margin-top: auto;
}

/* =========================================================
   STATS BAND (Heden Biz?)
   ========================================================= */
.stats-wrap {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}
@media (min-width: 1024px) { .stats-wrap { grid-template-columns: 1fr 1.4fr; gap: 56px; } }

.stats-intro h2 {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 16px;
}
.stats-intro p {
  font-size: 14px;
  color: var(--text-dim);
  max-width: 380px;
  margin-bottom: 24px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--card-border);
  border-radius: var(--radius);
  overflow: hidden;
}
@media (min-width: 768px) { .stats-grid { grid-template-columns: repeat(4, 1fr); } }
.stat-block {
  background: var(--bg);
  padding: 32px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.stat-block .svg-ic {
  width: 36px; height: 36px;
  color: var(--accent);
  margin-bottom: 8px;
}
.stat-block .stat-num {
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--text);
}
.stat-block .stat-label {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-dim);
}

/* Stats bandı açık zeminli varyant */
.stats-light .stats-grid {
  background: #e3d8c2;
  border-radius: var(--radius);
}
.stats-light .stat-block { background: #ffffff; }
.stats-light .stat-block .stat-num { color: var(--text-dark); }
.stats-light .stat-block .stat-label { color: var(--text-dark-dim); }
.stats-light .stat-block .svg-ic { color: var(--accent); }

/* =========================================================
   STORIES (Başarı Hikayeleri / Koleksiyonlar)
   ========================================================= */
.stories-head {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: end;
  margin-bottom: 32px;
}
@media (min-width: 1024px) {
  .stories-head { grid-template-columns: 1fr 1fr; }
}
.stories-head .btn { align-self: start; }
.stories-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
@media (min-width: 640px) { .stories-row { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .stories-row { grid-template-columns: repeat(6, 1fr); gap: 14px; } }

.story-card {
  position: relative;
  aspect-ratio: 9/16;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  background: #2a2218;
  isolation: isolate;
  transition: transform var(--t);
}
.story-card:hover { transform: translateY(-4px); }
.story-card-img {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform var(--t-slow);
  z-index: 0;
}
.story-card:hover .story-card-img { transform: scale(1.06); }
.story-card-img.ph {
  background: linear-gradient(135deg, #2a2218, #1a1410);
}

/* YouTube Shorts arka plan videosu — 9:16 kart için
   Iframe %130 boyutunda → üst başlık ve alt UI elemanları kart dışına taşar,
   overflow:hidden kart sınırlarında keser. Loading sırasında bile temiz görünür. */
.story-card .sv-video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 130%;
  height: 130%;
  transform: translate(-50%, -50%);
  border: 0;
  pointer-events: none;
  z-index: 0;
  background: #1a1410;
}
.story-card .story-card-overlay { z-index: 2; }
/* Yükleme sırasında bile YouTube başlığını maskeleyen üst karartma */
.story-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 18%;
  background: linear-gradient(180deg, rgba(10,8,6,0.85) 0%, rgba(10,8,6,0) 100%);
  z-index: 1;
  pointer-events: none;
}
.story-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.85) 80%);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 16px;
}
.story-badge {
  align-self: flex-start;
  padding: 4px 10px;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 999px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.story-content h3 {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.story-content .story-meta {
  font-size: 11px;
  color: rgba(245, 239, 225, 0.7);
  letter-spacing: 0.06em;
}
.story-content .story-num {
  display: block;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--accent);
  line-height: 1;
  margin: 8px 0 4px;
}
.story-card .detail-link {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(245, 239, 225, 0.85);
  border-top: 1px solid rgba(255,255,255,0.15);
  padding-top: 8px;
  margin-top: 8px;
}

/* =========================================================
   PROCESS — animasyonlu süreç akışı + görsel
   ========================================================= */
.process-section {
  position: relative;
  overflow: hidden;
}
.process-section .process-head {
  text-align: center;
  margin-bottom: 32px;
}
.process-section .process-head .eyebrow { color: #a07820; }
.process-section .process-head h2 {
  font-size: clamp(26px, 3.6vw, 38px);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text-dark);
  margin-bottom: 12px;
}
.process-section .process-head p {
  color: var(--text-dark-dim);
  font-size: 15px;
  max-width: 560px;
  margin: 0 auto;
}

.process-image-wrap {
  position: relative;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto 40px;
  aspect-ratio: 21/9;
  border-radius: 18px;
  overflow: hidden;
  background: linear-gradient(135deg, #2a2218 0%, #1a1410 100%);
  box-shadow: 0 18px 48px -20px rgba(26, 20, 16, 0.35);
}
.process-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.02);
  transition: transform 1.2s ease;
}
.process-section:hover .process-image { transform: scale(1.06); }
.process-image-wrap::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,8,6,0) 60%, rgba(10,8,6,0.35) 100%);
  pointer-events: none;
}

/* Animasyon keyframe'leri */
@keyframes processStepIn {
  0%   { opacity: 0; transform: translateY(24px) scale(0.92); }
  60%  { opacity: 1; }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes processIconFloat {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-4px); }
}
@keyframes processArrowSlide {
  0%   { opacity: 0; transform: translate(-12px, -50%); }
  100% { opacity: 0.65; transform: translate(0, -50%); }
}
@keyframes processGlow {
  0%, 100% { box-shadow: 0 0 0 0 var(--accent-soft); }
  50%      { box-shadow: 0 0 0 8px transparent; }
}

/* Animasyon başlangıç durumu — JS in-view ekleyince tetiklenir */
.process--anim .process-step {
  opacity: 0;
  transform: translateY(24px) scale(0.92);
}
.process--anim .process-step::after {
  opacity: 0;
}
.process--anim.in-view .process-step {
  animation: processStepIn 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}
.process--anim.in-view .process-step:nth-of-type(2) { animation-delay: 0.10s; }
.process--anim.in-view .process-step:nth-of-type(3) { animation-delay: 0.28s; }
.process--anim.in-view .process-step:nth-of-type(4) { animation-delay: 0.46s; }
.process--anim.in-view .process-step:nth-of-type(5) { animation-delay: 0.64s; }
.process--anim.in-view .process-step::after {
  animation: processArrowSlide 0.5s ease-out forwards;
}
.process--anim.in-view .process-step:nth-of-type(2)::after { animation-delay: 0.30s; }
.process--anim.in-view .process-step:nth-of-type(3)::after { animation-delay: 0.48s; }
.process--anim.in-view .process-step:nth-of-type(4)::after { animation-delay: 0.66s; }

/* İkon kutusu, in-view sonrası yumuşak yüzme */
.process--anim.in-view .process-step .ps-icon {
  animation: processIconFloat 3.2s ease-in-out infinite;
}
.process--anim.in-view .process-step:nth-of-type(2) .ps-icon { animation-delay: 0.4s; }
.process--anim.in-view .process-step:nth-of-type(3) .ps-icon { animation-delay: 0.8s; }
.process--anim.in-view .process-step:nth-of-type(4) .ps-icon { animation-delay: 1.2s; }
.process--anim.in-view .process-step:nth-of-type(5) .ps-icon { animation-delay: 1.6s; }

/* Hover'da ikon glow + scale */
.process-step .ps-icon {
  transition: transform var(--t), box-shadow var(--t);
}
.process-step:hover .ps-icon {
  transform: scale(1.12) rotate(-3deg);
  box-shadow: 0 0 0 6px var(--accent-soft);
}

/* =========================================================
   PROCESS (Nasıl Çalışıyoruz?)
   ========================================================= */
.process {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 32px;
}
@media (min-width: 768px) { .process { grid-template-columns: repeat(4, 1fr); gap: 16px; align-items: center; } }

.process-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
}
.process-step {
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
}
.process-step .ps-icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--bg-light-2);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}
.process-step .ps-text h4 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dark);
  margin-bottom: 2px;
}
.process-step .ps-text p {
  font-size: 12px;
  color: var(--text-dark-dim);
  line-height: 1.4;
}
.process-arrow {
  display: none;
  color: var(--accent);
  opacity: 0.5;
}
@media (min-width: 768px) {
  .process { grid-template-columns: auto repeat(4, 1fr); }
  /* Inline arrows arası */
  .process-step::after {
    content: '→';
    position: absolute;
    right: -16px; top: 50%;
    transform: translateY(-50%);
    color: var(--accent);
    opacity: 0.5;
    font-size: 16px;
  }
  .process-step:last-child::after { display: none; }
}

/* =========================================================
   BOTTOM FEATURES BAR
   ========================================================= */
.bottom-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: #e3d8c2;
  border: 1px solid #e3d8c2;
  border-radius: var(--radius);
  overflow: hidden;
}
@media (min-width: 640px) { .bottom-features { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .bottom-features { grid-template-columns: repeat(5, 1fr); } }
.bf-item {
  background: var(--bg-light);
  padding: 22px 18px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.bf-item .bf-ic {
  width: 36px; height: 36px;
  color: var(--accent);
  flex-shrink: 0;
}
.bf-item h5 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dark);
  margin-bottom: 2px;
}
.bf-item p {
  font-size: 11px;
  color: var(--text-dark-dim);
  line-height: 1.4;
}

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer {
  background:
    linear-gradient(180deg, var(--navy-deep) 0%, #050402 100%);
  border-top: 1px solid var(--navy-border);
  padding: 56px 0 24px;
  position: relative;
}
.site-footer::before {
  content: '';
  position: absolute;
  left: 0; right: 0; top: -1px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-glow), transparent);
  opacity: 0.7;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-bottom: 40px;
}
@media (min-width: 640px) { .footer-grid { grid-template-columns: 1.5fr repeat(2, 1fr); } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 1.5fr repeat(3, 1fr); gap: 48px; } }

.footer-brand p {
  margin-top: 16px;
  font-size: 13px;
  color: var(--text-dim);
  max-width: 320px;
  line-height: 1.6;
}
.footer-col h6 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; list-style: none; padding: 0; }
.footer-col li { font-size: 13px; color: var(--text-dim); line-height: 1.5; }
.footer-col p { font-size: 13px; color: var(--text-dim); line-height: 1.6; }
.footer-col a {
  font-size: 13px;
  color: var(--text-dim);
  transition: color var(--t);
  text-decoration: none;
}
.footer-col a:hover { color: var(--text); }
.footer-col li a { color: var(--text-dim); }
.footer-col li a:hover { color: var(--text); }

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid var(--card-border);
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  font-size: 12px;
  color: var(--text-mute);
}
@media (min-width: 640px) {
  .footer-bottom { flex-direction: row; justify-content: space-between; }
}
.social-list { display: flex; gap: 12px; }
.social-list a {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid var(--card-border);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-dim);
  transition: color var(--t), border-color var(--t);
}
.social-list a:hover { color: var(--accent); border-color: var(--accent); }

/* =========================================================
   PAGE HEADER (alt sayfalar için)
   ========================================================= */
.page-hero {
  padding: 70px 0 50px;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(212, 164, 68, 0.12), transparent 55%),
    radial-gradient(ellipse at 80% 30%, rgba(80, 130, 210, 0.10), transparent 60%),
    linear-gradient(180deg, var(--navy-deep) 0%, var(--bg) 100%);
  border-bottom: 1px solid var(--navy-border);
  text-align: center;
  position: relative;
}
.page-hero::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -1px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-glow), transparent);
}
.page-hero h1 {
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin-bottom: 12px;
}
.page-hero p {
  font-size: 15px;
  color: var(--text-dim);
  max-width: 580px;
  margin: 0 auto;
}
.breadcrumbs {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 16px;
}
.breadcrumbs a { color: var(--accent); }
.breadcrumbs span { opacity: 0.5; }

/* =========================================================
   COLLECTIONS PAGE
   ========================================================= */
.collections-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 640px) { .collections-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .collections-grid { grid-template-columns: repeat(3, 1fr); gap: 24px; } }

.collection-card {
  background: var(--bg-elev);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform var(--t), border-color var(--t);
  cursor: pointer;
}
.collection-card:hover { transform: translateY(-4px); border-color: var(--accent); }
.collection-img {
  aspect-ratio: 4/5;
  background-color: var(--navy-mid);
  position: relative;
  overflow: hidden;
}
.collection-img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.22, 0.7, 0.3, 1);
}
.collection-card:hover .collection-img img { transform: scale(1.05); }

/* Eksik dosya placeholder (about-img / svc-featured ile aynı dil) */
.collection-img.is-empty {
  background:
    repeating-linear-gradient(
      45deg,
      rgba(255,215,140,0.04),
      rgba(255,215,140,0.04) 12px,
      rgba(255,215,140,0.08) 12px,
      rgba(255,215,140,0.08) 24px
    ),
    var(--bg-mid);
  border: 1px dashed var(--card-border-strong);
  display: flex;
  align-items: center;
  justify-content: center;
}
.collection-img.is-empty img { display: none; }
.collection-img.is-empty::before {
  content: '+ Görsel ekleyin';
  color: var(--text-mute);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-align: center;
  padding: 14px;
}
.collection-body { padding: 20px; }
.collection-cat {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
  display: block;
}
.collection-body h3 {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 6px;
}
.collection-body p {
  font-size: 13px;
  color: var(--text-dim);
  line-height: 1.5;
}

/* =========================================================
   CONTACT / FORMS
   ========================================================= */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
@media (min-width: 1024px) { .contact-grid { grid-template-columns: 1fr 1.2fr; gap: 64px; } }

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.contact-info-item {
  display: flex;
  gap: 16px;
}
.contact-info-item .ci-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--accent-soft);
  color: var(--accent);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-info-item h4 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 4px;
}
.contact-info-item p { font-size: 14px; line-height: 1.5; }

.contact-form {
  background: var(--bg-elev);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 28px;
}
.form-row { display: grid; grid-template-columns: 1fr; gap: 16px; margin-bottom: 16px; }
@media (min-width: 640px) { .form-row.two { grid-template-columns: 1fr 1fr; } }
.form-field label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 6px;
}
.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  padding: 12px 14px;
  background: var(--bg);
  border: 1px solid var(--card-border);
  border-radius: 10px;
  font-size: 14px;
  color: var(--text);
  outline: none;
  transition: border-color var(--t);
}
.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  border-color: var(--accent);
}
.form-field textarea { min-height: 120px; resize: vertical; }

/* =========================================================
   BLOG
   ========================================================= */
.blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 640px) { .blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .blog-grid { grid-template-columns: repeat(3, 1fr); } }
.blog-card {
  background: var(--bg-elev);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform var(--t), border-color var(--t);
}
.blog-card:hover { transform: translateY(-4px); border-color: var(--accent); }
.blog-img { aspect-ratio: 16/9; background-color: #2a2218; background-size: cover; background-position: center; }
.blog-body { padding: 24px; }
.blog-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}
.blog-card h3 {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.3;
  margin-bottom: 10px;
}
.blog-card p {
  font-size: 13px;
  color: var(--text-dim);
  line-height: 1.6;
  margin-bottom: 16px;
}
.blog-meta {
  display: flex; justify-content: space-between;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-mute);
}

/* =========================================================
   ABOUT
   ========================================================= */
.about-intro {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
}
@media (min-width: 1024px) { .about-intro { grid-template-columns: 1fr 1fr; gap: 56px; } }
.about-intro h2 {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 20px;
}
.about-intro p { color: var(--text-dim); font-size: 15px; line-height: 1.7; margin-bottom: 14px; }
.about-img {
  aspect-ratio: 5/4;
  background-color: #2a2218;
  background-size: cover; background-position: center;
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
}
.about-img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
  transition: transform 0.8s cubic-bezier(0.22, 0.7, 0.3, 1);
}
.about-img:hover img { transform: scale(1.04); }

/* Eksik dosya placeholder (gallery ile aynı stil dili) */
.about-img.is-empty {
  background:
    repeating-linear-gradient(
      45deg,
      rgba(255,215,140,0.03),
      rgba(255,215,140,0.03) 12px,
      rgba(255,215,140,0.07) 12px,
      rgba(255,215,140,0.07) 24px
    ),
    var(--bg-mid);
  border: 1px dashed var(--card-border-strong);
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-img.is-empty img { display: none; }
.about-img.is-empty::before {
  content: '+ Görsel ekleyin (hero.jpg)';
  color: var(--text-mute);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-align: center;
  padding: 14px;
}

/* =========================================================
   PAGE LIGHT — Açık tema (alt sayfalar için)
   ========================================================= */
body.page-light {
  background: var(--bg-light);
  color: var(--text-dark);
}
/* Header alt sayfalarda da açık görünür */
body.page-light .site-header {
  background: rgba(246, 239, 228, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
body.page-light .site-header.scrolled {
  background: rgba(246, 239, 228, 0.96);
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
}
body.page-light .main-nav a,
body.page-light .nav-toggle { color: var(--text-dark-dim); }
body.page-light .main-nav a:hover,
body.page-light .nav-toggle:hover { color: var(--text-dark); }
body.page-light .main-nav a.active,
body.page-light .has-dropdown--active .nav-toggle { color: var(--accent); }
body.page-light .lang-switch { color: var(--text-dark-dim); border-color: rgba(0,0,0,0.18); }
body.page-light .menu-toggle span,
body.page-light .menu-toggle span::before,
body.page-light .menu-toggle span::after { background: var(--text-dark); }
body.page-light .mobile-menu {
  background: var(--bg-light);
}
body.page-light .mobile-menu a { color: var(--text-dark); }
body.page-light .mobile-group { border-color: rgba(0,0,0,0.10); }
body.page-light .mobile-group a { color: var(--text-dark) !important; }

/* Page-hero — ferah açık varyant */
body.page-light .page-hero {
  background:
    radial-gradient(ellipse at 50% 0%, rgba(212, 164, 68, 0.14), transparent 55%),
    radial-gradient(ellipse at 80% 30%, rgba(80, 130, 210, 0.08), transparent 60%),
    linear-gradient(180deg, var(--bg-light-2) 0%, var(--bg-light) 100%);
  border-bottom: 1px solid rgba(0,0,0,0.08);
  color: var(--text-dark);
}
body.page-light .page-hero h1 { color: var(--text-dark); text-shadow: none; }
body.page-light .page-hero p { color: var(--text-dark-dim); }
body.page-light .breadcrumbs { color: var(--text-dark-dim); }
body.page-light .breadcrumbs a { color: var(--text-dark); }
body.page-light .breadcrumbs a:hover { color: var(--accent); }

/* Section default = açık */
body.page-light .section:not(.section-light):not(.section-dark) {
  background: var(--bg-light);
  color: var(--text-dark);
}
body.page-light .section h1,
body.page-light .section h2,
body.page-light .section h3,
body.page-light .section h4,
body.page-light .section h5 {
  color: var(--text-dark);
}
body.page-light .section p,
body.page-light .section li { color: var(--text-dark-dim); }
body.page-light .section .eyebrow { color: var(--accent); }

/* About intro */
body.page-light .about-intro p { color: var(--text-dark-dim); }
body.page-light .about-intro h2 { color: var(--text-dark); }

/* Galeri */
body.page-light .gallery-section {
  background:
    radial-gradient(900px 480px at 50% -10%, rgba(212,164,68,0.10), transparent 60%),
    var(--bg-light);
}
body.page-light .gallery-head h2 { color: var(--text-dark); }
body.page-light .gallery-head h2 span { color: var(--accent); }
body.page-light .gallery-head p { color: var(--text-dark-dim); }
body.page-light .gallery-item {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.08);
}
body.page-light .gallery-item:hover {
  border-color: var(--accent);
  box-shadow:
    0 22px 50px -22px rgba(0,0,0,0.18),
    0 0 0 1px var(--accent-soft);
}
body.page-light .gallery-item.is-empty {
  background:
    repeating-linear-gradient(45deg, rgba(212,164,68,0.05), rgba(212,164,68,0.05) 10px, rgba(212,164,68,0.10) 10px, rgba(212,164,68,0.10) 20px),
    #ece4d4;
  border: 1px dashed rgba(0,0,0,0.18);
  color: var(--text-dark-dim);
}

/* Service detay sayfa içeriği */
body.page-light .svc-content { color: var(--text-dark); }
body.page-light .svc-lead {
  color: var(--text-dark);
  border-bottom: 1px solid rgba(0,0,0,0.10);
}
body.page-light .svc-block h3 { color: var(--text-dark); }
body.page-light .svc-block p { color: var(--text-dark-dim); }

/* svc-featured-section open zemin */
body.page-light .svc-featured-section { background: var(--bg-light); }
body.page-light .svc-featured.is-empty {
  background:
    repeating-linear-gradient(45deg, rgba(212,164,68,0.05), rgba(212,164,68,0.05) 14px, rgba(212,164,68,0.10) 14px, rgba(212,164,68,0.10) 28px),
    #ece4d4;
  border: 1px dashed rgba(0,0,0,0.18);
}
body.page-light .svc-featured.is-empty::before { color: var(--text-dark-dim); }

/* svc-pager light */
body.page-light .svc-pager { border-top: 1px solid rgba(0,0,0,0.10); }
body.page-light .svc-pager-link {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.08);
  color: var(--text-dark);
}
body.page-light .svc-pager-link:hover {
  border-color: var(--accent);
  background: #fff;
}
body.page-light .svc-pager-title { color: var(--text-dark); }

/* Collection cards (koleksiyonlar.html) */
body.page-light .collection-card {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.08);
}
body.page-light .collection-card:hover { border-color: var(--accent); }
body.page-light .collection-body h3 { color: var(--text-dark); }
body.page-light .collection-body p { color: var(--text-dark-dim); }
body.page-light .collection-cat { color: var(--accent); }

/* Service cards (hakkimizda Değerlerimiz vs.) */
body.page-light .service-card {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.08);
}
body.page-light .service-card h4 { color: var(--text-dark); }
body.page-light .service-card p { color: var(--text-dark-dim); }
body.page-light .service-card .svc-icon { color: var(--accent); }

/* Footer ve diğer koyu bölümler aynı kalır (kontrast olarak) */

/* Lightbox (story videoları için) */
.lightbox {
  position: fixed; inset: 0;
  background: rgba(5, 4, 2, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.lightbox.open { display: flex; }
.lightbox-content {
  width: 100%;
  max-width: 420px;
  aspect-ratio: 9/16;
  background: var(--bg-elev);
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
}
.lightbox-close {
  position: absolute;
  top: 16px; right: 16px;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(0,0,0,0.6);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  z-index: 10;
}

/* =========================================================
   SERVICE — Card link & Detail page
   ========================================================= */
/* Anasayfa/hizmetler.html'deki tıklanabilir kart */
.service-card--link {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  position: relative;
  transition: transform var(--t), border-color var(--t), background var(--t);
}
.service-card--link .svc-readmore {
  margin-top: 14px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  opacity: 0.85;
  transition: opacity var(--t), transform var(--t);
}
.service-card--link:hover {
  border-color: var(--accent);
  background: rgba(255,255,255,0.5);
}
.service-card--link:hover .svc-readmore {
  opacity: 1;
  transform: translateX(4px);
}

/* Hizmet detay sayfası — eyebrow */
.svc-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-soft);
  padding: 8px 14px;
  border-radius: 999px;
  margin-bottom: 18px;
}
.svc-eyebrow-icon { display: inline-flex; }
.svc-eyebrow-icon svg { stroke: var(--accent); }

/* Featured image bandı (blog post stili) */
.svc-featured-section {
  padding: 64px 0 24px;
  background: var(--bg);
}
.svc-featured {
  position: relative;
  width: 100%;
  aspect-ratio: 21/9;
  border-radius: var(--radius);
  overflow: hidden;
  background-color: var(--navy-mid);
  box-shadow: 0 30px 80px -20px rgba(0,0,0,0.5);
}
.svc-featured img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.svc-featured.is-empty {
  background:
    repeating-linear-gradient(
      45deg,
      rgba(255,215,140,0.03),
      rgba(255,215,140,0.03) 14px,
      rgba(255,215,140,0.07) 14px,
      rgba(255,215,140,0.07) 28px
    ),
    var(--bg-mid);
  border: 1px dashed var(--card-border-strong);
  display: flex;
  align-items: center;
  justify-content: center;
}
.svc-featured.is-empty img { display: none; }
.svc-featured.is-empty::before {
  content: '+ Görsel ekleyin (services-featured/<slug>.jpg)';
  color: var(--text-mute);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-align: center;
  padding: 24px;
}
@media (max-width: 768px) {
  .svc-featured-section { padding: 40px 0 16px; }
  .svc-featured { aspect-ratio: 16/10; }
}

/* İçerik bloğu */
.svc-content {
  max-width: 820px;
  margin: 0 auto;
}
.svc-lead {
  font-size: clamp(17px, 2vw, 20px);
  line-height: 1.7;
  color: var(--text);
  margin-bottom: 36px;
  font-weight: 400;
  padding-bottom: 36px;
  border-bottom: 1px solid var(--card-border);
}
.svc-block {
  margin-bottom: 30px;
}
.svc-block h3 {
  font-size: clamp(20px, 2.4vw, 26px);
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 12px;
  color: var(--text);
}
.svc-block p {
  font-size: 15.5px;
  line-height: 1.75;
  color: var(--text-dim);
}

/* İstatistikler — Navy ton */
.svc-stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin: 44px 0;
  padding: 32px;
  background:
    linear-gradient(135deg, rgba(40, 80, 150, 0.10), transparent 60%),
    var(--navy);
  border: 1px solid var(--navy-border);
  border-radius: var(--radius);
  position: relative;
}
.svc-stats::after {
  content: '';
  position: absolute;
  left: 24px; right: 24px; top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-glow), transparent);
}
@media (min-width: 640px) {
  .svc-stats { grid-template-columns: repeat(3, 1fr); }
}
.svc-stat-num {
  font-size: clamp(28px, 3.4vw, 38px);
  font-weight: 700;
  color: var(--accent);
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 8px;
}
.svc-stat-label {
  font-size: 13px;
  color: var(--text-dim);
  line-height: 1.5;
}

/* CTA — Navy + altın denge */
.svc-cta {
  margin: 56px 0;
  padding: 40px 32px;
  text-align: center;
  background:
    linear-gradient(135deg, rgba(40, 80, 150, 0.18) 0%, transparent 60%),
    linear-gradient(225deg, var(--accent-soft) 0%, transparent 70%),
    var(--navy);
  border: 1px solid var(--navy-border-strong);
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
}
.svc-cta::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0.6;
}
.svc-cta h3 {
  font-size: clamp(20px, 2.4vw, 26px);
  font-weight: 600;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.svc-cta p {
  color: var(--text-dim);
  font-size: 15px;
  margin-bottom: 22px;
}

/* Pager (prev / next) */
.svc-pager {
  margin-top: 48px;
  padding-top: 36px;
  border-top: 1px solid var(--card-border);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.svc-pager-link {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 18px 22px;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-sm);
  text-decoration: none;
  color: var(--text);
  transition: border-color var(--t), background var(--t), transform var(--t);
}
.svc-pager-link:hover {
  border-color: var(--accent);
  background: var(--card-bg-hover);
  transform: translateY(-2px);
}
.svc-pager-next { text-align: right; align-items: flex-end; }
.svc-pager-dir {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
}
.svc-pager-title {
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
}
@media (max-width: 640px) {
  .svc-pager { grid-template-columns: 1fr; }
  .svc-pager-next { text-align: left; align-items: flex-start; }
}

/* =========================================================
   BRAND GALLERY — Modern Masonry
   ========================================================= */
.gallery-section {
  padding: 90px 0 110px;
  background:
    radial-gradient(900px 480px at 50% -10%, rgba(212,164,68,0.07), transparent 60%),
    var(--bg);
  position: relative;
}
.gallery-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
}
.gallery-head .eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}
.gallery-head h2 {
  font-size: clamp(30px, 4.2vw, 48px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 18px;
  color: var(--text);
}
.gallery-head h2 span { color: var(--accent); }
.gallery-head p {
  color: var(--text-dim);
  font-size: 16px;
  line-height: 1.7;
  max-width: 580px;
  margin: 0 auto;
}

/* Masonry — CSS columns yaklaşımı (en stabili) */
.gallery-masonry {
  column-count: 1;
  column-gap: 14px;
}
@media (min-width: 560px)  { .gallery-masonry { column-count: 2; column-gap: 16px; } }
@media (min-width: 960px)  { .gallery-masonry { column-count: 3; column-gap: 18px; } }
@media (min-width: 1280px) { .gallery-masonry { column-count: 4; column-gap: 20px; } }

.gallery-item {
  display: block;
  width: 100%;
  break-inside: avoid;
  -webkit-column-break-inside: avoid;
  page-break-inside: avoid;
  margin: 0 0 14px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  position: relative;
  background: var(--bg-elev);
  border: 1px solid var(--card-border);
  cursor: zoom-in;
  transform: translateZ(0);
  transition: transform 0.4s var(--t-slow), border-color var(--t), box-shadow var(--t);
}
@media (min-width: 960px)  { .gallery-item { margin-bottom: 18px; } }
@media (min-width: 1280px) { .gallery-item { margin-bottom: 20px; } }

.gallery-item img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: transform 0.85s cubic-bezier(0.22, 0.7, 0.3, 1), filter 0.4s var(--t);
}
.gallery-item:hover {
  border-color: var(--accent);
  box-shadow:
    0 22px 50px -22px rgba(0,0,0,0.7),
    0 0 0 1px var(--accent-soft);
}
.gallery-item:hover img { transform: scale(1.06); }

/* Aspect-ratio varyasyonları — boş haldeyken bile masonry görünümü */
.gallery-item[data-ratio="3-4"]  { aspect-ratio: 3/4; }
.gallery-item[data-ratio="4-5"]  { aspect-ratio: 4/5; }
.gallery-item[data-ratio="1-1"]  { aspect-ratio: 1/1; }
.gallery-item[data-ratio="4-3"]  { aspect-ratio: 4/3; }
.gallery-item[data-ratio="3-2"]  { aspect-ratio: 3/2; }
.gallery-item[data-ratio="2-3"]  { aspect-ratio: 2/3; }
.gallery-item[data-ratio="9-16"] { aspect-ratio: 9/16; }

/* Görsel yüklendikten sonra (img varsa) aspect-ratio'yu kaldır → doğal yükseklik */
.gallery-item.has-img { aspect-ratio: auto; }
.gallery-item.has-img img { height: auto; }

/* Overlay (caption) */
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(10,8,6,0.92) 100%);
  opacity: 0;
  transition: opacity var(--t);
  display: flex;
  align-items: flex-end;
  padding: 18px 18px 16px;
  pointer-events: none;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-caption {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-bright);
  font-weight: 600;
}

/* Boş placeholder durumu (görsel yüklenemediğinde) */
.gallery-item.is-empty {
  background:
    repeating-linear-gradient(
      45deg,
      rgba(255,215,140,0.025),
      rgba(255,215,140,0.025) 10px,
      rgba(255,215,140,0.055) 10px,
      rgba(255,215,140,0.055) 20px
    ),
    var(--bg-mid);
  border: 1px dashed var(--card-border-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: default;
  color: var(--text-mute);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-align: center;
  padding: 14px;
}
.gallery-item.is-empty img { display: none; }
.gallery-item.is-empty:hover {
  border-color: var(--accent-soft);
  box-shadow: none;
  transform: none;
}
.gallery-item.is-empty::before {
  content: '+ Görsel ekleyin';
}

/* "Daha fazla" CTA satırı */
.gallery-cta {
  text-align: center;
  margin-top: 48px;
}

/* Gallery Lightbox */
.glb {
  position: fixed; inset: 0;
  background: rgba(5,4,2,0.96);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  z-index: 300;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 28px;
  animation: glbFadeIn 0.25s ease;
}
@keyframes glbFadeIn { from { opacity: 0; } to { opacity: 1; } }
.glb.open { display: flex; }
.glb-img {
  max-width: 92vw;
  max-height: 86vh;
  border-radius: var(--radius-sm);
  box-shadow: 0 40px 100px rgba(0,0,0,0.7);
  object-fit: contain;
}
.glb-close, .glb-nav {
  position: absolute;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  color: #fff;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  transition: background var(--t), transform var(--t);
}
.glb-close { top: 20px; right: 24px; }
.glb-nav { top: 50%; transform: translateY(-50%); }
.glb-prev { left: 24px; }
.glb-next { right: 24px; }
.glb-close:hover, .glb-nav:hover { background: rgba(255,255,255,0.18); }
.glb-nav:hover { transform: translateY(-50%) scale(1.06); }
@media (max-width: 640px) {
  .glb-close { top: 14px; right: 14px; width: 40px; height: 40px; }
  .glb-nav { width: 40px; height: 40px; }
  .glb-prev { left: 10px; }
  .glb-next { right: 10px; }
}

/* =========================================================
   MOBILE OPTIMIZATION — Kapsamlı düzeltmeler
   ========================================================= */
@media (max-width: 768px) {
  /* Container padding mobilde daha sıkı */
  .container { padding-left: 18px; padding-right: 18px; }

  /* Section paddingleri mobilde sıkıştır */
  .section { padding: 56px 0; }
  .section-sm { padding: 40px 0; }

  /* Hero başlık ölçeği — mobilde daha kompakt */
  .hero h1, .hero-card-main h1 {
    font-size: clamp(28px, 8vw, 40px) !important;
    line-height: 1.1;
  }
  .hero p, .hero-card-main p {
    font-size: 14px !important;
    line-height: 1.55;
  }
  .hero { padding: 60px 0 40px; min-height: auto; }

  /* Hero grid: mobilde tek kolon, story slider altta */
  .hero-grid {
    grid-template-columns: 1fr !important;
    grid-template-areas: "main" "stats" "stories" !important;
    gap: 22px;
  }
  .hero-card-main { grid-area: main; padding: 0; }
  .hero-stats-row { grid-area: stats; }
  .hero-stories-wrap { grid-area: stories; }

  /* Hero stats: mobilde 3 kolon, küçük metin */
  .hero-stats-row {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 10px;
  }
  .hero-stat-num {
    font-size: clamp(20px, 6vw, 28px) !important;
  }
  .hero-stat-label {
    font-size: 10px !important;
    letter-spacing: 0.05em;
  }

  /* Hero stories: yatay scroll mobilde */
  .hero-stories-wrap { max-height: none; overflow: visible; }
  .hero-stories-wrap::before,
  .hero-stories-wrap::after { display: none !important; }
  .hero-stories {
    display: flex !important;
    flex-direction: row !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    scroll-snap-type: x mandatory;
    gap: 12px;
    padding: 4px 0 12px;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-x;
    scrollbar-width: none;
  }
  .hero-stories::-webkit-scrollbar { display: none; }
  .hero-stories::after { display: none; }
  .story-video-card {
    flex: 0 0 70vw;
    max-width: 240px;
    scroll-snap-align: start;
    position: relative;
    /* swipe touch'ı iframe'in yakalamasını engellemek için */
    touch-action: pan-x;
  }
  /* iframe touch'ı yutuyor → mobilde pointer-event'leri kapat */
  .story-video-card iframe {
    pointer-events: none;
  }
  /* iOS Safari için ek güvence: iframe üstüne transparent touch-blocker */
  .story-touch-blocker {
    position: absolute;
    inset: 0;
    z-index: 3;
    background: transparent;
    touch-action: pan-x;
    cursor: pointer;
  }
  /* Toggle butonu dokunulabilir kalsın (video oynat/durdur) */
  .story-video-card .story-toggle {
    pointer-events: auto;
    touch-action: manipulation;
    z-index: 5;
  }
  /* Story label da blocker üzerinde görünür */
  .story-video-card .story-label { z-index: 4; }
  .hero-stories-nav { display: none !important; }

  /* Page-hero kompakt */
  .page-hero { padding: 50px 0 36px; }
  .page-hero h1 { font-size: clamp(28px, 8vw, 40px); }
  .page-hero p { font-size: 14px; }
  .breadcrumbs { font-size: 11px; }

  /* Header logosu küçült, hamburger büyüt */
  .site-header { padding: 12px 0; }
  .logo-img { height: 36px; }
  .header-cta { display: none; }
  .lang-switch { display: none; }
  .menu-toggle { display: flex; }

  /* Mobile menü içi: tek kolonlu, büyük tapları */
  .mobile-menu nav { padding: 24px 0; }
  .mobile-menu a { font-size: 19px; padding: 14px 0; }
  .mobile-group a { font-size: 15px !important; padding: 8px 0 !important; }

  /* Marketplaces grid — 3 kolon mobile (6 logo / 2 satır) */
  .marketplaces-grid { grid-template-columns: repeat(3, 1fr) !important; gap: 14px; }
  .footer-marketplaces-grid { grid-template-columns: repeat(3, 1fr) !important; }

  /* Brand banners — 2 kolon */
  .brand-banners-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 12px; }
  .bb-img { aspect-ratio: 1/1; }

  /* Feature-cards mobilde 1 kolon, daha sıkı */
  .feature-cards { grid-template-columns: 1fr !important; gap: 14px; }
  .feature-card-img { aspect-ratio: 16/10; }

  /* Services list */
  .services-list { grid-template-columns: 1fr !important; gap: 14px; }
  .service-card { padding: 22px; }
  .svc-icon { width: 80px !important; height: 80px !important; }

  /* CTA band */
  .cta-band { min-height: auto; }
  .cta-band-inner { padding: 48px 20px; }
  .cta-band h2 { font-size: clamp(24px, 7vw, 36px); }
  .cta-band p { font-size: 14px; }
  .cta-band .cta-ctas { flex-direction: column; align-items: stretch; }
  .cta-band .btn { width: 100%; }

  /* Stories row */
  .stories-row { grid-template-columns: repeat(2, 1fr) !important; gap: 12px; }
  .story-card { aspect-ratio: 9/16; }

  /* Section başlıkları */
  .section-title { font-size: clamp(24px, 7vw, 36px) !important; }
  .section-subtitle { font-size: 14px; }

  /* Stats grid */
  .stats-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 14px; }
  .stat-num { font-size: clamp(28px, 9vw, 40px); }
  .stats-wrap { grid-template-columns: 1fr !important; gap: 28px; }

  /* About intro mobilde tek kolon, görsel altta */
  .about-intro { grid-template-columns: 1fr !important; gap: 24px; }
  .about-img { aspect-ratio: 4/3; }
  .about-intro h2 { font-size: clamp(24px, 7vw, 34px); }

  /* Collections grid */
  .collections-grid { grid-template-columns: 1fr !important; gap: 16px; }

  /* Process flow mobilde dikey */
  .process { grid-template-columns: 1fr !important; gap: 14px; }
  .process-arrow { display: none; }
  .process-step { padding: 18px; }

  /* Service detay sayfası */
  .svc-eyebrow { font-size: 10px; padding: 6px 12px; }
  .svc-featured-section { padding: 36px 0 12px; }
  .svc-featured { aspect-ratio: 4/3; }
  .svc-content { padding: 0 4px; }
  .svc-lead { font-size: 15px; padding-bottom: 24px; margin-bottom: 24px; }
  .svc-block { margin-bottom: 22px; }
  .svc-block h3 { font-size: clamp(18px, 5vw, 22px); }
  .svc-block p { font-size: 14.5px; }
  .svc-stats { padding: 22px 18px; gap: 18px; }
  .svc-cta { padding: 28px 20px; margin: 36px 0; }
  .svc-cta h3 { font-size: clamp(18px, 5vw, 22px); }
  .svc-cta p { font-size: 14px; }
  .svc-pager { grid-template-columns: 1fr; gap: 10px; }

  /* Gallery — daha sıkı */
  .gallery-section { padding: 56px 0 70px; }
  .gallery-head { margin-bottom: 36px; }
  .gallery-head h2 { font-size: clamp(26px, 7vw, 36px); }
  .gallery-head p { font-size: 14px; }
  .gallery-masonry { column-count: 2 !important; column-gap: 10px; }
  .gallery-item { margin-bottom: 10px; }

  /* Iletişim formu */
  .contact-grid { grid-template-columns: 1fr !important; gap: 28px; }
  .form-row.two { grid-template-columns: 1fr !important; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr !important; gap: 28px; text-align: center; }
  .footer-marketplaces { text-align: center; }
  .footer-marketplaces-grid { max-width: 320px; margin: 0 auto; }
  .site-footer { padding: 40px 0 20px; }
  .footer-col ul { padding-left: 0; list-style: none; }
  .footer-col h6 { font-size: 12px; letter-spacing: 0.18em; }

  /* Tipografi mobilde küçük */
  body { font-size: 15px; line-height: 1.6; }
  h2 { font-size: clamp(24px, 7vw, 34px); line-height: 1.15; }

  /* Stories-head mobilde dikey */
  .stories-head { grid-template-columns: 1fr !important; gap: 16px; }

  /* Logo band mobil */
  .logo-band { grid-template-columns: repeat(3, 1fr) !important; gap: 14px; }

  /* Bottom features (eğer varsa) */
  .bottom-features { grid-template-columns: 1fr !important; }
}

@media (max-width: 480px) {
  /* Daha küçük ekranlar */
  .container { padding-left: 16px; padding-right: 16px; }
  .section { padding: 44px 0; }
  .hero h1, .hero-card-main h1 { font-size: clamp(24px, 8vw, 32px) !important; }
  .stories-row, .brand-banners-grid { grid-template-columns: 1fr 1fr !important; }
  .marketplaces-grid, .footer-marketplaces-grid { grid-template-columns: repeat(3, 1fr) !important; gap: 10px; }
  .gallery-masonry { column-count: 1 !important; }
  .story-video-card { flex: 0 0 78vw; }
  .svc-stats { padding: 18px 14px; }
  .footer-marketplace-logo img { max-height: 22px; }
}

/* iOS Safari %100 yükseklik düzeltmesi */
@supports (-webkit-touch-callout: none) {
  .hero { min-height: -webkit-fill-available; }
}

/* Touch davranışı için tıklanır alanlar minimum 44px */
@media (hover: none) and (pointer: coarse) {
  .btn, .nav-toggle, .menu-toggle, .lang-switch, .gallery-item, .collection-card, .service-card { min-height: 44px; }
  .has-dropdown:hover .nav-dropdown { opacity: 0; visibility: hidden; pointer-events: none; }
  .has-dropdown.open .nav-dropdown { opacity: 1; visibility: visible; pointer-events: auto; }
}

/* ============================================================
   LANGUAGE SWITCHER DROPDOWN (TR/EN/DE)
============================================================ */
.lang-switch-wrap { position: relative; display: inline-block; }
.lang-switch { display: inline-flex; align-items: center; gap: 6px; padding: 8px 12px; background: transparent; color: inherit; border: 1px solid rgba(0,0,0,0.18); border-radius: 999px; font: 500 12px/1 'Space Grotesk', system-ui, sans-serif; letter-spacing: 0.08em; cursor: pointer; transition: all .2s; }
.site-header:not(.scrolled) .lang-switch { border-color: rgba(255,255,255,0.35); color: #fff; }
.page-light .lang-switch, .site-header.scrolled .lang-switch { border-color: rgba(0,0,0,0.2); color: var(--text-dark, #111); }
.lang-switch:hover { background: rgba(255,255,255,0.08); }
.page-light .lang-switch:hover, .site-header.scrolled .lang-switch:hover { background: rgba(0,0,0,0.05); }
.lang-switch svg { flex: 0 0 auto; }
.lang-dropdown { position: absolute; top: calc(100% + 8px); right: 0; min-width: 160px; background: #fff; color: #111; border-radius: 12px; box-shadow: 0 12px 40px rgba(0,0,0,0.15); padding: 6px; opacity: 0; visibility: hidden; transform: translateY(-6px); transition: all .18s ease; z-index: 1100; border: 1px solid rgba(0,0,0,0.06); }
.lang-switch-wrap.open .lang-dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.lang-dropdown a { display: flex; align-items: center; gap: 10px; padding: 10px 12px; border-radius: 8px; font: 500 13px/1 'Space Grotesk', sans-serif; color: #111; text-decoration: none; transition: background .15s; }
.lang-dropdown a:hover { background: rgba(0,0,0,0.05); }
.lang-dropdown a.active { background: var(--accent, #c9a84c); color: #fff; }
.lang-flag { display: inline-block; width: 22px; height: 16px; border-radius: 2px; background-size: cover; background-position: center; overflow: hidden; flex: 0 0 auto; box-shadow: 0 0 0 1px rgba(0,0,0,0.06); }
.lang-flag-de { background: linear-gradient(to bottom, #000 0 33.3%, #DD0000 33.3% 66.6%, #FFCE00 66.6% 100%); }
.lang-flag-en { background: linear-gradient(45deg, #012169 25%, transparent 25%, transparent 75%, #012169 75%), linear-gradient(-45deg, #012169 25%, #fff 25%, #fff 75%, #012169 75%), #C8102E; background-size: 100% 100%; position: relative; }
.lang-flag-en::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to bottom, transparent 38%, #C8102E 38% 62%, transparent 62%), linear-gradient(to right, transparent 38%, #C8102E 38% 62%, transparent 62%); }
.lang-flag-tr { background: #E30A17 url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 20'><circle cx='12' cy='10' r='4' fill='white'/><circle cx='13.2' cy='10' r='3.2' fill='%23E30A17'/><polygon points='17.5,10 14.7,10.9 16.4,8.5 16.4,11.5 14.7,9.1' fill='white'/></svg>") center / 80% no-repeat; }

/* ============================================================
   COOKIE CONSENT BANNER (DSGVO / TTDSG uyumlu)
============================================================ */
.cookie-banner { position: fixed; left: 16px; right: 16px; bottom: 16px; max-width: 720px; margin: 0 auto; background: #fff; color: #111; border-radius: 14px; box-shadow: 0 16px 60px rgba(0,0,0,0.22); padding: 22px 24px; font: 400 14px/1.5 'Space Grotesk', system-ui, sans-serif; z-index: 9999; transform: translateY(20px); opacity: 0; pointer-events: none; transition: all .3s ease; border: 1px solid rgba(0,0,0,0.06); }
.cookie-banner.show { transform: translateY(0); opacity: 1; pointer-events: auto; }
.cookie-banner-title { font: 700 16px/1.3 'Space Grotesk', sans-serif; margin: 0 0 6px; color: #111; }
.cookie-banner-text { margin: 0 0 14px; color: #444; font-size: 13.5px; }
.cookie-banner-text a { color: var(--accent, #c9a84c); text-decoration: underline; }
.cookie-banner-actions { display: flex; flex-wrap: wrap; gap: 10px; }
.cookie-btn { flex: 1 1 auto; min-width: 100px; padding: 11px 16px; border-radius: 999px; font: 600 13px/1 'Space Grotesk', sans-serif; letter-spacing: 0.04em; cursor: pointer; border: none; transition: all .2s; text-align: center; }
.cookie-btn-accept { background: #111; color: #fff; }
.cookie-btn-accept:hover { background: #000; }
.cookie-btn-reject { background: #f3f3f3; color: #111; }
.cookie-btn-reject:hover { background: #e9e9e9; }
.cookie-btn-settings { background: transparent; color: #111; border: 1px solid rgba(0,0,0,0.15); }
.cookie-btn-settings:hover { background: rgba(0,0,0,0.04); }

/* Cookie settings modal */
.cookie-modal-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.55); z-index: 10000; display: none; align-items: center; justify-content: center; padding: 16px; }
.cookie-modal-overlay.show { display: flex; }
.cookie-modal { background: #fff; color: #111; border-radius: 16px; max-width: 560px; width: 100%; max-height: 86vh; overflow-y: auto; padding: 28px; box-shadow: 0 24px 80px rgba(0,0,0,0.35); font-family: 'Space Grotesk', system-ui, sans-serif; }
.cookie-modal h3 { font: 700 20px/1.3 'Space Grotesk', sans-serif; margin: 0 0 8px; }
.cookie-modal p { margin: 0 0 18px; color: #555; font-size: 14px; line-height: 1.55; }
.cookie-category { padding: 16px 0; border-top: 1px solid rgba(0,0,0,0.08); }
.cookie-category:first-of-type { border-top: 0; }
.cookie-category-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 6px; }
.cookie-category-title { font: 600 14px/1.2 'Space Grotesk', sans-serif; margin: 0; }
.cookie-category-desc { font-size: 12.5px; color: #666; margin: 0; line-height: 1.5; }
.cookie-toggle { position: relative; width: 42px; height: 24px; flex: 0 0 auto; }
.cookie-toggle input { opacity: 0; width: 0; height: 0; }
.cookie-toggle-slider { position: absolute; inset: 0; background: #ccc; border-radius: 12px; cursor: pointer; transition: .25s; }
.cookie-toggle-slider::before { content: ''; position: absolute; top: 3px; left: 3px; width: 18px; height: 18px; background: #fff; border-radius: 50%; transition: .25s; }
.cookie-toggle input:checked + .cookie-toggle-slider { background: var(--accent, #c9a84c); }
.cookie-toggle input:checked + .cookie-toggle-slider::before { transform: translateX(18px); }
.cookie-toggle input:disabled + .cookie-toggle-slider { background: var(--accent, #c9a84c); opacity: 0.6; cursor: not-allowed; }
.cookie-modal-actions { display: flex; gap: 10px; margin-top: 22px; flex-wrap: wrap; }
.cookie-modal-actions .cookie-btn { flex: 1; }

/* Cookie settings re-open floating button */
.cookie-fab { position: fixed; left: 16px; bottom: 16px; width: 42px; height: 42px; border-radius: 50%; background: #fff; border: 1px solid rgba(0,0,0,0.12); box-shadow: 0 6px 20px rgba(0,0,0,0.12); cursor: pointer; z-index: 9998; display: none; align-items: center; justify-content: center; color: #555; }
.cookie-fab.show { display: flex; }
.cookie-fab:hover { color: #111; }

/* ============================================================
   LEGAL PAGES (Impressum, Datenschutz, Cookie, AGB)
============================================================ */
.legal-page { padding: 60px 0 80px; }
.legal-page .container { max-width: 880px; }
.legal-page h1 { font: 700 38px/1.2 'Space Grotesk', sans-serif; margin: 0 0 8px; color: var(--text-dark, #111); }
.legal-page .legal-meta { color: #777; font-size: 13px; margin: 0 0 36px; }
.legal-page h2 { font: 700 22px/1.3 'Space Grotesk', sans-serif; margin: 36px 0 12px; color: var(--text-dark, #111); padding-top: 6px; border-top: 1px solid rgba(0,0,0,0.08); padding-top: 28px; }
.legal-page h2:first-of-type { border-top: 0; padding-top: 0; }
.legal-page h3 { font: 600 16px/1.4 'Space Grotesk', sans-serif; margin: 22px 0 8px; color: var(--text-dark, #111); }
.legal-page p, .legal-page li { font-size: 15px; line-height: 1.75; color: #333; }
.legal-page ul, .legal-page ol { padding-left: 22px; margin: 8px 0 16px; }
.legal-page li { margin-bottom: 6px; }
.legal-page a { color: var(--accent, #c9a84c); text-decoration: underline; }
.legal-page address { font-style: normal; line-height: 1.7; color: #333; font-size: 15px; }
.legal-page .legal-box { background: #fafafa; border: 1px solid rgba(0,0,0,0.06); border-radius: 12px; padding: 18px 22px; margin: 18px 0; }

/* Footer extension for legal links */
.footer-legal-row { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 18px; margin-top: 18px; display: flex; flex-wrap: wrap; gap: 8px 22px; justify-content: center; }
.footer-legal-row a { color: rgba(255,255,255,0.75); text-decoration: none; font-size: 12.5px; letter-spacing: 0.04em; transition: color .2s; }
.footer-legal-row a:hover { color: #fff; }

@media (max-width: 640px) {
  .cookie-banner { padding: 18px 18px; left: 8px; right: 8px; bottom: 8px; }
  .cookie-btn { flex: 1 1 100%; }
  .lang-dropdown { right: -8px; }
  .legal-page h1 { font-size: 28px; }
}
