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

:root {
  --gap: 1px;
  --bg: #0c0c0c;
  --surface: #161616;
  --accent: #c8ff00;
  --text: #f0ede6;
  --muted: rgba(240, 237, 230, 0.45);
  --trans: 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  /* nav (logo/menü) ile alttaki içerik bloklarının (h1, proje grid'i) sağdan
     soldan tam hizalı kalması için ortak kenar boşluğu — tek yerden değişir */
  --edge-pad: clamp(1rem, 3vw, 2.5rem);
}

/* Yatay scroll kesinlikle yok */
html,
body {
  overflow-x: hidden;
  max-width: 100%;
  background: var(--bg);
}

/* ── Tipografi ─────────────────── */
.tag {
  display: block;
  font-family: 'Wix Madefor Display', sans-serif;
  font-size: clamp(10px, 1.1vw, 12px);
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: .5rem;
}

h1,
h2 {
  font-family: 'Wix Madefor Display', sans-serif;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -.03em;
  font-size: clamp(1rem, 2.8vw, 2rem);
  color: var(--text);
}

p{
  color: var(--text);
}

p.sub {
  font-family: 'Wix Madefor Display', sans-serif;
  font-size: clamp(12px, 1.3vw, 14px);
  color: var(--muted);
  line-height: 1.6;
  margin-top: .5rem;
  font-weight: 400;
}

.arrow {
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  color: var(--accent);
  transition: transform var(--trans);
  display: inline-block;
  line-height: 1;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Wix Madefor Display', sans-serif;
  font-size: 12px;
  font-weight: 400;
  padding: 6px 12px 6px 0px;
  border-radius: 100px;
  background: rgba(0, 0, 0, 0.12);
  color: var(--text);
  width: fit-content;
}

.badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

/* ── Navigation ─────────────────── */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  height: 120px;
  display: flex;
  align-items: center;
  padding-left: var(--edge-pad);
  mix-blend-mode: difference;
  pointer-events: auto;
}

.nav-logo img {
  height: 54px;
  width: auto;
  display: block;
}

.site-nav-menu {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 100;
  height: 120px;
  display: flex;
  align-items: center;
  padding-right: var(--edge-pad);
  pointer-events: auto;
}

/* Hamburger + CTA aynı siyah pil içinde otururlar */
.nav-menu-pill {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--bg);
  padding: 6px 6px 6px 12px;
  border-radius: 6px;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  height: 44px;
  padding: 0 1.5rem;
  border-radius: 4px;
  background: var(--accent);
  color: #0c0c0c;
  font-family: 'Wix Madefor Display', sans-serif;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  white-space: nowrap;
  transition: opacity var(--trans);
}

.nav-cta:hover {
  opacity: .82;
}

.nav-burger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: transparent;
  border: none;
  border-radius: 9px;
  cursor: pointer;
  padding: 0;
  pointer-events: auto;
  transition: background var(--trans);
}

.nav-burger:hover {
  background: rgba(255, 255, 255, .08);
}

.nav-burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  transition: transform var(--trans), opacity var(--trans);
  transform-origin: center;
}

.nav-burger.open span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.nav-burger.open span:nth-child(2) {
  opacity: 0;
}

