/* ==========================================================================
   ZENOWA — Design Tokens
   ========================================================================== */
:root {
  --zenowa-red: #E42226;
  --zenowa-red-dark: #C11B1E;
  --zenowa-orange: #F58D1A;
  --zenowa-ink: #1A1C1F;
  --zenowa-gray: #5B5F66;
  --zenowa-border: #E3E3E1;
  --zenowa-paper: #FFFFFF;
  --zenowa-offwhite: #F6F6F4;
  --zenowa-steel: #23262B;
  --whatsapp-green: #25D366;
  --whatsapp-green-dark: #1DA851;

  --font-body: 'Inter', -apple-system, Segoe UI, sans-serif;
  /* Köklü/ciddi bir tedarik evi sesi: başlıklar oturaklı bir serif taşır */
  --font-display: 'Source Serif 4', Georgia, 'Times New Roman', serif;

  --space-section: 72px;
  --space-section-mobile: 44px;

  --border-hairline: 1px solid var(--zenowa-border);
  --shadow-card: 0 1px 3px rgba(20, 20, 20, 0.06), 0 1px 2px rgba(20, 20, 20, 0.04);
  --radius: 6px;
  /* Grup kartları ve kategori kutuları ortak köşe dili */
  --radius-tile: 16px;

  --container-width: 1240px;
}

/* ==========================================================================
   Reset / Base
   ========================================================================== */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 112.5%; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--zenowa-ink);
  background: var(--zenowa-paper);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { margin: 0; padding: 0; list-style: none; }
/* Serif yalnızca "vitrin" başlıklarında konuşur: hero, bölüm başlıkları,
   sayfa bannerları. Kart/adım/footer gibi küçük arayüz başlıkları Inter'dir. */
h1, h2 { font-family: var(--font-display); font-weight: 700; letter-spacing: -0.01em; margin: 0 0 0.45em; line-height: 1.2; color: var(--zenowa-ink); }
h3, h4 { font-family: var(--font-body); font-weight: 600; letter-spacing: -0.005em; margin: 0 0 0.45em; line-height: 1.3; color: var(--zenowa-ink); }
p { margin: 0 0 1em; color: #494D53; max-width: 62ch; }
button, input, textarea { font-family: var(--font-body); font-size: 1.05rem; }

:focus-visible {
  outline: 3px solid var(--zenowa-red);
  outline-offset: 2px;
}

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

.eyebrow {
  display: inline-block;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--zenowa-red);
  margin-bottom: 10px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1.05rem;
  border-radius: var(--radius);
  padding: 16px 30px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background-color 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}
