/* =========================================================
   The Borcly Company — referans siteye (thelaunchcompany.cc)
   sadık yapı/layout klonu · Font: Inter
   ========================================================= */

:root {
  --bg: #f6f5f2;
  --ink: #111110;
  --ink-soft: #6f6c65;
  --ink-5: rgba(17,17,16,0.05);
  --card: #ffffff;
  --cream: #eeece5;
  --accent: #7C3AED;
  --accent-soft: #ece3fc;
  --border: rgba(17,17,16,0.09);
  --dot-color: rgba(17,17,16,0.14);
  --popup-accent-border: #111110;

  --invert-bg: #111110;
  --invert-card: #f6f5f2;
  --invert-text: #f2f0ec;
  --invert-text-soft: #8c8a84;

  --radius-xl: 32px;
  --radius-lg: 22px;
  --radius-md: 14px;
  --container: 1180px;
  --font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-mono: "DotGothic16", monospace;
}

[data-theme="dark"] {
  --bg: #101010;
  --ink: #f3f1ec;
  --ink-soft: #9a968d;
  --ink-5: rgba(255,255,255,0.07);
  --card: #1a1918;
  --cream: #221f1d;
  --accent: #A78BFA;
  --accent-soft: rgba(167,139,250,0.18);
  --border: rgba(255,255,255,0.09);
  --dot-color: rgba(255,255,255,0.16);
  --popup-accent-border: #ffffff;

  --invert-bg: #000000;
  --invert-card: #1c1a18;
  --invert-text: #f2f0ec;
  --invert-text-soft: #948f86;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
  overflow-x: hidden;
  transition: background-color .25s ease, color .25s ease;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
}

h1, h2, h3 {
  margin: 0;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.08;
}

p { margin: 0; }

/* ---------- Buttons ---------- */
.btn-book, .btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 500;
  font-family: var(--font);
  cursor: pointer;
  white-space: nowrap;
  transition: transform .15s ease, background .15s ease, opacity .15s ease, color .15s ease, border-color .15s ease;
  border: 1px solid transparent;
}
.btn-book {
  background: var(--ink);
  color: var(--bg);
  padding: 11px 22px;
  font-size: 0.92rem;
}
.btn-book:hover { transform: translateY(-2px); opacity: 0.92; }
.btn-ghost {
  background: var(--cream);
  color: var(--ink);
  padding: 11px 22px;
  font-size: 0.92rem;
  border-color: var(--border);
}
.btn-ghost:hover { transform: translateY(-2px); }
.btn-lg { padding: 15px 30px; font-size: 1rem; }
.btn-xl { padding: 18px 36px; font-size: 1.05rem; }
.btn-block { width: 100%; }

/* ---------- Header ---------- */
.nav-wrap {
  position: fixed;
  top: 20px;
  left: 0;
  right: 0;
  z-index: 200;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 0 24px;
  pointer-events: none;
}
.nav-wrap > * { pointer-events: auto; }

.pill-nav,
.lang-trigger,
.theme-toggle,
.nav-toggle {
  background: linear-gradient(180deg, rgba(24,20,40,0.55), rgba(10,9,20,0.45));
  backdrop-filter: blur(22px) saturate(180%);
  -webkit-backdrop-filter: blur(22px) saturate(180%);
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow: 0 10px 34px rgba(0,0,0,0.24), inset 0 1px 0 rgba(255,255,255,0.14);
}

.pill-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  border-radius: 999px;
  padding: 10px 12px 10px 22px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: -0.02em;
  white-space: nowrap;
  color: #fff;
}

.logo-mark {
  width: 34px;
  height: 34px;
  border-radius: 7px;
  object-fit: contain;
}

