/* ============================================================
   wedesgn — ORTAK STİLLER (tüm sayfalar bunu kullanır)
   Ana renkler ve font tek yerden buradan değişir.
   Aydınlık = :root  ·  Karanlık = :root[data-theme="dark"]
   ============================================================ */
:root {
  --font: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --mono: "Geist Mono", ui-monospace, "SF Mono", monospace;

  --accent: #ef1d2d; /* ana KIRMIZI vurgu (dikkat çekici) */
  --accent-soft: #ffe5e6; /* kırmızı açık ton */

  --text: #0a0e1a; /* ana metin */
  --text-soft: #5b6472; /* ikincil metin */
  --line: #e7e9ee; /* ince çizgi / kenarlık */

  --bg: #ffffff; /* sayfa zemini */
  --bg-soft: #f6f7f9; /* hafif gri zemin */
  --surface: #ffffff; /* kart / input zemini */
  --nav-bg: rgba(255, 255, 255, 0.82);

  --dark: #0a0e1a; /* HER İKİ TEMADA koyu kalan bölümler */
  --dark-soft: #aab3c5; /* koyu zeminde ikincil metin */

  --radius: 18px;
  --radius-lg: 26px;
  --maxw: 1180px;
}
:root[data-theme="dark"] {
  --accent: #ff4d52;
  --accent-soft: #2c1416;
  --text: #eef1f6;
  --text-soft: #9aa3b4;
  --line: #262c3b;
  --bg: #0a0e1a;
  --bg-soft: #11172300;
  --bg-soft: #131826;
  --surface: #161c2a;
  --nav-bg: rgba(18, 23, 35, 0.8);
  --dark: #05080f;
}

/* ---- GENEL / RESET ---- */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
  overflow-x: hidden;
  transition:
    background 0.3s ease,
    color 0.3s ease;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  display: block;
  max-width: 100%;
}
.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 28px;
}
.eyebrow {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
}
.section-title {
  font-size: clamp(30px, 4.2vw, 52px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.05;
  text-wrap: balance;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-weight: 700;
  font-size: 15px;
  border: none;
  cursor: pointer;
  padding: 14px 26px;
  border-radius: 100px;
  transition: 0.2s ease;
  font-family: inherit;
}
.btn-dark {
  background: var(--dark);
  color: #fff;
}
.btn-dark:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px -10px rgba(10, 14, 26, 0.5);
}
.btn-ghost {
  background: var(--surface);
  color: var(--text);
  border: 1px solid var(--line);
}
.btn-ghost:hover {
  border-color: var(--text);
}
.btn-light {
  background: #fff;
  color: #0a0e1a;
}
.btn-light:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px -10px rgba(0, 0, 0, 0.35);
}

/* ============================================================
   MENÜ — Sabit/sticky pill üst bar (yazılar ORTADA)
   ============================================================ */
.nav-shell {
  position: fixed;
  top: 18px;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  justify-content: center;
  padding: 0 18px;
}
.nav {
  width: 100%;
  max-width: 1240px;
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--nav-bg);
  backdrop-filter: blur(18px);
  border: 1px solid var(--line);
  border-radius: 100px;
  padding: 10px 12px 10px 26px;
  box-shadow: 0 10px 40px -18px rgba(10, 14, 26, 0.28);
  transition:
    background 0.3s ease,
    border-color 0.3s ease;
}
.brand {
  font-weight: 800;
  font-size: 21px;
  letter-spacing: -0.03em;
  flex: 1 1 0;
} /* sol denge */
.brand b {
  color: var(--accent);
}
.nav-links {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}
.nav-links a {
  font-size: 14.5px;
  font-weight: 600;
  color: var(--text-soft);
  padding: 9px 15px;
  border-radius: 100px;
  transition: 0.18s ease;
  position: relative;
  white-space: nowrap;
}
.nav-links a:hover {
  color: var(--text);
  background: var(--bg-soft);
}
.nav-links a.active {
  color: var(--text);
  background: var(--accent-soft);
}
.soon-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.badge {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.04em;
  background: var(--accent-soft);
  color: var(--accent);
  padding: 3px 8px;
  border-radius: 100px;
}
.soon-pop {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  background: var(--dark);
  color: #fff;
  font-size: 12.5px;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 10px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: 0.22s ease;
}
.soon-pop::before {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 6px solid transparent;
  border-bottom-color: var(--dark);
}
.soon-link.show .soon-pop {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* sağ kontroller: tema + dil + (mobil) menü */
.nav-right {
  flex: 1 1 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 7px;
}
.nav-ctrl {
  height: 38px;
  min-width: 38px;
  padding: 0;
  border-radius: 100px;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--text);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.18s ease;
  flex: 0 0 auto;
}
.nav-ctrl:hover {
  background: var(--bg-soft);
}
.lang-btn {
  padding: 0 13px;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
}
.theme-btn .moon {
  display: none;
}
:root[data-theme="dark"] .theme-btn .sun {
  display: none;
}
:root[data-theme="dark"] .theme-btn .moon {
  display: block;
}

.menu-toggle {
  display: none;
  background: var(--surface);
  border: 1px solid var(--line);
  cursor: pointer;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}
.menu-toggle i {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  position: relative;
}
.menu-toggle i::before,
.menu-toggle i::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
}
.menu-toggle i::before {
  top: -6px;
}
.menu-toggle i::after {
  top: 6px;
}

