/* ==== 01-base.css ==== */
/* Açelya Havlu Yıkama — temel katman: token'lar, tipografi, butonlar, animasyon altyapısı */

:root {
  --petrol-950: #041d23;
  --petrol-900: #06262d;
  --petrol-800: #0a3640;
  --petrol-700: #0f4a56;
  --petrol-600: #1a5e6a;
  --teal-700: #0b7f7c;
  --teal-600: #0c8c8a;
  --teal-500: #12a8a3;
  --teal-400: #3cc4bd;
  --teal-300: #7fdad3;
  --teal-200: #b4ebe6;
  --teal-100: #d9f4f1;
  --teal-50: #edfaf8;
  --linen: #f7f6f2;
  --white: #fff;
  --grey-50: #f3f5f5;
  --grey-100: #eaeeef;
  --grey-200: #dde4e6;
  --grey-300: #c6d1d4;
  --grey-500: #7d8e93;
  --grey-600: #5a6c72;
  --grey-700: #3f5258;
  --ink: var(--petrol-800);
  --text: var(--grey-700);
  --wa: #25d366;

  --radius-sm: 14px;
  --radius: 22px;
  --radius-lg: 32px;
  --radius-xl: 44px;
  --shadow-sm: 0 1px 2px rgba(10, 54, 64, .05), 0 8px 24px rgba(10, 54, 64, .06);
  --shadow: 0 10px 30px rgba(10, 54, 64, .07), 0 30px 80px rgba(10, 54, 64, .09);
  --shadow-lg: 0 20px 50px rgba(10, 54, 64, .12), 0 50px 120px rgba(10, 54, 64, .14);

  --ease-out: cubic-bezier(.16, 1, .3, 1);
  --ease-in-out: cubic-bezier(.65, 0, .35, 1);
  --ease-spring: cubic-bezier(.34, 1.56, .64, 1);

  --font-display: 'Fraunces', 'Iowan Old Style', 'Palatino Linotype', Georgia, serif;
  --font-sans: 'Manrope', 'Segoe UI', system-ui, -apple-system, sans-serif;

  --container: 1240px;
  --gutter: clamp(20px, 4vw, 40px);
  --section: clamp(84px, 11vw, 150px);
}

*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}
html.reduced { scroll-behavior: auto; }

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--linen);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; }
button { cursor: pointer; }
p { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }

h1, h2, h3, h4 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 400;
  color: var(--ink);
  line-height: 1.08;
  letter-spacing: -.015em;
  font-variation-settings: "SOFT" 50;
  text-wrap: balance;
}
h1 em, h2 em, h3 em {
  font-style: italic;
  font-weight: 360;
  color: var(--teal-600);
  font-variation-settings: "SOFT" 100;
}

::selection { background: var(--teal-200); color: var(--petrol-900); }

:focus-visible {
  outline: 2px solid var(--teal-500);
  outline-offset: 3px;
  border-radius: 8px;
}

.sprite { position: absolute; width: 0; height: 0; overflow: hidden; }

.icon {
  width: 1.25em;
  height: 1.25em;
  flex: none;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 10001;
  padding: 12px 18px;
  border-radius: 12px;
  background: var(--petrol-800);
  color: #fff;
  font-weight: 700;
  transition: top .3s var(--ease-out);
}
.skip-link:focus { top: 16px; }

.container { width: min(100% - var(--gutter) * 2, var(--container)); margin-inline: auto; }

.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

/* ---------- Tipografi ---------- */

.display {
  font-size: clamp(2.65rem, 1.1rem + 4.7vw, 5.5rem);
  line-height: 1.01;
  letter-spacing: -.028em;
  font-weight: 380;
}
.h2 {
  font-size: clamp(2.05rem, 1.15rem + 2.8vw, 3.65rem);
  line-height: 1.05;
  letter-spacing: -.022em;
}
.h3 { font-size: clamp(1.35rem, 1.1rem + .6vw, 1.7rem); line-height: 1.15; }

.lead {
  font-size: clamp(1.06rem, .98rem + .35vw, 1.24rem);
  line-height: 1.65;
  color: var(--grey-700);
  max-width: 60ch;
  text-wrap: pretty;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .75em;
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--teal-700);
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 1.5px;
  background: currentColor;
  opacity: .55;
}
.eyebrow--light { color: var(--teal-300); }
.eyebrow--pill {
  padding: 9px 16px 9px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .7);
  border: 1px solid rgba(12, 140, 138, .18);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(10px);
  letter-spacing: .16em;
}
.eyebrow--pill::before { display: none; }
.eyebrow__dots { display: inline-flex; gap: 5px; }
.eyebrow__dots i {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--teal-500);
  animation: dot-pulse 2.4s var(--ease-in-out) infinite;
  animation-delay: calc(var(--k) * .3s);
}
@keyframes dot-pulse { 0%, 100% { transform: scale(.6); opacity: .45; } 40% { transform: scale(1); opacity: 1; } }

/* ---------- Bölüm düzeni ---------- */

.section { position: relative; padding-block: var(--section); }
.section--tight { padding-block: calc(var(--section) * .6); }
.section--white { background: #fff; }
.section--dark { background: var(--petrol-900); color: rgba(255, 255, 255, .72); }
.section--dark h2, .section--dark h3 { color: #fff; }
.section--dark h2 em, .section--dark h3 em { color: var(--teal-300); }

.section-head { display: grid; gap: 18px; max-width: 780px; margin-bottom: clamp(44px, 6vw, 76px); }
.section-head--center { margin-inline: auto; text-align: center; justify-items: center; }
.section-head--split {
  max-width: none;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr);
  align-items: end;
  column-gap: clamp(32px, 6vw, 96px);
}
.section-head--split .eyebrow { grid-column: 1 / -1; }

/* ---------- Butonlar ---------- */

.btn {
  --bh: 56px;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: var(--bh);
  padding: 0 26px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: .95rem;
  font-weight: 700;
  letter-spacing: .01em;
  white-space: nowrap;
  cursor: pointer;
  transition: transform .55s var(--ease-out), background-color .3s, color .3s, border-color .3s, box-shadow .4s;
}
.btn .icon { transition: transform .5s var(--ease-out); }
.btn:hover .icon:last-child { transform: translateX(4px); }
.btn--sm { --bh: 46px; padding: 0 20px; font-size: .9rem; }
.btn--lg { --bh: 62px; padding: 0 32px; font-size: 1rem; }

.btn--primary {
  background: var(--petrol-800);
  color: #fff;
  box-shadow: 0 12px 26px -10px rgba(10, 54, 64, .55);
}
.btn--primary::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: radial-gradient(130% 160% at 50% 130%, var(--teal-500), var(--teal-700) 45%, transparent 75%);
  opacity: 0;
  transition: opacity .45s;
}
.btn--primary::after {
  content: "";
  position: absolute;
  top: 0;
  left: -70%;
  z-index: -1;
  width: 45%;
  height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, .32), transparent);
  transform: skewX(-22deg);
  animation: btn-shine 6s 2.5s var(--ease-in-out) infinite;
}
.btn--primary:hover { box-shadow: 0 16px 34px -10px rgba(12, 140, 138, .6); }
.btn--primary:hover::before { opacity: 1; }
@keyframes btn-shine { 0%, 72% { left: -70%; } 100% { left: 135%; } }