.pill-links {
  display: flex;
  align-items: center;
  gap: 22px;
}
.pill-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255,255,255,0.68);
  transition: color .15s ease;
}
.pill-links a:hover { color: #fff; }

.util-cluster {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Language dropdown */
.lang-dropdown { position: relative; }
.lang-trigger {
  display: flex;
  align-items: center;
  gap: 6px;
  border-radius: 999px;
  padding: 10px 14px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #fff;
  cursor: pointer;
  font-family: var(--font);
}
.lang-caret { width: 10px; height: 7px; transition: transform .15s ease; }
.lang-dropdown.open .lang-caret { transform: rotate(180deg); }

.lang-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 150px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 6px;
  box-shadow: 0 14px 34px rgba(17,17,16,0.14);
  display: flex;
  flex-direction: column;
  gap: 2px;
  opacity: 0;
  transform: translateY(-6px);
  pointer-events: none;
  transition: opacity .15s ease, transform .15s ease;
}
.lang-dropdown.open .lang-menu {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.lang-menu button {
  text-align: left;
  background: none;
  border: none;
  border-radius: 10px;
  padding: 9px 12px;
  font-size: 0.88rem;
  font-family: var(--font);
  color: var(--ink-soft);
  cursor: pointer;
}
.lang-menu button:hover { background: var(--ink-5); color: var(--ink); }
.lang-menu button.active { color: var(--ink); font-weight: 700; }

/* Theme toggle */
.theme-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  cursor: pointer;
  color: #fff;
}
.theme-toggle svg { width: 19px; height: 19px; }
.theme-toggle .icon-moon { display: none; }
[data-theme="dark"] .theme-toggle .icon-sun { display: none; }
[data-theme="dark"] .theme-toggle .icon-moon { display: block; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  cursor: pointer;
}
.nav-toggle span { display: block; height: 2px; width: 14px; margin: 0 auto; background: #fff; border-radius: 2px; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 150px 24px 130px;
  text-align: center;
  overflow: hidden;
  background: #0b0b14;
}

.hero-scanner {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  display: block;
}

.hero-copy { position: relative; max-width: 880px; margin: 0 auto; z-index: 2; }

.hero h1 {
  font-size: clamp(2.1rem, 5.2vw, 4.25rem);
  font-weight: 600;
  text-shadow: 0 2px 24px rgba(0,0,0,0.45), 0 1px 4px rgba(0,0,0,0.5);
}
.hero h1 .fade-part { color: rgba(255,255,255,0.68); }
.hero h1 .dark-part { color: #ffffff; display: block; }

.hero-sub {
  margin: 22px auto 0;
  max-width: 480px;
  font-size: 1.05rem;
  color: rgba(255,255,255,0.82);
  text-shadow: 0 1px 12px rgba(0,0,0,0.4);
}

.hero-cta {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.hero .btn-ghost {
  background: rgba(255,255,255,0.12);
  color: #fff;
  border-color: rgba(255,255,255,0.28);
  backdrop-filter: blur(6px);
}
.hero .btn-ghost:hover { background: rgba(255,255,255,0.2); }

/* ---------- Stacked panels ---------- */
.panel {
  position: relative;
  z-index: 4;
  padding: 64px 0 72px;
  transition: background-color .25s ease;
}
.panel-light {
  background: var(--card);
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  margin-top: -60px;
}
.panel-light + .panel-dark { margin-top: 0; }
.panel-dark {
  background: var(--invert-bg);
  color: var(--invert-text);
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  margin-top: -32px;
}
.panel-dark + .panel-light { border-radius: 0; margin-top: 0; }

.two-tone {
  font-size: clamp(1.7rem, 3.4vw, 2.5rem);
  margin-bottom: 40px;
}
.two-tone .muted { color: var(--ink-soft); font-weight: 600; }
.two-tone.light { color: var(--invert-text); }
.two-tone.light .muted { color: var(--invert-text-soft); }

/* ---------- Work / services grid ---------- */
.work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.service-card {
  min-height: 260px;
  display: flex;
  flex-direction: column;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 30px 26px;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease, background-color .25s ease;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(17,17,16,0.08);
  border-color: rgba(17,17,16,0.16);
}
.service-card .service-icon {
  width: 46px;
  height: 46px;
  border-radius: 13px;
  background: var(--card);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
}
.service-card .service-icon svg { width: 22px; height: 22px; color: var(--accent); }
.service-card h3 { font-size: 1.08rem; margin-bottom: 8px; color: var(--ink); }
.service-card p { font-size: 0.9rem; line-height: 1.5; color: var(--ink-soft); margin-bottom: 20px; }

/* ---------- Stats ---------- */
.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 56px;
  text-align: center;
}
.stat { display: flex; flex-direction: column; align-items: center; gap: 8px; }
.stat-number-row { display: flex; align-items: center; justify-content: center; gap: 10px; }
.stat-number {
  font-family: var(--font-mono);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  letter-spacing: 0.03em;
  line-height: 1;
}
.stat-label { font-size: 0.85rem; color: var(--ink-soft); margin-top: 4px; }
.laurel { width: 22px; height: 34px; color: var(--ink-soft); flex-shrink: 0; }
.laurel-r { transform: scaleX(-1); }

/* ---------- Testimonials ---------- */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.testimonial-card {
  margin: 0;
  padding: 32px;
  border-radius: var(--radius-lg);
  background: var(--invert-card);
  color: var(--ink);
}
.testi-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; }
.testi-brand { font-weight: 700; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.04em; color: var(--ink-soft); }
.dot-mark {
  width: 46px; height: 46px; border-radius: 50%;
  background-image: radial-gradient(var(--ink) 1.4px, transparent 1.4px);
  background-size: 6px 6px;
  opacity: 0.5;
}
.testimonial-card p { font-size: 1.08rem; line-height: 1.55; margin-bottom: 24px; }
.testimonial-card footer { display: flex; flex-direction: column; }
.testi-name { font-weight: 700; font-size: 0.95rem; }
.testi-role { font-size: 0.82rem; color: var(--ink-soft); }

/* Sticker sürüklenip başka panellere taşınabildiği için, bu panelin
   kendisini komşu panellerin (aynı z-index:4'ü paylaşan kardeşler,
   normalde DOM sırasına göre boyanıyor) HEP üstünde tutuyoruz —
   aksi halde sticker sonraki (DOM'da daha geç gelen) bir panelin
   opak arka planının arkasında kayboluyordu. Header(200)/FAB(300)/
   modal(400)/loader(600)'ın altında kalacak kadar düşük bir değer. */
#testimonials { z-index: 10; }

.testi-sticker {
  position: absolute;
  /* Panel başlığı ile kart sırası arasındaki boş bant sadece ~219px —
     400x400 orijinal boyutu (döndürülmüş haliyle bile) sığdırmıyordu,
     alıntı metnini örtüyordu. Bu boşluğa gerçekten sığan bir kutuya
     küçültüldü; gölge, döndürme, köşe yuvarlama ve soyma efekti artık
     js/sticker.js içindeki WebGL bileşeni tarafından uygulanıyor. */
  top: -45px;
  right: 8%;
  width: 180px;
  height: 180px;
  user-select: none;
}

.sticker-hint {
  position: absolute;
  top: 6px;
  right: 22%;
  width: 165px;
  text-align: center;
  pointer-events: none;
  opacity: 1;
  transition: opacity .4s ease;
  z-index: 2;
}
.sticker-hint.hidden { opacity: 0; }
.sticker-hint-text {
  display: block;
  font-family: "Caveat", cursive;
  font-weight: 700;
  font-size: 1.6rem;
  line-height: 1.1;
  color: var(--invert-text);
  transform: rotate(-4deg);
}
.sticker-hint-arrow { width: 68px; height: auto; margin: 4px auto 0; display: block; color: var(--invert-text-soft); }

/* ---------- SSS (FAQ) ---------- */
.faq-container { text-align: center; }
.faq-container .two-tone { margin-bottom: 12px; }
.faq-sub { color: var(--invert-text-soft); font-size: 1.02rem; margin-bottom: 40px; }
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 760px;
  margin: 0 auto;
  text-align: left;
}
.faq-item {
  border-radius: var(--radius-lg);
  background: var(--invert-card);
  color: var(--ink);
  overflow: hidden;
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 26px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font);
  font-size: 1.02rem;
  font-weight: 600;
  color: inherit;
}
.faq-icon { position: relative; width: 18px; height: 18px; flex-shrink: 0; transition: transform .3s ease; }
.faq-icon i { position: absolute; background: currentColor; border-radius: 2px; }
.faq-icon i:nth-child(1) { left: 0; top: 50%; width: 100%; height: 2px; margin-top: -1px; }
.faq-icon i:nth-child(2) { top: 0; left: 50%; width: 2px; height: 100%; margin-left: -1px; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .35s ease;
  padding: 0 26px;
}
.faq-item.open .faq-answer { grid-template-rows: 1fr; }
.faq-answer-inner { overflow: hidden; }
.faq-answer-inner p {
  margin: 0;
  padding-top: 2px;
  padding-bottom: 24px;
  color: var(--ink-soft);
  line-height: 1.6;
  font-size: 0.95rem;
}