/* ============================================================
   İÇ SAYFA HERO (Web Siteleri / Rezervasyon Sistemleri)
   ============================================================ */
.page-hero {
  padding: 170px 24px 70px;
  text-align: center;
  background:
    radial-gradient(900px 440px at 50% -10%, var(--accent-soft) 0%, transparent 60%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-soft) 100%);
}
.page-hero .eyebrow {
  display: inline-block;
  margin-bottom: 18px;
}
.page-hero h1 {
  font-size: clamp(40px, 7vw, 76px);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1;
  text-wrap: balance;
}
.page-hero p {
  margin: 22px auto 32px;
  max-width: 600px;
  font-size: clamp(16px, 2.2vw, 20px);
  color: var(--text-soft);
  font-weight: 500;
  text-wrap: balance;
}
.crumb {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--text-soft);
  margin-bottom: 26px;
}
.crumb a {
  color: var(--accent);
}

/* ============================================================
   ÖZELLİK GRID (iç sayfalar)
   ============================================================ */
.features {
  padding: 96px 0;
}
.features .head {
  max-width: 640px;
  margin-bottom: 52px;
}
.features .head .section-title {
  margin-top: 14px;
}
.features .head p {
  margin-top: 16px;
  color: var(--text-soft);
  font-size: 17px;
}
.feat-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
.feature {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px 30px;
  transition: 0.25s ease;
}
.feature:hover {
  transform: translateY(-5px);
  background: var(--surface);
  box-shadow: 0 26px 50px -28px rgba(10, 14, 26, 0.3);
}
.feature .ic {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--surface);
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--accent);
}
.feature h3 {
  font-size: 21px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.feature p {
  color: var(--text-soft);
  font-size: 15.5px;
}

/* ============================================================
   CTA BANDI (iç sayfa alt çağrı)
   ============================================================ */
.cta-band {
  margin: 40px auto 110px;
  max-width: var(--maxw);
  padding: 0 28px;
}
.cta-inner {
  background: var(--dark);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 64px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
  background-image: radial-gradient(
    700px 360px at 80% -20%,
    rgba(255, 77, 82, 0.4),
    transparent 60%
  );
}
.cta-inner h2 {
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 800;
  letter-spacing: -0.025em;
  margin-bottom: 14px;
  text-wrap: balance;
}
.cta-inner p {
  color: var(--dark-soft);
  font-size: 17px;
  max-width: 480px;
  margin: 0 auto 28px;
}

/* ============================================================
   REZERVASYON ÖNİZLEME (mock takvim/randevu)
   ============================================================ */
.booking {
  padding: 30px 0 96px;
}
.booking-wrap {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}
.booking-copy .section-title {
  margin-top: 14px;
}
.booking-copy p {
  margin-top: 16px;
  color: var(--text-soft);
  font-size: 17px;
}
.book-list {
  list-style: none;
  margin-top: 26px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.book-list li {
  display: flex;
  gap: 13px;
  align-items: flex-start;
  font-weight: 700;
  font-size: 15.5px;
}
.book-list .tick {
  flex: 0 0 auto;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}
.book-list li span.t {
  color: var(--text-soft);
  font-weight: 500;
  display: block;
  font-size: 14px;
  margin-top: 2px;
}
.book-mock {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: 0 36px 80px -44px rgba(10, 14, 26, 0.5);
}
.book-mock .bm-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
.book-mock .bm-top b {
  font-size: 17px;
  font-weight: 800;
}
.book-mock .bm-top .mon {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--text-soft);
}
.cal {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 7px;
}
.cal .dow {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--text-soft);
  text-align: center;
  padding-bottom: 4px;
}
.cal .day {
  aspect-ratio: 1;
  border-radius: 10px;
  background: var(--bg-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
}
.cal .day.muted {
  color: var(--text-soft);
  opacity: 0.4;
}
.cal .day.sel {
  background: var(--accent);
  color: #fff;
}
.cal .day.dot {
  position: relative;
}
.cal .day.dot::after {
  content: "";
  position: absolute;
  bottom: 6px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--accent);
}
.slots {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 20px;
}
.slot {
  font-size: 13px;
  font-weight: 700;
  padding: 9px 14px;
  border-radius: 100px;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--text);
}
.slot.taken {
  color: var(--text-soft);
  text-decoration: line-through;
  background: var(--bg-soft);
  opacity: 0.6;
}
.slot.pick {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

/* ============================================================
   BÖLÜM: ÇALIŞTIĞIMIZ ŞİRKETLER (şerit)
   ============================================================ */
.clients {
  padding: 54px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg);
}
.clients h4 {
  text-align: center;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-soft);
  font-weight: 500;
  margin-bottom: 30px;
}
.logo-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 18px;
}
.logo-box {
  flex: 1 1 150px;
  max-width: 180px;
  height: 58px;
  border-radius: 12px;
  background: var(--bg-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  filter: grayscale(1);
  opacity: 0.62;
  transition: 0.25s ease;
}
.logo-box:hover {
  opacity: 1;
  filter: grayscale(0);
}
.logo-box .mk {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  background: var(--text-soft);
}
.logo-box .mk.r {
  border-radius: 50%;
}
.logo-box .mk.d {
  transform: rotate(45deg);
  border-radius: 4px;
}
.logo-box svg {
  width: 23px;
  height: 23px;
  flex: 0 0 auto;
}
.logo-box span {
  font-weight: 800;
  font-size: 15px;
  letter-spacing: -0.02em;
  color: var(--text-soft);
}
/* Sonsuz kayan logo şeridi (marquee) */
.logo-marquee {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent, #000 12%, #000 88%, transparent);
  mask-image: linear-gradient(to right, transparent, #000 12%, #000 88%, transparent);
}
.logo-track {
  display: flex;
  gap: 18px;
  width: max-content;
  animation: logo-marquee 34s linear infinite;
}
.logo-marquee:hover .logo-track {
  animation-play-state: paused;
}
.logo-track .logo-box {
  flex: 0 0 auto;
  width: 172px;
  max-width: none;
}
@keyframes logo-marquee {
  to {
    transform: translateX(calc(-50% - 9px));
  }
}

/* ============================================================
   BÖLÜM: NASIL ÇALIŞIR (3 adım)
   ============================================================ */
.how {
  padding: 120px 0 110px;
  background: #000;
}
.how .section-title {
  color: #fff;
}
.how .head p {
  color: #aab3c5;
}
.how .head {
  max-width: 640px;
  margin-bottom: 56px;
}
.how .head .section-title {
  margin-top: 14px;
}
.how .head p {
  margin-top: 16px;
  color: var(--text-soft);
  font-size: 17px;
}
.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
}
.step {
  background: none;
  border: none;
  padding: 0;
}
/* sahne — içinde canlı arayüz mock'u */
.step-stage {
  position: relative;
  height: 300px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: var(--bg-soft);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px;
  transition: 0.3s ease;
}
.step:hover .step-stage {
  transform: translateY(-5px);
  border-color: rgba(255, 77, 82, 0.45);
  box-shadow: 0 32px 60px -34px rgba(255, 77, 82, 0.4);
}
.step-stage::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -46%;
  width: 150%;
  height: 92%;
  transform: translateX(-50%);
  background: radial-gradient(closest-side, rgba(255, 77, 82, 0.16), transparent 72%);
  pointer-events: none;
}
.step-num {
  position: absolute;
  top: 15px;
  left: 18px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--text-soft);
  z-index: 3;
}
.step-body {
  margin-top: 22px;
  padding: 0 4px;
}
.step-body h3 {
  font-size: 21px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.step-body p {
  color: var(--text-soft);
  font-size: 15.5px;
  line-height: 1.55;
}

/* --- İNTERAKTİF VİTRİN (her kart bir web sitesi) --- */
.showcase {
  display: flex;
  gap: 14px;
  height: 440px;
  width: 100%;
  align-items: stretch;
}
.ws {
  position: relative;
  flex: 1 1 0;
  min-width: 64px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  background: linear-gradient(150deg, var(--g1), var(--g2));
  border: 1px solid var(--line);
  box-shadow: 0 12px 34px -22px rgba(10, 14, 26, 0.5);
  transition:
    flex 0.6s cubic-bezier(0.7, 0, 0.2, 1),
    box-shadow 0.5s ease,
    border-color 0.5s ease;
}
.ws.active {
  flex: 7 1 0;
  border-color: transparent;
  box-shadow: 0 40px 80px -38px rgba(10, 14, 26, 0.7);
}
/* tam genişlikte yerleşim — daralınca soldan kırpılır, açılınca okunur */
.ws-site {
  position: absolute;
  inset: 0;
  width: 640px;
  max-width: none;
  padding: 24px 30px;
  color: var(--ink);
  display: flex;
  flex-direction: column;
  opacity: 0;
  transition: opacity 0.5s ease 0.12s;
  pointer-events: none;
}
.ws.active .ws-site {
  opacity: 1;
}
.ws-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 30px;
}
.ws-dots {
  display: flex;
  gap: 6px;
}
.ws-dots i {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--ink);
  opacity: 0.4;
}
.ws-url {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.02em;
  background: color-mix(in srgb, var(--ink) 14%, transparent);
  color: var(--ink);
  opacity: 0.9;
  padding: 6px 14px;
  border-radius: 100px;
}
.ws-page {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-top: auto;
}
.ws-eye {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.7;
  margin-bottom: 14px;
}
.ws-name {
  font-size: 46px;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 0.98;
  margin-bottom: 14px;
}
.ws-tag {
  font-size: 16px;
  font-weight: 500;
  color: var(--soft);
  max-width: 380px;
  margin-bottom: 22px;
  line-height: 1.45;
}
.ws-cta {
  align-self: flex-start;
  background: var(--pill);
  color: var(--pillink);
  font-weight: 700;
  font-size: 14.5px;
  padding: 12px 22px;
  border-radius: 100px;
  white-space: nowrap;
  margin-bottom: 24px;
}
.ws-row {
  display: flex;
  gap: 12px;
  width: 100%;
}
.ws-row span {
  flex: 1;
  height: 64px;
  border-radius: 14px;
  background: color-mix(in srgb, var(--ink) 12%, transparent);
  border: 1px solid color-mix(in srgb, var(--ink) 18%, transparent);
}
/* daralmış durumda görünen şerit: ikon + dikey etiket */
.ws-rail {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0;
  color: var(--ink);
  background: linear-gradient(
    180deg,
    transparent 40%,
    color-mix(in srgb, var(--g2) 55%, transparent)
  );
  transition: opacity 0.4s ease;
}
.ws.active .ws-rail {
  opacity: 0;
  pointer-events: none;
}
.ws-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  background: color-mix(in srgb, var(--ink) 14%, transparent);
  border: 1px solid color-mix(in srgb, var(--ink) 22%, transparent);
  backdrop-filter: blur(6px);
}
.ws-vlabel {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
  white-space: nowrap;
  opacity: 0.92;
}