.btn--light { background: #fff; color: var(--petrol-800); box-shadow: 0 12px 30px -12px rgba(0, 0, 0, .35); }
.btn--light:hover { background: var(--teal-100); }

.btn--ghost {
  background: rgba(255, 255, 255, .65);
  color: var(--petrol-800);
  border-color: var(--grey-200);
  backdrop-filter: blur(10px);
}
.btn--ghost:hover { background: #fff; border-color: var(--teal-400); }
.btn--ghost .icon-wa { color: #1fa855; }

.btn--ghost-light { color: #fff; border-color: rgba(255, 255, 255, .28); }
.btn--ghost-light:hover { background: rgba(255, 255, 255, .08); border-color: rgba(255, 255, 255, .6); }

.btn--wa { background: var(--wa); color: #06361f; }
.btn--wa:hover { background: #45e083; box-shadow: 0 14px 30px -12px rgba(37, 211, 102, .7); }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: .92rem;
  color: var(--teal-700);
}
.link-arrow .icon { transition: transform .45s var(--ease-out); }
.link-arrow:hover .icon { transform: translateX(5px); }

/* ---------- Çipler ---------- */

.chips { display: flex; flex-wrap: wrap; gap: 10px; }
.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border: 1px solid var(--grey-200);
  border-radius: 999px;
  background: #fff;
  font-size: .9rem;
  font-weight: 600;
  color: var(--petrol-800);
  transition: background-color .3s, border-color .3s, color .3s, transform .4s var(--ease-spring), box-shadow .3s;
}
.chip .icon { width: 1.05em; height: 1.05em; color: var(--teal-600); }
button.chip:hover, .chip.is-active {
  border-color: var(--teal-400);
  background: var(--teal-50);
  transform: translateY(-2px);
  box-shadow: 0 8px 18px -10px rgba(12, 140, 138, .6);
}

/* ---------- Görünür olunca beliren öğeler ---------- */

/* translate/scale bağımsız özellikleri kullanılır; transform 3D eğim efektine ayrılmıştır */
.js [data-reveal] {
  opacity: 0;
  translate: 0 24px;
  transition:
    opacity .6s var(--ease-out) var(--d, 0ms),
    translate .75s var(--ease-out) var(--d, 0ms),
    scale .75s var(--ease-out) var(--d, 0ms),
    clip-path .9s var(--ease-out) var(--d, 0ms),
    transform .7s var(--ease-out),
    box-shadow .5s var(--ease-out),
    border-color .4s,
    background-color .4s;
}
.js [data-reveal="fade"] { translate: none; }
.js [data-reveal="left"] { translate: -32px 0; }
.js [data-reveal="right"] { translate: 32px 0; }
.js [data-reveal="scale"] { translate: none; scale: .96; }
.js [data-reveal="clip"] {
  opacity: 1;
  translate: none;
  clip-path: inset(0 0 100% 0 round var(--radius-xl));
}
.js [data-reveal].is-in { opacity: 1; translate: none; scale: none; }
.js [data-reveal="clip"].is-in { clip-path: inset(0 0 0 0 round var(--radius-xl)); }

/* Kelime kelime maske ile yükselen başlıklar */
.js [data-split] .w {
  display: inline-block;
  overflow: hidden;
  vertical-align: top;
  padding: 0 .08em .14em 0;
  margin: 0 -.08em -.14em 0;
}
.js [data-split] .w__i {
  display: inline-block;
  transform: translate3d(0, 105%, 0);
  transition: transform .8s var(--ease-out);
  transition-delay: calc(var(--wi) * 35ms + var(--d, 0ms));
}
.js [data-split].is-in .w__i { transform: none; }

/* Site içi gelişte ilk ekran geçişsiz yerine oturur (bkz. initReveal) */
.no-trans [data-reveal], .no-trans [data-split] .w__i { transition: none !important; }

.no-anim [data-reveal], .no-anim [data-split] .w__i {
  opacity: 1 !important;
  translate: none !important;
  scale: none !important;
  transform: none !important;
  clip-path: none !important;
}

/* ==== 02-chrome.css ==== */
/* Site kabuğu: sayfa geçişi, imleç, üst menü, mobil menü, yüzen butonlar, footer */

/* ---------- Sayfa geçişi ----------
   Tıklayınca beklemeden geçilir. Destekleyen tarayıcılarda (Chrome, Edge, Safari 18.2+)
   iki sayfa arasında çok kısa, sade bir çapraz geçiş yapılır; diğerlerinde anında geçiş. */

@view-transition { navigation: auto; }
::view-transition-old(root), ::view-transition-new(root) { animation-duration: .18s; animation-timing-function: ease-out; }
@media (prefers-reduced-motion: reduce) {
  ::view-transition-group(*), ::view-transition-old(*), ::view-transition-new(*) { animation: none !important; }
}

/* ---------- Özel imleç ---------- */

.cursor { display: none; pointer-events: none; }
.has-cursor .cursor { display: block; }
.cursor__dot, .cursor__ring {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 9998;
  border-radius: 50%;
  translate: -50% -50%;
  pointer-events: none;
  will-change: transform;
}
.cursor__dot { width: 7px; height: 7px; background: var(--teal-500); }
.cursor__ring {
  width: 38px;
  height: 38px;
  border: 1.5px solid rgba(18, 168, 163, .55);
  transition: width .4s var(--ease-out), height .4s var(--ease-out), background-color .3s, border-color .3s, opacity .3s;
}
.cursor.is-link .cursor__ring { width: 66px; height: 66px; background: rgba(18, 168, 163, .1); border-color: rgba(18, 168, 163, .28); }
.cursor.is-down .cursor__ring { width: 28px; height: 28px; }
.cursor.is-hidden .cursor__dot, .cursor.is-hidden .cursor__ring { opacity: 0; }

/* ---------- Üst menü ---------- */

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  padding-top: 14px;
  transition: transform .7s var(--ease-out);
}
.site-header.is-hidden { transform: translateY(-130%); }

.site-header__bar {
  display: flex;
  align-items: center;
  gap: 20px;
  height: 70px;
  padding: 0 10px 0 18px;
  border: 1px solid transparent;
  border-radius: 999px;
  transition: background-color .5s, box-shadow .5s, border-color .5s, backdrop-filter .5s;
}
.site-header.is-scrolled .site-header__bar {
  background: rgba(255, 255, 255, .76);
  border-color: rgba(255, 255, 255, .9);
  box-shadow: 0 12px 40px -14px rgba(10, 54, 64, .25);
  backdrop-filter: blur(18px) saturate(1.6);
  -webkit-backdrop-filter: blur(18px) saturate(1.6);
}

.brand { display: inline-flex; align-items: center; gap: 11px; flex: none; }
.brand__mark { width: 40px; height: 40px; transition: transform 1.1s var(--ease-spring); }
.brand:hover .brand__mark { transform: rotate(72deg) scale(1.06); }
.brand__text { display: grid; line-height: 1; }
.brand__name {
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 500;
  letter-spacing: -.01em;
  color: var(--petrol-800);
  font-variation-settings: "SOFT" 100;
}
.brand__sub {
  margin-top: 5px;
  font-size: .64rem;
  font-weight: 800;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--teal-700);
}
.brand--light .brand__name { color: #fff; }
.brand--light .brand__sub { color: var(--teal-300); }

.nav { margin-inline: auto; }
.nav ul { display: flex; gap: 2px; }
.nav a {
  position: relative;
  display: block;
  overflow: hidden;
  padding: 10px 11px;
  border-radius: 999px;
  font-size: .88rem;
  font-weight: 650;
  white-space: nowrap;
  color: var(--petrol-800);
}
.nav a span {
  display: inline-block;
  line-height: 1.3;
  text-shadow: 0 2.4em 0 var(--teal-600);
  transition: transform .6s var(--ease-out);
}
.nav a:hover span { transform: translateY(-2.4em); }
.nav a[aria-current="page"] { color: var(--teal-700); }
.nav a[aria-current="page"]::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 3px;
  width: 5px;
  height: 5px;
  margin-left: -2.5px;
  border-radius: 50%;
  background: var(--teal-500);
}

.site-header__actions { display: flex; align-items: center; gap: 10px; flex: none; margin-left: auto; }
.nav + .site-header__actions { margin-left: 0; }

.wa-pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  height: 46px;
  padding: 0 6px;
  border: 1px solid var(--grey-200);
  border-radius: 999px;
  background: rgba(255, 255, 255, .72);
  font-size: .88rem;
  font-weight: 700;
  color: var(--petrol-800);
  transition: border-color .3s, background-color .3s, transform .4s var(--ease-out);
}
.wa-pill:hover { border-color: var(--wa); background: #fff; transform: translateY(-1px); }
/* Menü başlıkları uzun olduğu için üst şeritte yalnızca WhatsApp ikonu gösterilir */
.wa-pill__label { display: none; }

/* Instagram: WhatsApp butonunun yanında, aynı ölçülerde */
.ig-pill:hover { border-color: #ee2a7b; background: #fff; }
.ig-pill .ig-pill__icon { background: linear-gradient(135deg, #f9ce34 0%, #ee2a7b 48%, #6228d7 100%); }
.ig-pill .ig-pill__icon::after { display: none; }
.wa-pill__icon {
  position: relative;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--wa);
  color: #fff;
}
.wa-pill__icon .icon { width: 19px; height: 19px; }
.wa-pill__icon::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 2px solid var(--wa);
  border-radius: 50%;
  animation: ring-pulse 2.4s var(--ease-out) infinite;
}
@keyframes ring-pulse { from { transform: scale(1); opacity: .7; } to { transform: scale(1.9); opacity: 0; } }

.burger {
  position: relative;
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid var(--grey-200);
  border-radius: 50%;
  background: #fff;
  transition: background-color .4s, border-color .4s;
}
.burger span {
  position: absolute;
  left: 15px;
  right: 15px;
  height: 1.8px;
  border-radius: 2px;
  background: var(--petrol-800);
  transition: transform .55s var(--ease-out), top .55s var(--ease-out), background-color .4s;
}
.burger span:first-child { top: 19px; }
.burger span:last-child { top: 27px; }
.menu-open .burger { background: transparent; border-color: rgba(255, 255, 255, .3); }
.menu-open .burger span { top: 23px; background: #fff; }
.menu-open .burger span:first-child { transform: rotate(45deg); }
.menu-open .burger span:last-child { transform: rotate(-45deg); }

/* ---------- Mobil menü ---------- */

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 990;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 34px;
  padding: 120px var(--gutter) 40px;
  overflow: auto;
  background: radial-gradient(90% 60% at 100% 0%, var(--petrol-700), var(--petrol-900) 70%);
  color: #fff;
  clip-path: circle(0 at calc(100% - 52px) 52px);
  visibility: hidden;
  transition: clip-path .85s var(--ease-in-out), visibility 0s .85s;
}
.menu-open { overflow: hidden; }
.menu-open .mobile-menu { clip-path: circle(150% at calc(100% - 52px) 52px); visibility: visible; transition: clip-path .85s var(--ease-in-out), visibility 0s; }
.menu-open .site-header__bar { background: transparent !important; border-color: transparent !important; box-shadow: none !important; backdrop-filter: none !important; }
.menu-open .site-header .brand__name { color: #fff; }
.menu-open .site-header .brand__sub { color: var(--teal-300); }
.menu-open .site-header.is-hidden { transform: none; }

.mobile-menu ol { display: grid; gap: 2px; }
.mobile-menu li { overflow: hidden; }
.mobile-menu nav a {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2rem, 8.5vw, 3.1rem);
  line-height: 1.22;
  font-variation-settings: "SOFT" 100;
  transform: translateY(110%);
  transition: transform .8s var(--ease-out), color .3s;
}
.mobile-menu nav a:hover { color: var(--teal-300); }
.menu-open .mobile-menu nav a { transform: none; transition-delay: calc(var(--i) * 55ms + .2s); }
.mobile-menu__cta, .mobile-menu__slogan { opacity: 0; transform: translateY(16px); transition: opacity .6s var(--ease-out), transform .8s var(--ease-out); }
.menu-open .mobile-menu__cta, .menu-open .mobile-menu__slogan { opacity: 1; transform: none; transition-delay: .6s; }
.mobile-menu__flower {
  position: absolute;
  right: -140px;
  bottom: -140px;
  width: 440px;
  height: 440px;
  opacity: .07;
  animation: spin 50s linear infinite;
}
.mobile-menu__cta { display: flex; flex-wrap: wrap; gap: 12px; }
.mobile-menu__slogan { font-size: .72rem; font-weight: 700; letter-spacing: .3em; text-transform: uppercase; color: var(--teal-300); }
@keyframes spin { to { transform: rotate(360deg); } }

/* ---------- Yüzen butonlar ---------- */

.float-actions {
  position: fixed;
  right: clamp(16px, 2.5vw, 28px);
  bottom: clamp(16px, 2.5vw, 28px);
  z-index: 900;
  display: flex;
  align-items: center;
  gap: 12px;
}
.wa-float {
  position: relative;
  display: grid;
  place-items: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--wa);
  color: #fff;
  box-shadow: 0 14px 30px -8px rgba(37, 211, 102, .6);
  transition: transform .55s var(--ease-spring);
}
.wa-float .icon { width: 30px; height: 30px; }
.wa-float:hover { transform: scale(1.08) rotate(-8deg); }
.wa-float__pulse {
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: 50%;
  background: var(--wa);
  animation: wa-pulse 2.8s var(--ease-out) infinite;
}
@keyframes wa-pulse { from { transform: scale(1); opacity: .5; } to { transform: scale(1.85); opacity: 0; } }
.wa-float__tip {
  position: absolute;
  right: 0;
  bottom: calc(100% + 12px);
  padding: 8px 14px;
  border-radius: 12px;
  background: var(--petrol-800);
  color: #fff;
  font-size: .82rem;
  font-weight: 700;
  white-space: nowrap;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity .3s, transform .45s var(--ease-out);
  pointer-events: none;
}
.wa-float:hover .wa-float__tip, .wa-float:focus-visible .wa-float__tip { opacity: 1; transform: none; }

.to-top {
  position: relative;
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .88);
  backdrop-filter: blur(10px);
  color: var(--petrol-800);
  box-shadow: var(--shadow-sm);
  opacity: 0;
  transform: translateY(16px) scale(.9);
  pointer-events: none;
  transition: opacity .4s, transform .55s var(--ease-out);
}
.to-top.is-visible { opacity: 1; transform: none; pointer-events: auto; }
.to-top__ring { position: absolute; inset: 0; width: 100%; height: 100%; transform: rotate(-90deg); }
.to-top__ring circle { fill: none; stroke: var(--grey-200); stroke-width: 2.5; }
.to-top__ring .to-top__bar { stroke: var(--teal-500); stroke-dasharray: 100; stroke-dashoffset: 100; stroke-linecap: round; }
.to-top .icon { width: 18px; height: 18px; }

/* ---------- Footer ---------- */

.site-footer {
  position: relative;
  overflow: hidden;
  padding-top: clamp(64px, 8vw, 110px);
  background: var(--petrol-950);
  color: rgba(255, 255, 255, .66);
}
.footer-cta {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: grid;
  justify-items: center;
  gap: 22px;
  padding: clamp(48px, 7vw, 92px) clamp(24px, 5vw, 60px);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, var(--petrol-800), var(--petrol-700));
  text-align: center;
}
.footer-cta__glow {
  position: absolute;
  inset: -45%;
  z-index: -1;
  background: radial-gradient(closest-side, rgba(60, 196, 189, .38), transparent 70%);
  animation: aura 10s var(--ease-in-out) infinite alternate;
  pointer-events: none;
}
@keyframes aura { from { transform: translate(-20%, 12%) scale(.8); } to { transform: translate(20%, -10%) scale(1.1); } }
.footer-cta__title { font-size: clamp(2.2rem, 1.1rem + 3.6vw, 4.3rem); color: #fff; }
.footer-cta__title em { color: var(--teal-300); }
.footer-cta__actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-top: 6px; }

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.25fr;
  gap: 40px;
  padding-block: clamp(56px, 7vw, 90px) 10px;
}
.footer-col h3 {
  margin-bottom: 20px;
  font-family: var(--font-sans);
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: #fff;
}
.footer-col ul { display: grid; gap: 10px; font-size: .95rem; }
.footer-col a { transition: color .3s; }
.footer-col a:hover { color: var(--teal-300); }
.footer-col--brand p { max-width: 36ch; margin-top: 20px; font-size: .95rem; }
.footer-col--brand .footer-slogan { font-size: .68rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; white-space: nowrap; color: var(--teal-300); }
.footer-regions { grid-template-columns: 1fr 1fr; column-gap: 16px; }
.footer-contact li { display: flex; align-items: center; gap: 12px; }
.footer-contact .icon { color: var(--teal-400); }

.footer-mark { margin-top: clamp(8px, 3vw, 36px); padding-inline: var(--gutter); }
.footer-mark svg { width: 100%; max-width: 1400px; height: auto; margin-inline: auto; overflow: visible; }
.footer-mark__text {
  font-family: var(--font-display);
  font-size: 280px;
  font-weight: 500;
  letter-spacing: -.03em;
  font-variation-settings: "SOFT" 100;
}
.footer-mark__outline { fill: rgba(255, 255, 255, .025); stroke: rgba(127, 218, 211, .22); stroke-width: 1.2; }
.footer-mark__level { transform: translateY(150px); transition: transform 2.6s var(--ease-out) .2s; }
.footer-mark.is-in .footer-mark__level { transform: translateY(0); }
.footer-mark__wave { animation: wave-x 7s linear infinite; }
.footer-mark__wave--back { fill: rgba(127, 218, 211, .28); animation-duration: 11s; animation-direction: reverse; }
@keyframes wave-x { to { transform: translateX(300px); } }

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding-block: 22px 30px;
  padding-right: 140px;
  border-top: 1px solid rgba(255, 255, 255, .08);
  font-size: .85rem;
}
@media (max-width: 760px) { .footer-bottom { padding-right: 0; padding-bottom: 96px; } }

/* Instagram bağlantısı — koyu zeminlerde (footer ve mobil menü) */
.ig-link {
  display: inline-flex; align-items: center; gap: 14px;
  margin-top: 24px; padding: 10px 20px 10px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .16);
  background: rgba(255, 255, 255, .05);
  color: #fff; text-decoration: none;
  transition: background-color .3s, border-color .3s, transform .5s var(--ease-spring);
}
.ig-link:hover { background: rgba(255, 255, 255, .1); border-color: var(--teal-300); transform: translateY(-2px); }
.ig-link__tile {
  display: grid; place-items: center; width: 40px; height: 40px; flex: none;
  border-radius: 13px; color: #fff;
  background: linear-gradient(135deg, #f9ce34 0%, #ee2a7b 48%, #6228d7 100%);
  box-shadow: 0 8px 16px -10px rgba(238, 42, 123, .95);
}
.ig-link__tile .icon { width: 22px; height: 22px; }
.ig-link__text small { display: block; font-size: .68rem; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; color: var(--teal-300); }
.ig-link__text b { display: block; margin-top: 3px; font-size: .98rem; font-weight: 700; }
.ig-link__go { width: 18px; height: 18px; opacity: .45; transition: transform .35s var(--ease-spring), opacity .3s; }
.ig-link:hover .ig-link__go { transform: translateX(4px); opacity: 1; }
.ig-link--menu { margin: 10px 0 0; }

/* ==== 03-hero.css ==== */
/* Ana sayfa hero + alt sayfa hero'ları */

.bubbles {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: grid;
  align-items: center;
  min-height: 100svh;
  padding: clamp(120px, 14vh, 150px) 0 clamp(80px, 10vh, 110px);
  background:
    radial-gradient(55% 65% at 82% 42%, rgba(60, 196, 189, .2), transparent 70%),
    radial-gradient(40% 50% at 8% 95%, rgba(18, 168, 163, .1), transparent 70%),
    var(--linen);
}
/* keten dokusu */
.hero::before, .page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    repeating-linear-gradient(0deg, rgba(10, 54, 64, .028) 0 1px, transparent 1px 4px),
    repeating-linear-gradient(90deg, rgba(10, 54, 64, .022) 0 1px, transparent 1px 4px);
  -webkit-mask-image: radial-gradient(ellipse 70% 70% at 70% 40%, #000, transparent 75%);
  mask-image: radial-gradient(ellipse 70% 70% at 70% 40%, #000, transparent 75%);
  pointer-events: none;
}

.hero__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, .92fr);
  gap: clamp(28px, 4vw, 64px);
  align-items: center;
}
.hero__title { margin: 24px 0 26px; }
.hero__lead { max-width: 56ch; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 36px; }
.hero__trust {
  display: grid;
  grid-template-columns: repeat(2, max-content);
  gap: 14px 28px;
  margin-top: 42px;
}
.hero__trust li { display: flex; align-items: center; gap: 10px; font-size: .94rem; font-weight: 650; color: var(--petrol-800); }

.tick {
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  flex: none;
  border-radius: 50%;
  background: var(--teal-100);
  color: var(--teal-700);
}
.tick .icon { width: 15px; height: 15px; stroke-width: 2.5; }

/* ---------- Hero görseli ---------- */

.hero__visual {
  position: relative;
  justify-self: center;
  width: 100%;
  max-width: 600px;
  aspect-ratio: 1;
}
.hero__blob {
  position: absolute;
  inset: 9%;
  border-radius: 62% 38% 46% 54% / 48% 58% 42% 52%;
  background:
    radial-gradient(circle at 30% 24%, rgba(255, 255, 255, .95), rgba(255, 255, 255, .15) 28%, transparent 52%),
    linear-gradient(150deg, var(--teal-200), var(--teal-400) 52%, var(--teal-700));
  box-shadow:
    inset -24px -34px 70px rgba(6, 38, 45, .28),
    inset 22px 22px 50px rgba(255, 255, 255, .45),
    0 40px 90px -30px rgba(12, 140, 138, .55);
  animation: blob-morph 16s var(--ease-in-out) infinite alternate;
}
@keyframes blob-morph {
  0% { border-radius: 62% 38% 46% 54% / 48% 58% 42% 52%; rotate: 0deg; }
  50% { border-radius: 42% 58% 60% 40% / 56% 42% 58% 44%; rotate: 6deg; }
  100% { border-radius: 54% 46% 36% 64% / 44% 56% 44% 56%; rotate: -4deg; }
}
.hero__ring {
  position: absolute;
  inset: 0;
  border: 1px dashed rgba(12, 140, 138, .32);
  border-radius: 50%;
  animation: spin 70s linear infinite;
}
.hero__ring::before {
  content: "";
  position: absolute;
  top: 14%;
  left: 12%;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--teal-500);
  box-shadow: 0 0 0 6px rgba(18, 168, 163, .18);
}

.stack { position: relative; z-index: 2; width: 100%; height: 100%; overflow: visible; }
.stack__float { animation: stack-bob 7s var(--ease-in-out) infinite; }
.stack__shadow { transform-box: fill-box; transform-origin: center; animation: shadow-bob 7s var(--ease-in-out) infinite; }
@keyframes stack-bob { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }
@keyframes shadow-bob { 0%, 100% { transform: scaleX(1); opacity: 1; } 50% { transform: scaleX(.92); opacity: .75; } }

.towel__line { fill: none; stroke: rgba(255, 255, 255, .9); stroke-width: 2; stroke-linecap: round; }
.towel--dark .towel__line { stroke: rgba(255, 255, 255, .22); }

.js .stack .towel,
.js .stack .strap,
.js .stack .seal,
.js .stack .bloom,
.js .stack .sparkle,
.js .hero__blob,
.js .hero .glass-card { opacity: 0; }