.nav-burger.open span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* ── Mobile fullscreen menu ─────── */
@keyframes menuBgIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes menuItemIn {
  from {
    opacity: 0;
    transform: translateX(56px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 99;
  background: var(--bg);
  flex-direction: column;
  justify-content: center;
  padding: clamp(2rem, 10vh, 80px) clamp(1.5rem, 6vw, 3rem);
  overflow-x: hidden;
  overflow-y: auto;
}

.mobile-menu.open {
  display: flex;
  animation: menuBgIn 0.3s ease both;
}

.mobile-menu.open li {
  animation: menuItemIn 0.6s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.mobile-menu.open li:nth-child(1) { animation-delay: 0.06s; }
.mobile-menu.open li:nth-child(2) { animation-delay: 0.13s; }
.mobile-menu.open li:nth-child(3) { animation-delay: 0.20s; }
.mobile-menu.open li:nth-child(4) { animation-delay: 0.27s; }
.mobile-menu.open li:nth-child(5) { animation-delay: 0.34s; }
.mobile-menu.open li:nth-child(6) { animation-delay: 0.41s; }

/* Masaüstünde tam ekran menü ortada dursun — mobildeki sol hizalı hali değişmiyor */
@media (min-width: 576px) {
  .mobile-menu {
    align-items: center;
  }

  .mobile-menu ul a,
  .mobile-menu-footer {
    text-align: center;
  }
}

.mobile-menu ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: clamp(0.5rem, min(2.5vh, 4vw), 2.15rem);
  padding-left:0px;
}

.mobile-menu ul a {
  font-family: 'Wix Madefor Display', sans-serif;
  font-size: clamp(1.5rem, min(7.5vw, 8vh), 3.5rem);
  font-weight: 600;
  letter-spacing: -.04em;
  color: var(--text);
  text-decoration: none;
  display: block;
  line-height: 1.1;
  transition: color var(--trans);
  white-space: nowrap;
}

.mobile-menu ul a:hover,
.mobile-menu ul a.active {
  color: var(--accent);
}

.mobile-menu-footer {
  margin-top: clamp(2.5rem, 6vh, 4rem);
}

.mobile-menu-footer p {
  font-family: 'Wix Madefor Display', sans-serif;
  font-size: 13px;
  color: var(--muted);
  margin-bottom: .4rem;
}

.mobile-menu-footer a {
  font-family: 'Wix Madefor Display', sans-serif;
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  color: var(--text);
  text-decoration: none;
  transition: color var(--trans);
}

.mobile-menu-footer a:hover {
  color: var(--accent);
}

body.menu-open {
  overflow: hidden;
}

@media (max-width: 575px) {
  /* Mobilde sadece burger görünür, "Teklif Al" pili masaüstüne özel */
  .nav-cta {
    display: none;
  }

  /* CTA yokken sol dolgu, hamburgerle CTA arasındaki boşluğa göre
     ayarlanmıştı — tek başına kalan hamburger'ın solunda gereksiz
     boşluk bırakmaması için sağ dolguyla eşitleniyor */
  .nav-menu-pill {
    padding: 5px;
    border-radius: 5px;
  }

  /* Hamburger mobilde masaüstüne göre ~%15 küçük — sadece burada, masaüstü değişmiyor */
  .nav-burger {
    width: 37px;
    height: 37px;
    border-radius: 8px;
    gap: 4px;
  }

  .nav-burger span {
    width: 20px;
  }

  .nav-burger.open span:nth-child(1) {
    transform: translateY(5.5px) rotate(45deg);
  }

  .nav-burger.open span:nth-child(3) {
    transform: translateY(-5.5px) rotate(-45deg);
  }
}

/* ── Hakkımızda — istatistik satırı (blog-detay formatındaki dar sütunda) ── */
.hakk-istatistik {
  display: flex;
  justify-content: center;
  gap: clamp(2rem, 6vw, 4rem);
  /* Son içerik bloğu — alt boşluğu .blog-detay padding-bottom'ı sağlıyor,
     kendi margin'i CTA butonuyla arayı gereksiz açıyordu */
  margin: 0;
  text-align: center;
}

.hakk-istatistik-item h2 {
  color: var(--accent);
  font-size: clamp(2rem, 4vw, 3rem);
  margin: 0;
}

.hakk-istatistik-item p.sub {
  margin-top: .15rem;
  font-size: clamp(14px, 1.6vw, 16px);
  color: rgba(240, 237, 230, .7);
}

@media (max-width: 575px) {
  .hakk-istatistik {
    gap: 2.25rem;
  }

  .hakk-istatistik-item h2 {
    font-size: 2.25rem;
  }
}

/* ── Otomatik slayt (aynı kartta birden çok görsel, fade ile geçiş) ── */
.bento-slideshow img {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease, transform var(--trans);
}

.bento-slideshow img.active {
  opacity: 1;
}

/* ── Infinite scroll loader ── */
#sentinel { height: 1px; }

#loader {
  display: none;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 3rem 0;
}
#loader.visible { display: flex; }

#loader span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--accent);
  animation: loaderPulse 1.2s ease-in-out infinite;
}
#loader span:nth-child(2) { animation-delay: .2s; }
#loader span:nth-child(3) { animation-delay: .4s; }

@keyframes loaderPulse {
  0%, 80%, 100% { transform: scale(.5); opacity: .3; }
  40%           { transform: scale(1);  opacity: 1;  }
}

/* ══════════════════════════════════
   Proje Detay Sayfası
   ══════════════════════════════════ */

.proje-detay {
  background: var(--bg);
}

/* ── Hero ──────────────────────── */
.pd-hero {
  position: relative;
  height: 100vh;
  min-height: 560px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.pd-hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pd-breadcrumb {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: .5rem;
  padding: clamp(6rem, 14vh, 8.5rem) clamp(1.25rem, 4vw, 3rem) 0;
  font-family: 'Wix Madefor Display', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .45);
}

.pd-breadcrumb a {
  color: inherit;
  text-decoration: none;
  transition: color var(--trans);
}

.pd-breadcrumb a:hover {
  color: var(--accent);
}

.pd-breadcrumb span[aria-current] {
  color: var(--text);
}

.pd-intro-header {
  margin-bottom: 2rem;
}

.pd-title {
  font-family: 'Wix Madefor Display', sans-serif;
  font-weight: 600;
  font-size: clamp(2.4rem, 5vw, 4.5rem);
  line-height: 1.1;
  letter-spacing: -.02em;
  color: var(--text);
  margin: .6rem 0 1.4rem;
}

.pd-hizmet-list {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
}

.pd-scroll-cue {
  position: absolute;
  right: clamp(1.25rem, 4vw, 3rem);
  bottom: clamp(1.5rem, 5vh, 2.5rem);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .6rem;
  font-family: 'Wix Madefor Display', sans-serif;
  font-size: 10px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .5);
}

.pd-scroll-cue i {
  width: 1px;
  height: 32px;
  background: rgba(255, 255, 255, .25);
  position: relative;
  overflow: hidden;
  display: block;
}

.pd-scroll-cue i::after {
  content: '';
  position: absolute;
  left: 0;
  top: -100%;
  width: 100%;
  height: 100%;
  background: var(--accent);
  animation: pdCue 1.8s ease-in-out infinite;
}

@keyframes pdCue {
  0%   { top: -100%; }
  60%  { top: 100%; }
  100% { top: 100%; }
}

@media (max-width: 575px) {
  .pd-scroll-cue { display: none; }
}

