/* ════════════════════════════════════════════════════════════
   FikirMedya — Ortak Stil  (videodan birebir: #C8007B magenta)
   ════════════════════════════════════════════════════════════ */
:root {
  --pink:       #EC008C;
  --pink-soft:  #E0249A;
  --ink:        #0A0A0C;
  --ink-2:      #131317;
  --white:      #FFFFFF;
  --paper:      #F2F2F0;
  --ink-soft:   #C9C9D0;
  --muted:      #8A8A92;
  --line:       #26262C;
  --ff-display: 'Playfair Display', serif;
  --ff-body:    'DM Sans', sans-serif;
  --max: 1180px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

* , *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; scroll-padding-top: 80px; }
body {
  font-family: var(--ff-body);
  background: var(--ink);
  color: var(--white);
  font-size: 16px; line-height: 1.6;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul { list-style: none; }

/* ── ANIMASYON KEYFRAME'LERİ ──────────────────────────────── */
@keyframes spin   { to { transform: rotate(360deg); } }
@keyframes spinR  { to { transform: rotate(-360deg); } }
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }
@keyframes fadeUp { from { opacity: 0; transform: translateY(40px); } to { opacity: 1; transform: none; } }
@keyframes shimmer { to { background-position: 200% center; } }
@keyframes pulseGlow {
  0%,100% { box-shadow: 0 0 0 0 rgba(200,0,123,0.5); }
  50%     { box-shadow: 0 0 0 16px rgba(200,0,123,0); }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
}

/* ── PAGE LOADER ──────────────────────────────────────────── */
.loader {
  position: fixed; inset: 0; z-index: 999;
  background: var(--ink);
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.6s var(--ease), visibility 0.6s;
}
.loader.done { opacity: 0; visibility: hidden; }
.loader-star {
  width: 56px; height: 56px; color: var(--pink);
  animation: spin 2.4s linear infinite;
}

/* ── NAV ──────────────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 28px; min-height: 64px;
  transition: background 0.35s, border-color 0.35s;
  border-bottom: 1px solid transparent;
}
.nav.solid { background: rgba(10,10,12,0.82); backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px); }
.nav.solid.scrolled { border-color: var(--line); }
.nav-logo { display: flex; align-items: center; flex-shrink: 0; z-index: 201; }
.logo-star { width: 38px; height: 36px; object-fit: contain; display: block; }

.hamburger {
  width: 44px; height: 44px; z-index: 201;
  display: flex; flex-direction: column; justify-content: center; gap: 5px;
  padding: 10px; border-radius: 6px; flex-shrink: 0;
}
.hamburger span { display: block; width: 24px; height: 2.5px; border-radius: 2px; background: var(--white); transition: transform 0.35s var(--ease), opacity 0.25s, background 0.3s; transform-origin: center; }
.nav.light .hamburger span { background: var(--ink); }
.hamburger.active span { background: var(--white); }
.hamburger.active span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ── MENÜ OVERLAY ─────────────────────────────────────────── */
.menu {
  position: fixed; inset: 0; z-index: 199;
  background: var(--pink);
  display: flex; flex-direction: column; justify-content: center; align-items: flex-end;
  gap: 2px; padding: 90px 8vw 60px;
  clip-path: circle(0% at calc(100% - 50px) 44px);
  transition: clip-path 0.7s var(--ease);
  pointer-events: none;
}
.menu.open { clip-path: circle(150% at calc(100% - 50px) 44px); pointer-events: auto; }
.menu-arrow {
  position: absolute; left: 8vw; top: 50%; transform: translateY(-50%);
  font-size: clamp(60px, 12vw, 120px); color: var(--ink); line-height: 0;
  opacity: 0; transition: opacity 0.4s 0.3s;
  user-select: none;
}
.menu.open .menu-arrow { opacity: 1; }
.menu a {
  font-family: var(--ff-display); font-weight: 700; font-style: italic;
  font-size: clamp(26px, 4.4vw, 44px);
  color: var(--white); padding: 6px 0; line-height: 1.15;
  opacity: 0; transform: translateX(30px);
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease), letter-spacing 0.25s;
}
.menu.open a { opacity: 1; transform: none; }
.menu a:hover { letter-spacing: 0.5px; }
.menu a.active { position: relative; }
.menu a.active::after { content: ''; display: inline-block; width: 0.5em; height: 0.5em; margin-left: 8px; vertical-align: 0.15em; background: url('fm-asterisk-logo.png') center/contain no-repeat; }
/* sıralı giriş */
.menu.open a:nth-child(2){transition-delay:.18s}
.menu.open a:nth-child(3){transition-delay:.23s}
.menu.open a:nth-child(4){transition-delay:.28s}
.menu.open a:nth-child(5){transition-delay:.33s}
.menu.open a:nth-child(6){transition-delay:.38s}
.menu.open a:nth-child(7){transition-delay:.43s}
.menu.open a:nth-child(8){transition-delay:.48s}
.menu.open a:nth-child(9){transition-delay:.53s}
.menu.open a:nth-child(10){transition-delay:.58s}