/* ---------- About ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr;
  gap: 50px;
  align-items: start;
}
.about-lead {
  font-size: clamp(1.6rem, 3.2vw, 2.5rem);
  font-weight: 600;
  line-height: 1.28;
  letter-spacing: -0.01em;
  color: var(--ink);
  padding-top: 56px;
}
.about-lead .word { color: var(--ink-soft); transition: color .5s ease; }
.about-lead .word.revealed { color: var(--ink); }
.about-lead .lead-emoji {
  display: inline-block;
  transform-origin: 50% 50%;
  transition: transform .25s ease;
}
.about-lead .lead-emoji:hover { transform: scale(1.35); }

/* .about-art artık .lanyard-stage için konumlandırma referansı;
   gerçek görsel alan çok daha büyük bir tuvalle (position: absolute)
   veriliyor ki boyunluk sallanırken/hızlı sürüklenirken hiçbir yönde
   "çerçeveye" çarpıp kesilmesin — kart sanki sınırsız bir alanda
   sallanıyormuş gibi davranır, sadece dinlenme konumu section
   kesişimiyle hizalı kalır. */
.about-art { position: relative; min-height: 460px; }
.lanyard-stage {
  position: absolute;
  top: -349px;
  left: 50%;
  transform: translateX(-50%);
  /* Genişlik viewport'un tamamı kadar — kamera dikey açısı ve mesafesi
     (dolayısıyla boyunluğun/kartın görünür boyutu) hiç değişmeden,
     yalnızca yatayda site kenarlarına kadar alan açılıyor. Böylece
     sağa/sola sallanırken gerçekten kenara ulaşmak imkansıza yakın. */
  width: 100vw;
  height: 1000px;
  touch-action: none;
  pointer-events: none;
}
.lanyard-stage canvas { width: 100%; height: 100%; display: block; }