/* --- mock ortak --- */
.mk {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 300px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.mk-field {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 13px 14px;
  box-shadow: 0 18px 40px -24px rgba(0, 0, 0, 0.55);
}
.mk-field > svg {
  color: var(--text-soft);
  flex: 0 0 auto;
}
.mk-type {
  font-weight: 700;
  font-size: 15px;
  flex: 1;
  display: flex;
  align-items: center;
}
.mk-type .dim {
  color: var(--text-soft);
}
.caret {
  display: inline-block;
  width: 2px;
  height: 16px;
  background: var(--accent);
  margin-left: 2px;
  animation: blink 1.05s steps(2) infinite;
}
@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}
.mk-ok {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #16a34a;
  background: rgba(22, 163, 74, 0.15);
  border: 1px solid rgba(22, 163, 74, 0.35);
  border-radius: 100px;
  padding: 5px;
}
.mk-sug {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  padding-left: 2px;
}
.mk-sug span {
  font-family: var(--mono);
  font-size: 11.5px;
  color: var(--text-soft);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 100px;
  padding: 5px 11px;
}
/* template seçimi */
.mk-tpls {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 14px;
  align-items: center;
  max-width: 100%;
}
.mk-thumb {
  position: relative;
  width: 78px;
  height: 106px;
  border-radius: 12px;
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 11px;
  display: flex;
  flex-direction: column;
  gap: 7px;
  box-shadow: 0 14px 30px -22px rgba(0, 0, 0, 0.5);
  transition: 0.3s ease;
}
.mk-thumb i {
  display: block;
  height: 7px;
  border-radius: 4px;
  background: var(--line);
}
.mk-thumb i:first-child {
  width: 64%;
  background: var(--text-soft);
  opacity: 0.65;
}
.mk-thumb i:last-child {
  width: 88%;
}
.mk-thumb.sel {
  border-color: var(--accent);
  transform: translateY(-10px) scale(1.06);
  box-shadow:
    0 0 0 3px rgba(255, 77, 82, 0.2),
    0 22px 40px -20px rgba(255, 77, 82, 0.55);
}
.mk-tag {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: var(--accent);
  padding: 4px;
  border-radius: 100px;
}
.mk-cursor {
  position: absolute;
  z-index: 4;
  right: 30%;
  bottom: 24%;
  color: #fff;
  filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.5));
}
/* gönder */
.mk-send {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 100px;
  padding: 8px 8px 8px 18px;
  box-shadow: 0 18px 40px -24px rgba(0, 0, 0, 0.55);
}
.mk-lines {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.mk-lines i {
  display: block;
  height: 7px;
  border-radius: 4px;
  background: var(--line);
}
.mk-lines i:first-child {
  width: 72%;
}
.mk-lines i:last-child {
  width: 46%;
  opacity: 0.6;
}
.mk-sendbtn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 22px -8px rgba(255, 77, 82, 0.7);
}
.mk-status {
  display: flex;
  align-items: center;
  gap: 7px;
  justify-content: flex-end;
  padding-right: 6px;
  font-family: var(--mono);
  font-size: 11px;
  color: #16a34a;
}