/* ── Intro / açıklama + alıntı (iç yapı bootstrap row/col) ─── */
.pd-intro {
  max-width: 1400px;
  margin: 0 auto;
  padding: clamp(4rem, 9vw, 7rem) clamp(1.25rem, 4vw, 3rem);
}

/* İşler sayfası — son proje ile SEO metni arasındaki boşluk, h1 metni ile proje
   kutuları arasındaki boşlukla (.page-hero-intro alt padding'i + .anasayfa-grid
   üst padding'i) birebir aynı olsun diye #proje-grid'in kendi alt padding'i
   sıfırlanıp bu üst padding aynı iki clamp'in toplamına eşitleniyor. */
#proje-grid {
  padding-bottom: 0;
}

.pd-intro--matched-gap {
  padding-top: calc(clamp(2.5rem, 5vw, 4rem) + clamp(2rem, 4vw, 3rem));
}

@media (max-width: 575px) {
  /* nav-inner'ın kenar boşluğuyla (16px) hizalanması için — container-fluid'in
     kendi gutter'ı (row negatif margin + col padding) fazladan boşluk ekliyordu */
  .pd-intro {
    padding-left: clamp(1rem, 3vw, 2.5rem);
    padding-right: clamp(1rem, 3vw, 2.5rem);
  }

  .pd-intro .container-fluid {
    padding-left: 0;
    padding-right: 0;
  }
}

.pd-quote p, .pd-quote cite {
  font-family: 'Wix Madefor Display', sans-serif;
  font-weight: 400;
  font-size: clamp(1rem, 1.2vw, 1.2rem);
  line-height: 1.6;
  color: var(--text);
  font-style:normal;
}

/* blog detay sayfasındaki gövde metniyle (.blog-body p) aynı format */
.pd-intro-lead {
  font-family: 'Wix Madefor Display', sans-serif;
  font-size: clamp(1rem, 1.3vw, 1.125rem);
  line-height: 1.85;
  color: rgba(240, 237, 230, .78);
}




.pd-quote footer {
  display: flex;
  align-items: center;
  gap: .75rem;
}

.pd-quote footer img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}


.pd-quote footer span {
  font-family: 'Wix Madefor Display', sans-serif;
  font-size: 14px;
  color: var(--muted);
  display: block;
}

/* ── Tek görsel/video galeri — ana sayfadaki 1900px container ile aynı genişlik ── */
.pd-galeri-single {
  max-width: 1900px;
  margin: 0 auto 8rem;
  padding: 0 var(--edge-pad);
}

.pd-galeri-single img,
.pd-galeri-single video {
  display: block;
  width: 100%;
  height: auto;
}

/* ── Yatay kaydırmalı galeri ────── */
.pd-galeri {
  position: relative;
  height: calc(var(--pd-n, 1) * 100vh);
}

.pd-galeri-sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  background: var(--bg);
}

/* body'de overflow-x:hidden olduğu için position:sticky kırılıyor —
   bunun yerine JS ile fixed/absolute arasında geçiş yapılıyor (pin tekniği). */
.pd-galeri-sticky.pd-pin-start {
  position: absolute;
  top: 0;
}

.pd-galeri-sticky.pd-pin-end {
  position: absolute;
  top: auto;
  bottom: 0;
}

.pd-galeri-track {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 3vw, 3rem);
  gap:0px;
  /* padding: 0 clamp(1.5rem, 5vw, 6rem); */
  will-change: transform;
}

.pd-galeri-item {
  flex: 0 0 auto;
  height: 100vh;
  /* margin-top: 132px; */
  margin-bottom: 0;
  /* height: 100vh; */
}

.pd-galeri-item img,
.pd-galeri-item video {
  height: 100%;
  width: auto;
  /* max-width: 82vw; */
  /* max-width: 100vw; */
  object-fit: contain;
  border-radius: 0px;
  /* box-shadow: 0 30px 80px -20px rgba(0, 0, 0, .6); */
  display: block;
}

@media (max-width: 991px) {
  .pd-galeri {
    height: auto;
  }

  .pd-galeri-sticky,
  .pd-galeri-sticky.pd-pin-start,
  .pd-galeri-sticky.pd-pin-end {
    position: static;
    height: auto;
    overflow: visible;
    display: block;
  }

  .pd-galeri-track {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0;
    transform: none !important;
  }

  .pd-galeri-item {
    height: auto;
    margin-top: 0;
  }

  .pd-galeri-item img,
  .pd-galeri-item video {
    width: 100%;
    height: auto;
    max-width: 100%;
    max-height: none;
    border-radius: 0;
    box-shadow: none;
  }
}

/* ── Önceki / Sonraki proje ─────── */
.pd-nav-projeler {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gap);
}

.pd-nav-link {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1rem, 3vw, 2rem);
  text-align: center;
  padding: clamp(3.5rem, 9vw, 6rem) 1.5rem;
  text-decoration: none;
  background: var(--surface);
  overflow: hidden;
}

.pd-nav-link > div {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
}

.pd-nav-title {
  font-family: 'Wix Madefor Display', sans-serif;
  font-weight: 600;
  font-size: clamp(1rem, 2.8vw, 2rem);
  color: var(--text);
  transition: color var(--trans);
}

.pd-nav-link:hover .pd-nav-title {
  color: var(--accent);
}

