/* ==========================================================================
   DİPOL MEDYA — Tasarım Sistemi v2.0 "Gece Stüdyosu"
   Mat gece-laciverti zemin (Radyo Bilim esinli), sıcak turuncu vurgu,
   yaşayan arka plan (ışık küreleri + yıldız dokusu), Arial.
   ========================================================================== */

:root {
  --bg: #0c1220;             /* mat gece laciverti */
  --bg-deep: #090e19;
  --card: #131c30;           /* mat kart */
  --glass: rgba(19, 28, 48, 0.72);
  --surface: #101827;        /* bölüm bandı */
  --surface-2: #1a2540;
  --line: rgba(148, 163, 204, 0.14);
  --text: #eef2fb;
  --muted: #93a0bf;
  --accent: #ff6b2c;         /* sıcak turuncu */
  --accent-hover: #ff8148;
  --accent-soft: rgba(255, 107, 44, 0.12);
  --blue-glow: rgba(63, 108, 255, 0.16);

  --font: Arial, Helvetica, sans-serif;

  --rail-w: 312px; /* %30 daha geniş yan menü */
  --pad: clamp(1.25rem, 4vw, 3.5rem);
  --radius: 16px;
  --shadow: 0 4px 18px rgba(4, 8, 18, 0.4);
  --shadow-lift: 0 18px 44px rgba(4, 8, 18, 0.55);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

/* Taşma sigortaları */
.hero__grid > *,
.studio__row > *,
.field,
.field input,
.field select,
.field textarea,
.player__info,
.voice { min-width: 0; }

canvas, svg, video { max-width: 100%; }

html { scroll-behavior: smooth; }

body {
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-deep) 100%);
  color: var(--text);
  font-family: var(--font);
  font-size: 15px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
em { font-style: normal; }

/* ==========================================================================
   YAŞAYAN ARKA PLAN — ışık küreleri + yıldız dokusu
   ========================================================================== */

.ambient {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.ambient__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
}
.ambient__orb--a {
  width: 55vw;
  height: 55vw;
  top: -22vw;
  right: -14vw;
  background: radial-gradient(circle, var(--blue-glow), transparent 65%);
  animation: drift-a 26s ease-in-out infinite alternate;
}
.ambient__orb--b {
  width: 46vw;
  height: 46vw;
  bottom: -18vw;
  left: -12vw;
  background: radial-gradient(circle, rgba(255, 107, 44, 0.1), transparent 65%);
  animation: drift-b 32s ease-in-out infinite alternate;
}
@keyframes drift-a {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(-7vw, 6vh) scale(1.12); }
}
@keyframes drift-b {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(6vw, -5vh) scale(1.08); }
}

/* İnce yıldız dokusu */
.ambient__stars {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(1.5px 1.5px at 12% 18%, rgba(238, 242, 251, 0.5), transparent),
    radial-gradient(1px 1px at 34% 62%, rgba(238, 242, 251, 0.35), transparent),
    radial-gradient(1.5px 1.5px at 58% 30%, rgba(238, 242, 251, 0.4), transparent),
    radial-gradient(1px 1px at 73% 74%, rgba(238, 242, 251, 0.3), transparent),
    radial-gradient(1.5px 1.5px at 88% 12%, rgba(238, 242, 251, 0.45), transparent),
    radial-gradient(1px 1px at 22% 86%, rgba(238, 242, 251, 0.3), transparent),
    radial-gradient(1px 1px at 46% 8%, rgba(238, 242, 251, 0.35), transparent),
    radial-gradient(1.2px 1.2px at 66% 52%, rgba(238, 242, 251, 0.3), transparent),
    radial-gradient(1px 1px at 92% 44%, rgba(238, 242, 251, 0.35), transparent),
    radial-gradient(1.2px 1.2px at 8% 46%, rgba(238, 242, 251, 0.3), transparent);
  background-repeat: repeat;
  background-size: 900px 700px;
  animation: twinkle 9s ease-in-out infinite alternate;
}
@keyframes twinkle {
  from { opacity: 0.45; }
  to   { opacity: 0.9; }
}

/* İçerik katmanları arka planın üstünde */
.siderail, .mobilebar, .page, .player, .wafloat { position: relative; z-index: 1; }

/* ==========================================================================
   YAN MENÜ
   ========================================================================== */

