/* ============================================================
   Growth Sheriff — sayfa geçişleri  (v6: perde katmanı + marka)
   Animasyonlar transitions.js içinde (WAAPI + Motion springs).
   ============================================================ */

/* Perde konteyneri */
#vt-ov {
  position: fixed;
  inset: 0;
  z-index: 99999;
  pointer-events: none;
  overflow: hidden;
}

/* Perde panelleri (motor dinamik oluşturur) */
#vt-ov .vt-p {
  position: absolute;
  inset: 0;
  will-change: transform, clip-path;
}

/* Perde üzerindeki marka flaşı */
#vt-ov .vt-logo {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(28px, 4.5vw, 54px);
  font-weight: 300;
  color: #ffffff;
  white-space: nowrap;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.25);
}
#vt-ov .vt-logo b { font-weight: 800; }

/* Perde üzerinde çapraz ışık süpürmesi */
#vt-ov .vt-p::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 38%, rgba(255, 255, 255, 0.16) 50%, transparent 62%);
  transform: translateX(-160%);
  animation: vt-sheen 0.9s cubic-bezier(0.4, 0, 0.2, 1) 0.12s forwards;
}
@keyframes vt-sheen {
  to { transform: translateX(160%); }
}

/* Üst progress çubuğu */
#vt-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0;
  z-index: 100001;
  pointer-events: none;
  opacity: 0;
  background: linear-gradient(90deg, #008060, #5e8e3e);
  box-shadow: 0 0 12px rgba(0, 128, 96, 0.55);
}

/* İmleç: nokta + marka halkası */
#gs-dot, #gs-ring {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100000;
  pointer-events: none;
  border-radius: 50%;
}
#gs-dot {
  width: 8px;
  height: 8px;
  background: #008060;
}
#gs-ring {
  width: 32px;
  height: 32px;
  border: 1.5px solid rgba(0, 128, 96, 0.55);
  transition: border-color 0.2s;
}
#gs-ring.on { border-color: rgba(0, 128, 96, 0.95); }

/* Paralaks arka plan yumuşak sürüklensin */
.page-bg { will-change: transform; transition: none; }

/* Dilimleme motoru: sayfanın canlı parçaları */
#vt-slices {
  position: fixed;
  inset: 0;
  z-index: 99998;
  pointer-events: none;
}
#vt-slices .vt-s {
  position: fixed;
  overflow: hidden;
  will-change: transform;
  background: var(--bg, #f4f7f5);
}
#vt-slices .vt-si {
  position: absolute;
  top: 0;
  left: 0;
}
#vt-slices .vt-si > body {
  display: block;
  overflow: visible;
}

/* İlk boyama koruması: motor hazır olana dek bölümler gizli —
   böylece giriş koreografisi İLK kareden itibaren oynar (çift görünme yok).
   Emniyet: JS gelmezse inline script 3sn'de bu sınıfı kaldırır. */
.gs-boot section { opacity: 0; }

/* Sabit sahne: zemin rengi html'de, gövde şeffaf —
   geçişte içerik akarken gradyan + balonlar hiç kımıldamaz */
html {
  background: var(--bg, #f4f7f5);
}
body {
  background: transparent;
}
html > .page-bg {
  z-index: -2; /* en dip: gradyan */
}

/* Balon katmanları: gradyanın üstünde, içeriğin altında.
   Kenar taşmaları paralaks/scroll kayması için pay bırakır. */
#gs-bubbles,
#gs-bubbles-far {
  position: fixed;
  inset: -140px;
  z-index: -1;
  pointer-events: none;
  will-change: transform;
}
/* UZAK katman: odak dışı bokeh + yumuşak ışıltı */
#gs-bubbles-far {
  filter: blur(2.5px) drop-shadow(0 0 9px rgba(0, 150, 110, 0.30));
}
/* YAKIN katman: net + zarif hale */
#gs-bubbles {
  filter: drop-shadow(0 0 5px rgba(0, 150, 110, 0.45));
}
#gs-bubbles canvas,
#gs-bubbles-far canvas { pointer-events: none !important; }

/* Dokunmatik cihazlarda filtre yükünü hafiflet */
@media (hover: none) {
  #gs-bubbles-far { filter: blur(2px); }
  #gs-bubbles { filter: none; }
}

/* ============================================================
   CAM HEADER — tepede görünmez, scroll'da buzlu cam
   ============================================================ */