.is-ready .stack .towel {
  transform-box: fill-box;
  transform-origin: 50% 100%;
  animation: towel-drop 1.05s var(--ease-out) forwards;
  animation-delay: calc(var(--t) * 110ms + .1s);
}
@keyframes towel-drop {
  0% { opacity: 0; transform: translateY(-460px); }
  55% { opacity: 1; transform: translateY(0) scaleY(.86) scaleX(1.02); }
  75% { transform: translateY(-5px) scaleY(1.03); }
  100% { opacity: 1; transform: none; }
}
.is-ready .stack .strap {
  transform-box: fill-box;
  transform-origin: 50% 0;
  animation: strap-in .7s .8s var(--ease-out) forwards;
}
@keyframes strap-in { from { opacity: 1; transform: scaleY(0); } to { opacity: 1; transform: none; } }
.is-ready .stack .seal {
  transform-box: fill-box;
  transform-origin: center;
  animation: seal-in .8s 1.2s var(--ease-spring) forwards;
}
@keyframes seal-in { from { opacity: 0; transform: scale(0) rotate(-120deg); } to { opacity: 1; transform: none; } }
.is-ready .stack .bloom {
  transform-box: fill-box;
  transform-origin: 50% 70%;
  animation: bloom-in .9s .95s var(--ease-spring) forwards;
}
@keyframes bloom-in { from { opacity: 0; transform: scale(0) rotate(-80deg); } to { opacity: 1; transform: none; } }
.bloom__flower { transform-box: fill-box; transform-origin: center; animation: sway 6s 3s var(--ease-in-out) infinite; }
@keyframes sway { 0%, 100% { rotate: 0deg; } 50% { rotate: 8deg; } }

.is-ready .stack .sparkle {
  transform-box: fill-box;
  transform-origin: center;
  animation: twinkle 2.8s var(--ease-in-out) infinite;
  animation-delay: calc(var(--s) * .7s + 1.6s);
}
@keyframes twinkle {
  0%, 100% { opacity: 0; transform: scale(.3) rotate(0deg); }
  45% { opacity: 1; transform: scale(1) rotate(45deg); }
}

.is-ready .hero__blob { animation: blob-in 1s 0s var(--ease-out) forwards, blob-morph 16s var(--ease-in-out) infinite alternate; }
@keyframes blob-in { from { opacity: 0; transform: scale(.55); } to { opacity: 1; transform: none; } }

/* Parlama geçişi */
.stack__glint { opacity: 0; }
.is-ready .stack__glint { animation: glint 5s 2s var(--ease-in-out) infinite; }
@keyframes glint {
  0% { opacity: 0; transform: translateX(-340px); }
  8% { opacity: .9; }
  30%, 100% { opacity: 0; transform: translateX(420px); }
}

/* ---------- Cam kartlar ---------- */

.glass-card {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px 14px 14px;
  border: 1px solid rgba(255, 255, 255, .9);
  border-radius: 20px;
  background: rgba(255, 255, 255, .64);
  box-shadow: 0 24px 50px -22px rgba(10, 54, 64, .38), inset 0 1px 0 #fff;
  backdrop-filter: blur(16px) saturate(1.5);
  -webkit-backdrop-filter: blur(16px) saturate(1.5);
  color: var(--petrol-800);
  font-size: .8rem;
  line-height: 1.35;
}
.glass-card strong { display: block; font-size: .9rem; font-weight: 800; }
.glass-card span { color: var(--grey-600); }

.is-ready .hero .glass-card {
  animation: card-in 1s var(--ease-spring) forwards, float-y var(--fd, 7s) var(--ease-in-out) infinite;
  animation-delay: var(--gd), calc(var(--gd) + 1s);
}
@keyframes card-in { from { opacity: 0; transform: translateY(26px) scale(.86); } to { opacity: 1; transform: none; } }
@keyframes float-y { 0%, 100% { translate: 0 0; } 50% { translate: 0 -12px; } }

.glass-card--route { top: 9%; left: -5%; padding-bottom: 20px; --gd: 1s; --fd: 7s; }
.glass-card--capacity { bottom: 5%; left: 0; display: grid; gap: 1px; padding: 16px 20px; --gd: 1.15s; --fd: 8s; }
.glass-card--seal { top: 34%; right: -7%; --gd: 1.3s; --fd: 6.5s; }

.glass-card__icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: var(--petrol-800);
  color: #fff;
}
.glass-card__icon .icon { width: 22px; height: 22px; animation: van-bump .5s var(--ease-in-out) infinite alternate; }
@keyframes van-bump { from { translate: 0 0; } to { translate: 0 -1.5px; } }
.glass-card__bar {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 9px;
  height: 3px;
  overflow: hidden;
  border-radius: 3px;
  background: var(--grey-200);
}
.glass-card__bar i {
  display: block;
  width: 38%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--teal-400), var(--teal-600));
  animation: route-progress 3.4s var(--ease-in-out) infinite;
}
@keyframes route-progress { from { transform: translateX(-100%); } to { transform: translateX(270%); } }

.glass-card__label { font-size: .7rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.glass-card__big {
  font-family: var(--font-display);
  font-size: 1.75rem !important;
  font-weight: 500 !important;
  line-height: 1.1;
  letter-spacing: -.02em;
  color: var(--petrol-800);
}
.mini-bars { display: flex; align-items: flex-end; gap: 4px; height: 30px; margin-top: 8px; }
.mini-bars i {
  width: 8px;
  height: calc(var(--h) * 100%);
  border-radius: 3px;
  background: linear-gradient(var(--teal-400), var(--teal-700));
  transform-origin: bottom;
  animation: bar-rise 2.6s var(--ease-in-out) infinite alternate;
  animation-delay: calc(var(--k) * -.35s);
}
@keyframes bar-rise { from { transform: scaleY(.45); } to { transform: scaleY(1); } }

.seal-check {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  flex: none;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--teal-400), var(--teal-700));
  box-shadow: 0 8px 20px -6px rgba(12, 140, 138, .7);
}
.seal-check svg { width: 22px; height: 22px; fill: none; stroke: #fff; stroke-width: 2.6; stroke-linecap: round; stroke-linejoin: round; }
.seal-check path { stroke-dasharray: 1; stroke-dashoffset: 1; }
.is-ready .seal-check path { animation: draw .7s 1.9s var(--ease-out) forwards; }
@keyframes draw { to { stroke-dashoffset: 0; } }

/* ---------- Aşağı kaydır işareti ---------- */

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 24px;
  z-index: 3;
  width: 26px;
  height: 42px;
  border: 1.5px solid rgba(10, 54, 64, .28);
  border-radius: 14px;
  translate: -50% 0;
}
.scroll-cue span {
  position: absolute;
  left: 50%;
  top: 8px;
  width: 4px;
  height: 8px;
  margin-left: -2px;
  border-radius: 2px;
  background: var(--teal-600);
  animation: wheel 1.9s var(--ease-in-out) infinite;
}
@keyframes wheel { 0% { transform: translateY(0); opacity: 1; } 70% { transform: translateY(13px); opacity: 0; } 100% { opacity: 0; } }

/* ---------- Alt sayfa hero ---------- */

.page-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(150px, 20vh, 190px) 0 clamp(110px, 12vw, 150px);
  background:
    radial-gradient(50% 70% at 85% 30%, rgba(60, 196, 189, .2), transparent 70%),
    radial-gradient(35% 50% at 0% 100%, rgba(18, 168, 163, .09), transparent 70%),
    var(--linen);
}
.page-hero__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, .8fr);
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
}
.page-hero__title { margin: 20px 0 24px; font-size: clamp(2.5rem, 1.2rem + 3.9vw, 4.7rem); }
.page-hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.page-hero__wave {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  z-index: 2;
  width: 100%;
  height: clamp(40px, 6vw, 80px);
  fill: var(--wave-fill, #fff);
}

.breadcrumb { display: flex; align-items: center; gap: 10px; font-size: .85rem; font-weight: 600; color: var(--grey-600); margin-bottom: 18px; }
.breadcrumb a { transition: color .3s; }
.breadcrumb a:hover { color: var(--teal-700); }
.breadcrumb [aria-current] { color: var(--petrol-800); }
.breadcrumb svg { width: 12px; height: 12px; }

/* Alt sayfa hero sanatı: yuvarlak sahne */
.art {
  position: relative;
  justify-self: center;
  width: min(100%, 440px);
  aspect-ratio: 1;
}
.art__orb {
  position: absolute;
  inset: 6%;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 25%, rgba(255, 255, 255, .95), rgba(255, 255, 255, .1) 32%, transparent 55%),
    linear-gradient(150deg, var(--teal-100), var(--teal-300) 55%, var(--teal-500));
  box-shadow: inset -20px -30px 60px rgba(6, 38, 45, .18), 0 40px 80px -30px rgba(12, 140, 138, .5);
  animation: blob-morph 18s var(--ease-in-out) infinite alternate;
}
.art__ring { position: absolute; inset: -2%; border: 1px dashed rgba(12, 140, 138, .3); border-radius: 50%; animation: spin 80s linear infinite; }
.art__svg { position: absolute; inset: 0; z-index: 2; width: 100%; height: 100%; overflow: visible; }
.art .glass-card { animation: float-y var(--fd, 7s) var(--ease-in-out) infinite; }

/* Site içi gelişte hero giriş animasyonları hiç çalışmaz; öğeler doğrudan son hâlleriyle çizilir
   (giriş animasyonu yalnızca siteye ilk girişte oynar). Sürekli hafif hareketler korunur. */
.nav-arrival .stack .towel, .nav-arrival .stack .strap, .nav-arrival .stack .seal, .nav-arrival .stack .bloom { animation: none !important; opacity: 1 !important; }
.nav-arrival .seal-check path { animation: none !important; stroke-dashoffset: 0 !important; }
.nav-arrival .hero__blob { animation: blob-morph 16s var(--ease-in-out) infinite alternate !important; opacity: 1 !important; }
.nav-arrival .hero .glass-card { animation: float-y var(--fd, 7s) var(--ease-in-out) infinite !important; opacity: 1 !important; }
/* ==== 04-home-a.css ==== */
/* Ana sayfa: rakamlar, hizmet kartları, ürünler & önlük önizleyici */

/* ---------- Rakamlar ---------- */

.stats-wrap { position: relative; z-index: 3; padding-top: clamp(16px, 3vw, 36px); background: var(--linen); }
.stats {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1.3fr 1fr 1fr;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, var(--petrol-900), var(--petrol-700));
  color: #fff;
  box-shadow: var(--shadow-lg);
}
.stats__caustics { position: absolute; inset: 0; z-index: -1; overflow: hidden; }
.stats__caustics i {
  position: absolute;
  width: 60%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(closest-side, rgba(60, 196, 189, .34), transparent 70%);
  animation: caustic 14s var(--ease-in-out) infinite alternate;
}
.stats__caustics i:nth-child(1) { left: -12%; top: -70%; }
.stats__caustics i:nth-child(2) { right: -16%; bottom: -80%; animation-duration: 17s; animation-delay: -5s; }
.stats__caustics i:nth-child(3) { left: 36%; top: -90%; width: 42%; animation-duration: 12s; animation-delay: -8s; background: radial-gradient(closest-side, rgba(127, 218, 211, .22), transparent 70%); }
@keyframes caustic { from { transform: translate(0, 0) scale(1); } to { transform: translate(14%, 28%) scale(1.25); } }

.stat { position: relative; display: grid; align-content: start; gap: 10px; padding: clamp(28px, 4vw, 48px) clamp(20px, 2.8vw, 40px); }
.stat + .stat::before {
  content: "";
  position: absolute;
  left: 0;
  top: 20%;
  bottom: 20%;
  width: 1px;
  background: linear-gradient(transparent, rgba(255, 255, 255, .18), transparent);
}
.stat__icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 6px;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 14px;
  background: rgba(255, 255, 255, .07);
  color: var(--teal-300);
}
.stat__num {
  display: flex;
  align-items: baseline;
  font-family: var(--font-display);
  font-size: clamp(2rem, 1.2rem + 2.1vw, 3.2rem);
  line-height: 1;
  letter-spacing: -.03em;
  color: #fff;
  font-variation-settings: "SOFT" 100;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}
.stat__num sup { position: relative; top: -.1em; margin-left: 3px; font-size: .5em; color: var(--teal-300); }
.stat__num--word { display: block; font-size: clamp(1.7rem, 1.1rem + 1.5vw, 2.45rem); white-space: normal; }
.stat__num em { font-style: italic; color: var(--teal-300); }
.stat__dash { margin: 0 .06em; color: var(--teal-300); }
.stat__label { font-size: .92rem; font-weight: 600; color: rgba(255, 255, 255, .7); }

/* ---------- Hizmet kartları ---------- */

.section-head__side { display: grid; gap: 18px; justify-items: start; }

.service-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 20px; }
.service-card {
  position: relative;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 12px 12px 28px;
  border: 1px solid var(--grey-100);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-sm);
}
.service-card > :not(.service-card__art) { margin-inline: 14px; }
.service-card::before, .product-card::before, .reason::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: inherit;
  background: radial-gradient(380px circle at var(--mx, 50%) var(--my, 0%), rgba(60, 196, 189, .16), transparent 45%);
  opacity: 0;
  transition: opacity .45s;
  pointer-events: none;
}
.service-card:hover, .product-card:hover { box-shadow: var(--shadow-lg); border-color: var(--teal-200); }
.service-card:hover::before, .product-card:hover::before, .reason:hover::before { opacity: 1; }

.service-card__art {
  height: 170px;
  overflow: hidden;
  border-radius: calc(var(--radius-lg) - 10px);
  background: linear-gradient(160deg, var(--teal-50), #fff 80%);
}
.service-card__art svg { width: 100%; height: 100%; }
.service-card__num { margin-top: 10px; font-family: var(--font-display); font-size: .95rem; font-style: italic; color: var(--teal-600); }
.service-card h3 { font-size: 1.38rem; }
.service-card p { flex: 1; font-size: .95rem; }

/* Kart sahneleri */
.drum-spin { transform-origin: 120px 98px; animation: spin 2.6s linear infinite; }
.drum-water { animation: wave-60 2.2s linear infinite; }
@keyframes wave-60 { to { transform: translateX(-60px); } }
.led { animation: led 1.6s steps(2) infinite; }
@keyframes led { 50% { opacity: .25; } }
.bub { transform-box: fill-box; transform-origin: center; animation: bub-rise 3.3s var(--ease-in-out) infinite; animation-delay: calc(var(--b) * -1.1s); }
@keyframes bub-rise { 0% { transform: translateY(20px) scale(.6); opacity: 0; } 30% { opacity: 1; } 100% { transform: translateY(-44px) scale(1); opacity: 0; } }
.twinkle { transform-box: fill-box; transform-origin: center; animation: twinkle 2.6s var(--ease-in-out) infinite; animation-delay: calc(var(--s) * -1.3s); }
.cape-sway { transform-origin: var(--o, 120px 22px); animation: cape-sway 5s var(--ease-in-out) infinite; }
.leaf-sway { transform-origin: var(--o, 50% 50%); animation: cape-sway 6s var(--ease-in-out) infinite; }
@keyframes cape-sway { 0%, 100% { transform: rotate(-3deg); } 50% { transform: rotate(3deg); } }
.skyline { animation: skyline 16s linear infinite; }
@keyframes skyline { to { transform: translateX(-240px); } }
.road-dash { animation: road .9s linear infinite; }
@keyframes road { to { transform: translateX(-44px); } }
.van-bounce { animation: svg-bump .42s var(--ease-in-out) infinite alternate; }
@keyframes svg-bump { from { transform: translateY(0); } to { transform: translateY(-2px); } }
.wheel { transform-origin: var(--cx) 122px; animation: spin .7s linear infinite; }
.speed-lines { animation: speed .9s var(--ease-in-out) infinite; }
@keyframes speed { 0% { transform: translateX(10px); opacity: 0; } 50% { opacity: 1; } 100% { transform: translateX(-14px); opacity: 0; } }
.fold-flap { transform-origin: 86px 86px; animation: fold 3.6s var(--ease-in-out) infinite; }
@keyframes fold { 0%, 15% { transform: scaleX(1); } 45%, 72% { transform: scaleX(-1); } 100% { transform: scaleX(1); } }
.dash-move { animation: dash 1s linear infinite; }
.pack-bag { animation: dash 3s linear infinite; }
@keyframes dash { to { stroke-dashoffset: -18; } }
.pack-check { stroke-dasharray: 1; stroke-dashoffset: 1; animation: check-loop 3.6s var(--ease-out) infinite; }
@keyframes check-loop { 0%, 45% { stroke-dashoffset: 1; } 65%, 100% { stroke-dashoffset: 0; } }
.spin-slow { transform-box: fill-box; transform-origin: center; animation: spin 26s linear infinite; }
.spin-fast { transform-origin: 24px 24px; animation: spin 3s linear infinite; }

/* ---------- Ortak: etiket & renk seçici (tasarım stüdyosu: 08-studio.css) ---------- */

.tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  border-radius: 999px;
  background: var(--teal-100);
  color: var(--teal-700);
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .06em;
}
.tag .icon { width: 1.05em; height: 1.05em; }