.lanyard-hint {
  position: absolute;
  left: -55px;
  top: 290px;
  width: 175px;
  text-align: center;
  pointer-events: none;
  opacity: 1;
  transition: opacity .4s ease;
  z-index: 5;
}
.lanyard-hint.hidden { opacity: 0; }
.lanyard-hint-text {
  display: block;
  font-family: "Caveat", cursive;
  font-weight: 700;
  font-size: 1.7rem;
  line-height: 1.1;
  color: var(--ink);
  transform: rotate(-4deg);
}
.lanyard-hint-arrow { width: 74px; height: auto; margin: 4px auto 0; display: block; color: var(--ink-soft); }

.handshake-label {
  position: fixed;
  top: 0;
  left: 0;
  transform: translate3d(-9999px, -9999px, 0);
  background: var(--accent);
  color: #fff;
  font-family: var(--font);
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: -0.01em;
  padding: 7px 14px;
  border-radius: 999px;
  white-space: nowrap;
  opacity: 0;
  box-shadow: 0 4px 14px rgba(0,0,0,0.18), 0 1px 2px rgba(0,0,0,0.08);
  pointer-events: none;
  z-index: 60;
  transition: opacity 140ms ease;
  will-change: transform, opacity;
}
.handshake-label.visible { opacity: 1; }

/* ---------- CTA / booking ---------- */
.cta-panel { text-align: center; }
.cta-title { font-size: clamp(2rem, 5vw, 3.4rem); margin-bottom: 22px; }
.spots {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: ui-monospace, "SF Mono", "JetBrains Mono", Menlo, Consolas, monospace;
  font-size: 0.9rem;
  color: var(--ink-soft);
  margin-bottom: 28px;
}
.spots-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px var(--accent-soft);
}
.cta-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}
.btn-callback { gap: 10px; }
.btn-callback .callback-phone-icon { width: 18px; height: 18px; flex-shrink: 0; }
.cta-notice { margin-top: 22px; font-size: 0.82rem; color: var(--ink-soft); }
.cta-fallback { margin-top: 10px; font-size: 0.85rem; color: var(--ink-soft); }
.cta-fallback a { text-decoration: underline; }

/* ---------- Sizi Arayalım modal ---------- */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 400;
  background: rgba(10,10,9,0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease;
}
.modal-overlay.open { opacity: 1; pointer-events: auto; }

.modal-box {
  position: relative;
  width: 100%;
  max-width: 420px;
  background: var(--card);
  border-radius: var(--radius-lg);
  padding: 36px 30px 30px;
  box-shadow: 0 30px 70px rgba(0,0,0,0.3);
  transform: translateY(14px) scale(0.98);
  transition: transform .2s ease;
}
.modal-overlay.open .modal-box { transform: translateY(0) scale(1); }

.modal-box h3 { font-size: 1.4rem; margin-bottom: 10px; }
.modal-sub { color: var(--ink-soft); font-size: 0.92rem; margin-bottom: 22px; }

.modal-close {
  position: absolute;
  top: 16px; right: 16px;
  width: 32px; height: 32px;
  border-radius: 50%;
  border: none;
  background: var(--ink-5);
  color: var(--ink);
  font-size: 1.2rem;
  line-height: 1;
  cursor: pointer;
}