/* Tepede: zemin yok — logo ve menü sayfanın üstünde süzülür */
.site-header {
  background: transparent;
  border-bottom: 1px solid transparent;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
  transition: background 0.35s ease, border-color 0.35s ease,
              -webkit-backdrop-filter 0.35s ease, backdrop-filter 0.35s ease;
}
.header-inner {
  transition: padding 0.3s ease;
}
/* Scroll'da: buzlu cam + kıl çizgi + kompakt yükseklik */
html.gs-scrolled .site-header {
  background: var(--header-bg);
  -webkit-backdrop-filter: blur(16px) saturate(1.4);
  backdrop-filter: blur(16px) saturate(1.4);
  border-bottom: 1px solid var(--line-soft);
}
html.gs-scrolled .header-inner {
  padding-top: 10px;
  padding-bottom: 10px;
}
/* Duyuru şeridi scroll'da zarifçe toplanır */
.announce {
  max-height: 64px;
  overflow: hidden;
  transition: max-height 0.35s ease, opacity 0.3s ease;
}
html.gs-scrolled .announce {
  max-height: 0;
  opacity: 0;
}
/* Logo: iki temada da garanti kontrast */
.logo-text b { color: var(--headline); }
.logo-text span { color: var(--dim); }

/* ============================================================
   DÜZ ZEMİN TASARIM DİLİ — site geneli
   Kural: içerik kutuda değil, zeminde yaşar; kutu yalnızca
   imleç altında cam olarak belirir.
   ============================================================ */

/* 1) İÇERİK KARTLARI: tamamen düz — çerçeve/zemin/gölge yok */
.flank-card,
.cap,
.feature-card,
.counter,
.member,
.post,
.partner-card,
.testi,
.step,
.client {
  background: transparent;
  border-color: transparent;
  box-shadow: none;
  transition: transform 0.22s ease, border-color 0.25s ease,
              background 0.25s ease, box-shadow 0.25s ease,
              -webkit-backdrop-filter 0.25s ease, backdrop-filter 0.25s ease;
}

/* 2) YAPISAL KARTLAR: hayalet — kalıcı kıl çerçeve (tarama kolaylığı) */
.pk-card,
.faq-item,
.form-card,
.results-card,
.info-row {
  background: transparent;
  box-shadow: none;
  border-color: var(--line-soft);
  transition: transform 0.22s ease, border-color 0.25s ease,
              background 0.25s ease, box-shadow 0.25s ease,
              -webkit-backdrop-filter 0.25s ease, backdrop-filter 0.25s ease;
}

/* 3) HOVER: cam belirir — her iki aile için ortak dil */
.flank-card:hover,
.cap:hover,
.feature-card:hover,
.counter:hover,
.member:hover,
.post:hover,
.partner-card:hover,
.testi:hover,
.step:hover,
.pk-card:hover,
.faq-item:hover,
.form-card:hover,
.results-card:hover,
.info-row:hover {
  background: var(--card);
  -webkit-backdrop-filter: blur(10px) saturate(1.3);
  backdrop-filter: blur(10px) saturate(1.3);
  border-color: var(--line);
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(0, 128, 96, 0.12);
}
/* Açık SSS maddesi okunur kalsın (cam sabitlenir) */
.faq-item.open {
  background: var(--card);
  border-color: var(--line);
}
/* Modern tarayıcıda cam yarı şeffaf (arkadan balonlar geçer) */
@supports (background: color-mix(in srgb, red 50%, transparent)) {
  .flank-card:hover, .cap:hover, .feature-card:hover, .counter:hover,
  .member:hover, .post:hover, .partner-card:hover, .testi:hover,
  .step:hover, .pk-card:hover, .faq-item:hover, .faq-item.open,
  .form-card:hover, .results-card:hover, .info-row:hover {
    background: color-mix(in srgb, var(--card) 62%, transparent);
  }
}

/* ============================================================
   SEKMELER — tek sıra, yumuşak hap dili
   ============================================================ */
.pk-tabs {
  flex-wrap: nowrap;
  justify-content: center;
  gap: 5px;
  padding: 2px 0 6px;
}
.pk-tab {
  flex: 0 0 auto; /* asla büzülme: çakışma imkânsız */
  white-space: nowrap;
  background: transparent;
  border-color: var(--line-soft);
  border-radius: 10px;
  padding: 7px 10px;
  font-size: 12px;
  gap: 5px;
}
/* gerçek marka logoları her boyutta görünür */
.pk-tab .ic,
.pk-tab img,
.pk-tab svg {
  width: 15px;
  height: 15px;
}
/* satır sığmayan genişlikte sarmaya dön — HEPSİ her zaman görünür */
@media (max-width: 1679px) {
  .pk-tabs { flex-wrap: wrap; }
}