/* ── BÖLÜM YUVARLAK GEÇİŞLERİ ─────────────────────────────── */
.round-top, .round-bottom { position: relative; }
.round-top::before {
  content: ''; position: absolute; top: -1px; left: 0; right: 0; height: 56px;
  background: inherit; border-radius: 0 0 50% 50% / 0 0 100% 100%;
}

/* ── PAGE HEADER (alt sayfa başlığı) ──────────────────────── */
.page-head {
  padding: 140px 28px clamp(48px, 7vw, 80px);
  position: relative; overflow: hidden;
}
.page-head.dark { background: var(--ink); }
.page-head.pink { background: var(--pink); }
.page-head-inner { max-width: var(--max); margin: 0 auto; position: relative; z-index: 2; }
.breadcrumb { font-size: 14px; font-weight: 600; margin-bottom: 22px; opacity: 0.9; }
.breadcrumb .sep { color: var(--pink); margin: 0 4px; }
.page-head.pink .breadcrumb .sep { color: var(--white); }
.breadcrumb .cur { color: var(--pink); }
.page-head.pink .breadcrumb .cur { color: var(--ink); }
.page-title {
  font-family: var(--ff-display); font-weight: 800;
  font-size: clamp(36px, 7vw, 76px); line-height: 1.0; letter-spacing: -2px;
  color: var(--pink);
}
.page-head.pink .page-title { color: var(--white); }
.page-title.white { color: var(--white); }
.page-lead {
  font-size: clamp(15px, 1.6vw, 18px); font-weight: 300; line-height: 1.85;
  max-width: 620px; margin-top: 26px; color: var(--ink-soft);
}
.page-head.pink .page-lead { color: var(--white); opacity: 0.95; }
/* dekoratif pembe outline şekil */
.deco-shape {
  position: absolute; top: 40px; right: -60px; width: 420px; height: 320px;
  border: 1.5px solid var(--pink); border-radius: 28px;
  transform: rotate(-12deg); opacity: 0.5; z-index: 1;
  pointer-events: none;
}
.page-head.pink .deco-shape { border-color: rgba(255,255,255,0.4); }

/* ── BUTONLAR ─────────────────────────────────────────────── */
.btn-pill {
  display: inline-flex; align-items: center; gap: 10px;
  border: 1px solid var(--line); border-radius: 100px;
  padding: 15px 34px; color: var(--white); font-weight: 500; font-size: 15px;
  transition: border-color 0.25s, background 0.25s, gap 0.25s;
}
.btn-pill:hover { border-color: var(--pink); background: rgba(200,0,123,0.1); gap: 16px; }
.btn-pill .arr { color: var(--pink); }
.btn-fill {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--pink); color: var(--white);
  font-family: var(--ff-display); font-weight: 700; font-style: italic; font-size: 16px;
  padding: 15px 38px; border-radius: 100px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn-fill:hover { transform: translateY(-2px); box-shadow: 0 12px 34px rgba(200,0,123,0.4); }
.read-link {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--pink); font-weight: 600; font-size: 15px; transition: gap 0.2s;
}
.read-link:hover { gap: 12px; }