.pd-nav-link .arrow {
  transition: transform var(--trans);
}

.pd-nav-link:hover .arrow {
  transform: translate(4px, -4px);
}

.pd-nav-prev .arrow {
  transform: scaleX(-1);
}

.pd-nav-prev:hover .arrow {
  transform: scaleX(-1) translate(4px, -4px);
}

@media (max-width: 575px) {
  .pd-nav-link {
    gap: .5rem;
    padding: 2rem .75rem;
  }

  .pd-nav-title {
    font-size: clamp(1rem, 5.5vw, 1.4rem);
  }

  .pd-nav-link .arrow {
    font-size: 1.1rem;
  }
}

/* ── Footer ─────────────────────── */
.site-footer {
  background: var(--surface);
  color: var(--text);
}

.footer-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: clamp(2rem, 4vw, 2.5rem) clamp(1.25rem, 4vw, 3rem);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: clamp(2rem, 6vw, 4rem);
}

@media (max-width: 575px) {
  /* nav-inner'ın kenar boşluğuyla (16px) hizalanması için */
  .footer-inner {
    padding-left: clamp(1rem, 3vw, 2.5rem);
    padding-right: clamp(1rem, 3vw, 2.5rem);
  }
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(1rem, 2.5vw, 2rem);
}

.footer-links a {
  font-family: 'Wix Madefor Display', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  transition: color var(--trans);
}

.footer-links a:hover,
.footer-links a.active {
  color: var(--text);
}

.footer-social {
  display: flex;
  gap: .75rem;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  color: var(--muted);
  transition: color var(--trans), background var(--trans);
}

.footer-social a:hover {
  color: var(--bg);
  background: var(--accent);
}

.footer-artrek {
  font-family: 'Wix Madefor Display', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  transition: color var(--trans);
}

.footer-artrek:hover {
  color: var(--accent);
}

@media (max-width: 575px) {
  .footer-inner {
    flex-direction: column;
    gap: 1.5rem;
  }

  .footer-links {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    width: 100%;
  }

  .footer-links a {
    width: 100%;
    text-align: center;
    padding: .9rem 0;
  }

  .footer-links a:not(:first-child) {
    border-top: 1px solid rgba(240, 237, 230, .1);
  }
}
/* ── Referanslar / logo duvarı ──── */
.logo-wall {
  background: var(--surface);
  padding: clamp(3rem, 6vw, 5rem) 0;
}

.logo-wall-head {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 3rem) clamp(1.75rem, 4vw, 2.5rem);
}

.logo-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
  gap: 1px;
  background: var(--bg);
}

.logo-grid-item {
  background: var(--bg);
  aspect-ratio: 3 / 2;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(1rem, 3vw, 1.75rem);
}

.logo-grid-item img {
  max-width: 100%;
  max-height: 100%;
}

@media (max-width: 575px) {
  .logo-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Markalar sayfası — yeni sayfa formatıyla aynı genişlik (1900px + --edge-pad).
   Masaüstü 5, tablet 4, mobil 2 sütun. */
.markalar-logo-grid {
  max-width: 1900px;
  padding: clamp(2rem, 4vw, 3rem) var(--edge-pad) clamp(4rem, 8vw, 6rem);
  grid-template-columns: repeat(5, 1fr);
  /* Kutular birbirine bitişik değil, aralarında sayfa zemini görünen ayrı
     kutular gibi dursun */
  gap: 24px;
}

/* Logolar orijinal renkleriyle gösteriliyor — çoğu açık zemin için tasarlandığından
   koyu sayfa zemininde okunaklı olsun diye kutunun altına açık gri zemin ve
   köşeleri yuvarlatılmış, ayrık bir kutu görünümü ekleniyor. İç padding, logo
   ~%15 daha büyük görünsün diye .logo-grid-item'ın varsayılanından azaltıldı. */
.markalar-logo-grid .logo-grid-item {
  background: #e9e9e9;
  border-radius: 10px;
  aspect-ratio: 1 / 1;
  padding: clamp(0.72rem, 2.2vw, 1.28rem);
}

@media (min-width: 576px) and (max-width: 991px) {
  .markalar-logo-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 575px) {
  .markalar-logo-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Logolar mobilde çok küçük kalıyordu — iç padding azaltılınca
     görsel alan (dolayısıyla logo boyutu) belirgin şekilde büyüyor. */
  .markalar-logo-grid .logo-grid-item {
    padding: 0.43rem;
  }
}

/* ── Blog yazı detay sayfası ────── */
.blog-detay {
  background: var(--bg);
  /* Üst boşluk, İşler sayfasındaki .page-hero-intro ile aynı (header ↔ içerik) */
  padding: clamp(9.2rem, 17.25vh, 10.35rem) 0 clamp(4rem, 8vw, 6rem);
}

/* container-fluid'in üst sınırı yoktu, geniş ekranlarda sütunlar
   sınırsız büyüyordu — bu yüzden görsel ve metin "çok geniş" duruyordu. */
.blog-detay .container-fluid {
  max-width: 1000px;
  margin: 0 auto;
}

@media (max-width: 575px) {
  /* Bootstrap'ın varsayılan col gutter'ı (12px) nav-inner'ın kenar
     boşluğuyla (clamp(1rem,3vw,2.5rem) → mobilde 16px) uyuşmuyordu,
     içerik logoyla hizasız duruyordu. Kolonların padding'ini nav ile eşitliyoruz. */
  .blog-detay [class*="col-"] {
    padding-left: clamp(1rem, 3vw, 2.5rem);
    padding-right: clamp(1rem, 3vw, 2.5rem);
  }
}

.blog-detay-lead {
  font-family: 'Wix Madefor Display', sans-serif;
  font-weight: 400;
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
  line-height: 1.7;
  color: rgba(240, 237, 230, .7);
  text-align: center;
  margin-bottom: clamp(2rem, 5vw, 3rem);
}

.blog-detay-head {
  text-align: center;
  padding: 0 0 clamp(1.5rem, 4vw, 2rem);
}

.blog-detay-title {
  font-family: 'Wix Madefor Display', sans-serif;
  font-weight: 600;
  line-height: 1.2;
  font-size: clamp(2rem, 5.5vw, 3.75rem);
  color: var(--text);
  margin-top: .75rem;
}

/* Üstünde tag/tarih yoksa (başlık ilk eleman) İşler/Projeler sayfasıyla aynı
   hizada başlasın — margin-top header boşluğuna fazladan eklenmesin */
.blog-detay-title:first-child {
  margin-top: 0;
}

.blog-detay-img-wrap {
  margin-bottom: clamp(2rem, 5vw, 3rem);
}

.blog-detay-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 4px;
}