.btn-primary { background: var(--zenowa-red); color: #fff; }
.btn-primary:hover, .btn-primary:focus-visible { background: var(--zenowa-red-dark); }
.btn-outline { background: rgba(255,255,255,0.08); color: #fff; border-color: rgba(255,255,255,0.7); }
.btn-outline:hover, .btn-outline:focus-visible { background: #fff; color: var(--zenowa-ink); }
.btn-outline-ink { background: transparent; color: var(--zenowa-ink); border-color: var(--zenowa-border); }
.btn-outline-ink:hover, .btn-outline-ink:focus-visible { border-color: var(--zenowa-ink); background: var(--zenowa-offwhite); }
.btn-block { width: 100%; justify-content: center; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; animation: none !important; }
}

/* ==========================================================================
   Scroll reveal
   ========================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(52px) scale(0.97);
  transition: opacity 0.8s cubic-bezier(0.2, 0.7, 0.2, 1), transform 0.8s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.reveal.is-visible { opacity: 1; transform: none; }
.reveal-stagger.is-visible > * { opacity: 1; transform: none; }
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(40px) scale(0.97);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal-stagger.is-visible > *:nth-child(1) { transition-delay: 0.05s; }
.reveal-stagger.is-visible > *:nth-child(2) { transition-delay: 0.15s; }
.reveal-stagger.is-visible > *:nth-child(3) { transition-delay: 0.25s; }
.reveal-stagger.is-visible > *:nth-child(4) { transition-delay: 0.35s; }
.reveal-stagger.is-visible > *:nth-child(5) { transition-delay: 0.45s; }
.reveal-stagger.is-visible > *:nth-child(6) { transition-delay: 0.55s; }
/* Fihrist gibi kalabalık ızgaralarda kuyruk tek seferde gelir */
.reveal-stagger.is-visible > *:nth-child(n+7) { transition-delay: 0.62s; }

/* Directional variants — used to make two-column blocks converge from
   opposite sides instead of both rising together */
.reveal-left,
.reveal-right {
  opacity: 0;
  transition: opacity 0.9s cubic-bezier(0.2, 0.7, 0.2, 1), transform 0.9s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.reveal-left { transform: translateX(-64px); }
.reveal-right { transform: translateX(64px); }
.reveal-left.is-visible,
.reveal-right.is-visible { opacity: 1; transform: none; }

/* Image focus reveal — the photo starts soft and slightly pulled back, then
   sharpens into place like a lens finding focus. Wrap any framed image
   container (position:relative + overflow:hidden) with this. */
.img-reveal { position: relative; overflow: hidden; }
.img-reveal img {
  opacity: 0;
  transform: scale(1.05);
  filter: blur(14px);
  transition:
    opacity 0.6s ease,
    filter 1.1s cubic-bezier(0.2, 0.7, 0.2, 1),
    transform 1.4s cubic-bezier(0.2, 0.7, 0.2, 1);
  will-change: opacity, filter, transform;
}
.img-reveal.is-visible img {
  opacity: 1;
  transform: scale(1);
  filter: blur(0);
}

/* Scroll progress bar — thin brand-coloured indicator pinned to the very
   top of the viewport, filled by JS as the visitor scrolls the page */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: var(--zenowa-red);
  z-index: 300;
  transition: width 0.1s linear;
}

@media (prefers-reduced-motion: reduce) {
  .scroll-progress { display: none; }
}

.section { position: relative; overflow: hidden; }
.section > .container { position: relative; z-index: 1; }

/* Bold colour bands — the "dolu" alternating rhythm */
.section--band-red {
  background: var(--zenowa-red);
  color: #fff;
}
.section--band-red .eyebrow { color: #FFE3C2; }
.section--band-red .section__head h2 { color: #fff; }
.section--band-red .section__head p { color: #FFE1E1; }
.section--band-red .card-grid > article {
  background: rgba(255, 255, 255, 0.97);
  border-color: rgba(255, 255, 255, 0.25);
}

/* ==========================================================================
   Header
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  /* DİKKAT: buraya backdrop-filter/filter eklemeyin — header, içindeki
     position:fixed mobil menünün konum referansı olur ve menü çubuğa hapsolur */
  background: var(--zenowa-paper);
  border-bottom: var(--border-hairline);
  transition: box-shadow 0.25s ease;
}
.site-header--scrolled { box-shadow: 0 4px 18px rgba(20, 20, 20, 0.09); }
.site-header__bar {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
  padding: 14px 24px;
}
.site-header__logo { flex-shrink: 0; justify-self: start; transition: transform 0.3s cubic-bezier(0.2, 0.7, 0.2, 1); }
.site-header__logo:hover { transform: scale(1.045); }
.site-header__logo svg { height: 44px; width: auto; display: block; }
.site-header__nav {
  display: flex;
  gap: 30px;
  justify-self: center;
}
.site-header__nav a {
  position: relative;
  font-weight: 500;
  font-size: 1.1rem;
  color: var(--zenowa-ink);
  padding: 6px 0;
  transition: color 0.2s ease;
}
/* Alt çizgi ortadan iki yana yumuşakça büyür */
.site-header__nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  border-radius: 2px;
  background: var(--zenowa-red);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.28s ease;
}
.site-header__nav a:hover,
.site-header__nav a[aria-current="page"] { color: var(--zenowa-red); }
.site-header__nav a:hover::after,
.site-header__nav a[aria-current="page"]::after { transform: scaleX(1); }
.site-header__nav-cta { display: none; }
.site-header__right {
  display: flex;
  align-items: center;
  gap: 16px;
  justify-self: end;
  flex-shrink: 0;
}
.site-header__cta {
  display: inline-flex;
  align-items: center;
  background: var(--zenowa-red);
  color: #fff;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 10px 20px;
  border-radius: var(--radius);
  white-space: nowrap;
  transition: background-color 0.15s ease, transform 0.25s cubic-bezier(0.2, 0.7, 0.2, 1), box-shadow 0.25s ease;
}
.site-header__cta:hover,
.site-header__cta:focus-visible {
  background: var(--zenowa-red-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(228, 34, 38, 0.28);
}
.lang-switch {
  display: flex;
  align-items: center;
  gap: 7px;
}
.lang-switch form { display: contents; }
.lang-switch button {
  background: none;
  border: 2px solid transparent;
  border-radius: 50%;
  width: 28px;
  height: 28px;
  padding: 0;
  cursor: pointer;
  display: flex;
  overflow: hidden;
  opacity: 0.55;
  transition: transform 0.2s ease, border-color 0.2s ease, opacity 0.2s ease;
}
.lang-switch button svg {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  display: block;
}
.lang-switch button:hover { transform: translateY(-2px); opacity: 0.85; }
.lang-switch button[aria-current="true"] {
  border-color: var(--zenowa-ink);
  opacity: 1;
}
.nav-toggle {
  display: none;
  background: none;
  border: var(--border-hairline);
  border-radius: var(--radius);
  width: 40px;
  height: 40px;
  padding: 0;
  cursor: pointer;
  flex-shrink: 0;
}
.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  display: block;
  width: 18px;
  height: 2px;
  background: var(--zenowa-ink);
  margin: 0 auto;
  position: relative;
  transition: transform 0.15s ease;
}
.nav-toggle span::before { position: absolute; top: -6px; }
.nav-toggle span::after { position: absolute; top: 6px; }

/* ==========================================================================
   Messages
   ========================================================================== */
.messages {
  background: var(--zenowa-ink);
  color: #fff;
}
.messages li {
  font-size: 1.05rem;
  padding: 12px 24px;
  max-width: var(--container-width);
  margin: 0 auto;
}

/* ==========================================================================
   Hero — full-bleed video welcome. The page opens on the brand's three
   promises rising line by line over the footage; everything else waits
   below the fold.
   ========================================================================== */
.hero {
  position: relative;
  color: #fff;
  overflow: hidden;
  min-height: calc(100svh - 74px);
  display: flex;
  align-items: flex-end;
}
.hero__media {
  position: absolute;
  top: -100px;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  background: var(--zenowa-steel);
  will-change: transform;
}
.hero__media-placeholder {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  background: linear-gradient(160deg, #23262B 0%, #101216 100%);
  color: rgba(255, 255, 255, 0.45);
}
.hero__media-placeholder svg { width: 60px; height: 60px; opacity: 0.6; }
.hero__media-placeholder span {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.hero__video {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: none;
}
.hero__video.is-ready { display: block; }

/* Karartı: metin nerede olursa olsun okunur kalsın diye alt kenar ağırlıklı */
.hero__scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(0deg, rgba(12, 14, 17, 0.72), rgba(12, 14, 17, 0) 52%),
    linear-gradient(200deg, rgba(12, 14, 17, 0.18), rgba(12, 14, 17, 0) 55%);
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-top: 140px;
  padding-bottom: 104px;
}
/* Açılış sahnesi: her öge sırayla yükselerek belirir. Kaydırmaya bağlı değil,
   sayfa yüklenince bir kez oynar; reduced-motion'da global kural kapatır ve
   fill-mode:both sayesinde ögeler normal hâlleriyle görünür kalır. */
@keyframes heroRise {
  from { opacity: 0; transform: translateY(26px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 20px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  animation: heroRise 0.9s cubic-bezier(0.2, 0.7, 0.2, 1) 0.15s both;
}
.hero__eyebrow::before {
  content: "";
  width: 40px;
  height: 2px;
  background: var(--zenowa-red);
  flex-shrink: 0;
}
.hero__title {
  margin: 0 0 22px;
  color: #fff;
  font-size: clamp(2.4rem, 5.6vw, 4.4rem);
  font-weight: 700;
  letter-spacing: -0.015em;
  line-height: 1.06;
}
.hero__line { display: block; animation: heroRise 0.9s cubic-bezier(0.2, 0.7, 0.2, 1) both; }
.hero__line:nth-child(1) { animation-delay: 0.3s; }
.hero__line:nth-child(2) { animation-delay: 0.45s; }
.hero__line:nth-child(3) { animation-delay: 0.6s; }
.hero__sub {
  margin: 0 0 34px;
  max-width: 46ch;
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.12rem;
  line-height: 1.6;
  animation: heroRise 0.9s cubic-bezier(0.2, 0.7, 0.2, 1) 0.8s both;
}
.hero__cta { animation: heroRise 0.9s cubic-bezier(0.2, 0.7, 0.2, 1) 0.95s both; }

.hero__scroll-cue {
  position: absolute;
  z-index: 2;
  left: 50%;
  bottom: 40px;
  transform: translateX(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.6);
  background: rgba(0, 0, 0, 0.2);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  animation: heroScrollCue 2.2s ease-in-out infinite;
}
.hero__scroll-cue svg { width: 20px; height: 20px; }
@keyframes heroScrollCue {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ==========================================================================
   Güven şeridi — trust strip, hero'nun hemen altında
   ========================================================================== */
.trust-strip {
  background: var(--zenowa-red);
  position: relative;
  z-index: 1;
}
.trust-strip__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.trust-strip__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
  padding: 26px 16px;
  border-left: 1px solid rgba(255, 255, 255, 0.28);
}
.trust-strip__item:first-child { border-left: none; }
.trust-strip__icon {
  width: 34px;
  height: 34px;
  color: #fff;
}
.trust-strip__icon svg { width: 100%; height: 100%; }
.trust-strip__value {
  font-family: var(--font-display);
  font-size: 2.1rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}
.trust-strip__label {
  font-size: 1rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.92);
  max-width: 20ch;
}

/* ==========================================================================
   Sections (generic)
   ========================================================================== */
.section { padding: var(--space-section) 0; }
.section--alt { background: var(--zenowa-offwhite); }
.section__head {
  max-width: 720px;
  margin: 0 auto 40px;
  text-align: center;
}
.section__head h2 { font-size: clamp(1.9rem, 3vw, 2.4rem); }
.section__head p { max-width: 60ch; margin-left: auto; margin-right: auto; }

/* Value proposition cards */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.card-grid > article {
  padding: 30px 26px;
  background: var(--zenowa-paper);
  border: var(--border-hairline);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card-grid > article:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 34px rgba(20, 20, 20, 0.12);
}
.card-grid .card-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #FDECEC;
  color: var(--zenowa-red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin-bottom: 16px;
  transition: transform 0.3s ease;
}
.card-grid > article:hover .card-icon { transform: scale(1.12) rotate(-6deg); }
.card-grid h3 {
  font-size: 1.15rem;
}
.card-grid p { margin: 0; }

/* Koyu CTA bandı — Hakkımızda sayfa sonundaki "Talebinizi İletin" çağrısı */
.service-scope__inner {
  background: var(--zenowa-ink);
  color: #fff;
  border-radius: var(--radius);
  padding: 44px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}
.service-scope__inner p { margin: 0; color: #C9CBCE; }
.service-scope__inner h2 { color: #fff; }
.service-scope__text { max-width: 640px; }
.service-scope__text p { margin-top: 6px; }

/* ==========================================================================
   Anasayfa — ürün kategorileri
   Katalogdaki sektör kapısının anasayfa vitrini: aktif gruplar fotoğraflı
   panel, yol haritasındakiler aynı boy "yakında" paneli olarak durur.
   ========================================================================== */
.home-categories__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 30px;
}
.home-categories__intro h2 {
  max-width: 22ch;
  font-size: clamp(2rem, 3.6vw, 2.75rem);
  margin-bottom: 0.3em;
}
.home-categories__intro p { margin: 4px 0 0; font-size: 1.08rem; max-width: 52ch; }
.home-categories__all { flex-shrink: 0; }

.cat-tiles {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.cat-tile {
  position: relative;
  display: flex;
  align-items: flex-end;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: var(--radius-tile);
  background: var(--zenowa-steel);
  transition: transform 0.5s cubic-bezier(0.2, 0.7, 0.2, 1), box-shadow 0.5s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.cat-tile:not(.cat-tile--soon):hover,
.cat-tile:not(.cat-tile--soon):focus-visible {
  transform: translateY(-6px);
  box-shadow: 0 22px 40px rgba(15, 17, 20, 0.18);
}
.cat-tile img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  transition: transform 0.9s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.cat-tile:hover img,
.cat-tile:focus-visible img { transform: scale(1); }
.cat-tile__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(185deg, rgba(15, 17, 20, 0) 52%, rgba(15, 17, 20, 0.78) 100%);
}
.cat-tile__body {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 22px 24px;
  min-width: 0;
}
.cat-tile__name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.3rem, 1.8vw, 1.65rem);
  letter-spacing: -0.01em;
  line-height: 1.15;
  color: #fff;
}
.cat-tile__meta {
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
}
.cat-tile__arrow {
  position: absolute;
  z-index: 1;
  top: 18px;
  right: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: #fff;
  background: rgba(15, 17, 20, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(4px);
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.35s ease, transform 0.35s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.cat-tile__arrow svg { width: 18px; height: 18px; }
.cat-tile:hover .cat-tile__arrow,
.cat-tile:focus-visible .cat-tile__arrow {
  opacity: 1;
  transform: none;
}

/* Yakında panelleri — fotoğraf yerine ince taramalı çelik doku, ad aynı
   tipografiyle durur ki raftaki yerleri şimdiden belli olsun */
.cat-tile--soon {
  cursor: default;
  background-color: var(--zenowa-steel);
  background-image:
    radial-gradient(120% 70% at 50% 0%, rgba(255, 255, 255, 0.09), transparent 62%),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0 1px, transparent 1px 13px);
}
.cat-tile--soon .cat-tile__meta { color: rgba(255, 255, 255, 0.55); }
.cat-tile__badge {
  position: absolute;
  z-index: 1;
  top: 18px;
  left: 18px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--zenowa-ink);
  background: var(--zenowa-orange);
  border-radius: 999px;
  padding: 5px 13px;
}

@media (hover: none) {
  .cat-tile__arrow { opacity: 1; transform: none; }
}
@media (max-width: 900px) {
  .cat-tiles { grid-template-columns: repeat(2, 1fr); }
  .cat-tile { aspect-ratio: 4 / 3; }
}
@media (max-width: 720px) {
  .home-categories__head {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    margin-bottom: 22px;
  }
  .cat-tiles { gap: 12px; }
  .cat-tile__body { padding: 18px 20px; }
}
@media (max-width: 560px) {
  .cat-tiles { grid-template-columns: 1fr; }
  .cat-tile { aspect-ratio: 16 / 10; }
}

/* ==========================================================================
   Ürünler — katalog dili
   Üç seviye tek sistem: derinlik rayı (nerdeyim), sektör kapısı (seviye 1),
   fihrist (seviye 2), vitrin (seviye 3).
   ========================================================================== */

/* Gezinme yolu — yalnızca tıklanabilir üst kademeler, sade ve büyük puntolu */
.catalog-crumbs {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--zenowa-gray);
  margin-bottom: 18px;
}
.catalog-crumbs a { color: var(--zenowa-gray); border-bottom: 1px solid transparent; }
.catalog-crumbs a:hover { color: var(--zenowa-red); border-bottom-color: var(--zenowa-red); }
.catalog-crumbs__sep { color: var(--zenowa-border); }

/* Sektör kapısı — beyaz zemin üzerinde hover'la genişleyen fotoğraf panelleri */
.catalog-gate__head { margin-bottom: 32px; }
.catalog-gate__head h1 {
  font-size: clamp(2rem, 4.2vw, 2.9rem);
  margin: 0;
}

.gate-panels {
  display: flex;
  gap: 14px;
  /* Alt sınır, dikey "Yakında" cilt yazısının kısa ekranlarda kırpılmasını önler */
  height: clamp(470px, 62vh, 580px);
}
.gate-panel {
  position: relative;
  flex: 1 1 0;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  border-radius: var(--radius-tile);
  background: var(--zenowa-steel);
  transition: flex 0.65s cubic-bezier(0.35, 0.9, 0.25, 1);
}
.gate-panel img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 0.9s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.gate-panel__scrim {
  /* Fotoğraf ne olursa olsun ad okunur kalsın diye yalnızca alt kenarda hafif karartı */
  position: absolute;
  inset: 0;
  background: linear-gradient(185deg, rgba(15, 17, 20, 0) 58%, rgba(15, 17, 20, 0.72) 100%);
}
.gate-panels:hover .gate-panel:not(.gate-panel--soon):hover,
.gate-panel:not(.gate-panel--soon):focus-visible { flex-grow: 1.7; }
.gate-panel:hover img,
.gate-panel:focus-visible img { transform: scale(1); }
.gate-panel__body {
  position: relative;
  z-index: 1;
  padding: 26px 30px;
  min-width: 0;
}
.gate-panel__name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.7rem, 2.6vw, 2.3rem);
  letter-spacing: -0.01em;
  line-height: 1.1;
  color: #fff;
  white-space: normal;
  display: block;
}

/* Yol haritası ciltleri — henüz açılmamış sektörler dar birer sırt olarak durur */
.gate-panel--soon {
  flex: 0 0 78px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 18px;
  padding: 26px 0;
  background: var(--zenowa-offwhite);
  border: 1px dashed var(--zenowa-border);
  cursor: default;
}
.gate-panel__soon-name,
.gate-panel__soon-tag {
  writing-mode: vertical-rl;
  white-space: nowrap;
}
.gate-panel__soon-name {
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
  color: #A7AAAF;
}
.gate-panel__soon-tag {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--zenowa-gray);
  border: 1px solid var(--zenowa-border);
  border-radius: 999px;
  padding: 10px 4px;
  background: var(--zenowa-paper);
}

/* Katalog sayfa başlığı — sola yaslı, altında ince çizgi */
.catalog-head { margin-bottom: 36px; }
.catalog-head__row {
  border-bottom: var(--border-hairline);
  padding-bottom: 16px;
}
.catalog-head__row h1 {
  font-size: clamp(1.9rem, 3.6vw, 2.6rem);
  margin: 0;
}
/* Fihrist kartları — ürün ailesi kutuları */
.index-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 18px;
}
.index-card {
  display: flex;
  flex-direction: column;
  background: var(--zenowa-paper);
  border: var(--border-hairline);
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.45s cubic-bezier(0.2, 0.7, 0.2, 1), box-shadow 0.45s cubic-bezier(0.2, 0.7, 0.2, 1), border-color 0.3s ease;
}
.index-card:hover, .index-card:focus-visible {
  transform: translateY(-6px);
  border-color: var(--zenowa-ink);
  box-shadow: 0 22px 40px rgba(15, 17, 20, 0.14);
}
.index-card__media {
  /* Ürün fotoğrafları farklı kaynak/kalitede geldiği için hepsi aynı
     "vitrin"de gösterilir: offwhite zemin + contain, kırpma yok. */
  aspect-ratio: 4 / 3;
  background: var(--zenowa-offwhite);
  overflow: hidden;
}
.index-card__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 22px;
  transition: transform 0.7s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.index-card:hover .index-card__media img { transform: scale(1.06); }