/* ---------- Görüşme seçim popup ---------- */
.choice-options { display: flex; flex-direction: column; gap: 10px; }
.choice-option {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  padding: 16px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: var(--bg);
  color: var(--ink);
  cursor: pointer;
  text-align: left;
  font-family: var(--font);
  transition: border-color .15s ease, transform .15s ease, background-color .15s ease;
}
.choice-option:hover { border-color: var(--popup-accent-border); transform: translateY(-2px); }
.choice-option svg { width: 24px; height: 24px; flex-shrink: 0; color: var(--accent); }
.choice-option-text { display: flex; flex-direction: column; gap: 3px; }
.choice-option-text strong { font-size: 0.98rem; font-weight: 600; font-style: normal; }
.choice-option-text em { font-size: 0.83rem; color: var(--ink-soft); font-style: normal; }

#callbackForm { display: flex; flex-direction: column; gap: 12px; }
#callbackForm input {
  width: 100%;
  padding: 13px 16px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font);
  font-size: 0.95rem;
}
#callbackForm input:focus { outline: 2px solid var(--popup-accent-border); outline-offset: 1px; }
#callbackForm button[type="submit"] { margin-top: 10px; }

.phone-field { display: flex; align-items: stretch; gap: 8px; }
.phone-field input { flex: 1; min-width: 0; }
.phone-prefix {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 0 14px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--ink-5);
  color: var(--ink-soft);
  font-family: var(--font);
  font-size: 0.95rem;
  font-weight: 600;
  white-space: nowrap;
  flex-shrink: 0;
}
.form-status { font-size: 0.85rem; text-align: center; min-height: 18px; color: var(--ink-soft); }
.form-status.success { color: #2f8f5b; }
.form-status.error { color: var(--accent); }

/* ---------- Sizi Arayalım başarı popup'ı ---------- */
.success-box { text-align: center; }
.success-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: #eaf6ef;
  color: #2f8f5b;
  display: flex;
  align-items: center;
  justify-content: center;
}
.success-icon svg { width: 28px; height: 28px; }
.success-box h3 { margin-bottom: 8px; }
.success-box .modal-sub { margin-bottom: 26px; }

/* ---------- Footer ---------- */
.footer-band {
  position: relative;
  background: var(--invert-bg);
  overflow: hidden;
  padding-top: 60px;
}
.footer-halftone {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  color: #fff;
  opacity: 0.06;
}
.footer-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
  padding-bottom: 20px;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-links { display: flex; gap: 22px; }
.footer-links a { font-size: 0.85rem; color: #cfccc4; transition: color .15s ease; }
.footer-links a:hover { color: #fff; }
.footer-copy { font-size: 0.8rem; color: var(--invert-text-soft); }

/* ---------- WhatsApp FAB ---------- */
.whatsapp-fab {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 300;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 26px rgba(37,211,102,0.4);
  transition: transform .15s ease, box-shadow .15s ease;
}
.whatsapp-fab:hover { transform: translateY(-3px) scale(1.04); box-shadow: 0 14px 32px rgba(37,211,102,0.5); }
.whatsapp-fab svg { width: 30px; height: 30px; }

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 960px) {
  .work-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; text-align: center; }
  .about-art { order: -1; }
  .stats-row { gap: 14px; }
  .testi-sticker { width: 150px; height: 150px; top: -38px; right: 6%; }
  .sticker-hint { width: 140px; top: 2px; right: 19%; }
  .sticker-hint-text { font-size: 1.4rem; }
  .sticker-hint-arrow { width: 56px; }
}