.siderail {
  position: fixed;
  inset: 0 auto 0 0;
  width: var(--rail-w);
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  padding: 1.75rem 1.5rem;
  border-right: 1px solid var(--line);
  background: rgba(12, 18, 32, 0.85);
  backdrop-filter: blur(14px);
  z-index: 100;
  overflow-y: auto;
}

.siderail__logo { display: flex; align-items: center; gap: 0.6rem; }

.logo-mark { display: inline-flex; align-items: flex-end; gap: 3px; height: 20px; }
.logo-mark i {
  width: 4px;
  border-radius: 2px;
  background: var(--accent);
  animation: eq 1.1s var(--ease) infinite alternate;
}
.logo-mark i:nth-child(1) { height: 40%; }
.logo-mark i:nth-child(2) { height: 90%; animation-delay: 0.15s; }
.logo-mark i:nth-child(3) { height: 60%; animation-delay: 0.3s; }
.logo-mark i:nth-child(4) { height: 100%; animation-delay: 0.45s; }

@keyframes eq {
  from { transform: scaleY(0.4); }
  to   { transform: scaleY(1); }
}

.logo-text { font-weight: bold; font-size: 1rem; letter-spacing: 0.04em; color: var(--text); }
.logo-text em { color: var(--accent); }

/* Dil seçici */
.langsw {
  display: inline-flex;
  gap: 2px;
  padding: 3px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(9, 14, 25, 0.6);
  width: max-content;
}
.langsw button {
  border: none;
  background: none;
  color: var(--muted);
  font-family: var(--font);
  font-weight: bold;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  padding: 0.32rem 0.7rem;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.25s var(--ease);
}
.langsw button:hover { color: var(--text); }
.langsw button.is-active { background: var(--accent); color: #fff; }

.siderail__nav { flex: 1; }

.siderail__label {
  font-size: 0.64rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--muted);
  margin: 1.1rem 0 0.45rem;
}
.siderail__label:first-child { margin-top: 0; }

.navlink {
  display: flex;
  align-items: baseline;
  gap: 0.55rem;
  padding: 0.32rem 0;
  font-size: 0.88rem;
  color: var(--muted);
  transition: color 0.25s, transform 0.25s var(--ease);
}
.navlink__num {
  font-size: 0.6rem;
  color: var(--accent);
  opacity: 0.6;
  font-variant-numeric: tabular-nums;
}
.navlink:hover,
.navlink.is-active { color: var(--text); transform: translateX(4px); }
.navlink.is-active .navlink__num { opacity: 1; }

.siderail__foot { display: grid; gap: 0.8rem; }

.siderail__phone { font-size: 0.92rem; font-weight: bold; transition: color 0.25s; }
.siderail__phone:hover { color: var(--accent); }

.siderail__social { display: flex; gap: 0.45rem; }
.siderail__social a {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border: 1px solid var(--line);
  border-radius: 50%;
  font-size: 0.65rem;
  color: var(--muted);
  transition: all 0.25s var(--ease);
}
.siderail__social a:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
}

/* ==========================================================================
   MOBİL BAR
   ========================================================================== */

.mobilebar {
  display: none;
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 110;
  align-items: center;
  justify-content: space-between;
  padding: 0.8rem 1.1rem;
  background: rgba(12, 18, 32, 0.9);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.mobilebar__logo { font-weight: bold; letter-spacing: 0.04em; }
.mobilebar__logo em { color: var(--accent); }

.mobilebar__right { display: flex; align-items: center; gap: 0.7rem; }
.langsw--mini button { padding: 0.25rem 0.55rem; font-size: 0.66rem; }

.mobilebar__toggle {
  display: grid;
  gap: 6px;
  background: none;
  border: none;
  padding: 8px 4px;
  cursor: pointer;
}
.mobilebar__toggle span {
  width: 24px;
  height: 2px;
  background: var(--text);
  transition: transform 0.3s var(--ease);
}
.mobilebar__toggle[aria-expanded="true"] span:first-child { transform: translateY(4px) rotate(45deg); }
.mobilebar__toggle[aria-expanded="true"] span:last-child { transform: translateY(-4px) rotate(-45deg); }

/* ==========================================================================
   SAYFA / BÖLÜMLER
   ========================================================================== */

.page {
  margin-left: calc(var(--rail-w) + max(0px, (100vw - var(--rail-w) - 1320px) / 2));
  padding-bottom: 90px;
  max-width: 1320px;
}

.section {
  padding: clamp(3rem, 6vw, 5rem) var(--pad);
  border-top: 1px solid var(--line);
}

.section__head { max-width: 640px; margin-bottom: clamp(1.5rem, 4vw, 2.5rem); }

.section__title {
  font-weight: bold;
  font-size: clamp(1.5rem, 2.8vw, 2.1rem);
  line-height: 1.15;
}
.section__title em { color: var(--accent); }

.section__desc { color: var(--muted); margin-top: 0.6rem; font-size: 0.98rem; }

/* ==========================================================================
   AÇILIŞ — bilgi + stüdyo
   ========================================================================== */

.hero {
  position: relative;
  padding: clamp(4.25rem, 8vw, 6rem) var(--pad) clamp(3.5rem, 7vw, 5rem);
  overflow: visible;
}

.hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.45fr 1fr; /* stüdyo paneli ~%20 daha dar */
  gap: clamp(1.1rem, 2.2vw, 2rem); /* stüdyo sola, çizgiye yakın */
  align-items: center;
}