.index-card__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  margin-top: auto;
  border-top: var(--border-hairline);
}
.index-card__name {
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: -0.005em;
  line-height: 1.3;
  color: var(--zenowa-ink);
}
.index-card__arrow {
  flex-shrink: 0;
  color: var(--zenowa-border);
  transition: transform 0.35s cubic-bezier(0.2, 0.7, 0.2, 1), color 0.3s ease;
}
.index-card:hover .index-card__arrow { transform: translateX(5px); color: var(--zenowa-red); }

/* ==========================================================================
   Ürünler — vitrin ızgarası
   ========================================================================== */
.product-browse__header { margin-bottom: 28px; }
.product-browse__header h1 { color: var(--zenowa-red); margin: 0; }

.showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
/* Kartlar tıklanmaz — ürünler uzaktan bakılan bir vitrin gibi sergilenir,
   bu yüzden link hissi veren kalkma/gölge efektleri yok */
.showcase-card {
  display: flex;
  flex-direction: column;
  color: inherit;
  background: var(--zenowa-paper);
  border: var(--border-hairline);
  border-radius: 12px;
  overflow: hidden;
}
.showcase-card__media {
  aspect-ratio: 4 / 3;
  background: var(--zenowa-offwhite);
  overflow: hidden;
}
.showcase-card__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 20px;
  transition: transform 0.7s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.showcase-card:hover .showcase-card__media img { transform: scale(1.04); }