/* Hakkımızda — üst görsel tek img yerine fade ile geçen slayt olduğunda
   (.bento-slideshow eklenince) sabit oranlı, konumlanmış bir kutuya döner;
   .bento-slideshow img zaten position:absolute + fade veriyor (main.css'te
   tek yerden yönetiliyor), burada sadece kutuyu ve object-fit'i ayarlıyoruz. */
.blog-detay-img-wrap.bento-slideshow {
  position: relative;
  aspect-ratio: 1200 / 690;
  overflow: hidden;
}

.blog-detay-img-wrap.bento-slideshow .blog-detay-img {
  height: 100%;
  object-fit: cover;
}

/* Blog yazı içindeki bölüm başlıkları — h5'ten h2'ye çevrildi (doğru
   başlık hiyerarşisi + SEO). .blog-body yalnız blog-detay sayfasındaki
   <article>'da; global h2'yi (Syne 800, dev) özgüllükle geçer, görünüm aynı. */
.blog-body h2 {
  font-family: 'Wix Madefor Display', sans-serif;
  font-weight: 600;
  letter-spacing: -.01em;
  font-size: clamp(1.15rem, 2.2vw, 1.5rem);
  color: var(--text);
  margin: 2rem 0 .75rem;
}

.blog-body p {
  font-family: 'Wix Madefor Display', sans-serif;
  font-size: clamp(1rem, 1.3vw, 1.125rem);
  line-height: 1.85;
  color: rgba(240, 237, 230, .78);
}

/* ── Ana sayfa hero — tam ekran video ───── */
.anasayfa-hero {
  position: relative;
  height: 100vh;
  min-height: 560px;
  overflow: hidden;
}

.anasayfa-hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ── Video hero altındaki vitrin — 7 görsel sağdan sola loop ───── */
.anasayfa-marquee {
  background: var(--bg);
  /* Üst boşluk, .anasayfa-grid'in kendi üst padding'iyle birebir aynı — yukarıdaki
     h1/açıklamaya olan boşluk, "Öne Çıkan İşlerimizden Kareler" başlığının
     proje grid'ine olan boşluğuyla eşit olsun diye. */
  padding: clamp(2rem, 4vw, 3rem) 0 clamp(2.5rem, 5vw, 4rem);
}

.anasayfa-marquee-inner {
  max-width: 1900px;
  margin: 0 auto;
  padding: 0 var(--edge-pad);
}

.anasayfa-marquee-title {
  font-family: 'Wix Madefor Display', sans-serif;
  font-weight: 600;
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  color: var(--text);
  margin: 0 0 clamp(1.75rem, 3.5vw, 2.5rem);
  text-align: left;
}

.anasayfa-marquee-viewport {
  overflow: hidden;
  width: 100%;
}

.anasayfa-marquee-track {
  display: flex;
  width: max-content;
  gap: clamp(1rem, 2vw, 1.5rem);
  /* Hız %20 azaltıldı (26s -> 26s/0.8) */
  /* Hız bir kez daha %15 azaltıldı (32.5s -> 32.5s/0.85) */
  animation: anasayfaMarquee 38.24s linear infinite;
  /* Kompozitleme katmanı sabitlenmezse çeviri kayarken hafif titreme oluyordu */
  will-change: transform;
  backface-visibility: hidden;
}

.anasayfa-marquee-item {
  position: relative;
  flex: 0 0 auto;
  /* Masaüstünde ekrana ~3.5 görsel, mobilde ~1.5 görsel sığacak boyut */
  width: clamp(280px, 27vw, 420px);
  aspect-ratio: 3 / 4;
  border-radius: 12px;
  overflow: hidden;
  background: var(--surface);
}

.anasayfa-marquee-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 575px) {
  /* Sadece mobilde görseller biraz büyütüldü (~%20) */
  .anasayfa-marquee-item {
    width: clamp(240px, 74vw, 312px);
  }
}

@keyframes anasayfaMarquee {
  from { transform: translate3d(0, 0, 0); }
  to   { transform: translate3d(-50%, 0, 0); }
}