@media (max-width: 720px) {
  .pill-links {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
    position: absolute;
    top: 62px;
    left: 20px;
    right: 20px;
    background: linear-gradient(180deg, rgba(24,20,40,0.92), rgba(10,9,20,0.92));
    backdrop-filter: blur(22px) saturate(180%);
    -webkit-backdrop-filter: blur(22px) saturate(180%);
    border: 1px solid rgba(255,255,255,0.14);
    border-radius: 20px;
    padding: 18px 22px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.3);
    opacity: 0;
    transform: translateY(-10px) scale(0.98);
    pointer-events: none;
    transition: opacity .22s ease, transform .22s ease;
  }
  .nav-toggle { display: flex; }
  body.nav-open .pill-links {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
  }
  body.nav-open .pill-links .btn-book { width: 100%; }

  /* Dil ve tema butonları ayrı ayrı "kabarcık" gibi durmasın diye
     mobilde tek bir ortak hap (pill) içine alıyoruz — üst bar nav
     kapsülüyle aynı görsel dile sahip, tek parça bir görünüm oluşuyor. */
  .util-cluster {
    background: linear-gradient(180deg, rgba(24,20,40,0.55), rgba(10,9,20,0.45));
    backdrop-filter: blur(22px) saturate(180%);
    -webkit-backdrop-filter: blur(22px) saturate(180%);
    border: 1px solid rgba(255,255,255,0.14);
    box-shadow: 0 10px 34px rgba(0,0,0,0.24), inset 0 1px 0 rgba(255,255,255,0.14);
    border-radius: 999px;
    padding: 4px;
    gap: 2px;
  }
  .lang-trigger, .theme-toggle {
    background: none;
    border-color: transparent;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
  .lang-trigger { padding: 10px 12px; }
  .lang-caret { display: none; }
  .lang-menu { min-width: 130px; }

  /* Mobilde nav sabit (fixed) konumda; bir bölüme link ile atlarken
     tarayıcının yerleşik çapa kaydırması (mobilde smooth-scroll.js
     devre dışı, native davranış geçerli) hedefi tam viewport'un
     tepesine hizalıyor ve sabit header'ın altında kalıyordu. Header
     yüksekliği kadar (+ boşluk) bir kaydırma payı bırakıyoruz. */
  #work, #about, #faq, #booking { scroll-margin-top: 96px; }

  .hero { padding-top: 120px; }
  .work-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .service-card { padding: 22px 18px; }
  .stats-row { grid-template-columns: 1fr; gap: 30px; }
  .eye-follow-btn--lg {
    gap: 14px;
    padding: 12px 12px 12px 20px;
  }
  .eye-follow-btn--lg .eye-follow-label { font-size: 0.95rem; }
  .eye-follow-btn--lg .eye-follow-phone { width: 20px; height: 20px; }
  .eye-follow-btn--lg .eye-follow-eye { width: 38px; height: 38px; }
  .eye-follow-btn--lg .eye-follow-pupil { width: 13px; height: 13px; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .testi-sticker { width: 100px; height: 100px; top: -42px; right: 6%; }
  .sticker-hint { display: none; }
  .panel { padding: 48px 0 56px; }
  .about-lead { padding-top: 0; }
  .about-art { min-height: 320px; }
  .lanyard-stage { height: 700px; top: -248px; }
  /* Masaüstündeki left:-55px konumu dar ekranlarda ekranın solundan
     taşıyordu — mobilde kartın hemen altına, ortalanmış ve yukarı
     bakan bir ok ile yeniden konumlandırıyoruz. */
  .lanyard-hint {
    left: 50%;
    top: 265px;
    transform: translateX(-50%);
    width: 190px;
  }
  .lanyard-hint-arrow { transform: rotate(-55deg); }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .cta-buttons { flex-direction: column; width: 100%; }
  .cta-buttons .btn-book, .cta-buttons .btn-ghost { width: 100%; }
  .whatsapp-fab { right: 16px; bottom: 16px; width: 52px; height: 52px; }
  .whatsapp-fab svg { width: 26px; height: 26px; }
}

@media (max-width: 420px) {
  .work-grid { grid-template-columns: 1fr; }
  /* Dar telefonlarda başlık iki satıra bölünmeden önceki tek boş banda
     (CTA hapının altı, başlığın üstü) sığacak kadar küçültülüyor. */
  .testi-sticker { width: 74px; height: 74px; top: -46px; right: 8%; }
}

/* =========================================================
   FoldText — hero metinleri için katlanarak gelme animasyonu
   ========================================================= */
.fold-text-sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.fold-text-visual { display: inline; }
.fold-text-segment {
  display: inline-block;
  perspective: var(--fold-perspective, 700px);
}
.fold-text-piece {
  display: inline-block;
  position: relative;
  transform-style: preserve-3d;
  backface-visibility: hidden;
  will-change: transform, opacity;
}
.fold-text-piece::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.55), transparent 65%);
  opacity: var(--fold-crease, 0);
  pointer-events: none;
  mix-blend-mode: multiply;
}
.fold-text-whitespace { display: inline-block; }

/* =========================================================
   Tema geçişi — View Transitions API dairesel açılım
   ========================================================= */
::view-transition-old(root),
::view-transition-new(root) {
  animation: none;
  mix-blend-mode: normal;
}
::view-transition-old(root) { z-index: 1; }
::view-transition-new(root) { z-index: 2; }

/* =========================================================
   Servis kartı randevu butonu
   ========================================================= */