.hero__kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  color: var(--accent);
  border: 1px solid rgba(255, 107, 44, 0.35);
  border-radius: 999px;
  padding: 0.35rem 0.9rem;
  margin-bottom: 1.2rem;
  background: rgba(255, 107, 44, 0.06);
}

/* "on air" ışığı */
.onair {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  animation: onair 1.6s ease-in-out infinite;
}
@keyframes onair {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255, 107, 44, 0.55); }
  50%      { box-shadow: 0 0 0 6px rgba(255, 107, 44, 0); }
}

.hero__title {
  font-weight: bold;
  font-size: clamp(1.8rem, 3.6vw, 2.7rem);
  line-height: 1.14;
  letter-spacing: -0.01em;
}
.hero__title em {
  color: var(--accent);
  background: linear-gradient(transparent 68%, rgba(255, 107, 44, 0.18) 68%);
  border-radius: 3px;
  padding: 0 0.1em;
}

.hero__sub {
  max-width: 480px;
  color: var(--muted);
  font-size: 1rem;
  margin-top: 1rem;
}

.hero__cta { display: flex; gap: 0.9rem; margin-top: 1.5rem; flex-wrap: wrap; }

.hero__stats {
  display: flex;
  gap: clamp(1.25rem, 3vw, 2.5rem);
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
  flex-wrap: wrap;
}
.hero__stats li { display: grid; gap: 0.1rem; }
.hero__stats strong { font-weight: bold; font-size: 1.35rem; }
.hero__stats strong::after { content: "+"; color: var(--accent); }
.hero__stats span {
  font-size: 0.64rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--muted);
}

.hero__wave {
  /* Yan menü çizgisinden başlayıp sağ ekran kenarına kadar taşar (sayfanın ortalanmış kutusundan bağımsız) */
  position: absolute;
  bottom: 0;
  left: calc(-1 * max(0px, (100vw - var(--rail-w) - 1320px) / 2));
  width: calc(100vw - var(--rail-w));
  height: 70px;
  opacity: 0.85;
  z-index: 0;
  pointer-events: none;
}

/* --- Stüdyo paneli (cam) --- */

.studio {
  position: relative;
  background: var(--glass);
  backdrop-filter: blur(14px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lift);
  padding: 0.95rem;
  display: grid;
  gap: 0.55rem;
  overflow: hidden;
  min-width: 0;
}
.studio::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), #ffb387, var(--accent));
  background-size: 200% 100%;
  animation: shimmer 4s linear infinite;
}
@keyframes shimmer {
  from { background-position: 0% 0; }
  to   { background-position: 200% 0; }
}

.studio__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.studio__head strong { font-size: 0.92rem; }
.studio__head span {
  font-size: 0.66rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--accent);
}

.studio__row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.7rem; }
.studio__row--action { grid-template-columns: 1.4fr auto auto; align-items: end; }
.studio__row--action .btn { height: 42px; white-space: nowrap; }
.field--slim { width: 110px; }

.studio__stats {
  display: grid;
  grid-template-columns: 1fr 1fr 1.4fr;
  gap: 0.6rem;
}

/* ==========================================================================
   FORM ALANLARI + İSTATİSTİKLER
   ========================================================================== */