/* Yüzen iletişim widget'ı: cam dokunuş (sabit sahnede yaşar) */
.contact-tab button,
.contact-tab a {
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}
.pk-tab:hover {
  border-color: var(--line);
  background: var(--card-2);
  color: var(--text);
}
/* Aktif sekme: sert dolgu yerine yumuşak yeşil cam */
.pk-tab.active {
  background: rgba(0, 128, 96, 0.13);
  color: var(--violet);
  border-color: rgba(0, 128, 96, 0.45);
}
[data-theme="dark"] .pk-tab.active {
  background: rgba(95, 209, 171, 0.14);
  color: #5fd1ab;
  border-color: rgba(95, 209, 171, 0.45);
}

/* ============================================================
   YEŞİL BANTLAR — opak blok yerine soft cam-gradyan panel
   ============================================================ */
.appt-band {
  background: linear-gradient(135deg, rgba(0, 128, 96, 0.16), rgba(94, 142, 62, 0.09));
  border: 1px solid rgba(0, 128, 96, 0.28);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}
.appt-band h2 { color: var(--headline); }
.appt-band p { color: var(--dim); }
.appt-band .btn {
  background: var(--violet);
  color: #fff;
  border-color: var(--violet);
}
.appt-band .btn:hover {
  background: var(--violet-2);
  border-color: var(--violet-2);
}
.appt-time {
  background: rgba(0, 128, 96, 0.14);
  color: var(--violet);
}
[data-theme="dark"] .appt-time {
  background: rgba(95, 209, 171, 0.14);
  color: #5fd1ab;
}
/* CTA bandı da aynı cam diline katılır */
.cta-band {
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border-color: rgba(0, 128, 96, 0.22);
}

/* ============================================================
   YUMUŞAK VURGU — cırt neon dolgular yerine derin, dingin yeşil
   ============================================================ */