/* ============================================================
   BÖLÜM: TEMPLATE KEŞFET (yatay slider)
   ============================================================ */
.discover {
  padding: 30px 0 120px;
  overflow: hidden;
  background: #000;
}
.discover .head {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 24px;
  margin-bottom: 36px;
}
.discover .head .l {
  max-width: 620px;
  margin: 0 auto;
}
.discover .head .section-title {
  margin-top: 14px;
}
.discover .head p {
  margin-top: 14px;
  color: var(--text-soft);
  font-size: 17px;
}
.arrows {
  display: flex;
  gap: 10px;
}
.arrow {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--surface);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.2s ease;
  color: var(--text);
}
.arrow:hover {
  background: var(--dark);
  color: #fff;
  border-color: var(--dark);
}
.arrow:disabled {
  opacity: 0.35;
  cursor: default;
  background: var(--surface);
  color: var(--text);
  border-color: var(--line);
}
/* ---- Yelpaze (fan) kart yığını ---- */
.disc-stage {
  padding: 6px 0 6px;
}
.slider {
  position: relative;
  height: clamp(420px, 46vw, 500px);
  width: 100%;
  cursor: default;
  touch-action: pan-y;
}
.slider.dragging {
  cursor: grabbing;
}
.slider.dragging .tpl {
  transition: none;
}
.tpl {
  position: absolute;
  left: 50%;
  bottom: 14px;
  width: clamp(280px, 30vw, 380px);
  margin-left: calc(clamp(280px, 30vw, 380px) / -2);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: 0 30px 60px -34px rgba(10, 14, 26, 0.7);
  user-select: none;
  transition:
    transform 0.5s cubic-bezier(0.22, 0.61, 0.36, 1),
    opacity 0.4s ease,
    box-shadow 0.35s ease;
}
.tpl.is-active {
  box-shadow:
    0 44px 80px -34px rgba(10, 14, 26, 0.85),
    0 0 0 1px rgba(255, 255, 255, 0.06);
}
.tpl.is-hidden {
  opacity: 0;
  pointer-events: none;
}
.fan-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  margin-top: 18px;
}
.fan-dots button {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  padding: 0;
  cursor: pointer;
  background: var(--text-soft);
  opacity: 0.35;
  transition: 0.25s ease;
}
.fan-dots button:hover {
  opacity: 0.6;
}
.fan-dots button.on {
  opacity: 1;
  width: 26px;
  border-radius: 5px;
  background: var(--accent);
}
@property --shine-angle {
  syntax: "<angle>";
  inherits: false;
  initial-value: 0deg;
}
.tpl::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 2px;
  z-index: 3;
  background: conic-gradient(
    from var(--shine-angle),
    transparent 0deg,
    var(--accent) 70deg,
    #ff7a59 140deg,
    transparent 220deg
  );
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}
.tpl:hover::after {
  opacity: 1;
  animation: tpl-shine 4s linear infinite;
}
@keyframes tpl-shine {
  to {
    --shine-angle: 360deg;
  }
}
@media (prefers-reduced-motion: reduce) {
  .tpl:hover::after {
    animation: none;
  }
}
.tpl .preview {
  height: 300px;
  position: relative;
  overflow: hidden;
  padding: 18px;
}
.tpl .pv-bar {
  display: flex;
  gap: 6px;
  margin-bottom: 18px;
}
.tpl .pv-bar i {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
}
.tpl .pv-h {
  font-size: 30px;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.05;
}
.tpl .pv-sub {
  font-size: 12.5px;
  margin-top: 8px;
  opacity: 0.8;
  max-width: 78%;
}
.tpl .pv-pill {
  display: inline-block;
  margin-top: 16px;
  font-size: 11px;
  font-weight: 700;
  padding: 7px 14px;
  border-radius: 100px;
}
.tpl .pv-cards {
  position: absolute;
  left: 18px;
  right: -40px;
  bottom: -26px;
  display: flex;
  gap: 10px;
}
.tpl .pv-cards span {
  flex: 0 0 110px;
  height: 84px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.3);
}
.tpl .meta {
  padding: 18px 20px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.tpl .meta h4 {
  font-size: 17px;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.tpl .meta .cat {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--text-soft);
  letter-spacing: 0.04em;
}
.tpl .meta .go {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--bg-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
}

/* ============================================================
   TEMPLATE HAVUZU (sakin grid galeri)
   ============================================================ */
.pool {
  padding: 34px 0 110px;
  background: var(--bg);
}
.pool .head {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 28px;
}
.pool .head .section-title {
  margin-top: 14px;
}
.pool .head p {
  margin-top: 14px;
  color: var(--text-soft);
  font-size: 17px;
}
.pool-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 42px;
}
.chip {
  font-family: var(--font);
  font-size: 14px;
  font-weight: 600;
  color: var(--text-soft);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 100px;
  padding: 9px 18px;
  cursor: pointer;
  transition: 0.18s ease;
}
.chip:hover {
  color: var(--text);
  border-color: var(--text-soft);
}
.chip.on {
  background: var(--accent-soft);
  color: var(--accent);
  border-color: transparent;
}
.pool-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 22px;
}
.pcard {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--surface);
  cursor: pointer;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}