@media (prefers-reduced-motion: reduce) {
  .anasayfa-marquee-track {
    animation: none;
  }
}

/* ── Ana sayfa hero altı giriş metni — .anasayfa-grid ile aynı genişlik/padding,
   sağdan soldan kart grid'iyle hizalı dursun diye ───── */
.anasayfa-hero-intro {
  background: var(--bg);
  max-width: 1900px;
  margin: 0 auto;
  /* Video hero'nun hemen altında — çok yakın durmasın diye üst boşluk artırıldı.
     Alt boşluk, "Öne Çıkan İşlerimizden Kareler" başlığının (.anasayfa-marquee-title)
     kendi margin-bottom'uyla birebir aynı — aşağıdaki vitrine olan boşluk, o başlığın
     proje grid'ine olan boşluğuyla eşit olsun diye. */
  padding: clamp(5.5rem, 12vw, 8rem) var(--edge-pad) clamp(1.75rem, 3.5vw, 2.5rem);
}

/* ── Ana sayfa proje grid — bento değil, 1900px / 3 sütun ───── */
/* Proje grid'inin üstündeki başlık ("Öne Çıkan İşlerimizden Kareler") — grid
   ile aynı 1900px/--edge-pad hizasında, sadece genişlik/konum sağlıyor */
.anasayfa-grid-heading {
  max-width: 1900px;
  margin: 0 auto;
  padding: clamp(1.5rem, 3vw, 2.5rem) var(--edge-pad) 0;
}

.anasayfa-grid {
  max-width: 1900px;
  margin: 0 auto;
  padding: clamp(2rem, 4vw, 3rem) var(--edge-pad) clamp(4rem, 8vw, 6rem);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.75rem, 3vw, 2.75rem) clamp(1.25rem, 2.5vw, 2rem);
}

/* Proje grid'inin altındaki "Tüm Projeler" butonu — projeler sayfasına link */
.anasayfa-cta {
  max-width: 1900px;
  margin: 0 auto;
  /* Alt boşluk sabit — vw tabanlı clamp mobilde masaüstünden belirgin şekilde
     küçülüp footer'a çok yaklaştırıyordu */
  padding: 0 var(--edge-pad) 6rem;
  display: flex;
  justify-content: center;
}

.anasayfa-cta-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 56px;
  padding: 0 2rem;
  border-radius: 8px;
  background: var(--accent);
  color: #0c0c0c;
  font-family: 'Wix Madefor Display', sans-serif;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  transition: opacity var(--trans);
}

.anasayfa-cta-link:hover {
  opacity: .85;
}

/* ── Sayfa üstü h1/açıklama başlığı (İşler, Blog vb.) ─────────
   Video hero'su olmayan sayfalarda .page-hero-intro sayfanın ilk elemanı —
   bu yüzden fixed nav'ı (120px) her genişlikte temizleyecek sabit bir üst
   boşluk gerekiyor. */
.page-hero-intro {
  background: var(--bg);
  max-width: 1900px;
  margin: 0 auto;
  padding: clamp(9.2rem, 17.25vh, 10.35rem) var(--edge-pad) clamp(2.5rem, 5vw, 4rem);
}

/* .anasayfa-grid ile birebir aynı sütun/gap tanımı — açıklama metni alttaki
   proje grid'inin 3. sütunuyla soldan tam hizalı dursun diye */
.page-hero-intro-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.75rem, 3vw, 2.75rem) clamp(1.25rem, 2.5vw, 2rem);
}

.page-hero-intro-title {
  grid-column: 1 / 3;
}

.page-hero-intro-lead {
  grid-column: 3 / 4;
  display: flex;
  align-items: flex-end;
}

.page-hero-intro-title .blog-detay-title,
.page-hero-intro-lead .blog-detay-lead {
  margin: 0;
  text-align: left;
}

@media (max-width: 991px) {
  .page-hero-intro-grid {
    grid-template-columns: 1fr;
    /* Tek sütuna düşünce grid'in kendi row-gap'i h1/açıklama arasındaki
       tek boşluk kaynağı oluyor — ana sayfadaki h1 altı metin boşluk
       standardıyla (1.25rem) aynı değere çekiliyor */
    gap: 1.25rem;
  }

  .page-hero-intro-lead {
    grid-column: 1;
    align-items: flex-start;
  }
}

/* Görsel + görselin üzerinde değil, altında metin olan proje kartı */
.proje-card {
  display: block;
  text-decoration: none;
  color: var(--text);
}

.proje-card-img {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 12px;
  background: var(--surface);
}

.proje-card-img::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(255, 255, 255, 0);
  transition: background var(--trans);
  pointer-events: none;
}

.proje-card:hover .proje-card-img::before {
  background: rgba(255, 255, 255, .12);
}

.proje-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Ödüllü rozeti — proje görselinin sol altında, "odullu" => 1 işaretli projelerde */
.odullu-badge {
  position: absolute;
  left: 12px;
  bottom: 12px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 11px;
  background: var(--bg);
  color: var(--text);
  font-family: 'Wix Madefor Display', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: 6px 10px;
  border-radius: 6px;
  pointer-events: none;
}

.odullu-badge svg {
  width: 13px;
  height: 13px;
  fill: #d4af37;
  flex-shrink: 0;
}

.proje-card-info {
  padding-top: 1.1rem;
}