/* ── İLETİŞİM FORMU (her sayfada) ─────────────────────────── */
.cta-form { background: var(--ink); padding: clamp(64px,10vw,110px) 24px 40px; }
.cta-form-inner { max-width: 660px; margin: 0 auto; }
.cta-form-title { font-family: var(--ff-display); font-weight: 800; font-size: clamp(24px,3.2vw,36px); text-align: center; margin-bottom: clamp(36px,5vw,52px); }
.field { margin-bottom: 30px; }
.field label { display: block; font-size: 14px; color: var(--muted); margin-bottom: 10px; }
.field input, .field textarea {
  width: 100%; background: transparent; border: none; border-bottom: 1px solid var(--line);
  color: var(--white); font-family: inherit; font-size: 16px; padding: 10px 0;
  transition: border-color 0.25s;
}
.field input:focus, .field textarea:focus { outline: none; border-color: var(--pink); }
.field textarea { resize: vertical; min-height: 80px; }
.cta-form .submit-wrap { text-align: center; margin-top: 8px; }
.contact-row {
  max-width: 660px; margin: 36px auto 0; padding-top: 30px;
  border-top: 1px solid var(--line);
  display: flex; flex-wrap: wrap; gap: 28px 48px; justify-content: center;
}
.contact-row a { display: inline-flex; align-items: center; gap: 10px; font-size: 15px; }
.contact-row .ic { color: var(--pink); width: 18px; height: 18px; display: inline-block; vertical-align: middle; flex-shrink: 0; }

/* ── FOOTER ───────────────────────────────────────────────── */
.foot { background: var(--paper); color: var(--ink); padding: clamp(40px,6vw,56px) 28px; }
.foot-inner { max-width: var(--max); margin: 0 auto; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 24px; }
.foot-logo { font-family: var(--ff-display); font-weight: 800; font-size: 22px; letter-spacing: -0.3px; display: inline-flex; align-items: center; gap: 8px; }
.foot-logo .star { color: var(--pink); }
.foot-copy { font-size: 14px; color: var(--muted); }
.foot-social { display: flex; gap: 12px; }
.foot-social a {
  width: 38px; height: 38px; border-radius: 50%; background: var(--ink);
  display: flex; align-items: center; justify-content: center; color: var(--white);
  transition: background 0.25s, transform 0.2s;
}
.foot-social a:hover { background: var(--pink); transform: translateY(-3px); }
.foot-social svg { width: 17px; height: 17px; }

/* ── REVEAL ───────────────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.75s var(--ease), transform 0.75s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-delay="1"]{transition-delay:.08s}
.reveal[data-delay="2"]{transition-delay:.16s}
.reveal[data-delay="3"]{transition-delay:.24s}
.reveal[data-delay="4"]{transition-delay:.32s}

/* ── RESPONSIVE ───────────────────────────────────────────── */
@media (max-width: 700px) {
  .nav { padding: 14px 20px; }
  .page-head { padding: 120px 20px 48px; }
  .deco-shape { display: none; }
  .foot-inner { flex-direction: column; text-align: center; }
  .menu { align-items: center; padding: 90px 24px 60px; }
  .menu-arrow { display: none; }
}

/* ════════════════════════════════════════════════════════════
   SAYFA-ÖZGÜ STİLLER
   ════════════════════════════════════════════════════════════ */