.pcard.hide {
  display: none;
}
.pcard:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 77, 82, 0.4);
  box-shadow: 0 26px 52px -30px rgba(10, 14, 26, 0.55);
}
.pcard .preview {
  height: 230px;
  position: relative;
  overflow: hidden;
  padding: 20px;
}
.pcard .pv-bar {
  display: flex;
  gap: 6px;
  margin-bottom: 18px;
}
.pcard .pv-bar i {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
}
.pcard .pv-h {
  font-size: 30px;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.05;
}
.pcard .pv-sub {
  font-size: 12.5px;
  margin-top: 8px;
  opacity: 0.85;
  max-width: 80%;
}
.pcard .pv-pill {
  display: inline-block;
  margin-top: 16px;
  font-size: 11px;
  font-weight: 700;
  padding: 7px 14px;
  border-radius: 100px;
}
.pcard .pv-cards {
  position: absolute;
  left: 20px;
  right: -40px;
  bottom: -26px;
  display: flex;
  gap: 10px;
}
.pcard .pv-cards span {
  flex: 0 0 110px;
  height: 84px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.3);
}
.pcard .meta {
  padding: 16px 20px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.pcard .meta h4 {
  font-size: 17px;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.pcard .meta .cat {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--text-soft);
  letter-spacing: 0.04em;
  margin-top: 3px;
}
.pcard .pick {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  font-size: 13px;
  font-weight: 700;
  color: var(--accent);
  background: var(--accent-soft);
  padding: 8px 14px;
  border-radius: 100px;
  transition: 0.2s ease;
}
.pcard:hover .pick {
  background: var(--accent);
  color: #fff;
}

/* ============================================================
   SHIMMER BAŞLIK (büyük başlıklarda ışıltı geçişi)
   ============================================================ */
:root {
  --shimmer-contrast: rgba(255, 255, 255, 0.6);
}
:root[data-theme="dark"] {
  --shimmer-contrast: rgba(0, 0, 0, 0.5);
}
.shimmer {
  -webkit-text-fill-color: transparent;
  background: currentColor
    linear-gradient(
      to right,
      currentColor 0%,
      var(--shimmer-contrast) 40%,
      var(--shimmer-contrast) 60%,
      currentColor 100%
    );
  -webkit-background-clip: text;
  background-clip: text;
  background-repeat: no-repeat;
  background-size: 50% 200%;
  background-position: -100% 0;
  animation: shimmer-sweep 3s linear infinite;
}
@keyframes shimmer-sweep {
  0% {
    background-position: -100% 0;
  }
  45% {
    background-position: 250% 0;
  }
  100% {
    background-position: 250% 0;
  }
}
@media (prefers-reduced-motion: reduce) {
  .shimmer {
    animation: none;
  }
}

/* ============================================================
   BÖLÜM: RAKAMLAR (animasyonlu sayaç) — koyu bölüm
   ============================================================ */
.stats {
  background: #000;
  color: var(--text);
  padding: 110px 0;
}
.stats .head {
  text-align: center;
  margin-bottom: 64px;
}
.stats .head .eyebrow {
  color: var(--accent);
}
.stats .head .section-title {
  margin-top: 14px;
}
.stat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.stat {
  text-align: center;
  padding: 24px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: var(--bg-soft);
}
.stat .val {
  font-size: clamp(54px, 8vw, 86px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  background: linear-gradient(180deg, var(--text), var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.stat .lab {
  margin-top: 14px;
  color: var(--text-soft);
  font-size: 16px;
  font-weight: 600;
}

/* ============================================================
   BÖLÜM: BİZE ULAŞ (AI sohbet kutusu görünümü)
   ============================================================ */
.contact {
  padding: 120px 0;
}
.contact .head {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 48px;
}
.contact .head .section-title {
  margin-top: 14px;
}
.contact .head p {
  margin-top: 14px;
  color: var(--text-soft);
  font-size: 17px;
}
.aibox {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
}
.ai-thread {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 16px;
  max-height: 300px;
  overflow-y: auto;
  padding: 0 2px;
}
.ai-thread:empty {
  display: none;
}
.ai-grad {
  background: linear-gradient(180deg, var(--accent), #ffb4a3);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-style: italic;
  padding-right: 0.14em;
  margin-right: -0.06em;
}
.bubble {
  max-width: 80%;
  padding: 13px 18px;
  border-radius: 18px;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.45;
}
.bubble.bot {
  align-self: flex-start;
  background: var(--surface);
  border: 1px solid var(--line);
  border-bottom-left-radius: 6px;
}
.bubble.me {
  align-self: flex-end;
  background: var(--accent);
  color: #fff;
  border-bottom-right-radius: 6px;
}
.bubble .who {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--text-soft);
  margin-bottom: 6px;
}
.bubble .who .av {
  width: 18px;
  height: 18px;
  border-radius: 6px;
  background: var(--accent);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  font-weight: 800;
}
.ai-form {
  position: relative;
  border-radius: 22px;
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.04) inset,
    0 30px 70px -40px rgba(0, 0, 0, 0.6);
  transition: 0.25s ease;
}
.ai-form:focus-within {
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.04) inset,
    0 30px 70px -40px rgba(0, 0, 0, 0.6);
}
/* AI tarzı rengarenk dönen ışık çizgisi (border boyunca) */
@property --bd-ang {
  syntax: "<angle>";
  inherits: false;
  initial-value: 0deg;
}
.ai-form::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1.6px;
  background: conic-gradient(
    from var(--bd-ang),
    transparent 0deg,
    transparent 64deg,
    #2979ff 86deg,
    #7c4dff 104deg,
    #ff80ab 122deg,
    #ff6d00 140deg,
    #ffd600 154deg,
    transparent 176deg,
    transparent 360deg
  );
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  z-index: 1;
  animation: bdTravel 4.5s linear infinite;
}
@keyframes bdTravel {
  to {
    --bd-ang: 360deg;
  }
}
.ai-form textarea {
  width: 100%;
  resize: none;
  border: none;
  outline: none;
  background: transparent;
  font-family: inherit;
  font-size: 16px;
  line-height: 1.5;
  color: var(--text);
  padding: 20px 22px 8px;
  min-height: 64px;
  max-height: 200px;
}
.ai-form textarea::placeholder {
  color: var(--text-soft);
}
.ai-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 12px 12px;
}
.ai-left,
.ai-right {
  display: flex;
  align-items: center;
  gap: 8px;
}
.ai-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  background: var(--bg-soft);
  color: var(--text-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.18s;
}
.ai-icon:hover {
  color: var(--text);
  background: var(--line);
}
.ai-model {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 7px 12px;
  border-radius: 100px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--text-soft);
  background: var(--bg-soft);
  border: 1px solid var(--line);
  white-space: nowrap;
  flex: 0 0 auto;
}
.ai-model svg {
  color: var(--accent);
}
.ai-plan {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  background: transparent;
  color: var(--text-soft);
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  transition: 0.18s;
  white-space: nowrap;
  flex: 0 0 auto;
}
.ai-plan:hover {
  color: var(--text);
  background: var(--bg-soft);
}
.ai-send {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  background: var(--accent);
  color: #fff;
  font-family: inherit;
  font-size: 14px;
  font-weight: 700;
  transition: 0.2s;
  box-shadow: 0 10px 26px -10px rgba(255, 77, 82, 0.7);
  white-space: nowrap;
  flex: 0 0 auto;
}
.ai-send:hover {
  transform: translateY(-1px);
}
.ai-send:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  box-shadow: none;
  transform: none;
}