.proje-card-info h2 {
  font-size: clamp(1.1rem, 1.6vw, 1.4rem);
}

.proje-card-info .tag {
  margin-top: .5rem;
  margin-bottom: 0;
}

.tag.muted {
  color: var(--muted);
}

@media (min-width: 576px) and (max-width: 991px) {
  .anasayfa-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 575px) {
  .anasayfa-grid {
    grid-template-columns: 1fr;
  }

  /* Kart tam genişlik olunca clamp()'in vw tabanlı alt sınırında h2 küçük kalıyordu */
  .proje-card-info h2 {
    font-size: clamp(1.4rem, 6vw, 2rem);
  }
}

/* Ana sayfadaki/işler sayfasındaki "Çalıştığımız Markalar" kartı — dönen logo
   slaytı, .proje-card-img içine oturur. Markalar sayfasındaki logo kutularıyla
   aynı zemin rengi (#e9e9e9) ve orijinal renkli logolar kullanılıyor. */
.proje-card-marka .proje-card-img {
  background: #e9e9e9;
}

.proje-card-img .referans-logo-slide {
  position: absolute;
  inset: 0;
}

.proje-card-img .referans-logo-slide img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50%;
  height: auto;
  object-fit: contain;
  opacity: 0;
  transition: opacity 1s ease;
}

.proje-card-img .referans-logo-slide img.active {
  opacity: 1;
}

/* ── İletişim sayfası ───────────── */
/* Üst boşluk, İşler/Markalar sayfalarındaki .page-hero-intro ile aynı —
   fixed nav'ı (120px) her genişlikte temizlesin, içerik logoya yapışmasın */
.iletisim {
  background: var(--bg);
  padding: clamp(9.2rem, 17.25vh, 10.35rem) 0 clamp(3rem, 7vw, 5rem);
}

.iletisim-wrap {
  max-width: 640px;
  margin: 0 auto;
  padding: 0 var(--edge-pad);
}

/* Üst iletişim bilgileri */
.iletisim-bilgi {
  text-align: center;
  margin-bottom: clamp(2.5rem, 6vw, 4rem);
}

.iletisim-bilgi .contact-info-item {
  display: block;
  max-width: 100%;
}

.iletisim-bilgi .contact-info-item + .contact-info-item {
  margin-top: .4rem;
}

.iletisim-bilgi .contact-info-address {
  color: var(--muted);
  margin: .55rem 0 0;
}

/* ── Form ─────────────────────────── */
.iletisim-form {
  position: relative;
  max-width: 560px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
}

/* Form öğeleri (input/textarea/button/legend/label) UA fontunu miras almaz —
   sitenin fontuna sabitle */
.iletisim-form,
.iletisim-form input,
.iletisim-form textarea,
.iletisim-form button,
.iletisim-form select,
.iletisim-form legend,
.iletisim-form label {
  font-family: 'Wix Madefor Display', sans-serif;
}

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

/* Metin alanları + yüzen etiket (outlined / çentikli) */
.field {
  position: relative;
}

.field input,
.field textarea {
  width: 100%;
  font-family: 'Wix Madefor Display', sans-serif;
  font-size: 1rem;
  line-height: 1.2;
  color: var(--text);
  background: var(--surface);
  border: 1px solid rgba(240, 237, 230, .16);
  border-radius: 4px;
  outline: none;
  transition: border-color var(--trans);
  appearance: none;
  -webkit-appearance: none;
}

/* simetrik dolgu → dinlenme halinde placeholder dikey tam ortada */
.field input {
  height: 56px;
  padding: 0 16px;
}

.field textarea {
  height: 120px;          /* ~%15 kısaltıldı (140 → 120) */
  padding: 18px 16px;
  resize: none;           /* elle uzatma kapalı */
  line-height: 1.6;
}

.field label {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  padding: 0 5px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1;
  pointer-events: none;
  background: var(--surface);
  transition: top var(--trans), transform var(--trans), font-size var(--trans), color var(--trans);
}

/* textarea uzun — dinlenme etiketi üstte dursun */
.field-textarea label {
  top: 20px;
  transform: none;
}

/* aktif/dolu → etiket üst kenar çizgisine oturur (çentik), küçülür, yeşil */
.field.is-filled label,
.field:focus-within label {
  top: 0;
  transform: translateY(-50%);
  font-size: .8rem;
  color: var(--accent);
}

.field:focus-within input,
.field:focus-within textarea {
  border-color: var(--text);
}

/* Alan hatası — input'un altında kırmızı uyarı + kırmızı kenarlık */
.field-hata {
  display: block;
  margin-top: 6px;
  font-size: .85rem;
  line-height: 1.4;
  color: #ff6b6b;
}

.field-hata:empty {
  display: none;
}

.field.field-hatali input,
.field.field-hatali textarea,
.field.field-hatali:focus-within input,
.field.field-hatali:focus-within textarea {
  border-color: #ff6b6b;
}

.field.field-hatali label {
  color: #ff6b6b;
}

/* ── İlgilendiğiniz hizmet — çoklu seçim (checkbox) ── */
.field-onay {
  border: 0;
  margin: 0;
  padding: 0;
  min-width: 0;
}

.field-onay legend {
  padding: 0;
  margin-bottom: 10px;
  color: var(--muted);
  font-size: .95rem;
}