.card-book-btn {
  margin-top: auto;
  align-self: flex-start;
  padding: 9px 18px;
  font-size: 0.82rem;
}

/* =========================================================
   Smooth scroll sarmalayıcı
   ========================================================= */
html.has-smooth-scroll, html.has-smooth-scroll body { height: 100%; }
html.has-smooth-scroll #smooth-wrapper {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  overflow: hidden;
}
html.has-smooth-scroll #smooth-content { will-change: transform; }

/* =========================================================
   Eye Follow Button — kara pill buton, imleci takip eden gözler
   ========================================================= */
.eye-follow-btn {
  display: inline-flex;
  align-items: center;
  gap: 22px;
  background: #111110;
  color: #ffffff;
  border: none;
  border-radius: 999px;
  padding: 12px 12px 12px 26px;
  cursor: pointer;
  font-family: var(--font);
  box-shadow: 10px 10px 22px -4px rgba(0,0,0,0.22);
  transition: transform .18s ease, opacity .18s ease;
}
.eye-follow-btn:hover { transform: translateY(-2px); opacity: 0.92; }
.eye-follow-label { font-weight: 700; font-size: 1rem; white-space: nowrap; letter-spacing: -0.01em; }
.eye-follow-phone { width: 20px; height: 20px; flex-shrink: 0; color: #fff; }
.eye-follow-eyes { display: flex; gap: 8px; flex-shrink: 0; }
.eye-follow-eye {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  flex-shrink: 0;
}
.eye-follow-pupil {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #111110;
  will-change: transform;
}
.eye-follow-btn--lg {
  gap: 28px;
  padding: 16px 16px 16px 34px;
  box-shadow: 12px 12px 26px -4px rgba(0,0,0,0.24);
}
.eye-follow-btn--lg .eye-follow-label { font-size: 1.15rem; }
.eye-follow-btn--lg .eye-follow-phone { width: 24px; height: 24px; }
.eye-follow-btn--lg .eye-follow-eye { width: 56px; height: 56px; }
.eye-follow-btn--lg .eye-follow-pupil { width: 18px; height: 18px; }

.stat-eye { justify-content: center; }

@media (prefers-reduced-motion: reduce) {
  .eye-follow-pupil { transition: none; }
}

/* =========================================================
   OriginButton — imleçten genişleyen daire dolgu efekti
   (yalnızca hero + üst bar "Görüşme Ayarla" butonları)
   ========================================================= */
.btn-origin {
  position: relative;
  isolation: isolate;
  background: #ffffff;
  color: #111110;
  border-color: transparent;
}
/* .pill-links a { color: ... } kuralı (0,1,1) .btn-origin'in (0,1,0) rengini
   eziyordu, buton beyaz zemin üstünde yarı saydam beyaz yazıyla görünmez
   oluyordu — burada daha spesifik bir seçiciyle geri kazanıyoruz. Hover
   rengi zaten JS ile inline set ediliyor, bu kuralı ezmez. */
.nav-wrap .btn-origin { color: #111110; }
.btn-origin:hover { transform: none; opacity: 1; }
.btn-origin .origin-fill {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: #111110;
  clip-path: circle(0px at 50% 50%);
  pointer-events: none;
  z-index: 0;
}
.btn-origin .btn-label { position: relative; z-index: 1; }

/* =========================================================
   Açılış animasyonu (Site Loader)
   ========================================================= */
.site-loader {
  position: fixed;
  inset: 0;
  z-index: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #111110;
  opacity: 1;
  transition: opacity .7s cubic-bezier(.7,.2,.2,1);
}
.site-loader.out { opacity: 0; pointer-events: none; }
/* framer.com/m/LogoPreloader — logo alttan yukarı kayıp solarak belirir,
   bir süre durur, sonra aynı yönde daha yukarı kayıp solarak kaybolur
   (arkaplan aynı anda .site-loader.out ile söner). */
.site-loader-logo-img {
  width: 110px;
  height: 110px;
  object-fit: contain;
  opacity: 0;
  transform: translateY(80px);
  transition: transform .7s cubic-bezier(.7,.2,.2,1), opacity .7s cubic-bezier(.7,.2,.2,1);
  will-change: transform, opacity;
  user-select: none;
}
.site-loader-logo-img.in {
  opacity: 1;
  transform: translateY(0);
}
.site-loader-logo-img.out {
  opacity: 0;
  transform: translateY(-80px);
}

/* =========================================================
   Hizmet detay sayfaları (services/*.html)
   ========================================================= */
.service-hero {
  position: relative;
  padding: 150px 24px 90px;
  text-align: center;
  overflow: hidden;
  background: #0b0b14;
}
.service-hero-halftone {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  color: #fff;
  opacity: 0.05;
}
.service-hero-inner { position: relative; max-width: 720px; margin: 0 auto; z-index: 2; }
.service-hero-balloons { position: absolute; inset: 0; z-index: 1; }
.service-hero-back {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255,255,255,0.62);
  margin-bottom: 30px;
  transition: color .15s ease;
}
.service-hero-back svg { width: 13px; height: 13px; }
.service-hero-back:hover { color: #fff; }
.service-hero-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 26px;
  border-radius: 20px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(8px);
}
.service-hero-icon svg { width: 32px; height: 32px; color: #A78BFA; }
.service-hero h1 {
  font-size: clamp(2rem, 4.6vw, 3.3rem);
  font-weight: 600;
  color: #fff;
  text-shadow: 0 2px 24px rgba(0,0,0,0.45), 0 1px 4px rgba(0,0,0,0.5);
}
.service-hero-sub {
  margin: 20px auto 0;
  max-width: 520px;
  font-size: 1.05rem;
  color: rgba(255,255,255,0.82);
  text-shadow: 0 1px 12px rgba(0,0,0,0.4);
}
.service-hero-cta {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 32px;
  flex-wrap: wrap;
}
.service-hero .btn-ghost {
  background: rgba(255,255,255,0.12);
  color: #fff;
  border-color: rgba(255,255,255,0.28);
  backdrop-filter: blur(6px);
}
.service-hero .btn-ghost:hover { background: rgba(255,255,255,0.2); }

/* ---- Tanıtım: görsel + açıklama ---- */
.service-intro {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 56px;
  align-items: center;
  margin-bottom: 68px;
}
.service-visual {
  position: relative;
  aspect-ratio: 1 / 0.92;
  border-radius: var(--radius-lg);
  background: linear-gradient(155deg, var(--accent-soft), var(--cream) 65%);
  border: 1px solid var(--border);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(var(--ink) 1.4px, transparent 1.4px);
  background-size: 20px 20px;
  opacity: 0.07;
}
.service-visual-icon {
  position: relative;
  width: 108px;
  height: 108px;
  border-radius: 28px;
  background: var(--card);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 20px 46px rgba(17,17,16,0.1);
}
.service-visual-icon svg { width: 50px; height: 50px; color: var(--accent); }
.service-intro-text h2 { font-size: clamp(1.5rem, 2.6vw, 2rem); margin-bottom: 18px; }
.service-intro-text p { color: var(--ink-soft); font-size: 1rem; line-height: 1.65; margin-bottom: 14px; }
.service-highlights { list-style: none; margin: 22px 0 0; padding: 0; display: flex; flex-direction: column; gap: 11px; }
.service-highlights li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--ink);
}
.service-highlights svg { width: 18px; height: 18px; flex-shrink: 0; margin-top: 1px; color: var(--accent); }