.swatches { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; }
.swatch {
  width: 34px;
  height: 34px;
  border: 3px solid #fff;
  border-radius: 50%;
  background: var(--c);
  box-shadow: 0 0 0 1px var(--grey-200), 0 6px 14px -6px rgba(0, 0, 0, .4);
  transition: transform .45s var(--ease-spring), box-shadow .3s;
}
.swatch:hover { transform: scale(1.12); }
.swatch.is-active { transform: scale(1.1); box-shadow: 0 0 0 2px var(--teal-500), 0 8px 18px -6px rgba(0, 0, 0, .45); }

/* ---------- Ürün kartları ---------- */

.product-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
.product-card {
  position: relative;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 12px 12px 28px;
  border: 1px solid var(--grey-100);
  border-radius: var(--radius-lg);
  background: var(--linen);
}
.product-card > :not(.product-card__art) { margin-inline: 14px; }
.product-card__art {
  display: grid;
  place-items: center;
  height: 190px;
  overflow: hidden;
  border-radius: calc(var(--radius-lg) - 10px);
  background: radial-gradient(70% 80% at 50% 95%, var(--teal-100), transparent 70%), #fff;
}
.product-card__art svg { width: 84%; height: 84%; overflow: visible; }
.product-card h3 { margin-top: 10px; font-size: 1.38rem; }
.product-card p { flex: 1; font-size: .95rem; }
.roll { transform-box: fill-box; transform-origin: center; }
.product-card:hover .roll { animation: spin 1.3s var(--ease-out); animation-delay: calc(var(--r) * 90ms); }

.products__cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px 24px;
  margin-top: 36px;
  padding: 24px 28px;
  border: 1px dashed var(--teal-300);
  border-radius: var(--radius-lg);
  background: var(--teal-50);
}
.products__cta p { font-size: 1.06rem; color: var(--petrol-800); }
.products__cta-actions { display: flex; flex-wrap: wrap; gap: 12px; }

/* ==== 04-home-b.css ==== */
/* Ana sayfa: süreç döngüsü, neden Açelya, harita, referanslar */

/* ---------- Süreç döngüsü (scroll'a bağlı) ---------- */