.showcase-card__body {
  display: flex;
  flex-direction: column;
  gap: 7px;
  padding: 15px 16px 17px;
  border-top: var(--border-hairline);
}
.showcase-card__title {
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: -0.005em;
  line-height: 1.3;
  color: var(--zenowa-ink);
}
.showcase-card__spec {
  font-size: 0.92rem;
  color: var(--zenowa-gray);
  line-height: 1.55;
}

.product-browse__seo { margin-top: 48px; color: var(--zenowa-gray); max-width: 72ch; }
.product-browse__seo p { margin: 0 0 14px; }

@media (max-width: 900px) {
  .showcase-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .showcase-grid { grid-template-columns: 1fr; }
}

/* Dokunmatikte hover olmadığından paneller hep "açık" hâlde durur */
@media (hover: none) {
  .gate-panel img { filter: saturate(1) brightness(0.8); transform: none; }
  .gate-panel__cta { opacity: 1; transform: none; }
}
@media (max-width: 860px) {
  .catalog-gate { padding: 34px 0 56px; }
  .catalog-gate__head { margin-bottom: 26px; }
  .gate-panels { flex-direction: column; gap: 12px; height: auto; }
  .gate-panel:not(.gate-panel--soon) { min-height: 280px; }
  .gate-panel img { filter: saturate(1) brightness(0.8); transform: none; }
  .gate-panel__cta { opacity: 1; transform: none; }
  /* Kapalı sektör ciltleri mobilde yatay birer satıra döner */
  .gate-panel--soon {
    flex-basis: auto;
    flex-direction: row;
    justify-content: space-between;
    gap: 12px;
    padding: 16px 20px;
  }
  .gate-panel__soon-name, .gate-panel__soon-tag { writing-mode: horizontal-tb; }
  .gate-panel__soon-name { white-space: normal; font-size: 1rem; }
  .gate-panel__soon-tag { padding: 3px 12px; flex-shrink: 0; }
  .index-grid { gap: 12px; }
  .showcase-grid { gap: 12px; }
  .family-rail { margin-top: 40px; }
}
@media (max-width: 560px) {
  .index-grid { grid-template-columns: 1fr 1fr; }
  .index-card__media img { padding: 14px; }
  .index-card__top { padding: 10px 12px; }
  .index-card__foot { padding: 12px; }
  .index-card__name { font-size: 0.9rem; }
  .catalog-head__row { flex-direction: column; align-items: flex-start; gap: 4px; }
  .family-rail__list {
    flex-wrap: nowrap;
    overflow-x: auto;
    margin: 0 -24px;
    padding: 0 24px 8px;
    scrollbar-width: none;
  }
  .family-rail__list::-webkit-scrollbar { display: none; }
  .family-chip { flex-shrink: 0; }
}