.field { display: grid; gap: 0.35rem; }
.field > span {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  color: var(--muted);
}
.field input,
.field select,
.field textarea {
  width: 100%;
  background: rgba(9, 14, 25, 0.65);
  border: 1px solid var(--line);
  border-radius: 10px;
  color: var(--text);
  font-family: var(--font);
  font-size: 0.85rem;
  padding: 0.5rem 0.65rem;
  transition: border-color 0.25s, box-shadow 0.25s;
  resize: vertical;
}
.field input::placeholder,
.field textarea::placeholder { color: rgba(147, 160, 191, 0.55); }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
}
.field select { cursor: pointer; }
.field select option { background: var(--card); color: var(--text); }

.stat {
  background: rgba(9, 14, 25, 0.6);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0.45rem 0.7rem;
  display: grid;
  gap: 0.05rem;
}
.stat strong { font-size: 1.05rem; font-weight: bold; }
.stat span {
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--muted);
}
.stat--big { border-color: rgba(255, 107, 44, 0.4); background: var(--accent-soft); }
.stat--big strong { font-size: 1.2rem; color: var(--accent); }

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.6rem;
  border-radius: 999px;
  font-family: var(--font);
  font-weight: bold;
  font-size: 0.88rem;
  transition: all 0.3s var(--ease);
  border: 1px solid transparent;
  cursor: pointer;
}
.btn--solid { background: var(--accent); color: #fff; }
.btn--solid:hover { background: var(--accent-hover); transform: translateY(-2px); box-shadow: 0 10px 26px rgba(255, 107, 44, 0.35); }
.btn--ghost { border-color: rgba(148, 163, 204, 0.35); color: var(--text); background: rgba(9, 14, 25, 0.4); }
.btn--ghost:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-2px); }

/* ==========================================================================
   FİLTRELER + SES KARTLARI
   ========================================================================== */

.filters { display: flex; gap: 0.45rem; flex-wrap: wrap; margin-bottom: 2rem; }

.filter {
  padding: 0.45rem 1.05rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(9, 14, 25, 0.5);
  color: var(--muted);
  font-family: var(--font);
  font-size: 0.82rem;
  cursor: pointer;
  transition: all 0.25s var(--ease);
}
.filter:hover { color: var(--text); border-color: var(--muted); }
.filter.is-active { background: var(--accent); border-color: var(--accent); color: #fff; }

.filter--lang { font-size: 0.76rem; padding: 0.38rem 0.9rem; }

.voices {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.voice {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  padding: 1.25rem;
  background: var(--glass);
  backdrop-filter: blur(10px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: transform 0.35s var(--ease), border-color 0.35s, box-shadow 0.35s;
}
.voice:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 107, 44, 0.4);
  box-shadow: var(--shadow-lift);
}
.voice.is-hidden { display: none; }

.voice--soon { border-style: dashed; border-color: rgba(148, 163, 204, 0.3); }
.voice--soon .voice__head h3 { color: var(--muted); font-style: italic; }

.voice__head h3 { font-weight: bold; font-size: 1.05rem; }
.voice__head > p { color: var(--muted); font-size: 0.82rem; margin-top: 0.1rem; }

.voices__empty {
  text-align: center;
  color: var(--muted);
  font-size: 0.92rem;
  padding: 1.75rem 0;
}

.voice__opts {
  display: flex;
  gap: 0.3rem;
  flex-wrap: nowrap;
  border-top: 1px solid var(--line);
  padding-top: 0.85rem;
}

.opt {
  flex: 1 1 0;
  padding: 0.34rem 0.4rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(9, 14, 25, 0.5);
  color: var(--muted);
  font-family: var(--font);
  font-size: 0.66rem;
  font-weight: bold;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  cursor: pointer;
  transition: all 0.25s var(--ease);
}
.opt:hover { border-color: var(--accent); color: var(--accent); }
.opt.is-active { background: var(--accent); border-color: var(--accent); color: #fff; }

.voice__player {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.5rem 0.6rem;
  border-radius: 10px;
  background: var(--accent-soft);
  border: 1px solid rgba(255, 107, 44, 0.22);
  margin-top: auto;
  transition: background 0.25s, border-color 0.25s;
}
.voice__player.is-playing {
  background: rgba(255, 107, 44, 0.18);
  border-color: rgba(255, 107, 44, 0.45);
}

.demo__play {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: var(--accent);
  cursor: pointer;
  position: relative;
  transition: all 0.25s var(--ease);
}
.demo__play::before {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 0;
  height: 0;
  border-left: 9px solid #fff;
  border-top: 5.5px solid transparent;
  border-bottom: 5.5px solid transparent;
  transform: translateX(1px);
  transition: all 0.2s;
}
.demo__play:hover { background: var(--accent-hover); transform: scale(1.06); }

.voice__player.is-playing .demo__play::before {
  border: none;
  width: 8px;
  height: 10px;
  border-left: 3px solid #fff;
  border-right: 3px solid #fff;
  transform: none;
}

.demo__name { font-size: 0.88rem; font-weight: bold; flex: 1; }

.voices__note { margin-top: 1.75rem; color: var(--muted); font-size: 0.9rem; }
.voices__note a { color: var(--accent); }
.voices__note a:hover { text-decoration: underline; }

.swipehint {
  display: none;
  text-align: center;
  color: var(--muted);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  margin-top: 0.9rem;
}

/* ==========================================================================
   HİZMETLER
   ========================================================================== */

.services {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.service {
  padding: 1.6rem 1.5rem;
  background: var(--bg);
  transition: background 0.35s var(--ease);
}
.service:hover { background: var(--surface-2); }
.service span {
  font-size: 0.66rem;
  color: var(--accent);
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.15em;
}
.service h3 { font-weight: bold; font-size: 1rem; margin: 0.55rem 0 0.4rem; }
.service p { color: var(--muted); font-size: 0.88rem; }

/* ==========================================================================
   PAKET (band)
   ========================================================================== */

.section--band { background: rgba(16, 24, 39, 0.6); }

.band {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.band__text p { color: var(--muted); margin: 1rem 0 1.6rem; max-width: 460px; font-size: 0.95rem; }

.band__list li {
  padding: 0.8rem 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  transition: padding-left 0.3s var(--ease), color 0.3s;
}
.band__list li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}
.band__list li:hover { padding-left: 0.5rem; color: var(--accent); }

/* ==========================================================================
   REFERANSLAR — premium logo duvarı (çift yönlü akış)
   ========================================================================== */

.section--full { padding-left: 0; padding-right: 0; }

.section--refs { overflow: hidden; }

.refs__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  padding: 0 var(--pad);
  margin-bottom: 2rem;
}
.refs__head .section__desc { max-width: 420px; }

.refs__chips { display: flex; gap: 0.6rem; flex-wrap: wrap; }
.refchip {
  display: grid;
  gap: 0.05rem;
  padding: 0.6rem 1.1rem;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--glass);
  backdrop-filter: blur(10px);
  text-align: center;
}
.refchip strong { font-size: 1.05rem; color: var(--accent); }
.refchip em {
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--muted);
}