.process { position: relative; background: linear-gradient(180deg, var(--linen), #fff 25%, #fff 75%, var(--linen)); }
.process__track { height: 330vh; }
.process__sticky { position: sticky; top: 0; display: grid; align-items: center; height: 100vh; overflow: hidden; padding-top: 60px; }
.process__grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(32px, 5vw, 80px); align-items: center; }

.process__steps { display: grid; margin-top: 38px; }
.process-step {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  padding: 16px 0 16px 24px;
  border-left: 2px solid var(--grey-200);
}
.process-step::before {
  content: "";
  position: absolute;
  left: -2px;
  top: 0;
  width: 2px;
  height: 0;
  background: var(--teal-500);
  transition: height .7s var(--ease-out), background-color .5s;
}
.process-step.is-active::before, .process-step.is-done::before { height: 100%; }
.process-step.is-done::before { background: var(--teal-300); }
.process-step__num { min-width: 2ch; padding-top: 4px; font-family: var(--font-display); font-size: 1.1rem; font-style: italic; color: var(--grey-300); transition: color .5s; }
.process-step h3 { font-size: clamp(1.3rem, 1.05rem + .7vw, 1.75rem); color: var(--grey-500); transition: color .5s; }
.process-step__text { display: grid; grid-template-rows: 0fr; opacity: 0; transition: grid-template-rows .7s var(--ease-out), opacity .5s; }
.process-step__text > p { min-height: 0; overflow: hidden; max-width: 46ch; }
.process-step__text > p::before { content: ""; display: block; height: 8px; }
.process-step.is-active h3 { color: var(--petrol-800); }
.process-step.is-active .process-step__text { grid-template-rows: 1fr; opacity: 1; }
.process-step.is-active .process-step__num, .process-step.is-done .process-step__num { color: var(--teal-600); }
.process-step.is-done h3 { color: var(--grey-600); }

.process.is-static .process__track { height: auto; }
.process.is-static .process__sticky { position: relative; height: auto; padding-block: var(--section); }
.process.is-static .process-step__text { grid-template-rows: 1fr; opacity: 1; }
.process.is-static .process-step h3 { color: var(--petrol-800); }

.process__visual { position: relative; display: grid; justify-items: center; gap: 16px; }
.loop { width: min(100%, 520px, 68vh); height: auto; overflow: visible; }
.loop__halo { fill: none; stroke: rgba(18, 168, 163, .18); stroke-width: 1; stroke-dasharray: 2 8; }
.loop__track { fill: none; stroke: var(--grey-200); stroke-width: 2; }
.loop__progress {
  fill: none;
  stroke: url(#loop-stroke);
  stroke-width: 5;
  stroke-linecap: round;
  stroke-dasharray: 100;
  stroke-dashoffset: 100;
  transform: rotate(-90deg);
  transform-origin: 260px 260px;
}
.loop__inner-ring { fill: none; stroke: rgba(12, 140, 138, .28); stroke-width: 1; stroke-dasharray: 4 6; transform-origin: 260px 260px; animation: spin 40s linear infinite; }
.loop__core { filter: drop-shadow(0 20px 40px rgba(10, 54, 64, .14)); }
.loop__num { font-family: var(--font-display); font-size: 64px; letter-spacing: -.02em; fill: var(--petrol-800); font-variation-settings: "SOFT" 100; }
.loop__num.is-flip { animation: num-flip .55s var(--ease-out); }
@keyframes num-flip { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
.loop__label { font-family: var(--font-sans); font-size: 11px; font-weight: 800; letter-spacing: .28em; fill: var(--teal-700); }
.loop__node-bg { fill: #fff; stroke: var(--grey-200); stroke-width: 2; transition: fill .5s, stroke .5s; }
.loop__node-icon { color: var(--grey-500); fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; transition: color .5s; }
.loop__node-pulse { fill: none; stroke: var(--teal-400); stroke-width: 2; opacity: 0; transform-box: fill-box; transform-origin: center; }
.loop__node-label { font-family: var(--font-sans); font-size: 13px; font-weight: 700; fill: var(--grey-500); transition: fill .5s; }
.loop__node.is-done .loop__node-bg { stroke: var(--teal-400); }
.loop__node.is-done .loop__node-icon { color: var(--teal-600); }
.loop__node.is-active .loop__node-bg { fill: var(--teal-600); stroke: var(--teal-600); }
.loop__node.is-active .loop__node-icon { color: #fff; }
.loop__node.is-active .loop__node-pulse { animation: node-pulse 1.8s var(--ease-out) infinite; }
.loop__node.is-active .loop__node-label, .loop__node.is-done .loop__node-label { fill: var(--petrol-800); }
@keyframes node-pulse { from { transform: scale(1); opacity: .8; } to { transform: scale(1.75); opacity: 0; } }
.loop__van { filter: drop-shadow(0 6px 8px rgba(10, 54, 64, .28)); }
.loop__van use, .map__van use { stroke: none; }

.process__progress { display: flex; align-items: center; gap: 14px; font-size: .85rem; font-weight: 700; color: var(--grey-600); }
.process__bar { width: 160px; height: 3px; overflow: hidden; border-radius: 3px; background: var(--grey-200); }
.process__bar i { display: block; width: 100%; height: 100%; background: linear-gradient(90deg, var(--teal-400), var(--teal-700)); transform: scaleX(0); transform-origin: left; }
.process__count b { font-family: var(--font-display); font-size: 1.1rem; color: var(--petrol-800); }

/* ---------- Neden Açelya ---------- */

.reasons { background: #fff; }
.reasons-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.reason {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: clamp(24px, 3vw, 34px);
  border: 1px solid var(--grey-100);
  border-radius: var(--radius-lg);
  background: var(--linen);
}
.reason h3 { font-size: 1.4rem; }
.reason p { font-size: .96rem; }
.reason__icon {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin-bottom: 8px;
  border-radius: 18px;
  background: #fff;
  color: var(--teal-600);
  box-shadow: var(--shadow-sm);
}
.reason__icon .icon { width: 27px; height: 27px; }
.reason__icon--spin svg { width: 30px; height: 30px; }
.reason__copy { display: flex; flex: 1; flex-direction: column; gap: 12px; }

.reason--feature { grid-column: span 2; flex-direction: row; align-items: center; gap: 24px; background: linear-gradient(135deg, var(--teal-50), #fff 70%); }
.reason__art { flex: none; width: clamp(150px, 20vw, 230px); }
.reason__art svg { width: 100%; height: auto; overflow: visible; }
.ripple { fill: none; stroke: var(--teal-400); stroke-width: 2; opacity: 0; transform-box: fill-box; transform-origin: center; animation: ripple 3s var(--ease-out) infinite; animation-delay: calc(var(--k) * 1.5s); }
@keyframes ripple { from { transform: scale(.3, .12); opacity: .9; } to { transform: scale(2.3, .8); opacity: 0; } }
.drop-bob { animation: svg-bob 4s var(--ease-in-out) infinite; }
@keyframes svg-bob { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
.rise { fill: none; stroke: var(--teal-300); stroke-width: 2; transform-box: fill-box; transform-origin: center; animation: bub-rise 4s var(--ease-in-out) infinite; animation-delay: calc(var(--k) * -1s); }

.draw-on-view path { stroke-dasharray: 1; stroke-dashoffset: 1; transition: stroke-dashoffset 1.3s var(--ease-out) .3s; }
.draw-on-view path + path { transition-delay: 1.2s; }
.is-in .draw-on-view path { stroke-dashoffset: 0; }

.mini-route { display: flex; align-items: center; margin-bottom: 8px; }
.mini-route__pin { display: grid; place-items: center; flex: none; width: 46px; height: 46px; border-radius: 15px; background: #fff; color: var(--teal-600); box-shadow: var(--shadow-sm); }
.mini-route__pin--end { background: var(--teal-600); color: #fff; }
.mini-route__line { position: relative; flex: 1; height: 2px; margin: 0 8px; background: repeating-linear-gradient(90deg, var(--teal-300) 0 6px, transparent 6px 11px); }
.mini-route__line i {
  position: absolute;
  top: 50%;
  left: 0;
  width: 12px;
  height: 12px;
  margin-top: -6px;
  border-radius: 50%;
  background: var(--teal-500);
  box-shadow: 0 0 0 5px rgba(18, 168, 163, .2);
  animation: route-dot 3s var(--ease-in-out) infinite;
}
@keyframes route-dot { 0%, 100% { left: 0; } 50% { left: calc(100% - 12px); } }

.reason--dark { border-color: transparent; background: linear-gradient(150deg, var(--petrol-800), var(--petrol-900)); color: rgba(255, 255, 255, .72); }
.reason--dark h3 { color: #fff; }
.reason .reason__big { font-family: var(--font-display); font-size: clamp(3.4rem, 2.4rem + 3vw, 5rem); line-height: .95; letter-spacing: -.04em; color: #fff; font-variation-settings: "SOFT" 100; }
.reason__big sup { position: relative; top: -.2em; font-size: .45em; color: var(--teal-300); }
.reason__sectors { display: flex; flex-wrap: wrap; gap: 8px; margin-top: auto; padding-top: 10px; }
.reason__sectors li { display: inline-flex; align-items: center; gap: 6px; padding: 6px 12px; border-radius: 999px; background: rgba(255, 255, 255, .08); font-size: .8rem; font-weight: 700; color: #fff; }
.reason__sectors .icon { width: 15px; height: 15px; color: var(--teal-300); }

.reason--wide { grid-column: 1 / -1; flex-direction: row; align-items: center; gap: clamp(24px, 5vw, 64px); }
.converge { display: grid; grid-template-columns: auto 120px auto; align-items: center; flex: none; }
.converge__items { display: grid; gap: 10px; }
.converge__items li {
  display: flex;
  align-items: center;
  gap: 10px;
  height: 40px;
  padding: 0 16px 0 12px;
  border-radius: 999px;
  background: #fff;
  box-shadow: var(--shadow-sm);
  font-size: .88rem;
  font-weight: 700;
  color: var(--petrol-800);
  opacity: 0;
  transform: translateX(-16px);
  transition: opacity .6s var(--ease-out), transform .8s var(--ease-out);
  transition-delay: calc(var(--k) * .12s + .2s);
}
.converge__items .icon { color: var(--teal-600); }
.is-in .converge__items li { opacity: 1; transform: none; }
.converge__lines { width: 120px; height: 190px; overflow: visible; }
.converge__lines path { fill: none; stroke: var(--teal-300); stroke-width: 2; stroke-dasharray: 1; stroke-dashoffset: 1; vector-effect: non-scaling-stroke; transition: stroke-dashoffset 1s var(--ease-out) .9s; }
.is-in .converge__lines path { stroke-dashoffset: 0; }
.converge__hub { display: grid; place-items: center; width: 84px; height: 84px; border-radius: 50%; background: #fff; box-shadow: 0 0 0 10px rgba(18, 168, 163, .1), var(--shadow); animation: hub-pulse 3s var(--ease-in-out) infinite; }
.converge__hub svg { width: 50px; height: 50px; }
@keyframes hub-pulse { 50% { box-shadow: 0 0 0 20px rgba(18, 168, 163, .05), var(--shadow); } }

/* ---------- Harita ---------- */

.regions__grid { display: grid; grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr); gap: clamp(32px, 5vw, 72px); align-items: center; }
.regions__copy { display: grid; gap: 22px; justify-items: start; }
.regions__actions { display: flex; flex-wrap: wrap; align-items: center; gap: 22px; margin-top: 6px; }

.map { position: relative; margin: 0; padding: 12px; border: 1px solid var(--grey-100); border-radius: var(--radius-xl); background: #fff; box-shadow: var(--shadow-lg); }
.map svg { width: 100%; height: auto; border-radius: calc(var(--radius-xl) - 12px); }
.map figcaption { padding: 12px 10px 4px; font-size: .8rem; color: var(--grey-500); text-align: center; }
.map__waves path { fill: none; stroke: #fff; stroke-opacity: .6; stroke-width: 1.5; animation: map-wave calc(9s + var(--w) * 1.4s) linear infinite; }
@keyframes map-wave { to { transform: translateX(80px); } }
.map__land { fill: #f5f8f8; }
.map pattern circle { fill: rgba(10, 54, 64, .07); }
.map__coast { fill: none; stroke: #9fd8d2; stroke-width: 2; }
.map__lake { fill: #cdebe8; stroke: #9fd8d2; stroke-width: 1.5; }
.map__sea-label { font-family: var(--font-display); font-size: 22px; font-style: italic; fill: var(--teal-700); opacity: .55; }
.map__title { font-family: var(--font-sans); font-size: 11px; font-weight: 800; letter-spacing: .24em; fill: var(--grey-500); }
.map__route { fill: none; stroke: var(--teal-500); stroke-width: 2.5; stroke-linecap: round; stroke-dasharray: 5 6; opacity: 0; transition: opacity 1s .6s; }
.map.is-in .map__route { opacity: .9; animation: route-flow 1.2s linear infinite; }
@keyframes route-flow { to { stroke-dashoffset: -11; } }
.map__van { opacity: 0; transition: opacity .8s 1.4s; filter: drop-shadow(0 4px 5px rgba(10, 54, 64, .3)); }
.map.is-in .map__van { opacity: 1; }

.pin { cursor: pointer; }
.pin__body { transform: scale(0); transition: transform .8s var(--ease-spring); transition-delay: calc(var(--i) * 90ms + .3s); }
.map.is-in .pin__body { transform: scale(1); }
.pin__dot { fill: var(--teal-500); stroke: #fff; stroke-width: 3; transition: fill .3s; }
.pin__halo { fill: rgba(18, 168, 163, .16); transform: scale(0); transition: transform .45s var(--ease-spring); }
.pin__pulse { fill: none; stroke: var(--teal-500); stroke-width: 2; transform-box: fill-box; transform-origin: center; animation: pin-pulse 2.8s var(--ease-out) infinite; animation-delay: calc(var(--i) * .31s); }
@keyframes pin-pulse { from { transform: scale(1); opacity: .7; } to { transform: scale(3.2); opacity: 0; } }
.pin text { font-family: var(--font-sans); font-size: 13px; font-weight: 700; fill: var(--petrol-800); paint-order: stroke; stroke: #fff; stroke-width: 4px; stroke-linejoin: round; transition: fill .3s; }
.pin:hover .pin__halo, .pin.is-active .pin__halo { transform: scale(1); }
.pin:hover .pin__dot, .pin.is-active .pin__dot { fill: var(--petrol-800); }
.pin.is-active text { fill: var(--teal-700); }

/* ---------- Referanslar ---------- */

.refs { overflow: hidden; background: var(--linen); }
.refs-marquee { display: grid; gap: 16px; }
.marquee {
  display: flex;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 9%, #000 91%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 9%, #000 91%, transparent);
}
.marquee__track { display: flex; flex: none; padding-block: 8px; animation: marquee var(--speed, 48s) linear infinite; }
.marquee[data-dir="right"] .marquee__track { animation-direction: reverse; }
.marquee:hover .marquee__track { animation-play-state: paused; }
@keyframes marquee { to { transform: translateX(-50%); } }
.ref {
  display: flex;
  align-items: center;
  gap: 14px;
  height: 84px;
  margin-right: 16px;
  padding: 0 30px 0 16px;
  border: 1px solid var(--grey-100);
  border-radius: 999px;
  background: #fff;
  box-shadow: var(--shadow-sm);
  white-space: nowrap;
  transition: border-color .3s, translate .45s var(--ease-out);
}
.ref:hover { border-color: var(--teal-300); translate: 0 -3px; }
.ref__mono {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border: 1px solid var(--teal-100);
  border-radius: 50%;
  background: var(--teal-50);
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--teal-700);
}
.ref__name { font-size: 1.22rem; font-weight: 700; letter-spacing: -.01em; color: var(--petrol-800); }
.ref--1 .ref__mono { border-color: var(--petrol-800); background: var(--petrol-800); color: #fff; }
.ref--1 .ref__name { font-family: var(--font-display); font-size: 1.45rem; font-style: italic; font-weight: 450; }
.ref--2 .ref__name { font-size: .98rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.refs__foot { display: flex; justify-content: center; margin-top: 44px; }

/* ==== 04-home-c.css ==== */
/* Formlar (teklif & iletişim), SSS */

[hidden] { display: none !important; }

/* ---------- Teklif bölümü ---------- */

.quote { background: var(--linen); }
.quote__card {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  overflow: hidden;
  border: 1px solid var(--grey-100);
  border-radius: var(--radius-xl);
  background: #fff;
  box-shadow: var(--shadow-lg);
}
.quote__aside {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding: clamp(32px, 4.5vw, 60px);
  background: linear-gradient(160deg, var(--petrol-800), var(--petrol-950));
  color: rgba(255, 255, 255, .74);
}
.quote__aside h2 { color: #fff; }
.quote__aside h2 em { color: var(--teal-300); }
.quote__glow {
  position: absolute;
  right: -35%;
  bottom: -30%;
  z-index: -1;
  width: 95%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(closest-side, rgba(60, 196, 189, .34), transparent 70%);
  animation: aura 12s var(--ease-in-out) infinite alternate;
}
.quote__factors { padding: 20px 22px; border: 1px solid rgba(255, 255, 255, .08); border-radius: 20px; background: rgba(255, 255, 255, .05); }
.quote__factors-title { margin-bottom: 12px; font-size: .72rem; font-weight: 800; letter-spacing: .2em; text-transform: uppercase; color: var(--teal-300); }
.quote__factors ul { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 16px; }
.quote__factors li { display: flex; align-items: center; gap: 10px; font-size: .92rem; color: #fff; }
.quote__factors .icon { color: var(--teal-300); }
.quote__alt { display: flex; flex-wrap: wrap; gap: 12px; margin-top: auto; }
.quote__form { position: relative; padding: clamp(28px, 4vw, 52px); }

/* ---------- Form alanları ---------- */

.form { display: grid; gap: 22px; }
.form__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { position: relative; display: block; }
.field--full { grid-column: 1 / -1; }
.field input, .field select, .field textarea {
  width: 100%;
  height: 60px;
  padding: 24px 18px 8px;
  border: 1.5px solid var(--grey-200);
  border-radius: 16px;
  background: var(--grey-50);
  font-size: 1rem;
  color: var(--petrol-800);
  -webkit-appearance: none;
  appearance: none;
  transition: border-color .3s, background-color .3s, box-shadow .3s;
}
.field textarea { height: auto; min-height: 130px; padding-top: 30px; resize: vertical; line-height: 1.5; }
.field select {
  padding-right: 46px;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230c8c8a' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 18px center;
  background-size: 18px;
}
.field__label {
  position: absolute;
  left: 19px;
  top: 19px;
  font-size: 1rem;
  color: var(--grey-500);
  pointer-events: none;
  transform-origin: left top;
  transition: transform .35s var(--ease-out), color .3s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--teal-500);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(18, 168, 163, .14);
}
.field input:focus + .field__label,
.field input:not(:placeholder-shown) + .field__label,
.field textarea:focus + .field__label,
.field textarea:not(:placeholder-shown) + .field__label,
.field--select .field__label {
  transform: translateY(-11px) scale(.76);
  font-weight: 700;
  color: var(--teal-700);
}
.field--solo input { background: #fff; }
.field.is-invalid input, .field.is-invalid select, .field.is-invalid textarea { border-color: #d9534f; background: #fff6f5; }
.field.is-invalid .field__label { color: #c0392b; }
.is-invalid.shake { animation: shake .45s; }
@keyframes shake { 20%, 60% { transform: translateX(-5px); } 40%, 80% { transform: translateX(5px); } }

.fieldset { min-width: 0; margin: 0; padding: 0; border: 0; }
.fieldset legend { margin-bottom: 12px; padding: 0; font-size: .86rem; font-weight: 800; color: var(--petrol-800); }
.fieldset.is-invalid legend { color: #c0392b; }
.fieldset.is-invalid .choice span { border-color: #f0b8b3; }

.choices { display: flex; flex-wrap: wrap; gap: 8px; }
.choice { position: relative; }
.choice input { position: absolute; inset: 0; margin: 0; opacity: 0; cursor: pointer; }
.choice span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 15px;
  border: 1.5px solid var(--grey-200);
  border-radius: 999px;
  background: #fff;
  font-size: .88rem;
  font-weight: 650;
  color: var(--petrol-800);
  cursor: pointer;
  transition: background-color .3s, border-color .3s, color .3s, box-shadow .3s;
}
.choice .icon { width: 17px; height: 17px; color: var(--teal-600); transition: color .3s; }
.choice input:hover + span { border-color: var(--teal-300); }
.choice input:checked + span {
  border-color: var(--petrol-800);
  background: var(--petrol-800);
  color: #fff;
  box-shadow: 0 8px 18px -10px rgba(10, 54, 64, .7);
  animation: choice-pop .4s var(--ease-spring);
}
.choice input:checked + span .icon { color: var(--teal-300); }
.choice input:focus-visible + span { outline: 2px solid var(--teal-500); outline-offset: 2px; }
@keyframes choice-pop { 50% { transform: scale(1.06); } }

/* Adet kaydırıcısı */
.range-field { padding: 20px 22px 16px; border: 1.5px solid var(--grey-100); border-radius: 20px; background: var(--grey-50); }
.range-field__head { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 10px 16px; }
.range-field__label { font-size: .86rem; font-weight: 800; color: var(--petrol-800); }
.segmented { display: inline-flex; padding: 4px; border: 1px solid var(--grey-200); border-radius: 999px; background: #fff; }
.segmented label { position: relative; }
.segmented input { position: absolute; inset: 0; margin: 0; opacity: 0; cursor: pointer; }
.segmented span { display: block; padding: 6px 12px; border-radius: 999px; font-size: .78rem; font-weight: 700; color: var(--grey-600); transition: background-color .3s, color .3s; }
.segmented input:checked + span { background: var(--teal-600); color: #fff; }
.segmented input:focus-visible + span { outline: 2px solid var(--teal-500); outline-offset: 1px; }
.range-field__body { display: flex; align-items: flex-end; justify-content: space-between; gap: 16px; margin: 14px 0 8px; }
.range-field__value { display: flex; align-items: baseline; gap: 8px; }
.range-field__value output { font-family: var(--font-display); font-size: 2.6rem; line-height: 1; letter-spacing: -.02em; color: var(--petrol-800); font-variant-numeric: tabular-nums; }
.range-field__value span { font-size: .85rem; font-weight: 700; color: var(--grey-600); }
.range-stack { display: flex; flex-direction: column-reverse; gap: 3px; width: 80px; }
.range-stack i {
  height: 9px;
  border: 1px solid var(--grey-200);
  border-radius: 9px;
  background: linear-gradient(180deg, #fff, #d7e2e4);
  transform-origin: 50% 100%;
  transition: opacity .35s, transform .5s var(--ease-spring);
}
.range-stack i:nth-child(3n + 2) { border-color: var(--teal-300); background: linear-gradient(180deg, var(--teal-100), var(--teal-300)); }
.range-stack i:nth-child(even) { margin-left: 5px; }
.range-stack i.is-off { opacity: 0; transform: translateY(-16px) scaleY(.4); }
.range {
  --fill: 0%;
  width: 100%;
  height: 28px;
  margin: 0;
  background: transparent;
  -webkit-appearance: none;
  appearance: none;
  cursor: pointer;
}
.range:focus-visible { outline: none; }
.range::-webkit-slider-runnable-track { height: 6px; border-radius: 6px; background: linear-gradient(90deg, var(--teal-500) var(--fill), var(--grey-200) var(--fill)); }
.range::-webkit-slider-thumb {
  width: 26px;
  height: 26px;
  margin-top: -10px;
  border: 6px solid var(--teal-600);
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 4px 12px rgba(10, 54, 64, .3);
  -webkit-appearance: none;
  transition: transform .3s var(--ease-spring);
}
.range:active::-webkit-slider-thumb, .range:focus-visible::-webkit-slider-thumb { transform: scale(1.15); }
.range::-moz-range-track { height: 6px; border-radius: 6px; background: var(--grey-200); }
.range::-moz-range-progress { height: 6px; border-radius: 6px; background: var(--teal-500); }
.range::-moz-range-thumb { width: 14px; height: 14px; border: 6px solid var(--teal-600); border-radius: 50%; background: #fff; box-shadow: 0 4px 12px rgba(10, 54, 64, .3); }
.range-field__scale { display: flex; justify-content: space-between; margin-top: 2px; font-size: .74rem; font-weight: 700; color: var(--grey-500); }

.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.form__footer { display: flex; flex-wrap: wrap; align-items: center; gap: 14px 20px; }
.form__note { max-width: 36ch; font-size: .8rem; color: var(--grey-500); }
.form__status { min-height: 1px; font-size: .9rem; font-weight: 700; color: #c0392b; }
.form__submit.is-loading > * { opacity: 0; }
.spinner {
  position: absolute;
  inset: 0;
  width: 22px;
  height: 22px;
  margin: auto;
  border: 2.5px solid rgba(255, 255, 255, .35);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin .8s linear infinite;
}
.form__submit.is-loading .spinner { opacity: 1; }

.form__success {
  position: absolute;
  inset: 0;
  z-index: 5;
  display: grid;
  place-content: center;
  justify-items: center;
  gap: 16px;
  padding: 40px;
  background: rgba(255, 255, 255, .97);
  text-align: center;
  animation: fade-in .5s var(--ease-out);
}
.success-check { width: 96px; height: 96px; }
.success-check circle { fill: var(--teal-50); stroke: var(--teal-300); stroke-width: 3; stroke-dasharray: 1; stroke-dashoffset: 1; animation: draw 1s var(--ease-out) .1s forwards; }
.success-check path { fill: none; stroke: var(--teal-600); stroke-width: 5; stroke-linecap: round; stroke-linejoin: round; stroke-dasharray: 1; stroke-dashoffset: 1; animation: draw .6s var(--ease-out) .75s forwards; }
.form__success p { max-width: 44ch; }
.form__success-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-top: 6px; }
@keyframes fade-in { from { opacity: 0; } to { opacity: 1; } }

/* ---------- SSS ---------- */

.faq { display: grid; gap: 12px; max-width: 900px; margin-inline: auto; }
.faq__item { border: 1px solid var(--grey-100); border-radius: 22px; background: #fff; transition: box-shadow .4s, border-color .4s; }
.faq__item.is-open { border-color: var(--teal-200); box-shadow: var(--shadow); }
.faq__item h3 { font-family: var(--font-sans); font-size: 1.05rem; letter-spacing: 0; }
.faq__q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
  padding: 22px 24px 22px 26px;
  border: 0;
  background: none;
  color: var(--petrol-800);
  font-weight: 700;
  text-align: left;
}
.faq__icon { position: relative; flex: none; width: 34px; height: 34px; border-radius: 50%; background: var(--teal-50); transition: background-color .3s, transform .5s var(--ease-out); }
.faq__icon::before, .faq__icon::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 13px;
  height: 2px;
  margin: -1px 0 0 -6.5px;
  border-radius: 2px;
  background: var(--teal-700);
  transition: transform .5s var(--ease-out), background-color .3s;
}
.faq__icon::after { transform: rotate(90deg); }
.faq__item.is-open .faq__icon { background: var(--teal-600); transform: rotate(180deg); }
.faq__item.is-open .faq__icon::before, .faq__item.is-open .faq__icon::after { background: #fff; }
.faq__item.is-open .faq__icon::after { transform: rotate(0deg); }
.faq__a { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .55s var(--ease-out); }
.faq__a > div { min-height: 0; overflow: hidden; }
.faq__a p { max-width: 70ch; padding: 0 26px 24px; }
.faq__item.is-open .faq__a { grid-template-rows: 1fr; }

/* ==== 05-pages.css ==== */
/* Alt sayfa bileşenleri */

/* ---------- Hero sanatları ---------- */

.art .glass-card { white-space: nowrap; }
.art .glass-card .icon { width: 20px; height: 20px; color: var(--teal-600); }
.art__chip--1 { top: 8%; left: -8%; --fd: 6s; }
.art__chip--2 { top: 26%; right: -10%; --fd: 7.5s; }
.art__chip--3 { bottom: 20%; left: -12%; --fd: 8s; }
.art__chip--4 { bottom: 4%; right: -2%; --fd: 6.8s; }

.orbit { position: absolute; inset: 4%; border-radius: 50%; animation: spin 26s linear infinite; }
.orbit__item {
  position: absolute;
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  margin: -32px 0 0 -32px;
  border-radius: 50%;
  background: #fff;
  color: var(--teal-600);
  box-shadow: var(--shadow);
  animation: spin 26s linear infinite reverse;
}
.orbit__item .icon { width: 28px; height: 28px; }
.orbit__item--wa { color: #1fa855; }

.art__center {
  position: absolute;
  inset: 31%;
  z-index: 2;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 0 14px rgba(255, 255, 255, .35), var(--shadow-lg);
}
.art__center svg { width: 58%; height: 58%; animation: spin 30s linear infinite; }
.art__center--phone { color: var(--petrol-800); }
.art__center--phone svg { width: 42%; height: 42%; animation: none; fill: none; stroke: currentColor; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }

.iron-move { animation: iron 3.2s var(--ease-in-out) infinite; }
@keyframes iron { 0%, 100% { transform: translateX(-26px); } 50% { transform: translateX(48px); } }
.steam__puff { transform-box: fill-box; transform-origin: center; animation: steam 1.8s var(--ease-out) infinite; animation-delay: calc(var(--k) * .35s); }
@keyframes steam { 0% { transform: translateY(8px) scale(.4); opacity: 0; } 30% { opacity: .9; } 100% { transform: translateY(-26px) scale(1.5); opacity: 0; } }
.detail__hint { font-size: .88rem; color: var(--grey-500); }

.art .roll, .detail__media .roll { animation: spin 20s linear infinite; }
.fan__card { transform-origin: 150px 170px; transform: rotate(0deg); transition: transform 1.3s var(--ease-spring); transition-delay: calc(var(--k) * 90ms + .5s); }
.is-in .fan__card { transform: rotate(var(--r)); }
.detail__media:hover .fan__card { transform: rotate(calc(var(--r) * 1.3)); transition-delay: 0s; }

.pulse-ring { fill: none; stroke: var(--teal-400); stroke-width: 2; transform-box: fill-box; transform-origin: center; animation: ripple 3s var(--ease-out) infinite; animation-delay: calc(var(--k) * 1s); opacity: 0; }
.pin-bob { animation: svg-bob 3.6s var(--ease-in-out) infinite; }
.van-orbit { position: absolute; inset: 2%; z-index: 3; border-radius: 50%; animation: spin 14s linear infinite; }
.van-orbit svg { position: absolute; left: 50%; top: 0; width: 52px; height: 29px; transform: translate(-50%, -50%); filter: drop-shadow(0 6px 8px rgba(10, 54, 64, .3)); }
.van-orbit use { stroke: none; }

.ring-text { position: absolute; inset: 0; z-index: 3; width: 100%; height: 100%; animation: spin 36s linear infinite; }
.ring-text text { font-family: var(--font-sans); font-size: 13.5px; font-weight: 800; letter-spacing: .32em; fill: var(--petrol-800); }

.card-stack { position: absolute; inset: 0; z-index: 2; display: grid; place-items: center; }
.card-stack__card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 14px;
  width: 78%;
  padding: 22px 24px;
  border: 1px solid rgba(255, 255, 255, .9);
  border-radius: 24px;
  background: rgba(255, 255, 255, .8);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(14px);
  transition: transform .8s var(--ease-out);
}
.card-stack__card:nth-child(1) { transform: translateY(-86px) rotate(-6deg) scale(.9); opacity: .6; }
.card-stack__card:nth-child(2) { transform: translateY(-38px) rotate(3deg) scale(.95); opacity: .82; }
.card-stack__card:nth-child(3) { transform: translateY(14px) rotate(-1deg); }
.art:hover .card-stack__card:nth-child(1) { transform: translateY(-120px) rotate(-9deg) scale(.9); }
.art:hover .card-stack__card:nth-child(2) { transform: translateY(-52px) rotate(5deg) scale(.95); }
.card-stack__card .ref__mono { flex: none; }
.card-stack__card strong { display: block; font-size: 1.05rem; color: var(--petrol-800); }
.card-stack__card span { font-size: .85rem; color: var(--grey-600); }

/* ---------- Hizmet detayları ---------- */

.details { display: grid; gap: clamp(64px, 9vw, 120px); }
.detail {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(32px, 6vw, 96px);
  align-items: center;
  scroll-margin-top: 120px;
}
.detail:nth-child(even) .detail__media { order: -1; }
.detail__copy { display: grid; gap: 18px; justify-items: start; }
.detail__num { font-family: var(--font-display); font-size: 1rem; font-style: italic; color: var(--teal-600); }
.detail__copy h2 { font-size: clamp(1.9rem, 1.2rem + 2vw, 2.9rem); }
.detail__copy > p { max-width: 54ch; }
.detail__list { display: flex; flex-wrap: wrap; gap: 8px; }
.detail__list li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border: 1px solid var(--grey-200);
  border-radius: 999px;
  background: #fff;
  font-size: .88rem;
  font-weight: 650;
  color: var(--petrol-800);
}
.detail__list .icon { width: 16px; height: 16px; color: var(--teal-600); }
.detail__media {
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  aspect-ratio: 5 / 4;
  border: 1px solid var(--grey-100);
  border-radius: var(--radius-xl);
  background: radial-gradient(70% 70% at 50% 60%, var(--teal-100), transparent 70%), linear-gradient(160deg, #fff, var(--teal-50));
  box-shadow: var(--shadow);
}
.detail__media > svg { width: 78%; height: 78%; overflow: visible; }
.detail__media .service-card__art { width: 100%; height: 100%; border-radius: 0; background: none; }

/* Rulo / kare katlama seçici */
.fold-toggle { display: grid; grid-template-rows: auto 1fr auto; gap: 18px; justify-items: center; width: 100%; height: 100%; padding: 28px; }
.fold-toggle__btns { display: inline-flex; padding: 5px; border: 1px solid var(--grey-200); border-radius: 999px; background: #fff; box-shadow: var(--shadow-sm); }
.fold-toggle__btns button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 18px;
  border: 0;
  border-radius: 999px;
  background: none;
  font-size: .88rem;
  font-weight: 700;
  color: var(--grey-600);
  transition: background-color .3s, color .3s;
}
.fold-toggle__btns button[aria-pressed="true"] { background: var(--petrol-800); color: #fff; }
.fold-toggle__stage { position: relative; width: 100%; flex: 1; min-height: 220px; }
.fold-toggle__stage svg { position: absolute; inset: 0; width: 100%; height: 100%; overflow: visible; transition: opacity .6s var(--ease-out), transform .8s var(--ease-spring); }
.fold-toggle .fold-square { opacity: 0; transform: scale(.7) rotate(-8deg); }
.fold-toggle[data-state="kare"] .fold-roll { opacity: 0; transform: scale(.7) rotate(12deg); }
.fold-toggle[data-state="kare"] .fold-square { opacity: 1; transform: none; }
.fold-roll .roll { animation: spin 14s linear infinite; }

.extras { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 10px; width: 100%; }
.extras li { display: flex; align-items: center; gap: 12px; padding: 14px 16px; border-radius: 18px; background: var(--linen); font-size: .92rem; font-weight: 700; color: var(--petrol-800); }
.extras .icon { width: 22px; height: 22px; color: var(--teal-600); }

/* ---------- Satır içi CTA ---------- */

.cta-inline {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 22px 32px;
  padding: clamp(28px, 4vw, 48px);
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, var(--petrol-800), var(--petrol-700));
  color: rgba(255, 255, 255, .78);
}
.cta-inline::before {
  content: "";
  position: absolute;
  inset: -60% -10% auto auto;
  z-index: -1;
  width: 60%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(closest-side, rgba(60, 196, 189, .35), transparent 70%);
  animation: aura 11s var(--ease-in-out) infinite alternate;
}
.cta-inline h2 { max-width: 22ch; font-size: clamp(1.7rem, 1.1rem + 1.8vw, 2.6rem); color: #fff; }
.cta-inline h2 em { color: var(--teal-300); }
.cta-inline__actions { display: flex; flex-wrap: wrap; gap: 12px; }

/* ---------- Ürün detayları ---------- */

.feature-list { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 18px; }
.feature-list li { display: flex; align-items: center; gap: 10px; font-weight: 650; color: var(--petrol-800); }

/* ---------- Bölge kartları ---------- */

.region-cards { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.region-card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: grid;
  gap: 6px;
  padding: 24px 24px 22px;
  border: 1px solid var(--grey-100);
  border-radius: var(--radius-lg);
  background: #fff;
  transition: border-color .4s, box-shadow .5s var(--ease-out), translate .5s var(--ease-out);
}
.region-card::after {
  content: "";
  position: absolute;
  right: -40px;
  top: -40px;
  z-index: -1;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: radial-gradient(closest-side, var(--teal-100), transparent 70%);
  transition: transform .6s var(--ease-out);
}
.region-card:hover, .region-card.is-active { border-color: var(--teal-300); box-shadow: var(--shadow); }
.region-card:hover::after, .region-card.is-active::after { transform: scale(1.6); }
.region-card__pin { display: grid; place-items: center; width: 44px; height: 44px; margin-bottom: 8px; border-radius: 14px; background: var(--teal-50); color: var(--teal-600); }
.region-card h3 { font-size: 1.35rem; }
.region-card p { font-size: .9rem; color: var(--grey-600); }
.region-card .link-arrow { margin-top: 8px; }

/* ---------- Referans kartları ---------- */

.refs-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }
.ref-card {
  position: relative;
  overflow: hidden;
  display: grid;
  justify-items: center;
  gap: 14px;
  padding: 30px 18px 26px;
  border: 1px solid var(--grey-100);
  border-radius: var(--radius-lg);
  background: #fff;
  text-align: center;
}
.ref-card__mono {
  display: grid;
  place-items: center;
  width: 66px;
  height: 66px;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--teal-50), var(--teal-100));
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--teal-700);
  transition: transform .6s var(--ease-spring), background .4s, color .4s;
}
.ref-card:nth-child(3n + 2) .ref-card__mono { background: var(--petrol-800); color: #fff; }
.ref-card__name { font-family: var(--font-display); font-size: 1.2rem; color: var(--petrol-800); }
.ref-card__line { width: 32px; height: 2px; border-radius: 2px; background: var(--teal-300); transition: width .5s var(--ease-out); }
.ref-card:hover .ref-card__mono { transform: scale(1.1) rotate(-8deg); }
.ref-card:hover .ref-card__line { width: 72px; }
.refs-note { margin-top: 20px; font-size: .85rem; color: var(--grey-500); text-align: center; }

/* ---------- Hakkımızda ---------- */

.story { display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); gap: clamp(32px, 6vw, 96px); align-items: start; }
.story__lead { position: sticky; top: 130px; display: grid; gap: 20px; }
.story__text { display: grid; gap: 22px; font-size: 1.12rem; }
.story__text p:first-child::first-letter {
  float: left;
  margin: 6px 12px 0 0;
  font-family: var(--font-display);
  font-size: 4.2em;
  line-height: .8;
  color: var(--teal-600);
}
.quote-block {
  position: relative;
  margin: 0;
  padding: clamp(34px, 5vw, 64px);
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, var(--teal-50), #fff);
  border: 1px solid var(--teal-100);
}
.quote-block::before {
  content: "“";
  position: absolute;
  top: -.18em;
  left: .2em;
  font-family: var(--font-display);
  font-size: 9rem;
  line-height: 1;
  color: var(--teal-300);
}
.quote-block p { position: relative; font-family: var(--font-display); font-size: clamp(1.4rem, 1rem + 1.4vw, 2.2rem); line-height: 1.3; color: var(--petrol-800); font-variation-settings: "SOFT" 100; text-wrap: balance; }
.quote-block p em { color: var(--teal-600); }

.values { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 14px; }
.value {
  position: relative;
  display: grid;
  gap: 14px;
  align-content: start;
  padding: 24px 20px;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, .04);
  transition: background-color .4s, translate .5s var(--ease-out);
}
.value:hover { background: rgba(255, 255, 255, .08); translate: 0 -4px; }
.value__icon { display: grid; place-items: center; width: 48px; height: 48px; border-radius: 16px; background: rgba(127, 218, 211, .12); color: var(--teal-300); }
.value h3 { font-family: var(--font-sans); font-size: 1rem; font-weight: 700; letter-spacing: 0; color: #fff; }
.value__num { position: absolute; top: 18px; right: 20px; font-family: var(--font-display); font-size: .9rem; font-style: italic; color: rgba(255, 255, 255, .3); }

.word-band { overflow: hidden; padding-block: clamp(30px, 5vw, 60px); background: var(--linen); }
.word-band .marquee__track { gap: 0; }
.word-band li {
  display: flex;
  align-items: center;
  gap: clamp(20px, 3vw, 44px);
  margin-right: clamp(20px, 3vw, 44px);
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 1.5rem + 4.4vw, 6rem);
  line-height: 1.1;
  white-space: nowrap;
  color: transparent;
  -webkit-text-stroke: 1.2px var(--teal-600);
  font-variation-settings: "SOFT" 100;
}
.word-band li:nth-child(even) { color: var(--petrol-800); -webkit-text-stroke: 0; font-style: italic; }
.word-band li::after { content: ""; width: .32em; height: .32em; border-radius: 50%; background: var(--teal-400); }

/* ---------- İletişim ---------- */

.contact-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 14px; }
.contact-card {
  display: grid;
  gap: 8px;
  align-content: start;
  padding: 22px 20px;
  border: 1px solid var(--grey-100);
  border-radius: var(--radius-lg);
  background: #fff;
  transition: border-color .4s, box-shadow .5s var(--ease-out), translate .5s var(--ease-out);
}
a.contact-card:hover { border-color: var(--teal-300); box-shadow: var(--shadow); translate: 0 -4px; }
.contact-card__icon { display: grid; place-items: center; width: 46px; height: 46px; margin-bottom: 6px; border-radius: 15px; background: var(--teal-50); color: var(--teal-600); }
.contact-card__icon--wa { background: #e7f9ee; color: #1fa855; }
.contact-card__icon--ig { background: linear-gradient(135deg, #f9ce34 0%, #ee2a7b 48%, #6228d7 100%); color: #fff; }
.contact-card__note { display: block; margin-top: 5px; font-size: .8rem; line-height: 1.35; color: var(--grey-500); }
.contact-card__note:empty { display: none; }
.contact-card small { font-size: .74rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; color: var(--grey-500); }
.contact-card strong { font-size: .98rem; color: var(--petrol-800); overflow-wrap: anywhere; }

.contact-grid { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr); gap: clamp(28px, 4vw, 56px); align-items: start; }
.contact-form { position: relative; padding: clamp(26px, 4vw, 48px); border: 1px solid var(--grey-100); border-radius: var(--radius-xl); background: #fff; box-shadow: var(--shadow); }
.contact-form h2 { margin-bottom: 8px; font-size: clamp(1.8rem, 1.2rem + 1.6vw, 2.5rem); }
.contact-aside { display: grid; gap: 18px; }
.contact-aside .map { box-shadow: var(--shadow); }

@media (max-width: 1080px) {
  .contact-cards { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .values { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .refs-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 1024px) {
  .detail, .story, .contact-grid { grid-template-columns: 1fr; }
  .detail:nth-child(even) .detail__media { order: 0; }
  .story__lead { position: static; }
  .region-cards { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 760px) {
  .art .glass-card { font-size: .74rem; padding: 10px 12px; }
  .art__chip--1, .art__chip--3 { left: -2%; }
  .art__chip--2 { right: -2%; }
  .region-cards, .extras, .feature-list { grid-template-columns: 1fr; }
  .refs-grid, .contact-cards { grid-template-columns: 1fr 1fr; }
  .values { grid-template-columns: 1fr 1fr; }
  .cta-inline__actions .btn { flex: 1 1 100%; }
}

/* ==== 06-scent.css ==== */
/* "Paketli & parfümlü" imza bölümü + koku dalgaları */

.scent {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background:
    radial-gradient(55% 75% at 22% 55%, rgba(18, 168, 163, .28), transparent 70%),
    radial-gradient(40% 50% at 95% 10%, rgba(127, 218, 211, .12), transparent 70%),
    linear-gradient(160deg, var(--petrol-900), var(--petrol-950));
  color: rgba(255, 255, 255, .74);
}
.scent h2 { color: #fff; }
.scent h2 em { color: var(--teal-300); }
.scent .lead { color: rgba(255, 255, 255, .76); }
.scent__aura {
  position: absolute;
  left: -12%;
  top: 8%;
  z-index: -1;
  width: 62%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(closest-side, rgba(60, 196, 189, .3), transparent 70%);
  animation: aura 12s var(--ease-in-out) infinite alternate;
  pointer-events: none;
}
.scent__grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(32px, 6vw, 96px); align-items: center; }
.scent__copy { display: grid; gap: 20px; }
.scent__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 8px; }

.scent__stage { display: grid; justify-items: center; }
.scent__box { width: min(100%, 470px); }
.parcel { width: 100%; height: auto; overflow: visible; }

.scent__features { display: grid; gap: 12px; margin-top: 6px; }
.scent__features li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 20px;
  background: rgba(255, 255, 255, .05);
  transition: background-color .4s, border-color .4s;
}
.scent__features li:hover { border-color: rgba(127, 218, 211, .35); background: rgba(255, 255, 255, .08); }
.scent__icon { display: grid; place-items: center; flex: none; width: 46px; height: 46px; border-radius: 14px; background: rgba(127, 218, 211, .14); color: var(--teal-300); }
.scent__icon .icon { width: 24px; height: 24px; }
.scent__features h3 { margin-bottom: 4px; font-family: var(--font-sans); font-size: 1.02rem; font-weight: 800; letter-spacing: 0; color: #fff; }
.scent__features p { font-size: .93rem; }

/* Paket sahnesi */
.parcel__label-top { font-family: var(--font-sans); font-size: 12px; font-weight: 800; letter-spacing: .32em; fill: #fff; }
.parcel__label-sub { font-family: var(--font-display); font-size: 15px; font-style: italic; fill: var(--teal-300); font-variation-settings: "SOFT" 100; }

.parcel__lid { transform-box: fill-box; transform-origin: 0% 100%; transition: transform 1.1s var(--ease-spring); }
.scent__stage.is-open .parcel__lid { transform: translate(-26px, -96px) rotate(-18deg); }
.parcel__bow { transform-box: fill-box; transform-origin: 50% 85%; animation: bow 4s var(--ease-in-out) infinite; }
@keyframes bow { 0%, 100% { transform: rotate(-3deg); } 50% { transform: rotate(3deg); } }

.parcel__rolls { transition: transform 1s var(--ease-spring) .15s; }
.scent__stage.is-open .parcel__rolls { transform: translateY(-40px); }

.wisp {
  opacity: 0;
  stroke-dasharray: .32 1.4;
  stroke-dashoffset: .32;
  animation: wisp 3.8s var(--ease-in-out) infinite;
  animation-delay: calc(var(--k) * -1.25s);
}
@keyframes wisp {
  0% { stroke-dashoffset: .32; opacity: 0; }
  20% { opacity: var(--wo, .45); }
  100% { stroke-dashoffset: -1; opacity: 0; }
}
.wisp--extra { display: none; }
.scent__stage.is-open .wisp { --wo: 1; animation-duration: 2.6s; }
.scent__stage.is-open .wisp--extra { display: inline; }

.petal { opacity: 0; transform-box: fill-box; transform-origin: center; }
.scent__stage.is-open .petal { animation: petal-fly 3.4s var(--ease-out) infinite; animation-delay: calc(var(--k) * .5s + .3s); }
@keyframes petal-fly {
  0% { opacity: 0; transform: translate(0, 0) rotate(0deg); }
  15% { opacity: 1; }
  100% { opacity: 0; transform: translate(var(--x), -180px) rotate(240deg); }
}

/* Hero'daki havlu yığınından yükselen koku */
.stack__wisp { opacity: 0; stroke-dasharray: .32 1.4; stroke-dashoffset: .32; }
.is-ready .stack__wisp { --wo: .95; animation: wisp 3.6s var(--ease-in-out) infinite; animation-delay: calc(1.6s + var(--k) * 1.2s); }

@media (max-width: 1024px) {
  .scent__grid { grid-template-columns: 1fr; }
  .scent__box { width: min(100%, 400px); }
}

/* ==== 07-gallery.css ==== */
/* Ürün galerisi (Ürünler sayfası), vitrin mozaiği (Ana Sayfa), büyük görüntüleyici */

.spec-card { display: grid; gap: 10px; padding: 16px 18px; border: 1px solid var(--grey-100); border-radius: 18px; background: var(--linen); }
.spec-card__label { font-size: .74rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; color: var(--teal-700); }
.spec-card__list { display: flex; flex-wrap: wrap; gap: 6px; }
.spec-card__list li { padding: 5px 11px; border: 1px solid var(--grey-200); border-radius: 999px; background: #fff; font-size: .8rem; font-weight: 650; color: var(--petrol-800); }

/* ---------- Filtreler ---------- */

.g-filters { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 28px; }
.g-filter {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 10px 9px 16px;
  border: 1.5px solid var(--grey-200);
  border-radius: 999px;
  background: #fff;
  font-size: .9rem;
  font-weight: 700;
  color: var(--petrol-800);
  white-space: nowrap;
  transition: background-color .3s, border-color .3s, color .3s, transform .4s var(--ease-spring);
}
.g-filter span {
  display: grid;
  place-items: center;
  min-width: 26px;
  height: 24px;
  padding: 0 7px;
  border-radius: 999px;
  background: var(--grey-100);
  font-size: .74rem;
  color: var(--grey-600);
  transition: background-color .3s, color .3s;
}
.g-filter:hover { border-color: var(--teal-300); transform: translateY(-1px); }
.g-filter[aria-pressed="true"] { border-color: var(--petrol-800); background: var(--petrol-800); color: #fff; }
.g-filter[aria-pressed="true"] span { background: var(--teal-500); color: #fff; }

/* ---------- Masonry ızgara ---------- */

.g-grid { columns: 4 230px; column-gap: 18px; }
.g-item { break-inside: avoid; margin-bottom: 18px; }
.g-item.is-pop { animation: g-pop .7s var(--ease-out) both; animation-delay: calc(var(--pi, 0) * 45ms); }
@keyframes g-pop { from { opacity: 0; transform: translateY(18px) scale(.97); } to { opacity: 1; transform: none; } }

.g-item__btn {
  display: block;
  width: 100%;
  padding: 0;
  overflow: hidden;
  border: 1px solid var(--grey-100);
  border-radius: 22px;
  background: #fff;
  text-align: left;
  cursor: zoom-in;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .5s var(--ease-out), border-color .4s, transform .6s var(--ease-out);
}
.g-item__btn:hover { transform: translateY(-4px); border-color: var(--teal-200); box-shadow: var(--shadow-lg); }
.g-item__btn:focus-visible { outline: 2px solid var(--teal-500); outline-offset: 3px; }
.g-item__media { position: relative; display: block; overflow: hidden; background: var(--grey-50); }
.g-item__media img { display: block; width: 100%; height: auto; transition: transform 1.1s var(--ease-out); }
.g-item__btn:hover .g-item__media img { transform: scale(1.05); }
.g-item__zoom {
  position: absolute;
  top: 12px;
  right: 12px;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .88);
  color: var(--petrol-800);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(8px);
  opacity: 0;
  transform: scale(.8);
  transition: opacity .35s, transform .5s var(--ease-spring);
}
.g-item__btn:hover .g-item__zoom, .g-item__btn:focus-visible .g-item__zoom { opacity: 1; transform: none; }
.g-item__cap { display: grid; gap: 2px; padding: 14px 16px 16px; }
.g-item__cap strong { font-family: var(--font-display); font-size: 1.08rem; font-weight: 500; color: var(--petrol-800); }
.g-item__cap span { font-size: .84rem; color: var(--grey-600); }
.g-note { margin-top: 10px; font-size: .84rem; color: var(--grey-500); text-align: center; }

/* ---------- Ana sayfa vitrin mozaiği ---------- */

.g-teaser { margin-top: clamp(44px, 6vw, 72px); }
.g-teaser__head { display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: 16px 24px; margin-bottom: 24px; }
.g-teaser__title { margin-top: 12px; font-size: clamp(1.8rem, 1.2rem + 1.8vw, 2.7rem); }
.g-teaser__grid { display: grid; grid-template-columns: 1.15fr 1fr 1fr; grid-template-rows: repeat(2, clamp(190px, 20vw, 270px)); gap: 14px; }
.g-teaser__tile { position: relative; isolation: isolate; overflow: hidden; border-radius: 24px; background: var(--grey-100); }
.g-teaser__tile:first-child { grid-row: span 2; }
.g-teaser__tile img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 30%; transition: transform 1.2s var(--ease-out); }
.g-teaser__tile:hover img { transform: scale(1.06); }
.g-teaser__tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(6, 38, 45, .82));
  pointer-events: none;
}
.g-teaser__cap { position: absolute; left: 18px; right: 18px; bottom: 16px; z-index: 1; display: grid; gap: 2px; color: #fff; transform: translateY(6px); transition: transform .5s var(--ease-out); }
.g-teaser__tile:hover .g-teaser__cap { transform: none; }
.g-teaser__cap strong { font-family: var(--font-display); font-size: 1.15rem; font-weight: 500; }
.g-teaser__cap span { font-size: .82rem; opacity: .85; }

/* ---------- Büyük görüntüleyici ---------- */

.lb-open { overflow: hidden; }
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1100;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  padding: clamp(12px, 3vw, 32px);
  background: rgba(4, 29, 35, .92);
  backdrop-filter: blur(10px);
  opacity: 0;
  transition: opacity .3s;
}
.lightbox.is-open { opacity: 1; }
.lightbox__figure { display: grid; justify-items: center; gap: 14px; min-width: 0; margin: 0; }
.lightbox__frame { position: relative; display: grid; place-items: center; min-width: 120px; min-height: 120px; }
.lightbox__frame img {
  display: block;
  width: auto;
  height: auto;
  max-width: min(100%, 1100px);
  max-height: calc(100vh - 170px);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 30px 80px rgba(0, 0, 0, .45);
  opacity: 0;
  transform: scale(.96);
  transition: opacity .35s, transform .5s var(--ease-out);
}
.lightbox.is-open:not(.is-loading) .lightbox__frame img { opacity: 1; transform: none; }
.lightbox__spinner {
  position: absolute;
  width: 34px;
  height: 34px;
  border: 3px solid rgba(255, 255, 255, .25);
  border-top-color: #fff;
  border-radius: 50%;
  opacity: 0;
  animation: spin .8s linear infinite;
  transition: opacity .2s;
  pointer-events: none;
}
.lightbox.is-loading .lightbox__spinner { opacity: 1; }
.lightbox figcaption { display: flex; flex-wrap: wrap; align-items: baseline; justify-content: center; gap: 4px 12px; font-size: .92rem; text-align: center; color: rgba(255, 255, 255, .8); }
.lightbox figcaption strong { font-family: var(--font-display); font-size: 1.3rem; font-weight: 500; color: #fff; }
.lightbox figcaption em { flex-basis: 100%; font-size: .82rem; font-style: normal; color: var(--teal-200); }
.lightbox figcaption small { font-size: .8rem; color: rgba(255, 255, 255, .55); }
.lightbox__btn {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 50%;
  background: rgba(255, 255, 255, .08);
  color: #fff;
  transition: background-color .3s, transform .45s var(--ease-spring);
}
.lightbox__btn:hover { background: rgba(255, 255, 255, .18); transform: scale(1.06); }
.lightbox__btn:focus-visible { outline: 2px solid var(--teal-300); outline-offset: 3px; }
.lightbox__btn .icon { width: 24px; height: 24px; }
.lightbox__close { position: absolute; top: clamp(12px, 2.5vw, 24px); right: clamp(12px, 2.5vw, 24px); z-index: 2; }
.lightbox__nav--prev .icon { transform: rotate(180deg); }

@media (max-width: 760px) {
  .g-filters { flex-wrap: nowrap; overflow-x: auto; margin-inline: calc(var(--gutter) * -1); padding: 2px var(--gutter) 6px; scrollbar-width: none; }
  .g-filters::-webkit-scrollbar { display: none; }
  .g-grid { columns: 2; column-gap: 12px; }
  .g-item { margin-bottom: 12px; }
  .g-item__btn { border-radius: 16px; }
  .g-item__cap { padding: 10px 12px 12px; }
  .g-item__cap strong { font-size: .95rem; }
  .g-item__cap span { font-size: .76rem; }
  .g-teaser__grid { grid-template-columns: 1fr 1fr; grid-template-rows: none; grid-auto-rows: 170px; gap: 10px; }
  .g-teaser__tile { border-radius: 18px; }
  .g-teaser__cap strong { font-size: .98rem; }
  .lightbox { grid-template-columns: minmax(0, 1fr); padding-bottom: 88px; }
  .lightbox__nav { position: absolute; bottom: 20px; }
  .lightbox__nav--prev { left: calc(50% - 66px); }
  .lightbox__nav--next { right: calc(50% - 66px); }
  .lightbox__frame img { max-height: calc(100vh - 250px); }
}

/* ---------- Lightbox: yakınlaştırma ---------- */
.lightbox__frame { overflow: hidden; border-radius: 16px; }
.lightbox__frame img { transform-origin: center center; cursor: zoom-in; }
.lightbox.is-open:not(.is-loading) .lightbox__frame img { transition: opacity .3s, transform .24s var(--ease-out); }
.lightbox.is-zoomed .lightbox__frame { touch-action: none; }
.lightbox.is-zoomed .lightbox__frame img { cursor: grab; }
.lightbox.is-dragging .lightbox__frame img { cursor: grabbing; transition: none; }
.lightbox__loupe {
  position: absolute;
  right: 12px;
  bottom: 12px;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(4, 29, 35, .55);
  color: #fff;
  backdrop-filter: blur(6px);
  opacity: 0;
  transform: scale(.88);
  transition: opacity .3s, transform .45s var(--ease-out);
  pointer-events: none;
}
.lightbox__frame:hover .lightbox__loupe { opacity: 1; transform: none; }
.lightbox.is-zoomed .lightbox__loupe { opacity: 0; }
.lightbox__zoom {
  position: absolute;
  top: clamp(12px, 2.5vw, 24px);
  left: clamp(12px, 2.5vw, 24px);
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 5px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .1);
  backdrop-filter: blur(8px);
}
.lightbox__btn--sm { width: 40px; height: 40px; }
.lightbox__btn--sm .icon { width: 20px; height: 20px; }
.lightbox__btn[disabled] { opacity: .32; pointer-events: none; }
.lightbox__zoom-val { min-width: 4.2ch; text-align: center; font-size: .82rem; font-weight: 700; color: rgba(255, 255, 255, .85); font-variant-numeric: tabular-nums; }
@media (max-width: 720px) {
  .lightbox__zoom { top: auto; bottom: 18px; left: 50%; transform: translateX(-50%); }
  .lightbox__nav { bottom: 74px; }
  .lightbox { padding-bottom: 132px; }
  .lightbox__frame img { max-height: calc(100vh - 300px); }
}

/* ==== 08-studio.css ==== */
/* Tasarım stüdyosu: gerçek modeller (penuar / boya yeleği / kimono) üzerinde canlı baskı önizlemesi */

.studio {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
  gap: clamp(24px, 4vw, 56px);
  margin-bottom: 22px;
  padding: clamp(24px, 4vw, 52px);
  border: 1px solid var(--grey-100);
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, var(--linen), #fff 60%);
  box-shadow: var(--shadow);
}
.studio__title { margin: 16px 0 12px; font-size: clamp(1.9rem, 1.2rem + 2vw, 2.9rem); }
.studio__intro { max-width: 50ch; }
.studio__group { display: grid; gap: 10px; margin-top: 22px; }
.studio__cols { display: grid; grid-template-columns: auto 1fr; gap: 0 28px; }
.studio__label { font-size: .76rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; color: var(--grey-600); }
.studio__label span { letter-spacing: .04em; text-transform: none; color: var(--petrol-800); }
.studio__fields { gap: 12px; }
.studio__fields .field input { height: 54px; background: #fff; }
.studio__fine { margin-top: 10px; font-size: .8rem; color: var(--grey-500); }
.studio__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }

/* Model kartları */
.st-models { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 10px; }
.st-model {
  display: grid;
  justify-items: center;
  gap: 8px;
  padding: 14px 8px 12px;
  border: 1.5px solid var(--grey-200);
  border-radius: 18px;
  background: #fff;
  font-size: .84rem;
  font-weight: 700;
  color: var(--petrol-800);
  transition: border-color .3s, background-color .3s, color .3s, transform .45s var(--ease-spring), box-shadow .3s;
}
.st-model svg { width: 40px; height: 40px; fill: currentColor; opacity: .85; transition: transform .5s var(--ease-spring); }
.st-model:hover { border-color: var(--teal-300); transform: translateY(-2px); }
.st-model:hover svg { transform: scale(1.08); }
.st-model.is-active { border-color: var(--petrol-800); background: var(--petrol-800); color: #fff; box-shadow: 0 12px 24px -14px rgba(10, 54, 64, .8); }

/* Baskı renkleri */
.st-inks { display: flex; flex-wrap: wrap; gap: 10px; }
.st-ink {
  width: 34px;
  height: 34px;
  border: 3px solid #fff;
  border-radius: 50%;
  background: var(--c);
  box-shadow: 0 0 0 1px var(--grey-200), 0 6px 14px -6px rgba(0, 0, 0, .4);
  transition: transform .45s var(--ease-spring), box-shadow .3s;
}
.st-ink:hover { transform: scale(1.12); }
.st-ink.is-active { transform: scale(1.1); box-shadow: 0 0 0 2px var(--teal-500), 0 8px 18px -6px rgba(0, 0, 0, .45); }

/* Segment düğmeleri */
.st-seg { display: inline-flex; justify-self: start; padding: 4px; border: 1px solid var(--grey-200); border-radius: 999px; background: #fff; }
.st-seg button {
  padding: 7px 14px;
  border: 0;
  border-radius: 999px;
  background: none;
  font-size: .82rem;
  font-weight: 700;
  color: var(--grey-600);
  transition: background-color .3s, color .3s;
}
.st-seg button[aria-pressed="true"], .st-seg button[aria-checked="true"] { background: var(--petrol-800); color: #fff; }
.st-seg button:disabled { opacity: .35; cursor: not-allowed; }
.studio[data-font="klasik"] .st-font[data-font="klasik"],
.studio[data-font="zarif"] .st-font[data-font="zarif"] { font-family: var(--font-display); }

/* Logo yükleme */
.st-logo { display: flex; flex-wrap: wrap; align-items: center; gap: 10px 16px; }
.st-logo__btn { cursor: pointer; }
.st-logo__btn:focus-within { outline: 2px solid var(--teal-500); outline-offset: 3px; }
.st-logo__remove { padding: 6px 4px; border: 0; background: none; font-size: .85rem; font-weight: 700; color: #b03a2e; text-decoration: underline; text-underline-offset: 3px; }
.st-switch { display: inline-flex; align-items: center; gap: 10px; font-size: .86rem; font-weight: 650; color: var(--petrol-800); cursor: pointer; }
.st-switch input { position: absolute; opacity: 0; }
.st-switch__track { position: relative; width: 38px; height: 22px; border-radius: 999px; background: var(--grey-300); transition: background-color .3s; }
.st-switch__track::after { content: ""; position: absolute; top: 3px; left: 3px; width: 16px; height: 16px; border-radius: 50%; background: #fff; box-shadow: 0 1px 3px rgba(0, 0, 0, .3); transition: transform .35s var(--ease-spring); }
.st-switch input:checked + .st-switch__track { background: var(--teal-600); }
.st-switch input:checked + .st-switch__track::after { transform: translateX(16px); }
.st-switch input:focus-visible + .st-switch__track { outline: 2px solid var(--teal-500); outline-offset: 2px; }
.st-switch input:disabled ~ * { opacity: .45; cursor: not-allowed; }

/* ---------- Sahne ---------- */

.studio__stage {
  position: sticky;
  top: 100px;
  align-self: start;
  display: grid;
  gap: 14px;
  padding: 16px;
  border: 1px solid var(--grey-100);
  border-radius: 28px;
  background: #fff;
  box-shadow: var(--shadow-sm);
}
.studio__bar { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 10px; }
.studio__canvas {
  position: relative;
  display: grid;
  place-items: center;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: 20px;
  background: radial-gradient(90% 70% at 50% 38%, #fff, #eef2f3 62%, #dfe7e9);
}
.studio__preview { display: block; width: 100%; height: 100%; min-height: 0; object-fit: contain; }
.studio__empty { padding: 28px; text-align: center; color: var(--petrol-800); font-size: .95rem; max-width: 36ch; }
.studio__preview-tools { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 8px; }
.studio__preview-tools .btn { font-size: .73rem; padding: 8px 12px; min-height: 36px; }
.studio__live { color: var(--teal-700); font-size: .73rem; font-weight: 700; }
.studio__caption { font-size: .8rem; font-weight: 750; color: var(--petrol-800); }
.studio__photo-notes .studio__fine { margin-top: 3px; }
.studio__file-error { color: #ac302d; font-size: .8rem; }
.studio__file-error:empty { display: none; }
.studio__print-settings { padding: 16px; border: 1px solid var(--grey-200); background: #fff; border-radius: 16px; }
.studio__print-settings input[type="range"] { width: 100%; accent-color: var(--teal-600); cursor: pointer; min-height: 30px; }
.studio__print-settings .studio__fine { margin: 0; }
.studio__preview[hidden], .studio__empty[hidden] { display: none; }

.studio__photo { position: absolute; inset: 0; display: grid; grid-template-rows: 1fr auto; margin: 0; background: #fff; animation: fade-in .45s var(--ease-out); }
.studio__photo img { width: 100%; height: 100%; min-height: 0; object-fit: contain; }
.studio__photo figcaption { padding: 10px 14px; font-size: .84rem; font-weight: 600; text-align: center; color: var(--grey-600); }

.st-thumbs { display: flex; gap: 10px; }
.st-thumb {
  width: 72px;
  height: 72px;
  flex: none;
  padding: 0;
  overflow: hidden;
  border: 2px solid var(--grey-100);
  border-radius: 14px;
  background: var(--grey-50);
  transition: border-color .3s, transform .4s var(--ease-spring);
}
.st-thumb img { width: 100%; height: 100%; object-fit: cover; }
.st-thumb:hover { transform: translateY(-2px); border-color: var(--teal-300); }
.st-thumb.is-active { border-color: var(--teal-500); }
.studio__thumbs { display: block; }
.studio__thumbs summary { cursor: pointer; }
.studio__thumbs[open] .st-thumbs { margin-top: 8px; }

@media (max-width: 1024px) {
  .studio { grid-template-columns: 1fr; }
  .studio__stage { position: sticky; top: 84px; order: -1; z-index: 5; }
  .studio__canvas { aspect-ratio: auto; height: 34vh; height: 34svh; min-height: 180px; }
  .studio__thumbs .studio__label { font-size: .62rem; }
  .studio__stage .st-thumb { width: 36px; height: 36px; border-radius: 8px; }
  .studio__photo-notes { display: none; }
}
@media (max-width: 760px) {
  .studio { padding: 16px; }
  .studio__cols { grid-template-columns: 1fr; gap: 0; }
  .st-model { padding: 12px 6px 10px; font-size: .78rem; }
  .st-model svg { width: 34px; height: 34px; }
  .studio__stage { padding: 10px; border-radius: 22px; }
  .studio__stage { top: 72px; gap: 7px; }
  .studio__canvas { height: 22vh; height: 22svh; min-height: 150px; border-radius: 12px; }
  .studio__panel :is(input,button,a) { scroll-margin-top: calc(22svh + 240px); scroll-margin-bottom: 80px; }
  .studio__bar { gap: 5px; }
  .studio__bar .st-seg button { font-size: .7rem; padding: 6px 9px; }
  .studio__live { max-width: 18ch; font-size: .65rem; }
  .st-thumb { width: 64px; height: 64px; }
}

/* ==== 09-responsive.css ==== */
/* Duyarlı düzen + azaltılmış hareket */

/* Menüde "Bize Güvenen İşletmeler" uzun bir başlık; şerit en fazla 1240 px olduğu için
   bağlantılar dar ekranlarda biraz daha sıkışır (WhatsApp yazısı temel stilde gizli). */
@media (max-width: 1400px) {
  .nav a { padding-inline: 9px; font-size: .85rem; }
}
@media (max-width: 1260px) {
  .site-header__bar { gap: 12px; }
  .nav a { padding-inline: 5px; font-size: .81rem; }
}

@media (max-width: 1180px) {
  .nav { display: none; }
  .burger { display: block; }
  .site-header__actions { margin-left: auto; }
  .nav + .site-header__actions { margin-left: auto; }
}

@media (max-width: 1080px) {
  .service-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .stats { grid-template-columns: 1fr 1fr; }
  .stat:nth-child(odd)::before { display: none; }
  .stat:nth-child(n + 4) { border-top: 1px solid rgba(255, 255, 255, .08); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .reasons-grid { grid-template-columns: 1fr 1fr; }
  .reason--feature { grid-column: 1 / -1; }
  .reason--wide { flex-direction: column; align-items: stretch; }
  .converge { justify-content: center; }
}
@media (max-width: 1080px) and (min-width: 761px) {
  .stat:nth-child(2)::before { display: block; }
  .stat:nth-child(3)::before { display: none; }
}

@media (max-width: 1024px) {
  .hero { min-height: auto; padding-top: 130px; }
  .hero__grid { grid-template-columns: 1fr; }
  .hero__visual { max-width: 520px; margin-top: 10px; }
  .scroll-cue { display: none; }
  .page-hero__grid { grid-template-columns: 1fr; }
  .page-hero .art { width: min(100%, 360px); }
  .section-head--split { grid-template-columns: 1fr; }
  .regions__grid { grid-template-columns: 1fr; }
  .quote__card { grid-template-columns: 1fr; }
  .process__grid { grid-template-columns: 1fr; row-gap: 22px; }
  .process__intro { display: contents; }
  .process__intro > .eyebrow { order: 0; justify-self: start; }
  .process__intro > h2 { order: 1; }
  .process__visual { order: 2; margin-top: 10px; }
  .process__steps { order: 3; margin-top: 10px; }
  .loop { width: min(100%, 440px); }
  .detail__media { aspect-ratio: 16 / 11; }
}

@media (max-width: 900px) {
  .product-grid { grid-template-columns: 1fr 1fr; }
  .product-grid > :last-child { grid-column: 1 / -1; }
}

@media (max-width: 760px) {
  body { font-size: 1rem; }
  .site-header { padding-top: 10px; }
  .site-header__bar { height: 62px; padding-left: 14px; }
  .brand__mark { width: 34px; height: 34px; }
  .brand__name { font-size: 1.43rem; }
  .site-header__actions .btn { display: none; }
  .wa-pill { height: 44px; }
  .hero__trust { grid-template-columns: 1fr; }
  .hero__actions .btn { flex: 1 1 100%; }
  .glass-card { font-size: .74rem; padding: 10px 12px 10px 10px; }
  .glass-card--route { left: 0; top: 4%; padding-bottom: 16px; }
  .glass-card--seal { right: 0; }
  .glass-card--capacity { padding: 12px 14px; }
  .glass-card__big { font-size: 1.35rem !important; }
  .glass-card__icon, .seal-check { width: 34px; height: 34px; }
  .stats { grid-template-columns: 1fr; }
  .stat::before { display: none; }
  .stat + .stat { border-top: 1px solid rgba(255, 255, 255, .08); }
  .service-grid, .product-grid, .reasons-grid { grid-template-columns: 1fr; }
  .reason--feature { flex-direction: column; align-items: flex-start; }
  .reason__art { align-self: center; }
  .converge { grid-template-columns: auto 70px auto; }
  .converge__lines { width: 70px; }
  .converge__hub { width: 64px; height: 64px; }
  .converge__hub svg { width: 38px; height: 38px; }
  .form__grid { grid-template-columns: 1fr; }
  .quote__factors ul { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-cta__actions .btn { flex: 1 1 100%; }
  .float-actions { gap: 10px; }
  .wa-float { width: 56px; height: 56px; }
  .to-top { width: 46px; height: 46px; }
  .ref { height: 70px; padding-right: 22px; }
  .ref__mono { width: 44px; height: 44px; }
  .ref__name { font-size: 1.05rem; }
  .ref--1 .ref__name { font-size: 1.2rem; }
  .products__cta { padding: 22px; }
  .products__cta-actions .btn { flex: 1 1 100%; }
}

@media (max-width: 420px) {
  .converge__items li { font-size: .78rem; padding: 0 12px 0 10px; }
  .choice span { padding: 9px 12px; font-size: .84rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }
}

/* Küçük telefonlarda üst şerit: WhatsApp ve Instagram butonları birlikte küçülür */
@media (max-width: 520px) {
  .site-header__bar { gap: 8px; padding-left: 12px; }
  .wa-pill { padding: 0 4px; }
  .wa-pill__icon { width: 30px; height: 30px; }
  .wa-pill__icon .icon { width: 17px; height: 17px; }
  .burger { width: 44px; height: 44px; }
}
@media (max-width: 400px) {
  /* Çok dar telefonlarda marka yazısının alt satırı gizlenir, iki buton da sığar */
  .site-header .brand__sub { display: none; }
}

@media (max-width: 360px) {
  .site-header__bar { gap: 6px; padding-left: 10px; padding-right: 6px; }
  .site-header .brand__name { font-size: 1.25rem; }
  .brand__mark { width: 30px; height: 30px; }
}