.products-empty {
  border: var(--border-hairline);
  border-radius: var(--radius);
  padding: 48px 28px;
  text-align: center;
  color: var(--zenowa-gray);
}
.products-empty--dark {
  border-color: rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.65);
}

/* ==========================================================================
   İletişim
   ========================================================================== */
.contact-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
}
.contact-layout__intro {
  padding: 36px;
  background: var(--zenowa-offwhite);
  border-radius: var(--radius);
}
.contact-layout__form {
  padding: 36px;
  border: var(--border-hairline);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  /* Çapa ile gelindiğinde sticky header'ın altında kalmasın */
  scroll-margin-top: 84px;
}

.zenowa-form p { margin: 0 0 18px; max-width: none; }
.zenowa-form label {
  display: block;
  font-size: 1rem;
  font-weight: 600;
  color: var(--zenowa-ink);
  margin-bottom: 6px;
}
.zenowa-form input,
.zenowa-form textarea {
  width: 100%;
  border: 1px solid var(--zenowa-border);
  border-radius: var(--radius);
  background: #fff;
  padding: 11px 13px;
  font-family: var(--font-body);
  color: var(--zenowa-ink);
}
.zenowa-form input:focus,
.zenowa-form textarea:focus {
  border-color: var(--zenowa-red);
  outline: none;
}
.zenowa-form textarea { min-height: 110px; resize: vertical; }
.zenowa-form .errorlist {
  color: var(--zenowa-red);
  font-size: 0.95rem;
  margin: 6px 0 0;
}