.refmarq {
  display: flex;
  overflow: hidden;
  gap: 0.9rem;
  padding: 0.4rem 0;
  mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}
.refmarq__track {
  display: flex;
  gap: 0.9rem;
  flex-shrink: 0;
  animation: marquee 36s linear infinite;
}
.refmarq--rev .refmarq__track { animation-direction: reverse; }
.refmarq:hover .refmarq__track { animation-play-state: paused; }

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(calc(-100% - 0.9rem)); }
}

.refcard {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.65rem 1.3rem 0.65rem 0.65rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--glass);
  backdrop-filter: blur(8px);
  font-weight: bold;
  font-size: 0.95rem;
  color: var(--muted);
  white-space: nowrap;
  transition: all 0.3s var(--ease);
}
.refcard i {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--accent-soft);
  border: 1px solid rgba(255, 107, 44, 0.3);
  color: var(--accent);
  font-size: 0.85rem;
  font-weight: bold;
  font-style: normal;
  flex-shrink: 0;
}
.refcard:hover {
  color: var(--text);
  border-color: rgba(255, 107, 44, 0.45);
  transform: translateY(-3px);
}

/* ==========================================================================
   İLETİŞİM — kapanış CTA kartı
   ========================================================================== */

.cta {
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: clamp(2.5rem, 6vw, 4.5rem) clamp(1.25rem, 5vw, 4rem);
  background: linear-gradient(160deg, var(--surface-2) 0%, var(--card) 55%, #0d1526 100%);
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: var(--shadow-lift);
}

.cta__glow {
  position: absolute;
  width: 60%;
  height: 130%;
  top: -60%;
  left: 20%;
  background: radial-gradient(ellipse, rgba(255, 107, 44, 0.16), transparent 65%);
  pointer-events: none;
}

/* alt kenarda tam genişlik ekolayzer — çerçevenin baştan sona kaplar */
.cta__bars {
  position: absolute;
  inset: auto 0 0 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 4px;
  height: 46px;
  padding: 0 1.25rem;
  opacity: 0.3;
  pointer-events: none;
}
.cta__bars i {
  flex: 1 1 0;
  max-width: 8px;
  height: var(--h, 40%);
  border-radius: 3px 3px 0 0;
  background: var(--accent);
  animation: eq 1s var(--ease) infinite alternate;
  animation-delay: calc(var(--i, 0) * 0.05s);
}

.cta__kicker {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.26em;
  color: var(--accent);
  margin-bottom: 0.9rem;
}
.cta__title {
  font-weight: bold;
  font-size: clamp(1.5rem, 3.4vw, 2.5rem);
  line-height: 1.15;
  max-width: 620px;
  margin: 0 auto;
}
.cta__sub { color: var(--muted); margin: 0.9rem auto 1.6rem; max-width: 460px; }

.cta__actions { display: flex; gap: 0.9rem; justify-content: center; flex-wrap: wrap; }

.cta__meta {
  display: flex;
  gap: 1.75rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 1.75rem;
  font-size: 0.8rem;
  color: var(--muted);
}
.cta__meta a:hover { color: var(--accent); }
.cta__meta li { position: relative; }
.cta__meta li + li::before {
  content: "·";
  position: absolute;
  left: -1.05rem;
  color: var(--accent);
}

/* ==========================================================================
   FOOTER — kurumsal 4 kolon
   ========================================================================== */

.footer { border-top: 1px solid var(--line); padding: 0 var(--pad); }

.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2rem;
  padding: 2.5rem 0 2rem;
}