/* ---- Pakete neler dahil ---- */
.service-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.service-feature {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 26px 24px;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease, background-color .25s ease;
}
.service-feature:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(17,17,16,0.08);
  border-color: rgba(17,17,16,0.16);
}
.service-feature-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--card);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.service-feature-icon svg { width: 20px; height: 20px; color: var(--accent); }
.service-feature h3 { font-size: 1rem; margin-bottom: 6px; color: var(--ink); }
.service-feature p { font-size: 0.88rem; line-height: 1.5; color: var(--ink-soft); }

/* ---- Nasıl çalışıyoruz (koyu panel) ---- */
.service-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.service-step {
  background: var(--invert-card);
  color: var(--ink);
  border-radius: var(--radius-lg);
  padding: 26px 22px;
}
.service-step-num {
  font-family: var(--font-mono);
  font-size: 1.5rem;
  color: var(--accent);
  margin-bottom: 14px;
  display: block;
}
.service-step h3 { font-size: 1rem; margin-bottom: 8px; }
.service-step p { font-size: 0.87rem; line-height: 1.5; color: var(--ink-soft); }

@media (max-width: 960px) {
  .service-intro { grid-template-columns: 1fr; gap: 34px; }
  .service-visual { aspect-ratio: 16 / 9; }
  .service-feature-grid { grid-template-columns: repeat(2, 1fr); }
  .service-steps { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 720px) {
  .service-hero { padding-top: 120px; }
  .service-feature-grid { grid-template-columns: 1fr; }
  .service-steps { grid-template-columns: 1fr; }
}