/* ── HERO (anasayfa) ──────────────────────────────────────── */
.hero {
  min-height: 100svh; min-height: 100vh;
  background: linear-gradient(180deg, #eef2f3 0%, #dfe8ea 100%);
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden; padding: 90px 24px 50px;
}
.hero-stage { position: relative; width: min(90vmin, 720px); aspect-ratio: 1; display: flex; align-items: center; justify-content: center; }
.hero-ring { position: absolute; inset: 0; animation: spin 44s linear infinite; }
.hero-ring svg { width: 100%; height: 100%; overflow: visible; }
.hero-ring text { font-family: var(--ff-display); font-weight: 800; font-size: 72px; letter-spacing: -0.5px; fill: var(--ink); }
.hero-ring .ring-accent { fill: var(--pink); font-style: italic; }
/* "sıkılmadınız mı?" pembe vurgu textPath içinde mümkün değil; tamamı koyu, marka uyumlu */
.hero-island {
  width: 56%; aspect-ratio: 1; position: relative;
  animation: floaty 7s ease-in-out infinite;
  filter: drop-shadow(0 18px 30px rgba(60,90,95,0.20));
}
.isle-svg { width: 100%; height: 100%; display: block; overflow: visible; }

/* güneş yavaş nabız */
.sun { transform-origin: 300px 90px; animation: sunPulse 6s ease-in-out infinite; }
@keyframes sunPulse { 0%,100% { transform: scale(1); opacity: 1; } 50% { transform: scale(1.06); opacity: .92; } }

/* bulutlar yatay sürüklenme */
.cloud-a { animation: drift 26s linear infinite; }
.cloud-b { animation: drift 38s linear infinite; animation-delay: -10s; }
@keyframes drift {
  0%   { transform: translateX(-70px); opacity: 0; }
  12%  { opacity: .85; }
  88%  { opacity: .85; }
  100% { transform: translateX(150px); opacity: 0; }
}

/* kuşlar süzülerek geçer */
.birds { animation: fly 14s ease-in-out infinite; }
@keyframes fly {
  0%   { transform: translate(-40px, 20px); opacity: 0; }
  15%  { opacity: .9; }
  85%  { opacity: .9; }
  100% { transform: translate(120px, -30px); opacity: 0; }
}

/* dalgalar yatay kayar */
.wave { animation: waveMove linear infinite; }
.w1 { animation-duration: 7s; }
.w2 { animation-duration: 9s; animation-direction: reverse; }
.w3 { animation-duration: 11s; }
@keyframes waveMove { to { transform: translateX(-80px); } }

/* güneş yansıması titreşir */
.sun-reflect { animation: shimmerY 3.5s ease-in-out infinite; transform-origin: center; }
@keyframes shimmerY { 0%,100% { opacity: 1; transform: scaleX(1); } 50% { opacity: .6; transform: scaleX(1.08); } }

/* ada hafif sallanır (suda yüzme) */
.isle-group { transform-origin: 200px 300px; animation: bob 7s ease-in-out infinite; }
@keyframes bob { 0%,100% { transform: rotate(-1deg) translateY(0); } 50% { transform: rotate(1deg) translateY(-3px); } }
.isle-shadow { animation: shadowPulse 7s ease-in-out infinite; }
@keyframes shadowPulse { 0%,100% { transform: scaleX(1); opacity: .25; } 50% { transform: scaleX(.9); opacity: .18; } }

/* palmiye yaprakları rüzgarda sallanır */
.palm .fronds { transform-origin: 0 4px; }
.palm-1 .fronds { animation: sway 4.5s ease-in-out infinite; }
.palm-2 .fronds { animation: sway 5.2s ease-in-out infinite; animation-delay: -1.2s; }
.palm-3 .fronds { animation: sway 4.9s ease-in-out infinite; animation-delay: -0.6s; }
@keyframes sway { 0%,100% { transform: rotate(-5deg); } 50% { transform: rotate(5deg); } }
.palm .trunk { transform-origin: bottom center; }
.palm-1 .trunk { animation: trunkBend 4.5s ease-in-out infinite; }
.palm-2 .trunk { animation: trunkBend 5.2s ease-in-out infinite; animation-delay: -1.2s; }
.palm-3 .trunk { animation: trunkBend 4.9s ease-in-out infinite; animation-delay: -0.6s; }
@keyframes trunkBend { 0%,100% { transform: rotate(-1.5deg); } 50% { transform: rotate(1.5deg); } }
.isle-reflect { animation: shadowPulse 7s ease-in-out infinite; }
.hero-scroll {
  position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  font-size: 11px; letter-spacing: 0.22em; color: #5a6a6e;
}
.hero-scroll-line { width: 1px; height: 38px; background: linear-gradient(#5a6a6e, transparent); }

/* ── MANIFESTO ────────────────────────────────────────────── */
.mani { background: var(--pink); color: var(--white); padding: clamp(80px,14vw,150px) 24px; text-align: center; position: relative; }
.mani.round-top::before { background: var(--pink); }
/* önceki bölüm açık zemin olduğundan üst geçiş paper rengiyle: */
.hero + .mani.round-top::before { content: ''; position: absolute; top:-1px; left:0; right:0; height:56px; background: var(--pink); border-radius: 0 0 50% 50%/0 0 100% 100%; }
.mani-inner { max-width: 860px; margin: 0 auto; position: relative; z-index: 2; }
.mani-lead { font-size: clamp(15px,1.8vw,18px); font-weight: 300; line-height: 1.9; max-width: 700px; margin: 0 auto 38px; }
.mani-punch { font-family: var(--ff-display); font-weight: 800; font-style: italic; font-size: clamp(20px,3vw,30px); line-height: 1.42; max-width: 780px; margin: 0 auto; }
.mani-spark { position: absolute; color: #fff; opacity: .85; }
.mani-spark.s1 { bottom: 16%; left: 10%; font-size: 24px; }
.mani-spark.s2 { bottom: 12%; left: 15%; font-size: 13px; }

/* ── DOPİNG BLOCK (anasayfa) ──────────────────────────────── */
.doping-block { background: var(--ink); padding: clamp(70px,11vw,130px) 28px; }
.db-inner { max-width: var(--max); margin: 0 auto; }
.db-title { font-family: var(--ff-display); font-weight: 900; font-size: clamp(62px,15vw,190px); line-height: .9; letter-spacing: -3px; color: #fff; display: flex; align-items: flex-start; margin-bottom: 44px; }
.db-star { width: 0.32em; height: auto; margin-left: 6px; vertical-align: 0.28em; }
.db-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: clamp(32px,6vw,80px); align-items: start; }
.db-sub { font-family: var(--ff-display); font-weight: 700; font-style: italic; font-size: clamp(24px,3vw,34px); line-height: 1.2; color: var(--pink); }
.db-sub::after { content: ''; display: block; width: 180px; height: 2px; background: var(--pink); margin-top: 24px; }
.db-body p { font-size: clamp(15px,1.5vw,17px); font-weight: 300; line-height: 1.8; color: var(--ink-soft); margin-bottom: 22px; }

/* ── WORKS (anasayfa & işlerimiz) ─────────────────────────── */
.works-home { background: var(--ink); padding: clamp(40px,8vw,70px) 28px clamp(70px,11vw,110px); }
.wh-inner { max-width: var(--max); margin: 0 auto; }
.wh-eyebrow { text-align: center; font-size: 13px; font-weight: 600; letter-spacing: .25em; margin-bottom: clamp(40px,7vw,64px); }
.wh-work { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px,5vw,64px); align-items: center; padding: clamp(30px,5vw,52px) 0; border-top: 1px solid var(--line); }
.wh-work:nth-child(even) .wh-media { order: 2; }
.wh-media { aspect-ratio: 16/11; border-radius: 10px; overflow: hidden; position: relative; display: flex; align-items: center; justify-content: center; transition: transform .4s var(--ease); }
.wh-work:hover .wh-media { transform: scale(1.02); }
.wh-media-label { font-family: var(--ff-display); font-style: italic; font-weight: 700; font-size: clamp(22px,3vw,38px); color: rgba(255,255,255,.18); text-align: center; padding: 20px; user-select: none; line-height: 1.1; }
.wh-name { font-family: var(--ff-display); font-weight: 800; font-style: italic; font-size: clamp(26px,3.4vw,40px); color: var(--pink); margin-bottom: 18px; }
.wh-desc { font-size: clamp(14px,1.4vw,16px); font-weight: 300; line-height: 1.85; color: var(--ink-soft); margin-bottom: 22px; max-width: 420px; }
.wh-more { display: flex; justify-content: center; margin-top: clamp(40px,6vw,60px); }
.c1 { background: linear-gradient(135deg,#2a2118,#443322); }
.c2 { background: linear-gradient(135deg,#3a2a1a,#1a1410); }
.c3 { background: linear-gradient(135deg,#2b2b30,#16161a); }
.c4 { background: linear-gradient(135deg,#1a2230,#0f1620); }

/* ── DOPİNG SAYFASI ───────────────────────────────────────── */
.dp-list { background: var(--ink); padding: clamp(20px,4vw,40px) 28px clamp(70px,11vw,110px); }
.dp-inner { max-width: var(--max); margin: 0 auto; }
.dp-work { display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(28px,5vw,64px); align-items: center; padding: clamp(30px,5vw,52px) 0; border-top: 1px solid var(--line); }
.dp-work:nth-child(even) .dp-media { order: 2; }
.dp-media { aspect-ratio: 16/10; border-radius: 10px; overflow: hidden; position: relative; display: flex; align-items: center; justify-content: center; }
.dp-play { position: absolute; width: 64px; height: 64px; border-radius: 50%; background: rgba(200,0,123,.92); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 22px; padding-left: 4px; z-index: 2; animation: pulseGlow 2.4s ease-out infinite; transition: transform .25s; }
.dp-work:hover .dp-play { transform: scale(1.1); }
.dp-media-label { position: absolute; bottom: 16px; left: 18px; font-family: var(--ff-display); font-style: italic; font-weight: 700; font-size: clamp(16px,2vw,24px); color: rgba(255,255,255,.25); }
.dp-name { font-family: var(--ff-display); font-weight: 800; font-style: italic; font-size: clamp(24px,3.2vw,38px); color: var(--pink); margin-bottom: 8px; }
.dp-sub { font-weight: 600; font-size: 16px; color: #fff; margin-bottom: 16px; }
.dp-desc { font-size: 15px; font-weight: 300; line-height: 1.8; color: var(--ink-soft); margin-bottom: 22px; max-width: 420px; }
.dp-media.d1 { background: linear-gradient(135deg,#1c1c20,#33291c); }
.dp-media.d2 { background: linear-gradient(135deg,#222c38,#10161e); }
.dp-media.d3 { background: linear-gradient(135deg,#2a1c1c,#141016); }
.dp-media.d4 { background: linear-gradient(135deg,#26242c,#15151a); }

/* ── HİZMETLER LİSTESİ ────────────────────────────────────── */
.hiz-list-wrap { background: var(--pink); padding: clamp(56px,9vw,90px) 24px clamp(70px,11vw,120px); }
.hiz-inner { max-width: 920px; margin: 0 auto; }
.hiz-list { display: flex; flex-direction: column; }
.hiz-list li { display: flex; align-items: flex-start; gap: 20px; padding: 22px 0; border-bottom: 1px solid rgba(255,255,255,.2); color: #fff; transition: padding-left .3s var(--ease); }
.hiz-list li:hover { padding-left: 12px; }
.hl-no { font-family: var(--ff-display); font-weight: 700; font-size: 15px; opacity: .7; min-width: 32px; }
.hl-tx { font-size: clamp(16px,2vw,21px); font-weight: 400; line-height: 1.4; }

/* ── BİZ KİMİZ ────────────────────────────────────────────── */
.biz-stats { background: var(--ink); padding: clamp(50px,8vw,80px) 28px; }
.bs-inner { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: repeat(4,1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: 14px; overflow: hidden; }
.bs-item { background: var(--ink); padding: 36px 24px; text-align: center; }
.bs-num { font-family: var(--ff-display); font-weight: 800; font-size: clamp(34px,5vw,52px); color: var(--pink); line-height: 1; }
.bs-num sup { font-size: .5em; }
.bs-label { font-size: 13px; color: var(--muted); margin-top: 10px; }
.biz-text { background: var(--ink); padding: clamp(20px,5vw,50px) 28px clamp(70px,10vw,110px); }
.bt-inner { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px,6vw,72px); }
.bt-h { font-family: var(--ff-display); font-weight: 800; font-style: italic; font-size: clamp(24px,3vw,32px); color: var(--pink); margin-bottom: 18px; }
.bt-col p { font-size: clamp(15px,1.5vw,17px); font-weight: 300; line-height: 1.85; color: var(--ink-soft); }

/* ── KİMLERLE ÇALIŞTIK (logo duvarı) ──────────────────────── */
.brands { background: var(--ink); padding: clamp(20px,4vw,40px) 28px clamp(70px,11vw,110px); }
.brands-grid { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: repeat(4,1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.brand-cell { background: var(--ink); aspect-ratio: 16/9; display: flex; align-items: center; justify-content: center; padding: 20px; transition: background .3s; }
.brand-cell:hover { background: var(--ink-2); }
.brand-cell span { font-family: var(--ff-display); font-weight: 700; font-size: clamp(15px,1.6vw,20px); color: rgba(255,255,255,.55); text-align: center; transition: color .3s; }
.brand-cell:hover span { color: #fff; }

/* ── IK ───────────────────────────────────────────────────── */
.ik-list { background: var(--ink); padding: clamp(40px,7vw,70px) 28px clamp(70px,11vw,110px); }
.ik-inner { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: repeat(2,1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: 14px; overflow: hidden; }
.poz { background: var(--ink); padding: 34px 30px; display: flex; align-items: center; justify-content: space-between; gap: 16px; transition: background .3s; }
.poz:hover { background: var(--ink-2); }
.poz h3 { font-family: var(--ff-display); font-weight: 700; font-style: italic; font-size: clamp(19px,2.2vw,26px); }
.poz-cta { color: var(--pink); font-weight: 600; font-size: 14px; white-space: nowrap; }

/* ── BLOG ─────────────────────────────────────────────────── */
.blog { background: var(--ink); padding: clamp(40px,7vw,70px) 28px clamp(70px,11vw,110px); }
.blog-grid { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: repeat(2,1fr); gap: 28px; }
.post { background: var(--ink-2); border: 1px solid var(--line); border-radius: 14px; overflow: hidden; transition: transform .25s, border-color .25s; }
.post:hover { transform: translateY(-5px); border-color: var(--pink); }
.post-media { aspect-ratio: 16/8; background: linear-gradient(135deg,#241a22,#15151a); position: relative; }
.post-tag { position: absolute; bottom: 14px; left: 14px; background: var(--pink); color: #fff; font-size: 11px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; padding: 5px 12px; border-radius: 100px; }
.post-body { padding: 26px 28px 30px; }
.post-meta { display: flex; gap: 8px; align-items: center; font-size: 13px; color: var(--muted); margin-bottom: 14px; }
.post-meta .dot { opacity: .6; }
.post-title { font-family: var(--ff-display); font-weight: 800; font-style: italic; font-size: clamp(20px,2.4vw,28px); color: var(--pink); margin-bottom: 12px; line-height: 1.2; }
.post-ex { font-size: 15px; font-weight: 300; line-height: 1.75; color: var(--ink-soft); margin-bottom: 20px; }

/* ── İLETİŞİM ─────────────────────────────────────────────── */
.ilet-info { margin-top: 32px; }
.ilet-addr { font-size: clamp(17px,2vw,22px); font-weight: 400; margin-bottom: 18px; }
.ilet-line { display: block; font-size: clamp(16px,1.8vw,20px); font-weight: 500; margin-bottom: 10px; width: fit-content; border-bottom: 1px solid rgba(255,255,255,.4); transition: border-color .2s; }
.ilet-line:hover { border-color: #fff; }
.ilet-actions { margin-top: 36px; display: flex; flex-direction: column; gap: 18px; align-items: flex-start; }
.ilet-act { display: inline-flex; align-items: center; gap: 12px; font-size: 17px; font-weight: 500; transition: gap .2s; }
.ilet-act:hover { gap: 18px; }
.ia-ic { width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,.18); display: flex; align-items: center; justify-content: center; font-size: 16px; }

/* ── RESPONSIVE (sayfa-özgü) ──────────────────────────────── */
@media (max-width: 860px) {
  .db-grid, .bt-inner { grid-template-columns: 1fr; gap: 26px; }
  .db-sub::after { margin-top: 18px; }
  .wh-work, .dp-work { grid-template-columns: 1fr; gap: 22px; }
  .wh-work:nth-child(even) .wh-media, .dp-work:nth-child(even) .dp-media { order: 0; }
  .wh-desc, .dp-desc { max-width: 100%; }
  .bs-inner { grid-template-columns: repeat(2,1fr); }
  .brands-grid { grid-template-columns: repeat(3,1fr); }
  .ik-inner, .blog-grid { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .hero-stage { width: 124vw; max-width: 540px; }
  .db-title { font-size: 56px; letter-spacing: -2px; }
  .brands-grid { grid-template-columns: repeat(2,1fr); }
  .bs-inner { grid-template-columns: 1fr 1fr; }
  .poz { flex-direction: column; align-items: flex-start; gap: 10px; }
}

/* ── EMOJİ YERİNE SVG/LOGO İKONLAR ────────────────────────── */
.i-arr { width: .85em; height: .85em; display: inline-block; vertical-align: -0.08em; margin-left: 3px; }
.foot-star { height: 1.1em; width: auto; vertical-align: middle; margin-left: 6px; display: inline-block; }
.menu-arrow svg { width: 1em; height: .55em; display: block; }
.dp-play { padding-left: 0 !important; }
.dp-play svg { width: 24px; height: 24px; margin-left: 3px; }
.mani-spark svg { width: 1em; height: 1em; display: block; }
.ia-ic svg { width: 17px; height: 17px; display: inline-block; vertical-align: middle; flex-shrink: 0; }
/* page-title içindeki logo (doping başlığı) */
.page-title .db-star { width: 0.4em; vertical-align: 0.1em; }