:root {
  --accent-solid: #00684f;
  --accent-solid-2: #004d3a;
}
[data-theme="dark"] {
  --accent-solid: #11705a;
  --accent-solid-2: #0b4f3f;
}
/* Tüm dolgulu butonlar: Shopify yaprak yeşili ailesi */
.btn-solid {
  background: linear-gradient(160deg, #7ab54b, #5e8e3e);
  border-color: rgba(255, 255, 255, 0.22);
  color: #fff;
  box-shadow: 0 8px 24px rgba(94, 142, 62, 0.35);
}
.btn-solid:hover {
  background: linear-gradient(160deg, #86c257, #679a45);
  border-color: rgba(255, 255, 255, 0.32);
  color: #fff;
  box-shadow: 0 10px 28px rgba(94, 142, 62, 0.45);
}
.appt-band .btn {
  background: linear-gradient(160deg, #7ab54b, #5e8e3e);
  border-color: rgba(255, 255, 255, 0.22);
  color: #fff;
}
.appt-band .btn:hover {
  background: linear-gradient(160deg, #86c257, #679a45);
  border-color: rgba(255, 255, 255, 0.32);
}

/* Açılır menü: opak kutu yerine buzlu cam */
.submenu {
  background: var(--card-2);
  -webkit-backdrop-filter: blur(16px) saturate(1.3);
  backdrop-filter: blur(16px) saturate(1.3);
  border-color: var(--line-soft);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
  border-radius: 12px;
}
@supports (background: color-mix(in srgb, red 50%, transparent)) {
  .submenu {
    background: color-mix(in srgb, var(--card-2) 78%, transparent);
  }
}

/* Yatay taşma emniyeti: hiçbir öğe sayfayı yana kaydıramaz.
   NOT: body'de overflow-x:hidden sticky header'ı öldürür — clip öldürmez. */
html { overflow-x: clip; }
body { overflow-x: clip; }

/* ============================================================
   MOBİL DÜZELTMELERİ
   ============================================================ */
@media (max-width: 860px) {
  /* Hero istatistikleri: alt alta değil YAN YANA */
  .stats { flex-direction: row; flex-wrap: nowrap; gap: 0; }
  .stat { flex: 1 1 0; min-width: 0; padding: 0 6px; }
  .stat + .stat {
    border-top: none;
    border-left: 1px solid var(--line-soft);
    padding-top: 0;
  }
  /* CTA butonları taşmasın, ortalı sarsın */
  .hero-cta { flex-wrap: wrap; justify-content: center; }
  .stat-num { font-size: 24px; }
  .stat-label { font-size: 10.5px; }
  .stat .trust-top { font-size: 12px; }
  .stat .trust-rev, .stat .trust-rate { font-size: 10px; }
  .stat .trust-stars { font-size: 13px; }

  /* Yüzen iletişim: bozuk dikey yazı yerine yuvarlak aksiyon butonları */
  .contact-tab {
    top: auto;
    bottom: 16px;
    right: 12px;
    transform: none;
    flex-direction: column;
    gap: 10px;
  }
  .contact-tab button,
  .contact-tab a {
    width: 48px;
    height: 48px;
    border-radius: 50% !important;
    padding: 0 !important;
  }
  .contact-tab .open-contact {
    writing-mode: horizontal-tb;
    font-size: 0;      /* "İletişim" metni gizlenir, ikon kalır */
    letter-spacing: 0;
    gap: 0;
  }
  .contact-tab .open-contact svg {
    width: 20px;
    height: 20px;
  }

  /* Mobil header: ferah nefes + dengeli ölçüler */
  .header-inner {
    padding-top: 10px;
    padding-bottom: 10px;
    gap: 12px;
  }
  .logo img,
  .logo .logo-mark { width: 34px; height: 34px; }
  .logo-text { font-size: 21px; }
  .theme-toggle {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
  }
  .hamburger { padding: 10px 8px; }
  .announce-inner { font-size: 11.5px; padding: 7px 10px; }
}

/* ============================================================
   YÜZEN İLETİŞİM — HER boyutta yuvarlak cam butonlar
   (dikey yazılı sekme tüm ekranlarda emekli)
   ============================================================ */
.contact-tab {
  top: auto;
  bottom: 22px;
  right: 16px;
  transform: none;
  flex-direction: column;
  gap: 10px;
}
.contact-tab button,
.contact-tab a {
  width: 50px;
  height: 50px;
  border-radius: 50% !important;
  padding: 0 !important;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}
.contact-tab .open-contact {
  writing-mode: horizontal-tb;
  font-size: 0; /* "İletişim" metni gizli, ikon konuşur */
  letter-spacing: 0;
  gap: 0;
}
.contact-tab .open-contact svg {
  width: 20px;
  height: 20px;
}

/* ============================================================
   İLETİŞİM KANALLARI — masaüstünde 4'lü, mobilde 2x2
   ============================================================ */
.channels-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 960px) {
  .channels-4 { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================================
   SHOPIFY BUTONU — marka yeşili zemin + beyaz logo (net kontrast)
   ============================================================ */
.btn-shopify {
  background: linear-gradient(160deg, #7ab54b, #5e8e3e);
  border-color: rgba(255, 255, 255, 0.22);
  color: #fff;
  box-shadow: 0 8px 24px rgba(94, 142, 62, 0.35);
}
.btn-shopify:hover {
  background: linear-gradient(160deg, #86c257, #679a45);
  border-color: rgba(255, 255, 255, 0.32);
  color: #fff;
  box-shadow: 0 10px 28px rgba(94, 142, 62, 0.45);
}
.btn-shopify img {
  display: inline-block;
  width: 18px;
  height: 18px;
}

/* ============================================================
   MEGA DROPDOWN — kart tabanlı cam panel
   ============================================================ */
.submenu.sm-panel {
  min-width: 330px;
  padding: 10px;
}
.submenu.sm-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  min-width: 620px;
  left: auto;
  right: -80px;
}
/* tetik gagası */
.submenu.sm-panel::before {
  content: "";
  position: absolute;
  top: -5px;
  left: 28px;
  width: 10px;
  height: 10px;
  transform: rotate(45deg);
  background: var(--card-2);
  border-left: 1px solid var(--line-soft);
  border-top: 1px solid var(--line-soft);
}
.submenu.sm-grid::before { left: auto; right: 120px; }

/* kart öğeleri */
.sm-panel a {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 11px 12px;
  border-radius: 12px;
  border: 1px solid transparent;
  transition: background 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
}
.sm-panel a:hover {
  background: rgba(0, 128, 96, 0.10);
  border-color: var(--line-soft);
  transform: translateX(3px);
}
.sm-ic {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(0, 128, 96, 0.14), rgba(94, 142, 62, 0.14));
  display: grid;
  place-items: center;
  color: var(--violet);
  flex: 0 0 auto;
}
[data-theme="dark"] .sm-ic { color: var(--green); }
.sm-ic svg { width: 17px; height: 17px; }
.sm-tx b {
  display: block;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--headline);
  line-height: 1.25;
}
.sm-tx small {
  display: block;
  font-size: 11.5px;
  color: var(--dim);
  margin-top: 2px;
  line-height: 1.35;
}
/* aktif sayfa noktası */
.sm-panel a.active .sm-tx b::after {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--violet);
  margin-left: 7px;
  vertical-align: middle;
}
/* panel altı hızlı iletişim şeridi */
.sm-foot {
  grid-column: 1 / -1;
  border-top: 1px solid var(--line-soft);
  margin-top: 6px;
  padding-top: 8px;
}
.sm-foot a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  color: var(--dim);
  padding: 8px 12px;
}
.sm-foot a:hover { color: var(--text); transform: none; }
.sm-foot svg { width: 15px; height: 15px; color: #25d366; }

/* kademeli açılış + hover kapanma toleransı */
.nav-item .submenu {
  transition: opacity 0.18s ease 0.12s, transform 0.26s cubic-bezier(0.22, 1, 0.36, 1) 0.12s, visibility 0s linear 0.3s;
}
.nav-item:hover .submenu {
  transition-delay: 0s, 0s, 0s;
}
@keyframes sm-item-in {
  from { opacity: 0; transform: translateY(8px); }
}
.nav-item:hover .sm-panel > a {
  animation: sm-item-in 0.38s cubic-bezier(0.22, 1, 0.36, 1) backwards;
}
.nav-item:hover .sm-panel > a:nth-child(1) { animation-delay: 0.03s; }
.nav-item:hover .sm-panel > a:nth-child(2) { animation-delay: 0.07s; }
.nav-item:hover .sm-panel > a:nth-child(3) { animation-delay: 0.11s; }
.nav-item:hover .sm-panel > a:nth-child(4) { animation-delay: 0.15s; }

/* ============================================================
   CİLA PAKETİ — her pikselde aynı kültür
   ============================================================ */

/* Metin seçimi: varsayılan mavi yerine marka yeşili buğu */
::selection {
  background: rgba(0, 128, 96, 0.26);
  color: var(--headline);
}
[data-theme="dark"] ::selection {
  background: rgba(95, 209, 171, 0.30);
  color: #eafff5;
}

/* Özel scrollbar: ince, zemine karışan, hover'da yeşillenen */
html {
  scrollbar-width: thin;
  scrollbar-color: rgba(0, 128, 96, 0.35) transparent;
}
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb {
  background: color-mix(in srgb, var(--dim) 35%, transparent);
  border-radius: 8px;
  border: 2px solid transparent;
  background-clip: padding-box;
}
::-webkit-scrollbar-thumb:hover {
  background: rgba(0, 128, 96, 0.55);
  background-clip: padding-box;
  border: 2px solid transparent;
}

/* Klavye odağı: yeşil cam halka */
:focus-visible {
  outline: 2px solid rgba(0, 128, 96, 0.65);
  outline-offset: 3px;
  border-radius: 8px;
}

/* Akan alt çizgi: nav ve footer linkleri soldan sağa çizilir */
.nav > .nav-item > a,
.mf-col a {
  background-image: linear-gradient(currentColor, currentColor);
  background-repeat: no-repeat;
  background-position: 0 calc(100% - 2px);
  background-size: 0 1px;
  transition: background-size 0.28s ease, color 0.2s ease;
}
.nav > .nav-item > a:hover,
.mf-col a:hover {
  background-size: 100% 1px;
}

/* Form alanları: düz zeminde yaşar, odakta camlaşır */
.field input,
.field textarea {
  background: transparent;
  border-color: var(--line-soft);
  transition: background 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}
.field input:focus,
.field textarea:focus {
  background: var(--card);
  border-color: rgba(0, 128, 96, 0.55);
  box-shadow: 0 0 0 3px rgba(0, 128, 96, 0.12);
}
@supports (background: color-mix(in srgb, red 50%, transparent)) {
  .field input:focus,
  .field textarea:focus {
    background: color-mix(in srgb, var(--card) 62%, transparent);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
  }
}

/* Tema geçiş morph'u: gece-gündüz yumuşak çözülme */
::view-transition-old(root),
::view-transition-new(root) {
  animation-duration: 0.45s;
  animation-timing-function: ease;
}

/* Okuma çizgisi: sayfanın neresindesiniz, 2px zarafetle */
#gs-read {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  z-index: 100000;
  transform-origin: left;
  transform: scaleX(0);
  background: linear-gradient(90deg, rgba(0, 128, 96, 0.75), rgba(94, 142, 62, 0.75));
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

/* Kart içi ikon çipleri: hover paralaksına hazır yumuşak takip */
.flank-card .fi,
.feature-card .ic-box,
.cap .ci,
.counter .counter-ic {
  transition: transform 0.3s ease;
}

/* Dokunmatikte buton basış hissi */
@media (hover: none) {
  .btn:active { transform: scale(0.96); transition: transform 0.12s ease; }
}

/* ============================================================
   TAM EKRAN CAM MOBİL MENÜ — atmosferin vitrini
   ============================================================ */
.mobile-nav {
  inset: 0;
  width: auto;
  border-left: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  background: var(--bg-2);
  -webkit-backdrop-filter: blur(26px) saturate(1.35);
  backdrop-filter: blur(26px) saturate(1.35);
  transform: scale(1.05);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.32s ease,
              transform 0.5s cubic-bezier(0.22, 1, 0.36, 1),
              visibility 0s linear 0.4s;
}
@supports (background: color-mix(in srgb, red 50%, transparent)) {
  .mobile-nav {
    background: color-mix(in srgb, var(--bg) 78%, transparent);
  }
}
.mobile-nav.open {
  transform: none;
  opacity: 1;
  visibility: visible;
  transition-delay: 0s;
}

/* üst şerit: marka + kapat */
.mn-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px 6px;
}
.mn-brand {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 300;
  color: var(--dim);
}
.mn-brand b { font-weight: 800; color: var(--headline); }
.mn-close {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--line-soft);
  background: transparent;
  color: var(--headline);
  display: grid;
  place-items: center;
}
.mn-close svg { width: 20px; height: 20px; }

/* içerik */
.mn-scroll {
  flex: 1;
  overflow-y: auto;
  padding: 8px 22px 12px;
}
.mobile-nav a { border-bottom: none; }
.mn-main {
  display: block;
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 600;
  letter-spacing: -0.3px;
  color: var(--headline);
  padding: 9px 0;
}
.mn-main.active::after {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--violet);
  margin-left: 10px;
  vertical-align: middle;
}
.mn-group {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--mute);
  margin: 22px 0 8px;
}
.mn-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4px;
}
@media (min-width: 560px) {
  .mn-cards { grid-template-columns: 1fr 1fr; }
}
.mn-card {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 10px;
  border-radius: 12px;
  border: 1px solid transparent;
}
.mn-card:active {
  background: rgba(0, 128, 96, 0.12);
  border-color: var(--line-soft);
}
.mn-card.active .sm-tx b::after {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--violet);
  margin-left: 7px;
  vertical-align: middle;
}