.footer__brand p { color: var(--muted); font-size: 0.88rem; margin-top: 0.7rem; max-width: 260px; }

.footer__col { display: grid; gap: 0.45rem; align-content: start; }
.footer__col strong {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--text);
  margin-bottom: 0.35rem;
}
.footer__col a, .footer__col span { color: var(--muted); font-size: 0.88rem; transition: color 0.25s; }
.footer__col a:hover { color: var(--accent); }
.footer__social-link { display: flex; align-items: center; gap: 0.5rem; }

.footer__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding: 1.1rem 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.78rem;
}
.footer__legal { display: flex; gap: 1.1rem; flex-wrap: wrap; }
.footer__legal a { color: var(--muted); transition: color 0.25s; }
.footer__legal a:hover { color: var(--accent); }

/* ==========================================================================
   HUKUKİ SAYFALAR (gizlilik / çerez / hakkımızda)
   ========================================================================== */

.legalbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem var(--pad);
  border-bottom: 1px solid var(--line);
}
.legalbar .logo-text { position: relative; z-index: 1; }
.legalbar__back {
  color: var(--muted);
  font-size: 0.85rem;
  transition: color 0.25s;
}
.legalbar__back:hover { color: var(--accent); }

.legal {
  max-width: 760px;
  margin: 0 auto;
  padding: clamp(2.5rem, 6vw, 4rem) var(--pad) clamp(3rem, 6vw, 5rem);
  position: relative;
  z-index: 1;
}
.legal h1 { font-size: clamp(1.6rem, 3.5vw, 2.3rem); font-weight: bold; margin-bottom: 0.6rem; }
.legal .legal__updated { color: var(--muted); font-size: 0.85rem; margin-bottom: 2.2rem; }
.legal h2 { font-size: 1.15rem; font-weight: bold; margin: 2rem 0 0.7rem; color: var(--accent); }
.legal p, .legal li { color: var(--text); font-size: 0.95rem; line-height: 1.7; }
.legal p { margin-bottom: 0.9rem; }
.legal ul { margin: 0 0 1rem 1.2rem; display: grid; gap: 0.4rem; }
.legal a { color: var(--accent); }
.legal a:hover { text-decoration: underline; }
.legal strong { color: var(--text); }

/* ==========================================================================
   YASAL POP-UP'LAR (dialog)
   ========================================================================== */