.onay-secenekler {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.onay {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 16px;
  border: 1px solid rgba(240, 237, 230, .16);
  border-radius: 4px;
  color: var(--text);
  font-size: 1rem;
  cursor: pointer;
  transition: border-color var(--trans), background var(--trans);
}

.onay input {
  width: 16px;
  height: 16px;
  margin: 0;
  accent-color: var(--accent);
  cursor: pointer;
  flex-shrink: 0;
}

.onay:hover {
  border-color: rgba(240, 237, 230, .4);
}

.onay:has(input:checked) {
  border-color: var(--text);
  background: rgba(240, 237, 230, .04);
}

.iletisim-gonder {
  align-self: flex-start;
  margin-top: .5rem;
  height: 48px;
  padding: 0 1.8rem;
  border: 0;
  border-radius: 4px;
  background: var(--accent);
  color: #0c0c0c;
  font-family: 'Wix Madefor Display', sans-serif;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: opacity var(--trans);
}

.iletisim-gonder:hover {
  opacity: .82;
}

.iletisim-gonder:disabled {
  opacity: .5;
  cursor: default;
}

.form-status {
  margin: .35rem 0 0;
  font-size: .95rem;
  line-height: 1.5;
  min-height: 1.2em;
}

.form-status.ok {
  color: var(--accent);
}

.form-status.err {
  color: #ff6b6b;
}

/* ── Form gönderildi — form yerine gösterilen teşekkür bloğu ── */
.iletisim-basarili {
  max-width: 560px;
  margin: 0 auto;
  padding: clamp(2rem, 6vw, 3rem) 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.2rem;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity var(--trans), transform var(--trans);
}

.iletisim-basarili.gorunur {
  opacity: 1;
  transform: translateY(0);
}

.iletisim-basarili-ikon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

.iletisim-basarili p {
  font-family: 'Wix Madefor Display', sans-serif;
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
  line-height: 1.6;
  color: var(--text);
  max-width: 30ch;
}

/* ── Adres pin + harita modalı ───────────── */
.adres-pin {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  margin-left: 5px;
  padding: 0;
  vertical-align: middle;
  position: relative;
  top: -1px; /* pin ucu aşağıda olduğu için optik ortalama */
  border: 0;
  background: transparent;
  color: var(--accent);
  cursor: pointer;
  transition: color var(--trans), transform var(--trans);
}

.adres-pin svg {
  width: 15px;
  height: 15px;
}

.adres-pin:hover {
  color: var(--text);
  transform: translateY(-2px);
}

.harita-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--edge-pad);
}

.harita-modal[hidden] {
  display: none;
}

.harita-modal-arka {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .72);
}

.harita-modal-kutu {
  position: relative;
  width: min(1100px, 100%);
  height: min(70vh, 640px);
  background: var(--surface);
  border-radius: 4px;
  overflow: hidden;
}

.harita-modal-kapat {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 4px;
  background: var(--bg);
  color: var(--text);
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  transition: opacity var(--trans);
}

.harita-modal-kapat:hover {
  opacity: .8;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: .85rem;
}

.contact-info-item {
  font-family: 'Wix Madefor Display', sans-serif;
  font-weight: 400;
  font-size: clamp(1.15rem, 2.4vw, 1.6rem);
  color: var(--text);
  text-decoration: none;
  line-height: 1.2;
  transition: color var(--trans);
  word-break: break-word;
}

.contact-info-item:hover {
  color: var(--accent);
}

.contact-info-address {
  margin-top: 0;
}

.map-embed {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  filter: invert(92%) hue-rotate(180deg) contrast(88%) brightness(95%);
}

/* ── WhatsApp float (footer.php — tüm sayfalar) ─────────────────
   Kapalıyken tam daire, hover'da etiketi açan pil. Lime ikon,
   hover'da lime zemine döner. */
.wa-float {
  position: fixed;
  right: var(--edge-pad);
  bottom: var(--edge-pad);
  z-index: 90; /* nav 100 ve mobil menü 99'un altında kalsın */
  display: flex;
  align-items: center;
  height: 52px;
  border-radius: 999px; /* kare halde tam daire, genişleyince pil */
  background: var(--bg);
  color: var(--accent);
  text-decoration: none;
  overflow: hidden;
  transition: background var(--trans), color var(--trans), transform var(--trans);
}

.wa-float-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  flex-shrink: 0;
}

.wa-float-label {
  font-family: 'Wix Madefor Display', sans-serif;
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
  max-width: 0;
  padding-right: 0;
  opacity: 0;
  transition: max-width var(--trans), opacity var(--trans), padding-right var(--trans);
}

.wa-float:hover,
.wa-float:focus-visible {
  background: var(--accent);
  color: #0c0c0c;
}

.wa-float:hover .wa-float-label,
.wa-float:focus-visible .wa-float-label {
  max-width: 200px;
  padding-right: 18px;
  opacity: 1;
}

/* Mobil menü açıkken gizle */
body.menu-open .wa-float {
  opacity: 0;
  pointer-events: none;
}

@media (max-width: 575px) {
  /* Mobil hamburger (.nav-burger) 44px — WhatsApp ikonu onunla aynı hizada,
     sadece birkaç piksel büyük dursun */
  .wa-float {
    height: 46px;
  }

  .wa-float-icon {
    width: 46px;
    height: 46px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .wa-float,
  .wa-float-label {
    transition: none;
  }
}