/* alt iletişim şeridi */
.mn-foot {
  display: flex;
  gap: 10px;
  padding: 14px 22px calc(18px + env(safe-area-inset-bottom, 0px));
  border-top: 1px solid var(--line-soft);
}
.mn-cta {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px;
  border-radius: 12px;
  border: 1px solid var(--line);
  font-size: 14px;
  font-weight: 600;
  color: var(--headline);
  background: var(--card);
}
@supports (background: color-mix(in srgb, red 50%, transparent)) {
  .mn-cta { background: color-mix(in srgb, var(--card) 60%, transparent); }
}
.mn-cta svg { width: 17px; height: 17px; color: var(--violet); }
.mn-cta.mn-wa svg { color: #25d366; }

/* kademeli giriş: içerik dalga dalga süzülür */
.mobile-nav.open .mn-scroll > * {
  animation: sm-item-in 0.5s cubic-bezier(0.22, 1, 0.36, 1) backwards;
}
.mobile-nav.open .mn-scroll > *:nth-child(1) { animation-delay: 0.05s; }
.mobile-nav.open .mn-scroll > *:nth-child(2) { animation-delay: 0.09s; }
.mobile-nav.open .mn-scroll > *:nth-child(3) { animation-delay: 0.13s; }
.mobile-nav.open .mn-scroll > *:nth-child(4) { animation-delay: 0.17s; }
.mobile-nav.open .mn-scroll > *:nth-child(5) { animation-delay: 0.21s; }
.mobile-nav.open .mn-scroll > *:nth-child(6) { animation-delay: 0.25s; }
.mobile-nav.open .mn-scroll > *:nth-child(7) { animation-delay: 0.30s; }
.mobile-nav.open .mn-scroll > *:nth-child(8) { animation-delay: 0.34s; }
.mobile-nav.open .mn-scroll > *:nth-child(9) { animation-delay: 0.39s; }
.mobile-nav.open .mn-scroll > *:nth-child(10) { animation-delay: 0.43s; }
.mobile-nav.open .mn-foot {
  animation: sm-item-in 0.5s cubic-bezier(0.22, 1, 0.36, 1) 0.42s backwards;
}

/* menü açıkken kaydırma kilitlenir
   (gövde küçültme efekti kaldırıldı: menü gövdenin içinde olduğundan
   kendisi de küçülüyor, kenar boşlukları oluşuyordu) */
html:has(.mobile-nav.open) { overflow: hidden; }

/* ============================================================
   PAKET FİYATLARI — Shopify yeşili kimlik
   ============================================================ */
.pk-price .amt {
  color: #5e8e3e;
}
.pk-price .meta {
  color: #5e8e3e;
  opacity: 0.85;
}
[data-theme="dark"] .pk-price .amt,
[data-theme="dark"] .pk-price .meta {
  color: #95bf47;
}

/* ============================================================
   GROWTH BUSINESS®™ — hero çıkışı ve marka rozetleri
   ============================================================ */
.gb-links {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
  font-size: 13.5px;
}
.gb-mark {
  color: #5e8e3e;
  font-weight: 800;
  letter-spacing: 0.2px;
  font-family: var(--font-display);
}
[data-theme="dark"] .gb-mark { color: #95bf47; }
.gb-mark sup,
.gb-pill sup {
  font-size: 9px;
  vertical-align: super;
  margin-left: 1px;
  font-weight: 700;
}
.gb-links a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 13px;
  border: 1px solid var(--line-soft);
  border-radius: 10px;
  color: var(--dim);
  font-weight: 600;
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}
.gb-links a:hover {
  color: #5e8e3e;
  border-color: rgba(94, 142, 62, 0.5);
  background: rgba(94, 142, 62, 0.08);
}
[data-theme="dark"] .gb-links a:hover { color: #95bf47; }
.gb-links a svg { width: 15px; height: 15px; }

/* Enterprise sayfa rozeti: Shopify yeşili vurgu */
.badge-pill.gb-pill {
  color: #5e8e3e;
  border-color: rgba(94, 142, 62, 0.45);
  font-weight: 700;
}
[data-theme="dark"] .badge-pill.gb-pill { color: #95bf47; }

/* "Enterprise" fiyat etiketi rakamlardan bir tık küçük otursun */
.pk-price .amt { font-size: clamp(26px, 3vw, 40px); }

/* Daktilonun yanında MİNİMAL marka: we love growthBusiness® */
.type-love {
  display: none;
  font-size: 14px;
  line-height: 1;
  vertical-align: 0.9em;
  margin-left: 14px;
  color: var(--mute);
  font-weight: 500;
  letter-spacing: 0.4px;
  white-space: nowrap;
  font-family: var(--font-display);
}
.type-love.on {
  display: inline-block;
  animation: sm-item-in 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.type-love b { color: #5e8e3e; font-weight: 800; letter-spacing: 0.2px; }
[data-theme="dark"] .type-love b { color: #95bf47; }
.type-love sup { font-size: 8px; vertical-align: super; margin-left: 1px; }

/* "ads" yerine oranlı Google Ads sembolü */
.type-ads {
  height: 0.68em;
  width: auto;
  display: inline-block;
  vertical-align: baseline;
  transform: translateY(0.06em);
  margin-left: 0.1em;
}

/* Maslak ofis haritası */
.map-wrap {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--line-soft);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}
.map-wrap iframe {
  width: 100%;
  height: 430px;
  display: block;
}

/* Menüdeki marka: growthBusiness™ — Shopify yeşili */
.gb-nav {
  color: #5e8e3e;
  font-weight: 800;
  letter-spacing: 0.2px;
}
[data-theme="dark"] .gb-nav { color: #95bf47; }
.gb-nav sup {
  font-size: 8px;
  vertical-align: super;
  margin-left: 1px;
  font-weight: 700;
}

/* ============================================================
   YENİ KATMANLAR — kalpler, nabız, sim CTA, imza
   ============================================================ */

/* Menüde Shopify + kırmızı kalp */
.shp-nav {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: #5e8e3e;
  font-weight: 800;
}
[data-theme="dark"] .shp-nav { color: #95bf47; }
.shp-nav .shp-ic { width: 16px; height: 16px; display: inline-block; }
.shp-heart {
  width: 13px;
  height: 13px;
  fill: #e0245e;
  animation: gs-beat 1.8s ease-in-out infinite;
}

/* Hero: hayallerinizi ertelemeyin */
.hero-dream {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 10px;
  font-family: var(--font-display);
  font-size: clamp(15px, 1.6vw, 19px);
  font-weight: 500;
  letter-spacing: 0.6px;
  color: var(--dim);
}
.dream-heart {
  width: 17px;
  height: 17px;
  fill: #e0245e;
  animation: gs-beat 1.8s ease-in-out infinite;
}
@keyframes gs-beat {
  0%, 100% { transform: scale(1); }
  22% { transform: scale(1.22); }
  38% { transform: scale(1); }
  50% { transform: scale(1.12); }
  64% { transform: scale(1); }
}

/* Canlı nabız sinyali: sol altta cam bildirim */
#gs-pulse {
  position: fixed;
  left: 18px;
  bottom: 20px;
  z-index: 90;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 11px 16px;
  border-radius: 12px;
  border: 1px solid var(--line-soft);
  background: var(--card);
  -webkit-backdrop-filter: blur(14px) saturate(1.3);
  backdrop-filter: blur(14px) saturate(1.3);
  font-size: 12.5px;
  color: var(--dim);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.16);
  opacity: 0;
  transform: translateY(14px);
  pointer-events: none;
  transition: opacity 0.35s ease, transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
@supports (background: color-mix(in srgb, red 50%, transparent)) {
  #gs-pulse { background: color-mix(in srgb, var(--card) 72%, transparent); }
}
#gs-pulse.on { opacity: 1; transform: translateY(0); }
#gs-pulse .gp-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #5e8e3e;
  animation: gs-beat 1.8s ease-in-out infinite;
}
[data-theme="dark"] #gs-pulse .gp-dot { background: #95bf47; }
@media (max-width: 860px) { #gs-pulse { display: none; } }

/* Simülatör CTA: hesap → WhatsApp lead */
.sim-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 14px;
  padding: 12px;
  border-radius: 12px;
  background: linear-gradient(160deg, #7ab54b, #5e8e3e);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #fff;
  font-weight: 700;
  font-size: 13.5px;
  box-shadow: 0 8px 24px rgba(94, 142, 62, 0.35);
  transition: transform 0.18s ease, box-shadow 0.2s ease;
}
.sim-cta:hover {
  transform: translateY(-2px);
  color: #fff;
  box-shadow: 0 12px 30px rgba(94, 142, 62, 0.45);
}
.sim-cta svg { width: 16px; height: 16px; }

/* Footer imzası */
.gb-sign {
  margin-top: 10px;
  font-size: 12px;
  color: var(--mute);
  font-family: var(--font-display);
}
.gb-sign b { color: #5e8e3e; font-weight: 800; }
[data-theme="dark"] .gb-sign b { color: #95bf47; }
.gb-sign sup { font-size: 7px; }

/* Paket kategorilerinde marka: growthBusiness™ — yeşil, özgün yazım */
.pk-cat .gb-cat {
  text-transform: none;
  letter-spacing: 0.2px;
  color: #5e8e3e;
  font-weight: 800;
  margin-right: 6px;
}
[data-theme="dark"] .pk-cat .gb-cat { color: #95bf47; }
.pk-cat .gb-cat sup {
  font-size: 8px;
  vertical-align: super;
  margin-left: 1px;
}

/* 3D sahne hissi */
body { backface-visibility: hidden; }

/* Lenis: native smooth-scroll ile çakışmasın */
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-stopped { overflow: hidden; }

/* Kelime kelime akan başlıklar (maskeli yükseliş) */
.gw-m {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
}
.gw {
  display: inline-block;
  will-change: transform;
}

/* Dokunmatik cihazlarda imleç katmanı gizli (JS zaten üretmez, emniyet) */
@media (hover: none) {
  #gs-dot, #gs-ring { display: none; }
}