.legalmodal {
  position: fixed;
  top: 50%;
  left: calc(var(--rail-w) + (100vw - var(--rail-w)) / 2);
  right: auto;
  bottom: auto;
  transform: translate(-50%, -50%);
  margin: 0;
  border: none;
  padding: 0;
  background: transparent;
  width: min(680px, 92vw);
  max-height: 85vh;
  border-radius: 20px;
  overscroll-behavior: contain;
}
.legalmodal::backdrop { background: rgba(4, 8, 18, 0.72); backdrop-filter: blur(4px); }
.legalmodal__box {
  position: relative;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: var(--shadow-lift);
  max-height: 85vh;
  overflow-y: auto;
  padding: 2.25rem 1.75rem;
}
.legalmodal__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: rgba(9, 14, 25, 0.5);
  color: var(--text);
  cursor: pointer;
  transition: all 0.25s var(--ease);
}
.legalmodal__close:hover { border-color: var(--accent); color: var(--accent); }

.legal--modal { max-width: none; margin: 0; padding: 0; }
.legal--modal h1 { padding-right: 2rem; color: #ffd54a; }
.legal--modal h2 { color: #ffd54a; }

.cookiebar {
  position: fixed;
  left: var(--rail-w);
  right: 0;
  bottom: 0;
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  padding: 1rem var(--pad);
  background: rgba(12, 18, 32, 0.96);
  backdrop-filter: blur(16px);
  border-top: 1px solid rgba(255, 107, 44, 0.35);
  box-shadow: 0 -8px 28px rgba(4, 8, 18, 0.5);
  text-align: center;
}
.cookiebar[hidden] { display: none; }
.cookiebar p { color: var(--muted); font-size: 0.85rem; max-width: 640px; }
.cookiebar p a { color: var(--accent); }
.cookiebar__actions { display: flex; gap: 0.6rem; flex-shrink: 0; }

@media (max-width: 960px) {
  .cookiebar { left: 0; }
}

/* ==========================================================================
   OYNATICI ÇUBUĞU
   ========================================================================== */

.player {
  position: fixed;
  left: var(--rail-w);
  right: 0;
  bottom: 0;
  z-index: 120;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.7rem var(--pad);
  background: rgba(12, 18, 32, 0.94);
  backdrop-filter: blur(16px);
  border-top: 1px solid rgba(255, 107, 44, 0.35);
  box-shadow: 0 -8px 28px rgba(4, 8, 18, 0.5);
}
.player[hidden] { display: none; }

.player__info { display: grid; min-width: 130px; max-width: 200px; }
.player__info strong { font-size: 0.88rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.player__info span { font-size: 0.72rem; color: var(--muted); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

.player__play {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: none;
  background: var(--accent);
  cursor: pointer;
  position: relative;
  transition: transform 0.2s var(--ease), background 0.2s;
}
.player__play:hover { transform: scale(1.07); background: var(--accent-hover); }
.player__play::before {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 0;
  height: 0;
  border-left: 11px solid #fff;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  transform: translateX(2px);
}
.player__play.is-playing::before {
  border: none;
  width: 10px;
  height: 13px;
  border-left: 3.5px solid #fff;
  border-right: 3.5px solid #fff;
  transform: none;
}

.player__timeline { flex: 1; display: flex; align-items: center; gap: 0.6rem; min-width: 140px; }
.player__time { font-size: 0.72rem; color: var(--muted); font-variant-numeric: tabular-nums; min-width: 34px; }

.player__track { position: relative; flex: 1; height: 34px; }
.player__wavecanvas { position: absolute; inset: 0; width: 100%; height: 100%; }
.player__seek {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -webkit-appearance: none;
  appearance: none;
  background: transparent;
  cursor: pointer;
  margin: 0;
}
.player__seek::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 4px;
  height: 26px;
  border-radius: 2px;
  background: var(--text);
  opacity: 0;
  transition: opacity 0.2s;
}
.player__track:hover .player__seek::-webkit-slider-thumb { opacity: 0.7; }
.player__seek::-moz-range-thumb {
  width: 4px;
  height: 26px;
  border-radius: 2px;
  border: none;
  background: var(--text);
  opacity: 0;
}
.player__track:hover .player__seek::-moz-range-thumb { opacity: 0.7; }
.player__seek::-moz-range-track { background: transparent; }

.player__vol { display: flex; align-items: center; gap: 0.45rem; width: 130px; flex-shrink: 0; }
.player__vol button { background: none; border: none; font-size: 1rem; cursor: pointer; line-height: 1; }
.player__vol input[type="range"] {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 4px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--accent) var(--fill, 0%), var(--surface-2) var(--fill, 0%));
  cursor: pointer;
}
.player__vol input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--accent);
  transition: transform 0.15s;
}
.player__vol input[type="range"]::-webkit-slider-thumb:hover { transform: scale(1.25); }
.player__vol input[type="range"]::-moz-range-thumb {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--accent);
}