/* Honeypot alanı — ekran dışına taşınır; display:none kullanılmaz ki
   basit botlar alanı "görünür" sanıp doldurmaya devam etsin. */
.zenowa-form__hp {
  position: absolute !important;
  left: -9999px !important;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.whatsapp-quick {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 8px;
  background: var(--whatsapp-green);
  color: #fff;
  border-radius: var(--radius);
  padding: 13px 22px;
  font-weight: 600;
}
.whatsapp-quick:hover { background: var(--whatsapp-green-dark); }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  background: var(--zenowa-steel);
  color: #fff;
  padding: var(--space-section) 0 28px;
}
.site-footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 32px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.site-footer__brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.site-footer__logo { height: 32px; width: auto; }
.site-footer__tagline {
  color: #AEB1B6;
  font-size: 1.05rem;
  margin-top: 12px;
  max-width: 42ch;
}
.footer-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  background: var(--whatsapp-green);
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  padding: 10px 16px;
  border-radius: var(--radius);
}
.footer-whatsapp:hover { background: var(--whatsapp-green-dark); }
.footer-whatsapp svg { width: 16px; height: 16px; fill: #fff; }
.footer-col h4 {
  color: #fff;
  font-size: 1.1rem;
  margin-bottom: 16px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 11px; }
.footer-col ul a { color: #AEB1B6; font-size: 1.05rem; }
.footer-col ul a:hover { color: #fff; }
.footer-contact dt {
  font-size: 0.85rem;
  color: #8E9096;
  margin-bottom: 2px;
}
.footer-contact dd {
  margin: 0 0 16px;
  font-weight: 700;
  font-size: 1.25rem;
}
.footer-contact dd a:hover { color: var(--zenowa-orange); }
.site-footer__bottom {
  padding-top: 20px;
  /* Sağ alttaki sabit WhatsApp balonu footer içeriğinin üzerine binmesin */
  padding-right: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.site-footer__bottom p {
  font-size: 0.92rem;
  color: #75777D;
  margin: 0;
}
.lang-switch--footer button[aria-current="true"] { border-color: #fff; }
/* Footer'daki bayraklar mobilde de rahat dokunulabilir kalsın */
.lang-switch--footer { gap: 10px; }
.lang-switch--footer button { width: 32px; height: 32px; }

/* ==========================================================================
   WhatsApp fixed widget — round, per explicit request
   ========================================================================== */
.whatsapp-widget {
  position: fixed;
  right: 20px;
  bottom: 20px;
  bottom: calc(20px + env(safe-area-inset-bottom, 0px));
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--whatsapp-green);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 200;
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
  transition: opacity 0.2s ease, background-color 0.15s ease;
}
.whatsapp-widget:hover { background: var(--whatsapp-green-dark); }
.whatsapp-widget svg { width: 30px; height: 30px; fill: #fff; }

/* Mobil menü açıkken yüzen ögeler menünün üstünde kalmasın */
body.nav-locked .whatsapp-widget,
body.nav-locked .scroll-progress {
  opacity: 0;
  pointer-events: none;
}

/* ==========================================================================
   Page banner — secondary pages (About, etc.)
   ========================================================================== */
.page-banner {
  background: var(--zenowa-ink);
  color: #fff;
  padding: 56px 0;
  position: relative;
  overflow: hidden;
}
.page-banner .eyebrow { color: var(--zenowa-orange); }
.page-banner h1 { color: #fff; margin-bottom: 10px; }
.page-banner p { color: #C9CBCE; max-width: 60ch; margin: 0; }

.split-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.split-block__figure {
  background: var(--zenowa-offwhite);
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 320px;
  position: relative;
}
.split-block__figure img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.split-block h2 { margin-bottom: 14px; }
.split-block--stretch { align-items: stretch; }
.split-block--stretch .photo-slot { min-height: 0; height: 100%; }

.step-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.step-list > li {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.step-list__num {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--zenowa-red);
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
.step-list h3 { font-size: 1.15rem; margin: 0; }
.step-list p { margin: 0; font-size: 1.05rem; }
.step-list--stacked {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 26px;
}

/* About teaser highlights — compact icon list used in the homepage
   Hakkımızda block, right under the hero */
.about-highlights {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin: 28px 0 32px;
}
.about-highlights__item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.about-highlights__icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #FDECEC;
  color: var(--zenowa-red);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.35s cubic-bezier(0.2, 0.7, 0.2, 1), background-color 0.35s ease, color 0.35s ease;
}
.about-highlights__icon svg { width: 22px; height: 22px; }
.about-highlights__item:hover .about-highlights__icon {
  transform: scale(1.14) rotate(-8deg);
  background: var(--zenowa-red);
  color: #fff;
}
.about-highlights h3 { font-size: 1.05rem; margin: 0 0 4px; }
.about-highlights p { margin: 0; font-size: 0.98rem; }

@keyframes aboutIconPop {
  0% { transform: scale(0.5); }
  65% { transform: scale(1.15); }
  100% { transform: scale(1); }
}
.reveal-stagger.is-visible .about-highlights__icon {
  animation: aboutIconPop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}
.about-highlights__item:nth-child(1) .about-highlights__icon { animation-delay: 0.15s; }
.about-highlights__item:nth-child(2) .about-highlights__icon { animation-delay: 0.3s; }
.about-highlights__item:nth-child(3) .about-highlights__icon { animation-delay: 0.45s; }

/* Photo slots — reserved, honest placeholders for real photography */
.photo-slot {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 360px;
  background: var(--zenowa-offwhite);
  border: 1px dashed var(--zenowa-border);
  border-radius: var(--radius);
  color: var(--zenowa-steel);
  text-align: center;
  padding: 24px;
  position: relative;
  overflow: hidden;
}
.photo-slot--filled { border-style: solid; border-color: transparent; padding: 0; }
.photo-slot--tall { min-height: 560px; }
.photo-slot--filled img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.photo-slot svg { width: 48px; height: 48px; opacity: 0.32; }
.photo-slot__label {
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  opacity: 0.6;
}
.photo-slot__hint {
  font-size: 0.85rem;
  font-style: italic;
  line-height: 1.5;
  opacity: 0.55;
  max-width: 320px;
  margin: 0;
}
.photo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 900px) {
  .card-grid, .step-list, .photo-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-strip__list { grid-template-columns: repeat(2, 1fr); }
  .trust-strip__item:nth-child(3) { border-left: none; }
  .contact-layout { grid-template-columns: 1fr; }
  .site-footer__grid { grid-template-columns: 1fr 1fr; }
  .site-footer__grid .footer-col--brand { grid-column: 1 / -1; }
  .split-block { grid-template-columns: 1fr; }
  .split-block__figure { order: -1; padding: 32px; min-height: 260px; }
  .reveal-left, .reveal-right { transform: translateY(36px); }
}

/* Header collapses to a hamburger + full-screen overlay earlier than the
   rest of the mobile layout — at 768px (tablet portrait) the full inline
   nav + flags + CTA no longer fit the bar and would otherwise overflow. */
@media (max-width: 860px) {
  .site-header__bar { display: flex; padding: 10px 16px; gap: 12px; }
  .site-header__logo, .nav-toggle, .site-header__right { position: relative; z-index: 2; }
  .site-header__logo { order: 1; }
  .site-header__right { order: 2; }
  .nav-toggle { order: 3; }
  .site-header__cta { display: none; }
  .site-header__nav {
    position: fixed;
    justify-self: auto;
    z-index: 1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--zenowa-paper);
    border-bottom: var(--border-hairline);
    flex-direction: column;
    justify-content: center;
    gap: 4px;
    margin: 0;
    padding: 8px 28px;
    transform: translateX(100%);
    transition: transform 0.28s cubic-bezier(0.2, 0.7, 0.2, 1);
    pointer-events: none;
  }
  .site-header__nav.is-open { transform: translateX(0); pointer-events: auto; }
  .site-header__nav a {
    padding: 16px 0;
    border-bottom: var(--border-hairline);
    width: 100%;
    font-size: 1.25rem;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
  }
  .site-header__nav.is-open a { opacity: 1; transform: none; }
  /* Mobil listede satır ayracı var; kayan alt çizgi masaüstüne özel kalsın */
  .site-header__nav a::after { display: none; }
  .site-header__nav.is-open a:nth-child(1) { transition-delay: 0.08s; }
  .site-header__nav.is-open a:nth-child(2) { transition-delay: 0.14s; }
  .site-header__nav.is-open a:nth-child(3) { transition-delay: 0.2s; }
  .site-header__nav.is-open a:nth-child(4) { transition-delay: 0.26s; }
  .site-header__nav.is-open a:nth-child(5) { transition-delay: 0.32s; }
  .site-header__nav-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 12px;
    background: var(--zenowa-red);
    color: #fff;
    font-weight: 600;
    border-radius: var(--radius);
    border-bottom: none;
  }
  .site-header__nav-cta:hover { background: var(--zenowa-red-dark); color: #fff; }
  .site-header__right { gap: 8px; margin-left: auto; }
  .nav-toggle { display: block; z-index: 101; position: relative; }
  .nav-toggle span, .nav-toggle span::before, .nav-toggle span::after { transition: transform 0.2s ease, opacity 0.2s ease; }
  .nav-toggle[aria-expanded="true"] span { background: transparent; }
  .nav-toggle[aria-expanded="true"] span::before { top: 0; transform: rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span::after { top: 0; transform: rotate(-45deg); }
  body.nav-locked { overflow: hidden; }
}

@media (max-width: 720px) {
  :root { --space-section-mobile: 40px; }
  .section { padding: var(--space-section-mobile) 0; }
  .hero { min-height: calc(100svh - 55px); }
  .hero__content { padding-top: 96px; padding-bottom: 92px; }
  .hero__sub { font-size: 1.02rem; margin-bottom: 26px; }
  .hero__scroll-cue { bottom: 20px; width: 38px; height: 38px; }
  .whatsapp-widget {
    right: 14px;
    bottom: 14px;
    bottom: calc(14px + env(safe-area-inset-bottom, 0px));
    width: 52px;
    height: 52px;
  }
  .site-header__logo svg { height: 34px; }
  .site-header__cta { padding: 8px 12px; font-size: 0.82rem; }
  .site-header .lang-switch button { width: 25px; height: 25px; }
  .card-grid, .step-list, .photo-grid { grid-template-columns: 1fr; }
  .trust-strip__list { grid-template-columns: 1fr; }
  .trust-strip__item { border-left: none !important; border-top: 1px solid rgba(255, 255, 255, 0.28); padding: 18px 16px; }
  .trust-strip__item:first-child { border-top: none; }
  .split-block--stretch { align-items: flex-start; }
  .split-block__figure { min-height: 200px; padding: 20px; }
  .split-block--stretch .photo-slot { height: 240px; min-height: 240px; padding: 20px; }
  .photo-slot--filled img { object-position: top; }
  .service-scope__inner { padding: 28px 22px; }
  .contact-layout__intro, .contact-layout__form { padding: 26px 22px; }
  .step-list__num { width: 34px; height: 34px; }
  .reveal-left, .reveal-right { transform: translateY(30px); }
  .site-footer__grid { grid-template-columns: 1fr; }
  .site-footer__grid .footer-col--brand { grid-column: auto; }
  .site-footer__bottom { flex-direction: column; align-items: flex-start; padding-right: 0; }
  /* Sabit WhatsApp balonu footer içeriğini örtmesin */
  .site-footer {
    padding-bottom: calc(80px + env(safe-area-inset-bottom, 0px));
  }
}

@media (max-width: 400px) {
  .site-header__cta { display: none; }
  .site-header__logo svg { height: 30px; }
  .hero__title { font-size: 2.15rem; }
  .trust-strip__value { font-size: 1.7rem; }
  .gate-panel__body { padding: 20px; }
  .section__head h2, .page-banner h1 { font-size: 1.6rem; }
}