/* nefes alan radyal ışıltı (marka tonu) */
.glow {
  position: absolute;
  left: 0;
  right: 0;
  height: 72%;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}
.glow-down {
  top: 0;
}
.glow-up {
  bottom: 0;
}
.glow span {
  position: absolute;
  left: 50%;
  width: 130%;
  aspect-ratio: 1/0.66;
  transform: translateX(-50%);
  border-radius: 50%;
  will-change: transform, opacity;
  animation: glowBreathe 7s ease-in-out infinite;
}
.glow-down span {
  top: -42%;
  background: radial-gradient(
    closest-side,
    rgba(255, 77, 82, 0.34),
    rgba(255, 122, 89, 0.14) 46%,
    transparent 72%
  );
}
.glow-up span {
  bottom: -42%;
  background: radial-gradient(
    closest-side,
    rgba(255, 77, 82, 0.32),
    rgba(255, 122, 89, 0.13) 46%,
    transparent 72%
  );
}
@keyframes glowBreathe {
  0%,
  100% {
    transform: translateX(-50%) scale(1);
    opacity: 0.82;
  }
  50% {
    transform: translateX(-50%) scale(1.14);
    opacity: 1;
  }
}
.discover {
  position: relative;
}
/* akışkan WebGL shader arka planı (kırmızı aurora) */
.shader-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  display: block;
  opacity: 0.92;
  -webkit-mask-image: linear-gradient(180deg, transparent 0, #000 16%, #000 78%, transparent 100%);
  mask-image: linear-gradient(180deg, transparent 0, #000 16%, #000 78%, transparent 100%);
}
.contact {
  position: relative;
  overflow: hidden;
}
/* alt tarafa yoğunlaşan renk paketi (contact) */
.shader-bg.shader-bottom {
  -webkit-mask-image: linear-gradient(180deg, transparent 0, #000 55%, #000 92%, transparent 100%);
  mask-image: linear-gradient(180deg, transparent 0, #000 55%, #000 92%, transparent 100%);
}
.discover > .wrap,
.contact > .wrap {
  position: relative;
  z-index: 1;
}

/* animasyonlu çok renkli radyal arka plan (contact) */
@property --aurora-size {
  syntax: "<percentage>";
  inherits: false;
  initial-value: 126%;
}
.ai-aurora {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(to top, #000 0, #000 8px, rgba(0, 0, 0, 0) 58px),
    radial-gradient(
      126% 178% at 50% -58%,
      #0a0e1a 63%,
      #2979ff 74%,
      #ff80ab 82%,
      #ff6d00 90%,
      #000 100%
    );
  animation:
    auroraBreathe 9s ease-in-out infinite,
    auroraIn 2s cubic-bezier(0.25, 0.1, 0.25, 1) both;
}
@keyframes auroraBreathe {
  0%,
  100% {
    filter: brightness(1) saturate(1);
  }
  50% {
    filter: brightness(1.1) saturate(1.05);
  }
}
@keyframes auroraIn {
  from {
    opacity: 0;
    transform: scale(1.5);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.contact .glow-up {
  display: none;
}
/* yukarıdan aşağı bakan varyant (how bölümü) */
.how {
  position: relative;
  overflow: hidden;
}
.how > .wrap {
  position: relative;
  z-index: 1;
}
.ai-aurora.top {
  background: radial-gradient(
    var(--aurora-size) 165% at 50% 158%,
    #000 60%,
    #2979ff 72%,
    #ff80ab 80%,
    #ff6d00 86%,
    #000 92%
  );
}

/* ============================================================
   FOOTER / İLETİŞİM
   ============================================================ */
.site-footer {
  position: relative;
  overflow: hidden;
  background: var(--bg);
  color: var(--text);
  padding: 78px 0 44px;
  border-top: 1px solid var(--line);
}
.ft-divider {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  width: 34%;
  max-width: 420px;
  height: 2px;
  border-radius: 100px;
  background: linear-gradient(
    90deg,
    transparent,
    color-mix(in srgb, var(--text) 22%, transparent),
    transparent
  );
  filter: blur(0.5px);
}
.ft-grid {
  display: grid;
  grid-template-columns: 1.3fr 2fr;
  gap: 48px;
  align-items: start;
}
.ft-mark {
  font-weight: 800;
  font-size: 26px;
  letter-spacing: -0.03em;
  color: var(--text);
  display: inline-block;
}
.ft-mark b {
  color: var(--accent);
}
.ft-desc {
  color: var(--text-soft);
  font-size: 15px;
  max-width: 300px;
  margin-top: 16px;
  line-height: 1.55;
}
.ft-copy {
  color: var(--text-soft);
  font-size: 13px;
  margin-top: 22px;
  font-family: var(--mono);
}
.ft-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.ft-col h5 {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-soft);
  margin-bottom: 18px;
  font-weight: 500;
}
.ft-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.ft-col a,
.ft-col span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text-soft);
  font-size: 14.5px;
  transition: color 0.2s ease;
  white-space: nowrap;
}
.ft-col a:hover {
  color: var(--accent);
}
.ft-col a svg {
  flex: 0 0 auto;
  opacity: 0.82;
}
/* blur-in reveal */
.reveal {
  opacity: 0;
  transform: translateY(-8px);
  filter: blur(4px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease,
    filter 0.8s ease;
  transition-delay: var(--d, 0s);
}
.reveal.in {
  opacity: 1;
  transform: none;
  filter: blur(0);
}
@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    filter: none;
    transition: none;
  }
}

/* Web Siteleri & Rezervasyon sayfaları — tam siyah zemin */
body[data-page="web"],
body[data-page="booking"] {
  background: #000;
}
body[data-page="web"] .page-hero,
body[data-page="booking"] .page-hero,
body[data-page="web"] .pool,
body[data-page="booking"] .pool {
  background: #000;
  background-image: none;
}

/* ============================================================
   HERO (Ana Sayfa)
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 140px 24px 90px;
  background: #000;
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 100px;
  padding: 8px 8px 8px 16px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text-soft);
  box-shadow: 0 6px 22px -14px rgba(10, 14, 26, 0.4);
  margin-bottom: 34px;
}
.hero-tag .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px var(--accent-soft);
}
.hero h1 {
  font-size: clamp(64px, 15vw, 200px);
  font-weight: 800;
  letter-spacing: -0.055em;
  line-height: 0.92;
}
/* Sparkles parıltı bandı */
.spark-band {
  position: relative;
  width: min(940px, 100%);
  height: 320px;
  margin: 30px auto -130px;
  pointer-events: none;
}
.spark-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -webkit-mask-image: radial-gradient(640px 320px at 50% 30%, #000 0%, #000 26%, transparent 82%);
  mask-image: radial-gradient(640px 320px at 50% 30%, #000 0%, #000 26%, transparent 82%);
}
.spark-line {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 3px;
}
.spark-line.line-a {
  width: 75%;
  height: 2px;
  background: linear-gradient(to right, transparent, var(--accent), transparent);
}
.spark-line.line-b {
  width: 28%;
  height: 2px;
  background: linear-gradient(to right, transparent, #ff7a59, transparent);
}
.spark-line.line-a.blur {
  height: 3px;
  filter: blur(3px);
}
.spark-line.line-b.blur {
  height: 5px;
  filter: blur(3px);
}
.spark-mask {
  display: none;
}
.hero p.slogan {
  margin: 26px auto 38px;
  max-width: 560px;
  font-size: clamp(17px, 2.2vw, 21px);
  color: var(--text-soft);
  font-weight: 500;
  text-wrap: balance;
}
.scroll-hint {
  margin-top: 64px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-soft);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.scroll-hint .ln {
  width: 1px;
  height: 34px;
  background: linear-gradient(var(--text-soft), transparent);
  animation: drop 1.8s ease-in-out infinite;
}
@keyframes drop {
  0%,
  100% {
    opacity: 0.3;
    transform: scaleY(0.6);
  }
  50% {
    opacity: 1;
    transform: scaleY(1);
  }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 880px) {
  .nav {
    gap: 8px;
  }
  .brand {
    flex: 1 1 auto;
  }
  .nav-right {
    flex: 0 0 auto;
  }
  .nav-links {
    position: absolute;
    top: calc(100% + 12px);
    right: 18px;
    left: 18px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 22px;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    gap: 4px;
    box-shadow: 0 20px 50px -20px rgba(10, 14, 26, 0.4);
    opacity: 0;
    transform: translateY(-8px);
    pointer-events: none;
    transition: 0.2s;
  }
  .nav-links.open {
    opacity: 1;
    transform: none;
    pointer-events: auto;
  }
  .nav-links a {
    padding: 13px 16px;
    justify-content: center;
    text-align: center;
  }
  .soon-pop {
    position: static;
    transform: none;
    opacity: 0;
    height: 0;
    overflow: hidden;
    margin: 0;
    padding: 0;
  }
  .soon-link.show .soon-pop {
    opacity: 1;
    height: auto;
    transform: none;
    margin-top: 8px;
    padding: 8px 14px;
  }
  .menu-toggle {
    display: flex;
  }
  .steps,
  .feat-grid {
    grid-template-columns: 1fr;
  }
  .stat-grid {
    grid-template-columns: 1fr;
  }
  /* vitrin — dikey istif, açık kart yükselir */
  .showcase {
    flex-direction: column;
    height: auto;
  }
  .ws {
    min-height: 78px;
    flex: none;
  }
  .ws.active {
    min-height: 430px;
  }
  .ws-site {
    width: 100%;
    padding: 22px 24px;
  }
  .ws-name {
    font-size: 38px;
  }
  .ws-rail {
    flex-direction: row;
    justify-content: flex-start;
    gap: 16px;
    padding: 0 22px;
    background: linear-gradient(
      90deg,
      transparent 55%,
      color-mix(in srgb, var(--g2) 50%, transparent)
    );
  }
  .ws-vlabel {
    writing-mode: horizontal-tb;
    transform: none;
  }
  .discover .head {
    flex-direction: column;
    align-items: flex-start;
  }
  .booking-wrap {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .foot-top {
    grid-template-columns: 1fr;
    gap: 34px;
  }
  .ft-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .ft-cols {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
  }
  .cta-inner {
    padding: 48px 26px;
  }
  .spark-band {
    height: 200px;
    margin: 16px auto -80px;
  }
}
@media (max-width: 560px) {
  .ai-plan {
    display: none;
  }
  .ai-send span {
    display: none;
  }
  .ai-send {
    padding: 11px;
  }
  .ai-bar {
    padding: 8px 10px 10px;
  }
  .ai-form textarea {
    font-size: 15px;
    padding: 16px 16px 6px;
    min-height: 56px;
  }
  .ai-model {
    font-size: 11.5px;
    padding: 6px 10px;
  }
}