.player__dl {
  flex-shrink: 0;
  font-size: 0.78rem;
  font-weight: bold;
  color: var(--accent);
  border: 1px solid rgba(255, 107, 44, 0.4);
  border-radius: 999px;
  padding: 0.4rem 0.8rem;
  transition: all 0.25s;
}
.player__dl:hover { background: var(--accent); color: #fff; }

.player__close {
  flex-shrink: 0;
  background: none;
  border: none;
  color: var(--muted);
  font-size: 0.95rem;
  cursor: pointer;
  padding: 0.3rem;
  transition: color 0.25s;
}
.player__close:hover { color: var(--text); }

/* ==========================================================================
   WHATSAPP BALONU
   ========================================================================== */

.wafloat {
  position: fixed;
  right: 1.1rem;
  bottom: 1.1rem;
  z-index: 130;
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
  transition: transform 0.25s var(--ease), box-shadow 0.25s;
  animation: wapulse 2.6s ease-out infinite;
}
.wafloat:hover {
  transform: scale(1.08) translateY(-2px);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.45);
  animation: none;
}
@keyframes wapulse {
  0%   { box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35), 0 0 0 0 rgba(37, 211, 102, 0.3); }
  70%  { box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35), 0 0 0 16px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35), 0 0 0 0 rgba(37, 211, 102, 0); }
}
body:has(.player:not([hidden])) .wafloat { bottom: 84px; }

/* ==========================================================================
   REVEAL + REDUCED MOTION
   ========================================================================== */

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  .reveal { opacity: 1; transform: none; }
  .ambient__orb, .ambient__stars { display: none; }
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */

@media (max-width: 1280px) {
  .voices { grid-template-columns: repeat(3, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 1080px) {
  .hero__grid { grid-template-columns: 1fr; }
  .studio__row--action { grid-template-columns: 1fr; align-items: stretch; }
  .field--slim { width: 100%; }
  .services { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 960px) {
  :root { --rail-w: 0px; }

  .page { margin-left: 0; padding-bottom: 130px; }
  .mobilebar { display: flex; }
  .player { left: 0; flex-wrap: wrap; gap: 0.6rem 1rem; padding: 0.6rem 1rem; }
  .player__info { order: 1; flex: 1; }
  .player__play { order: 2; }
  .player__close { order: 3; }
  .player__timeline { order: 4; flex-basis: 100%; }
  .player__vol { order: 5; }
  .player__dl { order: 6; }

  .siderail {
    inset: 0;
    width: min(300px, 85vw);
    transform: translateX(-100%);
    transition: transform 0.4s var(--ease);
    padding-top: 4.25rem;
  }
  .siderail.is-open { transform: none; }
  .siderail .langsw { display: none; } /* mobilde üst barda var */

  .hero { padding-top: 5.5rem; }
  .hero__wave { display: none; }
  .band { grid-template-columns: 1fr; }
  .studio__row { grid-template-columns: 1fr; }
  .studio__stats { grid-template-columns: 1fr 1fr; }
  .refs__head { flex-direction: column; align-items: flex-start; }
  .voices { grid-template-columns: repeat(2, 1fr); }
}

/* Mobil: örnek sesler yana kaydırmalı */
@media (max-width: 700px) {
  .voices {
    display: flex;
    grid-template-columns: none;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 0.85rem;
    padding: 0.25rem 0.25rem 0.75rem;
    scrollbar-width: thin;
    scrollbar-color: var(--accent) var(--surface);
  }
  .voices::-webkit-scrollbar { height: 5px; }
  .voices::-webkit-scrollbar-track { background: var(--surface); border-radius: 3px; }
  .voices::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 3px; }

  .voice { flex: 0 0 82%; scroll-snap-align: start; }
  .voice.is-hidden { display: none; }

  .swipehint { display: block; }

  .hero__stats { gap: 1.1rem 1.75rem; }
  .filters { overflow-x: auto; flex-wrap: nowrap; padding-bottom: 0.35rem; }
  .filter { flex-shrink: 0; }
  .services { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .wafloat { width: 50px; height: 50px; right: 0.9rem; }
  body:has(.player:not([hidden])) .wafloat { bottom: 132px; }
}
