:root {
  --color-bg: #ffffff;
  --color-surface: #f3f5f4;
  --color-elevated: #ffffff;
  --color-gold: #c5a059;
  --color-gold-light: #a8863e;
  /* Hero metni: lacivert ton (koyu overlay üzerinde okunması için hafif parlama) */
  --color-navy-hero: #1c3552;
  --color-text: #131a17;
  --color-muted: #5e6965;
  --color-ink: #0c1210;
  --color-line: rgba(12, 18, 16, 0.1);
  --font-sans: "Outfit", system-ui, sans-serif;
  --header-h: 92px;
  --radius: 12px;
  --shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
  /* Yatay güvenli alan: küçük laptop / ölçekli ekranlarda tutarlı boşluk */
  --page-gutter: clamp(1rem, 2.8vw, 1.85rem);
  --container-max: 1140px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

[dir="rtl"] {
  direction: rtl;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-weight: 400;
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Sabit header altında çapa kaydırma */
main section[id] {
  scroll-margin-top: calc(var(--header-h) + 16px);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

address {
  font-style: normal;
}

.container {
  width: min(var(--container-max), calc(100% - 2 * var(--page-gutter)));
  margin-inline: auto;
}

/* Loader */
.loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--color-bg);
  display: grid;
  place-items: center;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader__inner {
  text-align: center;
}

.loader__frame {
  position: relative;
  width: min(168px, 42vw);
  aspect-ratio: 1;
  margin-inline: auto;
  display: grid;
  place-items: center;
}

.loader__spin {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 3px solid rgba(197, 160, 89, 0.22);
  border-top-color: var(--color-gold);
  animation: loader-spin 0.85s linear infinite;
}

.loader__img {
  position: relative;
  z-index: 1;
  width: 58%;
  max-width: 140px;
  height: auto;
  object-fit: contain;
  display: block;
}

@keyframes loader-spin {
  to {
    transform: rotate(360deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  .loader__spin {
    animation-duration: 1.6s;
  }
}

/* Header — Bakyapi tarzı: üstten alta siyahtan şeffaf, logo ortada */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  direction: ltr;
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s ease, background 0.25s ease;
}

.header::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  transition: background 0.35s ease;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.94) 0%,
    rgba(0, 0, 0, 0.72) 38%,
    rgba(0, 0, 0, 0.35) 68%,
    rgba(0, 0, 0, 0) 100%
  );
}

.header.is-scrolled::before {
  background: #fff;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
}

.header.is-scrolled {
  border-bottom-color: rgba(0, 0, 0, 0.07);
}

.header.is-scrolled .header__links a {
  color: rgba(20, 28, 24, 0.72);
  font-size: 0.94rem;
}

.header.is-scrolled .header__links a:hover {
  color: var(--color-bg);
}

.header.is-scrolled .logo__text {
  color: var(--color-bg);
  font-size: 1.06rem;
}

.header.is-scrolled .logo__text strong {
  color: var(--color-gold);
}

.header.is-scrolled .lang-switcher__current {
  background: rgba(0, 0, 0, 0.04);
  border-color: rgba(0, 0, 0, 0.14);
  color: var(--color-text);
  font-size: 0.8125rem;
  padding: 0.32rem 0.55rem;
  min-width: 2.75rem;
}

.header.is-scrolled .header__menu-btn {
  border-color: rgba(0, 0, 0, 0.18);
}

.header.is-scrolled .header__menu-btn span {
  background: var(--color-bg);
}

.header.is-scrolled .header__bar-inner {
  min-height: 74px;
  padding-block: 0.42rem;
}

.header.is-scrolled .logo__mark {
  width: 44px;
  height: 44px;
  font-size: 1.2rem;
  border-radius: 10px;
}

.header.is-scrolled .logo {
  gap: 0.68rem;
}

.header.is-scrolled .logo--header {
  gap: 0;
}

.header.is-scrolled .logo--header .logo__img-wrap {
  width: clamp(76px, 9.2vw, 120px);
}

.header__bar {
  position: relative;
  z-index: 1;
}

.header__bar-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  column-gap: var(--nav-gap-logo);
  min-height: var(--header-h);
  padding-block: 0.65rem;
  --nav-gap: clamp(2.25rem, 4vw, 3.75rem);
  --nav-gap-logo: clamp(3.75rem, 8vw, 8rem);
  transition: min-height 0.32s ease, padding-block 0.32s ease;
}

.header__col--left {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  min-width: 0;
}

.header__col--center {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
}

.header__col--right {
  display: flex;
  align-items: center;
  min-width: 0;
}

.header .logo {
  transition: gap 0.32s ease;
}

.logo--header {
  gap: 0;
}

.logo__img-wrap {
  position: relative;
  display: block;
  width: clamp(84px, 10.2vw, 138px);
  height: auto;
  transition: width 0.32s ease;
  isolation: isolate;
}

.logo__img-wrap--footer {
  width: clamp(150px, 19vw, 220px);
}

.logo__img {
  display: block;
  width: 100%;
  height: auto;
  box-shadow: none;
  -webkit-box-shadow: none;
}

/* Header logoları: beyaz görsel koyu zeminde hafif gölgeyle okunaklı olur; gölge istemezseniz
   ilgili <img> sınıfına logo__img--flat ekleyin. Siyah logoda gölge yok; çok hafif isterseniz
   logo__img--soft ekleyin. */
.logo--header .logo__img--light:not(.logo__img--flat) {
  filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.38));
}

.logo--header .logo__img--dark:not(.logo__img--soft) {
  filter: none;
}

.logo--header .logo__img--dark.logo__img--soft {
  filter: drop-shadow(0 1px 4px rgba(0, 0, 0, 0.1));
}

.logo--header .logo__img--light.logo__img--flat {
  filter: none;
}

/* Footer tek siyah logo: varsayılan düz; gölge istersen img’e logo__img--soft */
.logo__img-wrap--footer .logo__img:not(.logo__img--soft) {
  filter: none;
}

.logo__img-wrap--footer .logo__img.logo__img--soft {
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.12));
}

.logo__img--dark {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: none;
}

.logo__img--light {
  opacity: 1;
  visibility: visible;
  transition: none;
}

.header.is-scrolled .logo__img--light {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.header.is-scrolled .logo__img--dark {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
}

.header .logo__mark {
  transition: width 0.32s ease, height 0.32s ease, font-size 0.32s ease,
    border-radius 0.32s ease;
}

.logo__mark {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  font-family: var(--font-sans);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--color-ink);
  background: linear-gradient(145deg, var(--color-gold), #8b7340);
  border-radius: 12px;
}

.header .logo__text {
  transition: font-size 0.32s ease, color 0.28s ease;
}

.logo__text {
  font-size: 1.22rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: #fff;
}

.logo__text strong {
  color: var(--color-gold-light);
  font-weight: 600;
}

.logo--footer {
  gap: 0.75rem;
}

.logo--footer .logo__mark {
  width: 44px;
  height: 44px;
  font-size: 1.25rem;
  border-radius: 10px;
  color: var(--color-ink);
}

.logo--footer .logo__text {
  font-size: 1.05rem;
  color: var(--color-text);
}

.logo--footer .logo__text strong {
  color: var(--color-gold);
}

.header__links {
  display: flex;
  align-items: center;
  gap: var(--nav-gap);
  list-style: none;
  margin: 0;
  padding: 0;
}

.header__links a {
  font-size: 1.03rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.82);
  padding: 0.35rem 0;
  position: relative;
  transition: color 0.2s ease, font-size 0.32s ease;
  white-space: nowrap;
}

.header__links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--color-gold-light);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.25s ease;
}

.header__links a:hover {
  color: #fff;
}

.header__links a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.lang-switcher {
  position: relative;
  flex-shrink: 0;
  margin-inline-start: auto;
  margin-inline-end: 0;
}

.header__col--right .header__nav {
  flex-shrink: 0;
}

.lang-switcher__current {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 3rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: rgba(255, 255, 255, 0.92);
  padding: 0.4rem 0.65rem;
  border-radius: 999px;
  font: inherit;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s ease, font-size 0.32s ease,
    padding 0.32s ease, min-width 0.32s ease;
}

.lang-switcher__current:hover {
  border-color: var(--color-gold);
}

.lang-switcher__list {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  margin: 0;
  padding: 0.35rem;
  list-style: none;
  background: #151515;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow);
  min-width: 180px;
  z-index: 20;
}

.lang-switcher__list button {
  display: block;
  width: 100%;
  text-align: start;
  padding: 0.5rem 0.75rem;
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.92);
  font: inherit;
  cursor: pointer;
  border-radius: 8px;
}

.lang-switcher__list button:hover {
  background: rgba(197, 160, 89, 0.15);
}

.header__menu-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  margin-inline-start: var(--nav-gap);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 10px;
  padding: 10px;
  cursor: pointer;
}

.header__menu-btn span {
  display: block;
  width: 100%;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.2s, opacity 0.2s;
}

.header.is-open .header__menu-btn span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.header.is-open .header__menu-btn span:nth-child(2) {
  opacity: 0;
}

.header.is-open .header__menu-btn span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.header__panel {
  position: relative;
  z-index: 1;
  background: rgba(0, 0, 0, 0.92);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header__panel-list {
  list-style: none;
  margin: 0;
  padding: 0.5rem 0 1.25rem;
}

.header__panel-list a {
  display: block;
  padding: 0.85rem 0;
  font-size: 0.9375rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.header__panel-list li:last-child a {
  border-bottom: none;
}

/* Hero — bakyapi.com.tr tarzı: tam ekran görsel, gradient karartma, Ken Burns, alttan içerik + circle nav */
.hero {
  position: relative;
  min-height: 100svh;
  width: 100%;
  max-width: 100vw;
  margin-top: 0;
  padding-top: 0;
  overflow: hidden;
}

.hero__slides {
  position: relative;
  min-height: 100svh;
  z-index: 0;
}

@keyframes heroKenBurns {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.09);
  }
}

.hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 1.15s ease;
  background: var(--color-surface);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(var(--header-h) + 1.25rem) 0 4.5rem;
}

.hero__slide::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-color: var(--color-surface);
  background-image: var(--slide-bg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  transform: scale(1);
}

.hero__slide.is-active::before {
  animation: heroKenBurns 14s ease-out forwards;
}

@media (prefers-reduced-motion: reduce) {
  .hero__slide {
    transition: opacity 0.35s ease;
  }

  .hero__slide.is-active::before {
    animation: none;
  }

  .hero__slide--local-1.is-active .hero__slide1-copy,
  .hero__slide--local-2.is-active .hero__slide1-copy,
  .hero__slide--local-3.is-active .hero__slide1-copy,
  .hero__slide--local-4.is-active .hero__slide1-copy,
  .hero__slide--local-5.is-active .hero__slide1-copy,
  .hero__slide--local-6.is-active .hero__slide1-copy,
  .hero__slide--local-1.is-active .hero__floater--right {
    animation: none !important;
    opacity: 1;
    transform: none;
  }

  .hero__slide--local-3.is-active .hero__floater--s3-right {
    animation: none !important;
    opacity: 1;
    transform: translateX(var(--hero-s3-floater-shift, 36%)) !important;
  }

  .hero__slide--local-1.is-active .hero__slide1-copy > *,
  .hero__slide--local-2.is-active .hero__slide1-copy > *,
  .hero__slide--local-3.is-active .hero__slide1-copy > *,
  .hero__slide--local-4.is-active .hero__slide1-copy > *,
  .hero__slide--local-5.is-active .hero__slide1-copy > *,
  .hero__slide--local-6.is-active .hero__slide1-copy > * {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }

  .hero__slide:not(.hero__slide--local-1):not(.hero__slide--local-2):not(.hero__slide--local-3):not(.hero__slide--local-4):not(.hero__slide--local-5):not(.hero__slide--local-6).is-active .hero__slide-layer,
  .hero__slide:not(.hero__slide--local-1):not(.hero__slide--local-2):not(.hero__slide--local-3):not(.hero__slide--local-4):not(.hero__slide--local-5):not(.hero__slide--local-6).is-active .hero__slide-layer > * {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

@media (max-width: 699px) {
  .hero__slide {
    padding-bottom: calc(5.5rem + env(safe-area-inset-bottom, 0));
  }
}

.hero__slide--local-1 {
  --slide-bg: url("../images/hero/1.png?v=4");
}

.hero__slide--local-2 {
  --slide-bg: url("../images/hero/2.png?v=4");
}

.hero__slide--local-3 {
  --slide-bg: url("../images/hero/3.jpg?v=4");
}

.hero__slide--local-4 {
  --slide-bg: url("../images/hero/4.png?v=4");
}

.hero__slide--local-5 {
  --slide-bg: url("../images/hero/5.png?v=4");
}

.hero__slide--local-6 {
  --slide-bg: url("../images/hero/6.png?v=4");
}

.hero__slide.is-active {
  opacity: 1;
  pointer-events: auto;
  z-index: 1;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    105deg,
    rgba(0, 0, 0, 0.62) 0%,
    rgba(0, 0, 0, 0.38) 42%,
    rgba(0, 0, 0, 0.28) 100%
  );
  pointer-events: none;
}

.hero__floaters {
  position: absolute;
  inset: 0;
  z-index: 5;
  pointer-events: none;
}

/* Slayt 1–2: görünmüyorken metin sıfırla */
.hero__slide--local-1:not(.is-active) .hero__slide1-copy {
  opacity: 0;
  transform: translate3d(-14px, calc(-50% + 30vh), 0);
}

.hero__slide--local-2:not(.is-active) .hero__slide1-copy,
.hero__slide--local-3:not(.is-active) .hero__slide1-copy,
.hero__slide--local-4:not(.is-active) .hero__slide1-copy,
.hero__slide--local-5:not(.is-active) .hero__slide1-copy,
.hero__slide--local-6:not(.is-active) .hero__slide1-copy {
  opacity: 0;
  transform: translate3d(calc(-50% - 14px), calc(-50% + 30vh), 0);
}

.hero__slide--local-1:not(.is-active) .hero__slide1-copy > *,
.hero__slide--local-2:not(.is-active) .hero__slide1-copy > *,
.hero__slide--local-3:not(.is-active) .hero__slide1-copy > *,
.hero__slide--local-4:not(.is-active) .hero__slide1-copy > *,
.hero__slide--local-5:not(.is-active) .hero__slide1-copy > *,
.hero__slide--local-6:not(.is-active) .hero__slide1-copy > * {
  opacity: 0;
  transform: translate3d(-10px, 12px, 0);
}

.hero__slide--local-1:not(.is-active) .hero__floater--right {
  opacity: 0;
  transform: translate3d(20px, calc(-50% + 32vh), 0) scale(0.94);
}

.hero__slide--local-3:not(.is-active) .hero__floater--s3-right {
  opacity: 0;
  transform: translate3d(calc(var(--hero-s3-floater-shift, 36%) + 22px), 26px, 0) scale(0.92);
}

.hero__floater {
  height: auto;
  filter: drop-shadow(0 16px 32px rgba(0, 0, 0, 0.35));
  will-change: transform, opacity;
}

/* Slayt 1 — PNG yerine konumlandırılabilir metin (sol); header’a yapışmaz, gövdeye göre ortalanır */
.hero__slide1-copy {
  position: absolute;
  left: clamp(3.35rem, 17.5vw, 9.25rem);
  top: 42%;
  z-index: 3;
  transform: translateY(-50%);
  max-width: min(36rem, calc(100% - 2rem));
  pointer-events: none;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.42rem;
  text-align: left;
  text-wrap: balance;
}

.hero__slide1-logo {
  margin: 0 0 0.4rem;
  font-size: clamp(1.72rem, 4.35vw, 3.05rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: 0.02em;
  color: #fff;
  text-shadow: 0 2px 28px rgba(0, 0, 0, 0.5);
}

.hero__slide1-logo-dark {
  color: #f0f4f2;
}

.hero__slide1-logo-gold {
  margin-left: 0.3em;
  font-family: inherit;
  font-weight: 700;
  color: var(--color-gold);
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.45);
}

.hero__slide1-logo-navy {
  color: var(--color-navy-hero);
  text-shadow:
    0 0 24px rgba(255, 255, 255, 0.55),
    0 2px 20px rgba(0, 0, 0, 0.6);
}

/* Slayt 2: ortada, içeriğe göre genişlik (yatayda uzamaz) */
.hero__slide1-copy--local-2 {
  left: 50%;
  right: auto;
  transform: translate(-50%, -50%);
  align-items: center;
  text-align: center;
  width: fit-content;
  max-width: calc(100vw - 2rem);
  text-wrap: pretty;
}

/* Tek satır: kelime kelime alta düşmesin */
.hero__slide1-copy--local-2 .hero__slide1-logo {
  text-transform: uppercase;
  letter-spacing: 0.05em;
  white-space: nowrap;
  font-size: clamp(0.6rem, 1.92vw + 0.5rem, 3.35rem);
}

.hero__slide1-copy--local-2 .hero__slide1-logo-navy {
  color: #f7faf8;
  text-shadow: 0 2px 28px rgba(0, 0, 0, 0.5);
}

.hero__slide1-copy--local-2 .hero__slide1-rule {
  margin-left: auto;
  margin-right: auto;
}

.hero__slide1-rule {
  display: block;
  width: clamp(3.4rem, 13.5vw, 7.35rem);
  height: 4px;
  margin: 0.2rem 0 0.68rem;
  background: linear-gradient(90deg, var(--color-gold), rgba(197, 160, 89, 0.35));
  border-radius: 2px;
}

.hero__slide1-line {
  margin: 0;
  font-size: clamp(1.14rem, 2.68vw, 1.72rem);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #f7faf8;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.55);
}

/* .hero__slide1-line sonrası: beyaz rengi ezmek için çift sınıf */
.hero__slide1-line.hero__slide1-line--navy {
  color: var(--color-navy-hero);
  font-size: clamp(0.78rem, 1.85vw, 1.08rem);
  letter-spacing: 0.14em;
  text-shadow:
    0 0 20px rgba(255, 255, 255, 0.5),
    0 2px 16px rgba(0, 0, 0, 0.55);
}

/* Slayt 2 tagline: tek satır, yatayda bütün metin — beyaz (lacivert sınıfı ezilir) */
.hero__slide1-copy--local-2 .hero__slide1-line.hero__slide1-line--navy {
  text-align: center;
  white-space: nowrap;
  font-size: clamp(0.44rem, 0.78vw + 0.4rem, 1.24rem);
  letter-spacing: 0.1em;
  color: #f7faf8;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.55);
}

.hero__slide1-copy--local-2 .hero__btn--discover {
  margin-top: 0.75rem;
}

/* Slayt 3: hero-2 gibi ortada, her satır tek satırda büyük ve yatayda uzun */
.hero__slide1-copy--local-3 {
  left: 50%;
  right: auto;
  transform: translate(-50%, -50%);
  align-items: center;
  text-align: center;
  width: fit-content;
  max-width: calc(100vw - 2rem);
  gap: 0.42rem;
}

.hero__slide1-copy--local-3 .hero__s3-lead {
  margin: 0;
  font-family: var(--font-sans);
  font-weight: 600;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--color-gold);
  text-shadow: 0 2px 22px rgba(0, 0, 0, 0.45);
  white-space: nowrap;
  font-size: clamp(0.78rem, 1.65vw + 0.62rem, 2.15rem);
}

.hero__slide1-copy--local-3 .hero__s3-line {
  margin: 0;
  font-family: var(--font-sans);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #f7faf8;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.52);
  white-space: nowrap;
  font-size: clamp(0.64rem, 1.78vw + 0.58rem, 2.95rem);
}

/* Slayt 4 — hero-2 gibi ortada: beyaz + altın satır + Daha Fazlası */
.hero__slide1-copy--local-4 {
  left: 50%;
  right: auto;
  transform: translate(-50%, -50%);
  align-items: center;
  text-align: center;
  width: fit-content;
  max-width: calc(100vw - 2rem);
  gap: 0.38rem;
}

.hero__slide1-copy--local-4 .hero__s4-line {
  margin: 0;
  font-family: var(--font-sans);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: 0.055em;
  text-transform: uppercase;
  white-space: nowrap;
  text-align: center;
}

.hero__slide1-copy--local-4 .hero__s4-line--white {
  color: #f7faf8;
  text-shadow: 0 2px 26px rgba(0, 0, 0, 0.55);
  font-size: clamp(0.67rem, 1.88vw + 0.62rem, 3.32rem);
}

.hero__slide1-copy--local-4 .hero__s4-line--gold {
  color: var(--color-gold);
  text-shadow: 0 2px 22px rgba(0, 0, 0, 0.48);
  font-size: clamp(0.69rem, 2vw + 0.64rem, 3.52rem);
}

.hero__slide1-copy--local-4 .hero__slide1-btn {
  margin-top: 1.05rem;
}

/* Slayt 5 — slayt 4 ile aynı düzen */
.hero__slide1-copy--local-5 {
  left: 50%;
  right: auto;
  transform: translate(-50%, -50%);
  align-items: center;
  text-align: center;
  width: fit-content;
  max-width: calc(100vw - 2rem);
  gap: 0.38rem;
}

.hero__slide1-copy--local-5 .hero__s5-line {
  margin: 0;
  font-family: var(--font-sans);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: 0.055em;
  text-transform: uppercase;
  white-space: nowrap;
  text-align: center;
}

.hero__slide1-copy--local-5 .hero__s5-line--white {
  color: #f7faf8;
  text-shadow: 0 2px 26px rgba(0, 0, 0, 0.55);
  font-size: clamp(0.67rem, 1.88vw + 0.62rem, 3.32rem);
}

.hero__slide1-copy--local-5 .hero__s5-line--gold {
  color: var(--color-gold);
  text-shadow: 0 2px 22px rgba(0, 0, 0, 0.48);
  font-size: clamp(0.69rem, 2vw + 0.64rem, 3.52rem);
}

.hero__slide1-copy--local-5 .hero__slide1-btn {
  margin-top: 1.05rem;
}

/* Slayt 6 — slayt 4–5 ile aynı düzen */
.hero__slide1-copy--local-6 {
  left: 50%;
  right: auto;
  transform: translate(-50%, -50%);
  align-items: center;
  text-align: center;
  width: fit-content;
  max-width: calc(100vw - 2rem);
  gap: 0.38rem;
}

.hero__slide1-copy--local-6 .hero__s6-line {
  margin: 0;
  font-family: var(--font-sans);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: 0.055em;
  text-transform: uppercase;
  white-space: nowrap;
  text-align: center;
}

.hero__slide1-copy--local-6 .hero__s6-line--white {
  color: #f7faf8;
  text-shadow: 0 2px 26px rgba(0, 0, 0, 0.55);
  font-size: clamp(0.64rem, 1.78vw + 0.58rem, 3.15rem);
}

.hero__slide1-copy--local-6 .hero__s6-line--gold {
  color: var(--color-gold);
  text-shadow: 0 2px 22px rgba(0, 0, 0, 0.48);
  font-size: clamp(0.66rem, 1.9vw + 0.6rem, 3.35rem);
}

.hero__slide1-copy--local-6 .hero__slide1-btn {
  margin-top: 1.05rem;
}

.hero__slide1-line--gold {
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--color-gold);
  text-shadow: 0 2px 22px rgba(0, 0, 0, 0.45);
}

.hero__floater--right {
  position: absolute;
  right: 15.75%;
  top: 46%;
  transform: translateY(calc(-50% - 2vh));
  width: clamp(168px, 27vw, 420px);
  z-index: 4;
}

/* Slayt 3 — sağ alt, hafif taşma; shift düşük = rozet yazısı görünür + right neg. ile sağa itilir */
.hero__floater--s3-right {
  --hero-s3-floater-shift: 36%;
  position: absolute;
  right: max(-18px, -1.25vw);
  left: auto;
  bottom: clamp(4.35rem, 12vh, 7rem);
  width: clamp(200px, 38vw, 440px);
  max-width: min(85vw, 460px);
  z-index: 4;
  transform: translateX(var(--hero-s3-floater-shift));
}

@media (max-width: 699px) {
  .hero__slide-layer {
    left: clamp(1.55rem, 7vw, 2.65rem);
    bottom: clamp(7rem, 22vh, 10rem);
    max-width: calc(100vw - 2rem);
  }

  .hero__slide-layer--mid-top {
    left: 50%;
    right: auto;
    bottom: auto;
    top: clamp(28%, 30vh, 40%);
    max-width: calc(100vw - 1.5rem);
    padding: 0 0.85rem;
    transform: translate(-50%, -50%);
  }

  .hero__headline--split {
    font-size: clamp(0.88rem, 4vw, 1.35rem);
    letter-spacing: 0.06em;
  }

  .hero__tagline--navy {
    font-size: clamp(0.68rem, 3.1vw, 0.92rem);
    letter-spacing: 0.1em;
    margin-top: 0.35rem;
  }

  .hero__btn--discover {
    margin-top: 0.55rem;
    padding: 0.62rem 1.5rem;
    font-size: clamp(0.85rem, 3.5vw, 0.98rem);
  }

  .hero__title {
    font-size: clamp(1.55rem, 7vw, 2.35rem);
  }

  .hero__slide1-copy {
    left: clamp(1.75rem, 11vw, 3.5rem);
    top: 42%;
    max-width: min(100% - 5.5rem, 22rem);
  }

  .hero__slide1-copy--local-2 {
    left: 50%;
    max-width: calc(100vw - 1.25rem);
    padding-inline: 0.35rem;
  }

  .hero__slide1-logo {
    font-size: clamp(1.52rem, 6.85vw, 2.2rem);
  }

  .hero__slide1-copy--local-2 .hero__slide1-logo {
    font-size: clamp(0.56rem, 2.38vw + 0.34rem, 2.35rem);
    letter-spacing: 0.035em;
  }

  .hero__slide1-line {
    font-size: clamp(0.93rem, 4.05vw, 1.18rem);
    letter-spacing: 0.05em;
  }

  .hero__slide1-btn {
    margin-top: 0.65rem;
    padding: 0.58rem 1.35rem;
    font-size: clamp(0.88rem, 3.6vw, 1.02rem);
  }

  .hero__slide1-line.hero__slide1-line--navy {
    font-size: clamp(0.68rem, 3.1vw, 0.92rem);
    letter-spacing: 0.1em;
  }

  .hero__slide1-copy--local-2 .hero__slide1-line.hero__slide1-line--navy {
    font-size: clamp(0.38rem, 1.85vw + 0.28rem, 1.06rem);
    letter-spacing: 0.07em;
  }

  .hero__slide1-copy--local-2 .hero__btn--discover {
    margin-top: 0.62rem;
  }

  .hero__slide1-copy--local-3 {
    left: 50%;
    max-width: calc(100vw - 1.25rem);
    padding-inline: 0.35rem;
    gap: 0.35rem;
  }

  .hero__slide1-copy--local-3 .hero__s3-lead {
    font-size: clamp(0.58rem, 3vw + 0.42rem, 1.72rem);
    letter-spacing: 0.08em;
  }

  .hero__slide1-copy--local-3 .hero__s3-line {
    font-size: clamp(0.5rem, 2.7vw + 0.4rem, 2.26rem);
    letter-spacing: 0.045em;
  }

  .hero__slide1-copy--local-4 {
    left: 50%;
    max-width: calc(100vw - 1.25rem);
    padding-inline: 0.35rem;
    gap: 0.32rem;
  }

  .hero__slide1-copy--local-4 .hero__s4-line--white {
    font-size: clamp(0.54rem, 2.85vw + 0.42rem, 2.42rem);
    letter-spacing: 0.045em;
  }

  .hero__slide1-copy--local-4 .hero__s4-line--gold {
    font-size: clamp(0.56rem, 3vw + 0.44rem, 2.6rem);
    letter-spacing: 0.045em;
  }

  .hero__slide1-copy--local-4 .hero__slide1-btn {
    margin-top: 0.85rem;
  }

  .hero__slide1-copy--local-5 {
    left: 50%;
    max-width: calc(100vw - 1.25rem);
    padding-inline: 0.35rem;
    gap: 0.32rem;
  }

  .hero__slide1-copy--local-5 .hero__s5-line--white {
    font-size: clamp(0.54rem, 2.85vw + 0.42rem, 2.42rem);
    letter-spacing: 0.045em;
  }

  .hero__slide1-copy--local-5 .hero__s5-line--gold {
    font-size: clamp(0.56rem, 3vw + 0.44rem, 2.6rem);
    letter-spacing: 0.045em;
  }

  .hero__slide1-copy--local-5 .hero__slide1-btn {
    margin-top: 0.85rem;
  }

  .hero__slide1-copy--local-6 {
    left: 50%;
    max-width: calc(100vw - 1.25rem);
    padding-inline: 0.35rem;
    gap: 0.32rem;
  }

  .hero__slide1-copy--local-6 .hero__s6-line--white {
    font-size: clamp(0.52rem, 2.7vw + 0.4rem, 2.28rem);
    letter-spacing: 0.045em;
  }

  .hero__slide1-copy--local-6 .hero__s6-line--gold {
    font-size: clamp(0.54rem, 2.85vw + 0.42rem, 2.45rem);
    letter-spacing: 0.045em;
  }

  .hero__slide1-copy--local-6 .hero__slide1-btn {
    margin-top: 0.85rem;
  }

  .hero__floater--right {
    width: clamp(100px, 32vw, 220px) !important;
    right: clamp(1.5rem, 14vw, 4.25rem);
    top: 44%;
    transform: translateY(calc(-50% - 1.75vh));
  }

  .hero__floater--s3-right {
    --hero-s3-floater-shift: 32%;
    right: max(-12px, -2vw);
    left: auto;
    bottom: clamp(4rem, 11vh, 6rem);
    width: clamp(132px, 48vw, 300px);
    max-width: min(82vw, 320px);
    transform: translateX(var(--hero-s3-floater-shift));
  }
}

.hero__slide--local-1.is-active .hero__slide1-copy {
  animation: heroSlide1CopyRise 1.15s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: 0.05s;
}

.hero__slide--local-2.is-active .hero__slide1-copy,
.hero__slide--local-3.is-active .hero__slide1-copy,
.hero__slide--local-4.is-active .hero__slide1-copy,
.hero__slide--local-5.is-active .hero__slide1-copy,
.hero__slide--local-6.is-active .hero__slide1-copy {
  animation: heroSlide1CopyRiseCenter 1.15s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: 0.05s;
}

/* Logo → çizgi → satırlar / butonlar: kademeli giriş (slayt 1: 6, 2: 4, 3: 3, 4–6: 3) */
.hero__slide--local-1.is-active .hero__slide1-copy > *,
.hero__slide--local-2.is-active .hero__slide1-copy > *,
.hero__slide--local-3.is-active .hero__slide1-copy > *,
.hero__slide--local-4.is-active .hero__slide1-copy > *,
.hero__slide--local-5.is-active .hero__slide1-copy > *,
.hero__slide--local-6.is-active .hero__slide1-copy > * {
  animation: heroSlide1ItemIn 0.78s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero__slide--local-1.is-active .hero__slide1-copy > *:nth-child(1),
.hero__slide--local-2.is-active .hero__slide1-copy > *:nth-child(1),
.hero__slide--local-3.is-active .hero__slide1-copy > *:nth-child(1),
.hero__slide--local-4.is-active .hero__slide1-copy > *:nth-child(1),
.hero__slide--local-5.is-active .hero__slide1-copy > *:nth-child(1),
.hero__slide--local-6.is-active .hero__slide1-copy > *:nth-child(1) {
  animation-delay: 0.18s;
}

.hero__slide--local-1.is-active .hero__slide1-copy > *:nth-child(2),
.hero__slide--local-2.is-active .hero__slide1-copy > *:nth-child(2),
.hero__slide--local-3.is-active .hero__slide1-copy > *:nth-child(2),
.hero__slide--local-4.is-active .hero__slide1-copy > *:nth-child(2),
.hero__slide--local-5.is-active .hero__slide1-copy > *:nth-child(2),
.hero__slide--local-6.is-active .hero__slide1-copy > *:nth-child(2) {
  animation-delay: 0.32s;
}

.hero__slide--local-1.is-active .hero__slide1-copy > *:nth-child(3),
.hero__slide--local-2.is-active .hero__slide1-copy > *:nth-child(3),
.hero__slide--local-3.is-active .hero__slide1-copy > *:nth-child(3),
.hero__slide--local-4.is-active .hero__slide1-copy > *:nth-child(3),
.hero__slide--local-5.is-active .hero__slide1-copy > *:nth-child(3),
.hero__slide--local-6.is-active .hero__slide1-copy > *:nth-child(3) {
  animation-delay: 0.46s;
}

.hero__slide--local-1.is-active .hero__slide1-copy > *:nth-child(4) {
  animation-delay: 0.58s;
}

.hero__slide--local-2.is-active .hero__slide1-copy > *:nth-child(4) {
  animation-delay: 0.7s;
}

.hero__slide--local-1.is-active .hero__slide1-copy > *:nth-child(5) {
  animation-delay: 0.7s;
}

.hero__slide--local-1.is-active .hero__slide1-copy > *:nth-child(6) {
  animation-delay: 0.84s;
}

.hero__slide--local-1.is-active .hero__floater--right {
  animation: heroFloaterRightRise 1.2s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: 0.12s;
}

.hero__slide--local-3.is-active .hero__floater--s3-right {
  animation: heroFloaterS3RightRise 1.15s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: 0.18s;
}

@keyframes heroSlide1CopyRise {
  from {
    opacity: 0;
    transform: translate3d(-14px, calc(-50% + 30vh), 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, -50%, 0);
  }
}

@keyframes heroSlide1CopyRiseCenter {
  from {
    opacity: 0;
    transform: translate3d(calc(-50% - 14px), calc(-50% + 30vh), 0);
  }
  to {
    opacity: 1;
    transform: translate3d(-50%, -50%, 0);
  }
}

@keyframes heroSlide1ItemIn {
  from {
    opacity: 0;
    transform: translate3d(-12px, 18px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes heroFloaterRightRise {
  from {
    opacity: 0;
    transform: translate3d(28px, calc(-50% + 30vh), 0) scale(0.9);
  }
  to {
    opacity: 1;
    transform: translate3d(0, calc(-50% - 2vh), 0) scale(1);
  }
}

@keyframes heroFloaterS3RightRise {
  from {
    opacity: 0;
    transform: translate3d(calc(var(--hero-s3-floater-shift) + 14%), 32px, 0) scale(0.9);
  }
  to {
    opacity: 1;
    transform: translate3d(var(--hero-s3-floater-shift), 0, 0) scale(1);
  }
}

/* Slayt 3–6: bakyapi.com.tr tarzı sol alt bölgede üst başlık + proje adı + “Daha Fazlası” */
.hero__slide:not(.hero__slide--local-1):not(.hero__slide--local-2):not(.hero__slide--local-3):not(.hero__slide--local-4):not(.hero__slide--local-5):not(.hero__slide--local-6):not(.is-active) .hero__slide-layer {
  opacity: 0;
}

.hero__slide:not(.hero__slide--local-1):not(.hero__slide--local-2):not(.hero__slide--local-3):not(.hero__slide--local-4):not(.hero__slide--local-5):not(.hero__slide--local-6):not(.is-active) .hero__slide-layer > * {
  opacity: 0;
  transform: translate3d(0, 20px, 0);
}

.hero__slide-layer {
  position: absolute;
  z-index: 5;
  left: clamp(2.35rem, 8.25vw, 6.25rem);
  bottom: clamp(6.5rem, 16vh, 10rem);
  max-width: min(40rem, calc(100vw - 2.5rem));
  pointer-events: none;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.45rem;
}

/* Slayt 2: orta–üst, iki renkli başlık */
.hero__slide-layer--mid-top {
  left: 50%;
  right: auto;
  bottom: auto;
  top: clamp(30%, 34vh, 40%);
  max-width: min(42rem, calc(100vw - 2rem));
  transform: translate(-50%, -50%);
  align-items: center;
  text-align: center;
}

.hero__headline--split {
  margin: 0;
  font-family: var(--font-sans);
  font-size: clamp(1.05rem, 2.85vw, 2rem);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  text-wrap: balance;
}

.hero__headline-navy {
  color: var(--color-navy-hero);
  text-shadow:
    0 0 24px rgba(255, 255, 255, 0.55),
    0 2px 20px rgba(0, 0, 0, 0.6);
}

.hero__headline-gold {
  color: var(--color-gold);
  text-shadow: 0 2px 22px rgba(0, 0, 0, 0.55);
}

.hero__tagline--navy {
  margin: 0.4rem 0 0;
  font-family: var(--font-sans);
  font-size: clamp(0.78rem, 1.85vw, 1.08rem);
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-align: center;
  text-wrap: balance;
  color: var(--color-navy-hero);
  text-shadow:
    0 0 20px rgba(255, 255, 255, 0.5),
    0 2px 16px rgba(0, 0, 0, 0.55);
}

.hero__btn--discover {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.65rem;
  padding: 0.7rem 1.85rem;
  border-radius: 999px;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: clamp(0.92rem, 1.9vw, 1.06rem);
  color: #fff;
  text-decoration: none;
  pointer-events: auto;
  background: linear-gradient(135deg, var(--color-gold), var(--color-gold-light));
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.28);
  transition: transform 0.18s ease, filter 0.18s ease, box-shadow 0.18s ease;
}

.hero__btn--discover:hover,
.hero__btn--discover:focus-visible {
  filter: brightness(1.07);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.32);
  outline: none;
}

.hero__btn--discover:active {
  transform: translateY(0);
}

.hero__slide-layer--mid-top .hero__cta {
  margin-top: 0.5rem;
}

.hero__eyebrow {
  margin: 0;
  font-family: var(--font-sans);
  font-size: clamp(0.68rem, 1.35vw, 0.8rem);
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-gold);
  text-shadow: 0 1px 16px rgba(0, 0, 0, 0.45);
}

.hero__title {
  margin: 0;
  font-family: var(--font-sans);
  font-size: clamp(1.85rem, 5vw, 3.35rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: 0.02em;
  color: #fff;
  text-shadow: 0 4px 32px rgba(0, 0, 0, 0.55);
}

.hero__slide-layer .hero__cta {
  pointer-events: auto;
  margin-top: 0.4rem;
  color: #fff;
  font-size: clamp(0.92rem, 1.9vw, 1.05rem);
}

.hero__slide-layer .hero__cta:hover,
.hero__slide-layer .hero__cta:focus-visible {
  color: var(--color-gold);
  outline: none;
}

.hero__slide:not(.hero__slide--local-1):not(.hero__slide--local-2):not(.hero__slide--local-3):not(.hero__slide--local-4):not(.hero__slide--local-5):not(.hero__slide--local-6).is-active .hero__slide-layer {
  opacity: 1;
  transition: opacity 0.45s ease;
}

.hero__slide:not(.hero__slide--local-1):not(.hero__slide--local-2):not(.hero__slide--local-3):not(.hero__slide--local-4):not(.hero__slide--local-5):not(.hero__slide--local-6).is-active .hero__slide-layer > * {
  animation: heroSlide1ItemIn 0.78s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero__slide:not(.hero__slide--local-1):not(.hero__slide--local-2):not(.hero__slide--local-3):not(.hero__slide--local-4):not(.hero__slide--local-5):not(.hero__slide--local-6).is-active .hero__slide-layer > *:nth-child(1) {
  animation-delay: 0.12s;
}

.hero__slide:not(.hero__slide--local-1):not(.hero__slide--local-2):not(.hero__slide--local-3):not(.hero__slide--local-4):not(.hero__slide--local-5):not(.hero__slide--local-6).is-active .hero__slide-layer > *:nth-child(2) {
  animation-delay: 0.26s;
}

.hero__slide:not(.hero__slide--local-1):not(.hero__slide--local-2):not(.hero__slide--local-3):not(.hero__slide--local-4):not(.hero__slide--local-5):not(.hero__slide--local-6).is-active .hero__slide-layer > *:nth-child(3) {
  animation-delay: 0.4s;
}

.hero__slide:not(.hero__slide--local-1):not(.hero__slide--local-2):not(.hero__slide--local-3):not(.hero__slide--local-4):not(.hero__slide--local-5):not(.hero__slide--local-6).is-active .hero__slide-layer > *:nth-child(4) {
  animation-delay: 0.54s;
}

/* Slayt 1 — CTA artık Keşfet (hero__btn--discover); aşağıdaki stil slayt 4–6 “Daha Fazlası” için */
.hero__slide1-btn {
  pointer-events: auto;
  margin-top: 0.75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.68rem 1.75rem;
  border-radius: 999px;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: clamp(0.95rem, 2vw, 1.12rem);
  letter-spacing: 0.05em;
  color: #fff;
  text-decoration: none;
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.95);
  box-shadow: 0 4px 22px rgba(0, 0, 0, 0.22);
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease,
    transform 0.15s ease;
}

.hero__slide1-btn:hover,
.hero__slide1-btn:focus-visible {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
  color: #fff;
  outline: none;
}

.hero__slide1-btn:active {
  transform: scale(0.98);
}

.hero__circles {
  position: absolute;
  left: 50%;
  bottom: max(1.25rem, env(safe-area-inset-bottom, 0px));
  transform: translateX(-50%);
  z-index: 8;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.65rem;
  padding: 0 1rem;
  pointer-events: auto;
}

.hero__circle {
  width: 12px;
  height: 12px;
  margin: 0;
  padding: 0;
  border: 2px solid rgba(255, 255, 255, 0.92);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 1px 8px rgba(0, 0, 0, 0.25);
}

.hero__circle:hover,
.hero__circle:focus-visible {
  border-color: var(--color-gold);
  outline: none;
}

.hero__circle.is-active {
  background: #fff;
  border-color: #fff;
  transform: scale(1.28);
  box-shadow: 0 0 0 1px rgba(197, 160, 89, 0.55), 0 2px 12px rgba(0, 0, 0, 0.35);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.75rem;
  border-radius: 999px;
  font: inherit;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: transform 0.15s, filter 0.15s, box-shadow 0.2s;
}

.btn:active {
  transform: scale(0.98);
}

.btn--light {
  background: var(--color-surface);
  color: var(--color-text);
  border: 1px solid var(--color-line);
}

.btn--light:hover {
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
  border-color: rgba(12, 18, 16, 0.16);
}

.btn--primary {
  background: linear-gradient(135deg, var(--color-gold), #a68542);
  color: #fff;
}

.btn--primary:hover {
  filter: brightness(1.06);
}

.btn--outline {
  background: transparent;
  color: var(--color-text);
  border: 1px solid var(--color-line);
}

.btn--outline:hover {
  border-color: var(--color-gold);
  color: var(--color-gold);
}

.btn--gold {
  background: linear-gradient(135deg, var(--color-gold-light), var(--color-gold));
  color: #fff;
}

/* Intro */
.intro {
  padding: 5rem 0 4rem;
  position: relative;
  background: linear-gradient(
    180deg,
    #fafcfb 0%,
    var(--color-bg) 38%,
    var(--color-bg) 100%
  );
}

.intro::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 120% 80% at 100% 0%, rgba(197, 160, 89, 0.07), transparent 55%),
    radial-gradient(ellipse 80% 50% at 0% 100%, rgba(168, 134, 62, 0.05), transparent 50%);
}

.intro__grid,
.intro .container {
  position: relative;
  z-index: 1;
}

.intro__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.85fr);
  gap: 3rem 3.5rem;
  align-items: center;
}

.intro__content {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  min-width: 0;
}

.intro__title {
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: clamp(1.5rem, 3.2vw, 2.35rem);
  margin-bottom: 0.85rem;
}

.intro__visual {
  min-width: 0;
  align-self: stretch;
}

.intro__figure {
  margin: 0;
  height: 100%;
  min-height: min(520px, 55vh);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--color-line);
  background: linear-gradient(145deg, var(--color-line), var(--color-surface));
  box-shadow: var(--shadow);
}

.intro__image {
  width: 100%;
  height: 100%;
  min-height: min(520px, 55vh);
  object-fit: cover;
  display: block;
}

.intro__strip {
  margin-top: 3rem;
  margin-inline: auto;
  max-width: min(520px, 88%);
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    rgba(197, 160, 89, 0),
    rgba(197, 160, 89, 0.28) 22%,
    rgba(168, 134, 62, 0.85) 50%,
    rgba(197, 160, 89, 0.28) 78%,
    rgba(197, 160, 89, 0)
  );
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.35) inset;
}

.section-title {
  font-family: var(--font-sans);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 700;
  margin: 0 0 1rem;
  line-height: 1.2;
}

.section-title--light {
  color: var(--color-text);
}

.section-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  color: var(--color-gold);
  margin: 0 0 0.5rem;
}

.intro__lead {
  font-size: 1.0625rem;
  color: var(--color-muted);
  margin: 0 0 1rem;
}

.intro__bullets {
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--color-muted);
}

.intro__bullets li {
  position: relative;
  padding-inline-start: 1.35rem;
  font-size: 1rem;
  line-height: 1.55;
}

.intro__bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-gold-light), var(--color-gold));
  box-shadow: 0 0 0 2px rgba(197, 160, 89, 0.2);
}

.intro__bullets li + li {
  margin-top: 0.65rem;
}

/* Projects head — sol kolaj görsel, sağ metin (ör. https://bakyapi.com.tr/ projeler bandı) */
.projects-head {
  position: relative;
  background: linear-gradient(165deg, #f4f6f4 0%, #eef1ef 42%, #f8f9f8 100%);
  padding: clamp(2.75rem, 5vw, 4rem) 0;
  border-block: 1px solid var(--color-line);
  overflow: hidden;
}

.projects-head::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(ellipse 70% 55% at 15% 45%, rgba(197, 160, 89, 0.07), transparent 60%);
}

.projects-head__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: center;
}

.projects-head__visual {
  position: relative;
  min-width: 0;
}

.projects-head__collage {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  grid-template-rows: minmax(0, 1fr) minmax(0, 1fr);
  gap: 0.65rem;
  min-height: min(300px, 42vw);
  max-height: 440px;
}

.projects-head__fig {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid rgba(12, 18, 16, 0.08);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.09);
  background: var(--color-line);
  min-height: 0;
}

.projects-head__rotor {
  position: absolute;
  inset: 0;
  min-height: 100%;
}

.projects-head__rotor-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  min-height: 120px;
  opacity: 0;
  transition: opacity 1.05s ease-in-out;
}

.projects-head__rotor-img.is-active {
  opacity: 1;
  z-index: 1;
}

@media (prefers-reduced-motion: reduce) {
  .projects-head__rotor-img {
    transition: none;
  }

  .projects-head__rotor-img:not(.is-active) {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }
}

.projects-head__fig--main {
  grid-row: 1 / -1;
  grid-column: 1;
}

.projects-head__fig--a {
  grid-column: 2;
  grid-row: 1;
}

.projects-head__fig--b {
  grid-column: 2;
  grid-row: 2;
}

.projects-head__fig > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  min-height: 120px;
}

.projects-head__visual-accent {
  position: absolute;
  left: -6px;
  top: 18%;
  width: 4px;
  height: 42%;
  border-radius: 4px;
  background: linear-gradient(180deg, var(--color-gold-light), var(--color-gold));
  opacity: 0.85;
  pointer-events: none;
}

.projects-head__text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0.25rem 0 0.25rem clamp(0px, 2vw, 1.5rem);
  border-left: 3px solid rgba(197, 160, 89, 0.45);
  padding-inline-start: clamp(1.25rem, 2.5vw, 2rem);
  min-width: 0;
}

.projects-head .section-eyebrow {
  margin-bottom: 0.65rem;
}

.projects-head__title {
  text-transform: uppercase;
  letter-spacing: 0.035em;
  font-size: clamp(1.35rem, 2.6vw, 2.05rem);
  max-width: 920px;
  margin: 0 0 1rem;
  line-height: 1.22;
}

.projects-head__desc {
  margin: 0;
  max-width: 38rem;
  color: var(--color-muted);
  font-size: 1.0625rem;
  line-height: 1.65;
}

.projects-head__cta {
  margin-top: 1.35rem;
  text-decoration: none;
  text-align: center;
  white-space: normal;
  max-width: 100%;
  padding-inline: 1.35rem;
  box-shadow: 0 4px 18px rgba(197, 160, 89, 0.22);
}

.projects-head__cta:hover {
  filter: brightness(1.05);
}

/* Projects — Satışı devam eden (ör. https://bakyapi.com.tr/) */
.projects {
  padding: 4rem 0 5rem;
}

.projects--sales {
  background: linear-gradient(180deg, #fafcfb 0%, var(--color-bg) 100%);
  border-top: 1px solid var(--color-line);
}

.projects--sales > .container {
  --container-max: 1320px;
  width: min(var(--container-max), calc(100% - 2 * var(--page-gutter)));
}

.projects__sales-head {
  text-align: center;
  max-width: 56rem;
  margin: 0 auto 2.75rem;
}

.projects__sales-title {
  margin: 0;
  font-family: var(--font-sans);
  font-size: clamp(1.35rem, 2.5vw, 1.85rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1.3;
  color: var(--color-text);
}

.projects__sales-title::after {
  content: "";
  display: block;
  width: 3rem;
  height: 3px;
  margin: 1rem auto 0;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--color-gold-light), var(--color-gold));
}

/* Proje kartları — yatay slider */
.project-slider {
  position: relative;
  isolation: isolate;
  padding-inline: clamp(0.15rem, 1.5vw, 2.65rem);
  margin-top: 0.25rem;
}

.project-slider__viewport {
  position: relative;
  z-index: 0;
  overflow: hidden;
  border-radius: var(--radius);
  touch-action: pan-y;
}

.project-slider__track {
  display: flex;
  transition: transform 0.55s cubic-bezier(0.25, 0.08, 0.25, 1);
  will-change: transform;
}

@media (prefers-reduced-motion: reduce) {
  .project-slider__track {
    transition: none;
  }
}

.project-slider__slide {
  flex: 0 0 100%;
  width: 100%;
  min-width: 0;
}

.project-slider__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  /* track’te transform olduğu için oklar kartın altında kalabiliyordu */
  z-index: 10;
  display: grid;
  place-items: center;
  width: 2.65rem;
  height: 2.65rem;
  margin: 0;
  padding: 0;
  border: 1px solid var(--color-line);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.94);
  color: var(--color-gold-light);
  font-size: 1.65rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.1);
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.2s;
}

.project-slider__btn span {
  display: block;
  margin-top: -0.12em;
}

.project-slider__btn:hover {
  background: linear-gradient(145deg, var(--color-gold-light), var(--color-gold));
  color: #fff;
  border-color: transparent;
}

.project-slider__btn:focus-visible {
  outline: 2px solid var(--color-gold);
  outline-offset: 2px;
}

.project-slider__btn--prev {
  left: clamp(0.35rem, 1.5vw, 0.85rem);
}

.project-slider__btn--next {
  right: clamp(0.35rem, 1.5vw, 0.85rem);
}

.project-slider__dots {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.45rem;
  margin-top: 1.35rem;
}

.project-slider__dot {
  width: 9px;
  height: 9px;
  margin: 0;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(12, 18, 16, 0.15);
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}

.project-slider__dot:hover {
  background: rgba(197, 160, 89, 0.55);
}

.project-slider__dot.is-active {
  background: var(--color-gold);
  transform: scale(1.2);
}

.project-slider__dot:focus-visible {
  outline: 2px solid var(--color-gold);
  outline-offset: 2px;
}

.project-card {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.22fr);
  gap: 0;
  align-items: stretch;
  background: var(--color-elevated);
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.08);
}

.project-card__media-wrap {
  position: relative;
  min-height: 100%;
  background: var(--color-surface);
}

.project-card__media-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(90deg, transparent 55%, rgba(255, 255, 255, 0.14) 100%);
  opacity: 0.85;
}

.project-card__media {
  min-height: clamp(300px, 36vw, 380px);
  height: 100%;
  background-size: cover;
  background-position: center;
}

.project-card__body {
  position: relative;
  padding: clamp(1.85rem, 3.2vw, 2.65rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0;
  border-inline-start: 3px solid rgba(197, 160, 89, 0.45);
  min-width: 0;
}

.project-card__brand {
  margin: 0 0 0.5rem;
  font-family: var(--font-sans);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--color-gold-light);
  letter-spacing: 0.02em;
}

.project-card__hook {
  margin: 0 0 1rem;
  font-size: 1rem;
  line-height: 1.55;
  color: var(--color-text);
}

.project-card__hook strong {
  font-weight: 700;
  font-size: 1.05rem;
}

.project-card__status {
  margin: 0 0 0.85rem;
  padding: 0.65rem 0.85rem;
  font-size: 0.9rem;
  line-height: 1.45;
  color: var(--color-text);
  background: rgba(201, 162, 39, 0.12);
  border: 1px solid rgba(201, 162, 39, 0.28);
  border-radius: 10px;
}

.projects__empty {
  margin: 0;
  padding: 2rem 1.25rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.65);
  font-size: 1rem;
  border: 1px dashed rgba(255, 255, 255, 0.15);
  border-radius: 12px;
}

.project-card__text {
  margin: 0 0 1.35rem;
  color: var(--color-muted);
  font-size: 0.9375rem;
  line-height: 1.68;
  flex: 1;
}

.project-card__feats {
  list-style: none;
  margin: 0 0 1.35rem;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(10.75rem, 1fr));
  gap: 0.75rem 0.85rem;
}

.project-card__feats--4 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

@media (min-width: 1180px) {
  .project-card__feats--4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.project-card__feat {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  margin: 0;
  padding: 0.7rem 0.65rem;
  background: linear-gradient(145deg, #fff, var(--color-surface));
  border: 1px solid var(--color-line);
  border-radius: 10px;
  min-height: 3.85rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}

.project-card__feat-ic {
  flex-shrink: 0;
  width: 2.25rem;
  height: 2.25rem;
  display: grid;
  place-items: center;
  font-size: 1.05rem;
  line-height: 1;
  background: rgba(197, 160, 89, 0.12);
  border-radius: 50%;
  border: 1px solid rgba(197, 160, 89, 0.22);
}

.project-card__feat-label {
  font-size: 0.78rem;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.02em;
  color: var(--color-text);
}

.project-card__cta {
  margin-top: auto;
  align-self: flex-start;
}

a.project-card__cta.btn {
  margin-top: auto;
  text-decoration: none;
  white-space: normal;
  text-align: center;
  max-width: 100%;
  padding-inline: 1.5rem;
  box-shadow: 0 4px 18px rgba(197, 160, 89, 0.28);
}

a.project-card__cta.btn:hover {
  filter: brightness(1.05);
  box-shadow: 0 6px 22px rgba(197, 160, 89, 0.35);
}

/* Eski etiket yardımcıları (başka bölümlerde kullanılabilir) */
.project-card__tags,
.project-card__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.tag {
  font-size: 0.75rem;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  background: rgba(12, 18, 16, 0.05);
  color: var(--color-muted);
  border: 1px solid var(--color-line);
}

.tag--new {
  background: rgba(76, 175, 140, 0.2);
  color: #8fd9be;
  border-color: rgba(76, 175, 140, 0.35);
}

.tag--accent {
  background: rgba(197, 160, 89, 0.2);
  color: var(--color-gold-light);
  border-color: rgba(197, 160, 89, 0.35);
}

.badge-line {
  font-size: 0.8125rem;
  color: var(--color-muted);
  padding-inline-start: 1rem;
  position: relative;
}

.badge-line::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-gold);
}

[dir="rtl"] .badge-line::before {
  left: auto;
  right: 0;
}

[dir="rtl"] .badge-line {
  padding-inline-start: 0;
  padding-inline-end: 1rem;
}

.link-arrow {
  font-weight: 600;
  color: var(--color-gold-light);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.link-arrow::after {
  content: "→";
  transition: transform 0.2s;
}

.link-arrow:hover::after {
  transform: translateX(4px);
}

[dir="rtl"] .link-arrow::after {
  content: "←";
}

[dir="rtl"] .link-arrow:hover::after {
  transform: translateX(-4px);
}

/* News */
.news {
  padding: 4rem 0 5rem;
  background: var(--color-surface);
  border-top: 1px solid var(--color-line);
}

.news__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.news__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.news-card {
  background: var(--color-elevated);
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s, transform 0.2s;
}

.news-card:hover {
  border-color: rgba(197, 160, 89, 0.35);
  transform: translateY(-2px);
}

.news-card__media {
  position: relative;
  aspect-ratio: 16 / 10;
  background: var(--color-line);
  overflow: hidden;
}

.news-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.news-card:hover .news-card__img {
  transform: scale(1.04);
}

@media (prefers-reduced-motion: reduce) {
  .news-card:hover .news-card__img {
    transform: none;
  }
}

.news-card__content {
  padding: 1.25rem 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 0;
}

.news-card__date {
  font-size: 0.8125rem;
  color: var(--color-gold);
  margin-bottom: 0.75rem;
}

.news-card__title {
  font-family: var(--font-sans);
  font-size: 1.15rem;
  margin: 0 0 0.75rem;
  line-height: 1.35;
}

.news-card__excerpt {
  margin: 0 0 1rem;
  color: var(--color-muted);
  font-size: 0.9375rem;
  flex: 1;
}

.news-card__media-link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.news-card__title-link {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

.news-card__title-link:hover {
  color: var(--color-gold);
}

.news__empty {
  margin: 0;
  padding: 2rem 1.25rem;
  text-align: center;
  color: var(--color-muted);
  border: 1px dashed var(--color-line);
  border-radius: var(--radius);
}

.news-page__hero {
  padding: clamp(5.5rem, 12vw, 7rem) 0 2rem;
  background: linear-gradient(180deg, rgba(15, 18, 24, 0.92), var(--color-bg));
}

.news-page__breadcrumb {
  font-size: 0.875rem;
  color: var(--color-muted);
  margin-bottom: 1rem;
}

.news-page__breadcrumb a {
  color: var(--color-gold);
  text-decoration: none;
}

.news-page__breadcrumb a:hover {
  text-decoration: underline;
}

.news-page__title {
  margin-bottom: 0.5rem;
}

.news-page__lead {
  margin: 0;
  color: var(--color-muted);
  max-width: 40rem;
}

.news-page__list {
  padding-bottom: clamp(3rem, 8vw, 5rem);
}

.news-detail {
  padding: clamp(5.5rem, 12vw, 6.5rem) 0 clamp(3rem, 8vw, 5rem);
}

.news-detail__inner {
  max-width: 46rem;
}

.news-detail__head {
  margin-bottom: 1.5rem;
}

.news-detail__date {
  display: block;
  font-size: 0.875rem;
  color: var(--color-gold);
  margin-bottom: 0.75rem;
}

.news-detail__title {
  margin: 0;
  text-wrap: balance;
}

.news-detail__figure {
  margin: 0 0 2rem;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--color-line);
}

.news-detail__img {
  width: 100%;
  height: auto;
  display: block;
  vertical-align: middle;
}

.news-detail__markdown {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--color-text);
}

.news-detail__markdown.is-hidden {
  display: none !important;
}

.news-detail__back {
  margin: 2.5rem 0 0;
}

.news-detail__404 {
  color: var(--color-muted);
  margin: 0 0 1.25rem;
}

/* Projects archive (projects.php) */
.project-archive-card {
  background: var(--color-elevated);
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s, transform 0.2s;
}

.project-archive-card:hover {
  border-color: var(--color-gold);
  transform: translateY(-2px);
}

.project-archive-card__media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--color-bg);
}

.project-archive-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

.project-archive-card:hover .project-archive-card__img {
  transform: scale(1.04);
}

.project-archive-card__content {
  padding: 1.25rem 1.35rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  flex: 1;
}

.project-archive-card__title {
  margin: 0;
  font-size: 1.15rem;
  font-weight: 600;
  line-height: 1.3;
}

.project-archive-card__title-link {
  color: var(--color-text);
  text-decoration: none;
}

.project-archive-card__title-link:hover {
  color: var(--color-gold);
}

.project-archive-card__hook {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--color-muted);
  line-height: 1.5;
  flex: 1;
}

.project-archive-card__cta-wrap {
  margin: 0.25rem 0 0;
}

.project-archive-card__media-link {
  display: block;
  color: inherit;
  text-decoration: none;
}

/* Project detail (project.php) */
.project-detail {
  padding: clamp(5.5rem, 12vw, 6.5rem) 0 clamp(3rem, 8vw, 5rem);
}

.project-detail__inner {
  max-width: 46rem;
}

.project-detail__head {
  margin-bottom: 1.25rem;
}

.project-detail__title {
  margin: 0 0 0.75rem;
  text-wrap: balance;
}

.project-detail__hook {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.55;
  color: var(--color-muted);
}

.project-detail__hook strong {
  color: var(--color-text);
  font-weight: 600;
}

.project-detail__figure {
  margin-top: 0.5rem;
}

.project-detail__status {
  margin: 0 0 1.25rem;
  font-size: 0.9375rem;
  color: var(--color-gold);
  font-weight: 500;
}

.project-detail__feats {
  list-style: none;
  margin: 2rem 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.65rem 1.25rem;
}

.project-detail__feats--4 {
  grid-template-columns: repeat(2, 1fr);
}

.project-detail__feat {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--color-muted);
}

.project-detail__feat-ic {
  flex-shrink: 0;
  min-width: 1.5rem;
}

.project-detail__feat-label {
  color: var(--color-text);
}

.project-detail__actions {
  margin: 2.5rem 0 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.5rem;
}

.project-detail__contact {
  margin: 0;
}

@media (max-width: 520px) {
  .project-detail__feats,
  .project-detail__feats--4 {
    grid-template-columns: 1fr;
  }
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* CTA — arka plan parallax, metin + buton önde sabit hizada */
.cta-band {
  position: relative;
  isolation: isolate;
  padding: clamp(3rem, 7vw, 4.75rem) 0;
  overflow: hidden;
  border-block: 1px solid rgba(255, 255, 255, 0.06);
}

.cta-band__parallax-layer {
  position: absolute;
  left: 0;
  right: 0;
  top: -28%;
  bottom: -28%;
  width: 100%;
  z-index: 0;
  pointer-events: none;
  will-change: transform;
}

.cta-band__bg-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.08);
}

.cta-band__scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    105deg,
    rgba(12, 18, 16, 0.88) 0%,
    rgba(18, 24, 22, 0.72) 48%,
    rgba(22, 28, 26, 0.58) 100%
  );
}

.cta-band__inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(1rem, 3vw, 2.5rem);
  flex-wrap: nowrap;
}

.cta-band__title {
  font-family: var(--font-sans);
  font-size: clamp(0.7rem, 1.85vw, 1.28rem);
  font-weight: 700;
  margin: 0;
  line-height: 1.2;
  color: #fff;
  letter-spacing: 0.06em;
  white-space: nowrap;
  flex: 1 1 auto;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.45);
}

.cta-band__btn {
  flex-shrink: 0;
}

@media (max-width: 720px) {
  .cta-band__inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.25rem;
  }

  .cta-band__title {
    max-width: 100%;
    white-space: nowrap;
    font-size: clamp(0.62rem, 2.85vw, 0.95rem);
  }

  .cta-band__btn {
    width: 100%;
    max-width: 20rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .cta-band__parallax-layer {
    will-change: auto;
    transform: none !important;
  }
}

/* Contact — görsel + iletişim kartları (form yok) */
.contact {
  position: relative;
  padding: clamp(4rem, 8vw, 5.5rem) 0;
  background: linear-gradient(180deg, var(--color-bg) 0%, #f6f8f7 38%, var(--color-surface) 100%);
  border-top: 1px solid var(--color-line);
  overflow: hidden;
}

.contact::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(ellipse 55% 40% at 88% 18%, rgba(197, 160, 89, 0.09), transparent 55%);
}

.contact__wrap {
  position: relative;
  z-index: 1;
}

.contact__head {
  text-align: center;
  max-width: 40rem;
  margin: 0 auto 2.75rem;
}

.contact__title {
  margin: 0;
}

.contact__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: center;
}

.contact__visual {
  position: relative;
  min-width: 0;
}

.contact__figure {
  margin: 0;
  border-radius: calc(var(--radius) + 4px);
  overflow: hidden;
  border: 1px solid rgba(12, 18, 16, 0.08);
  box-shadow: 0 20px 56px rgba(0, 0, 0, 0.1);
  background: var(--color-line);
}

.contact__photo {
  width: 100%;
  height: auto;
  min-height: min(320px, 48vw);
  max-height: 520px;
  object-fit: cover;
  display: block;
  vertical-align: middle;
}

.contact__visual-bar {
  position: absolute;
  left: -5px;
  top: 14%;
  width: 4px;
  height: 38%;
  border-radius: 4px;
  background: linear-gradient(180deg, var(--color-gold-light), var(--color-gold));
  opacity: 0.9;
  pointer-events: none;
}

.contact__panel {
  min-width: 0;
}

.contact__lead {
  margin: 0 0 1.5rem;
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--color-muted);
  max-width: 36rem;
}

.contact__cards {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.contact__card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.1rem 1.15rem 1.1rem 1.1rem;
  text-decoration: none;
  color: inherit;
  background: var(--color-elevated);
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}

.contact__card:hover {
  border-color: rgba(197, 160, 89, 0.45);
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}

.contact__card:focus-visible {
  outline: 2px solid var(--color-gold);
  outline-offset: 2px;
}

.contact__card-icon {
  flex-shrink: 0;
  width: 2.75rem;
  height: 2.75rem;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: rgba(197, 160, 89, 0.12);
  color: var(--color-gold-light);
  border: 1px solid rgba(197, 160, 89, 0.22);
}

.contact__card-icon svg {
  display: block;
}

.contact__card-body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.contact__card-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-gold);
}

.contact__card-value {
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.45;
  color: var(--color-text);
  word-break: break-word;
}

.contact__card-arrow {
  flex-shrink: 0;
  font-size: 1.15rem;
  color: var(--color-gold-light);
  opacity: 0.65;
  transition: transform 0.2s, opacity 0.2s;
}

.contact__card:hover .contact__card-arrow {
  transform: translateX(4px);
  opacity: 1;
}

/* Footer */
.footer {
  background: var(--color-surface);
  padding: 3rem 0 0;
  border-top: 1px solid var(--color-line);
}

.footer__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  gap: clamp(1.5rem, 4vw, 2.75rem);
  padding-bottom: 2.5rem;
  align-items: start;
}

.footer__col--corp {
  justify-self: start;
  text-align: left;
  min-width: 0;
}

.footer__brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-self: center;
  text-align: center;
  min-width: 0;
  max-width: 22rem;
}

.footer__col--legal {
  justify-self: end;
  text-align: right;
  min-width: 0;
}

@media (min-width: 1025px) {
  .footer__col--corp,
  .footer__col--legal {
    padding-top: clamp(1.35rem, 3.2vw, 2.35rem);
  }
}

.footer__col--legal .footer__heading {
  text-align: right;
}

.footer__col--legal .footer__links li {
  text-align: right;
}

.footer__tagline {
  color: var(--color-muted);
  max-width: 22rem;
  margin: 1rem auto 0;
  font-size: 0.9375rem;
  line-height: 1.55;
}

.footer__heading {
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-gold);
  margin: 0 0 1rem;
}

.footer__links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer__links a {
  color: var(--color-muted);
  font-size: 0.9375rem;
  display: inline-block;
  padding: 0.35rem 0;
}

.footer__col--legal .footer__links a {
  text-align: right;
}

.footer__links a:hover {
  color: var(--color-text);
}

.footer__links .footer__legal-btn {
  display: inline-block;
  width: 100%;
  margin: 0;
  padding: 0.35rem 0;
  border: none;
  background: none;
  font: inherit;
  font-size: 0.9375rem;
  color: var(--color-muted);
  text-align: inherit;
  cursor: pointer;
  text-decoration: none;
}

.footer__col--legal .footer__links .footer__legal-btn {
  text-align: right;
}

.footer__links .footer__legal-btn:hover {
  color: var(--color-text);
}

body.legal-modal-open {
  overflow: hidden;
}

/* Yasal metinler — macOS tarzı yumuşak ölçek + flu arka plan */
.legal-modal {
  position: fixed;
  inset: 0;
  z-index: 10002;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: max(20px, env(safe-area-inset-top, 0px)) max(20px, env(safe-area-inset-right, 0px))
    max(20px, env(safe-area-inset-bottom, 0px)) max(20px, env(safe-area-inset-left, 0px));
  pointer-events: none;
  visibility: hidden;
  opacity: 0;
  transition:
    opacity 0.32s cubic-bezier(0.25, 0.1, 0.25, 1),
    visibility 0s linear 0.38s;
}

.legal-modal.is-open {
  pointer-events: auto;
  visibility: visible;
  opacity: 1;
  transition:
    opacity 0.34s cubic-bezier(0.25, 0.1, 0.25, 1),
    visibility 0s linear 0s;
}

.legal-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(18, 22, 20, 0.38);
  backdrop-filter: blur(16px) saturate(1.15);
  -webkit-backdrop-filter: blur(16px) saturate(1.15);
  opacity: 0;
  transition: opacity 0.36s cubic-bezier(0.22, 1, 0.36, 1);
}

.legal-modal.is-open .legal-modal__backdrop {
  opacity: 1;
}

.legal-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(520px, 100%);
  max-height: min(78vh, 680px);
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(40px) saturate(1.2);
  -webkit-backdrop-filter: blur(40px) saturate(1.2);
  border-radius: 14px;
  border: 1px solid rgba(12, 18, 16, 0.08);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.5) inset,
    0 28px 90px rgba(0, 0, 0, 0.22),
    0 12px 32px rgba(0, 0, 0, 0.1);
  transform: scale(0.88) translateY(16px);
  opacity: 0;
  transition:
    transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 0.34s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
}

.legal-modal.is-open .legal-modal__dialog {
  transform: scale(1) translateY(0);
  opacity: 1;
}

.legal-modal__chrome {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.1rem 0.85rem 1.25rem;
  flex-shrink: 0;
  border-bottom: 1px solid var(--color-line);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 249, 248, 0.92));
}

.legal-modal__title {
  margin: 0;
  font-family: var(--font-sans);
  font-size: clamp(1.05rem, 2.4vw, 1.35rem);
  font-weight: 700;
  line-height: 1.25;
  color: var(--color-text);
}

.legal-modal__close {
  flex-shrink: 0;
  width: 2.25rem;
  height: 2.25rem;
  display: grid;
  place-items: center;
  margin: 0;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(12, 18, 16, 0.06);
  color: var(--color-text);
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.15s ease;
}

.legal-modal__close:hover {
  background: rgba(12, 18, 16, 0.11);
}

.legal-modal__close:active {
  transform: scale(0.94);
}

.legal-modal__body {
  padding: 1.1rem 1.35rem 1.35rem;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--color-muted);
}

.legal-modal__body p {
  margin: 0 0 0.85rem;
}

.legal-modal__body p:last-child {
  margin-bottom: 0;
}

@media (prefers-reduced-motion: reduce) {
  .legal-modal,
  .legal-modal__backdrop,
  .legal-modal__dialog {
    transition-duration: 0.01ms !important;
  }
}

.footer__bottom {
  border-top: 1px solid var(--color-line);
  padding: 1.25rem 0;
}

.footer__bottom-inner p {
  margin: 0;
  font-size: 0.8125rem;
  color: var(--color-muted);
  text-align: center;
}

/* Orta genişlik: ~13–15" dizüstü, tablet yatay — tipografi & header sıkılığı */
@media (max-width: 1366px) {
  :root {
    --header-h: 86px;
  }

  .header__bar-inner {
    --nav-gap: clamp(1.2rem, 2.6vw, 2.65rem);
    --nav-gap-logo: clamp(2rem, 5.5vw, 5.25rem);
  }

  .section-title {
    font-size: clamp(1.55rem, 3.1vw, 2.25rem);
  }

  .projects--sales > .container {
    --container-max: 1220px;
  }

  .project-card__media {
    min-height: clamp(260px, 32vw, 360px);
  }

  .project-card__body {
    padding: clamp(1.45rem, 2.6vw, 2.25rem);
  }

  .hero__slide1-copy {
    left: clamp(2rem, 12vw, 7rem);
    max-width: min(34rem, calc(100% - 1.5rem));
  }
}

@media (max-width: 1200px) {
  :root {
    --header-h: 82px;
    --page-gutter: clamp(0.95rem, 2.4vw, 1.5rem);
  }

  .header__bar-inner {
    --nav-gap: clamp(0.85rem, 2vw, 1.85rem);
    --nav-gap-logo: clamp(1.35rem, 3.8vw, 3.5rem);
  }

  .header__links a {
    font-size: 0.88rem;
    letter-spacing: 0.032em;
  }

  .header.is-scrolled .header__links a {
    font-size: 0.86rem;
  }

  .logo--header .logo__img-wrap {
    width: clamp(78px, 9.2vw, 128px);
  }

  .header.is-scrolled .logo--header .logo__img-wrap {
    width: clamp(70px, 8.2vw, 116px);
  }

  .projects__sales-title {
    font-size: clamp(1.18rem, 2.1vw, 1.68rem);
  }

  .projects--sales > .container {
    --container-max: 1100px;
  }

  .intro {
    padding: 4.25rem 0 3.5rem;
  }

  .projects {
    padding: 3.5rem 0 4.25rem;
  }

  .news {
    padding: 3.5rem 0 4.25rem;
  }

  .contact {
    padding: clamp(3.25rem, 6vw, 4.75rem) 0;
  }

  .projects-head__title {
    font-size: clamp(1.2rem, 2.35vw, 1.85rem);
  }

  .cta-band__title {
    font-size: clamp(0.62rem, 1.55vw, 1.12rem);
  }
}

@media (max-width: 1060px) {
  .header__bar-inner {
    --nav-gap: clamp(0.65rem, 1.5vw, 1.35rem);
    --nav-gap-logo: clamp(1rem, 2.8vw, 2.4rem);
  }

  .header__links a {
    font-size: 0.8rem;
    letter-spacing: 0.028em;
  }
}

/* Responsive — dar masaüstü / tablet (önceden 960px) */
@media (max-width: 1024px) {
  :root {
    --header-h: 78px;
  }

  .intro__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .intro__figure,
  .intro__image {
    min-height: 280px;
  }

  .projects-head__inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .projects-head__visual {
    order: -1;
  }

  .projects-head__collage {
    max-height: none;
    min-height: 260px;
  }

  .projects-head__text {
    align-items: center;
    text-align: center;
    border-left: none;
    padding-inline-start: 0;
    border-top: 3px solid rgba(197, 160, 89, 0.35);
    padding-top: 1.5rem;
  }

  .projects-head__cta {
    align-self: center;
  }

  .projects-head__visual-accent {
    left: auto;
    right: 0;
    top: 8px;
    width: 35%;
    height: 4px;
    background: linear-gradient(90deg, var(--color-gold-light), var(--color-gold));
  }

  .project-card {
    grid-template-columns: 1fr;
  }

  .project-card__media-wrap::after {
    background: linear-gradient(180deg, transparent 40%, rgba(12, 18, 16, 0.12) 100%);
  }

  .project-card__body {
    border-inline-start: none;
    border-top: 3px solid rgba(197, 160, 89, 0.35);
  }

  .project-card__feats {
    grid-template-columns: 1fr;
  }

  .project-card__feats--4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .project-card__media {
    min-height: 240px;
  }

  .project-slider__btn {
    width: 2.35rem;
    height: 2.35rem;
    font-size: 1.45rem;
  }

  .news__grid {
    grid-template-columns: 1fr;
  }

  .contact__layout {
    grid-template-columns: 1fr;
    gap: 2.25rem;
  }

  .contact__visual {
    order: -1;
    max-width: 36rem;
    margin-inline: auto;
    width: 100%;
  }

  .contact__visual-bar {
    left: auto;
    right: -5px;
    top: 12%;
  }

  .contact__lead {
    text-align: center;
    margin-inline: auto;
  }

  .contact__panel {
    max-width: 32rem;
    margin-inline: auto;
    width: 100%;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .footer__col--corp,
  .footer__col--legal {
    justify-self: center;
    text-align: center;
    width: 100%;
    max-width: 22rem;
  }

  .footer__col--legal .footer__heading,
  .footer__col--legal .footer__links li {
    text-align: center;
  }

  .footer__col--legal .footer__links a {
    text-align: center;
  }

  .footer__col--legal .footer__links .footer__legal-btn {
    text-align: center;
  }

  .footer__brand {
    order: -1;
    max-width: 24rem;
  }

  .footer__tagline {
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 768px) {
  :root {
    --header-h: 78px;
  }

  .header__nav--left,
  .header__nav--right {
    display: none;
  }

  .header__menu-btn {
    display: flex;
  }

  .header__bar-inner {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    min-height: var(--header-h);
    column-gap: 0;
  }

  .header__col--left {
    display: none;
  }

  .header__col--center {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }

  .header__col--right {
    flex: 1 1 auto;
    justify-content: flex-end;
    padding-inline: 0;
    gap: 0.5rem;
  }

  .header__menu-btn {
    margin-inline-start: 0.35rem;
  }

  .lang-switcher {
    margin-inline-start: 0;
  }

  .support-widget {
    right: max(8px, env(safe-area-inset-right, 0px));
    bottom: max(10px, env(safe-area-inset-bottom, 0px));
  }

  .support-widget__tab {
    min-height: 44px;
    padding: 0.6rem 1.1rem;
    font-size: 0.72rem;
  }

  .support-widget__panel {
    width: min(320px, calc(100vw - 24px));
    max-height: min(420px, 60vh);
  }
}

/* Canlı destek — sabit alt sağ, sekme yatay, panel yukarı açılır */
.support-widget {
  position: fixed;
  right: max(16px, env(safe-area-inset-right, 0px));
  bottom: max(16px, env(safe-area-inset-bottom, 0px));
  z-index: 9998;
  direction: ltr;
}

.support-widget__backdrop {
  display: none;
}

.support-widget__backdrop.is-active {
  display: none;
}

.support-widget__dock {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  filter: drop-shadow(0 6px 28px rgba(0, 0, 0, 0.14));
}

.support-widget__tab {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: auto;
  min-width: 8.5rem;
  min-height: 46px;
  margin: 0;
  padding: 0.65rem 1.25rem;
  border: none;
  border-radius: 12px;
  background: linear-gradient(180deg, var(--color-gold-light), var(--color-gold));
  color: #fff;
  font: inherit;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: filter 0.2s ease, transform 0.2s ease;
}

.support-widget__tab:hover {
  filter: brightness(1.05);
}

.support-widget__tab-label {
  display: block;
}

.support-widget__panel {
  position: absolute;
  right: 0;
  bottom: calc(100% + 10px);
  top: auto;
  left: auto;
  width: min(360px, calc(100vw - 32px));
  max-height: min(480px, 72vh);
  display: flex;
  flex-direction: column;
  background: var(--color-elevated);
  border: 1px solid var(--color-line);
  border-radius: 12px;
  overflow: hidden;
  z-index: 1;
  transform: translateY(12px);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.25s ease;
  opacity: 0;
  pointer-events: none;
  box-shadow: 0 -8px 40px rgba(0, 0, 0, 0.12);
}

.support-widget.is-open .support-widget__panel {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.support-widget__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.85rem 1rem;
  background: var(--color-surface);
  border-bottom: 1px solid var(--color-line);
}

.support-widget__title {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-text);
}

.support-widget__close {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  padding: 0;
  border: none;
  background: transparent;
  color: var(--color-muted);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  border-radius: 8px;
  transition: background 0.2s, color 0.2s;
}

.support-widget__close:hover {
  background: rgba(12, 18, 16, 0.06);
  color: var(--color-text);
}

.support-widget__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 0;
  padding: 1rem;
}

.support-widget__hint {
  margin: 0 0 0.75rem;
  font-size: 0.875rem;
  line-height: 1.45;
  color: var(--color-muted);
}

.support-widget__feed {
  flex: 1;
  min-height: 140px;
  max-height: 220px;
  overflow-y: auto;
  margin-bottom: 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.support-widget__bubble {
  max-width: 92%;
  padding: 0.55rem 0.75rem;
  border-radius: 10px;
  font-size: 0.875rem;
  line-height: 1.4;
  word-break: break-word;
}

.support-widget__bubble--user {
  align-self: flex-end;
  background: linear-gradient(135deg, var(--color-gold), #a68542);
  color: #fff;
}

.support-widget__bubble--bot {
  align-self: flex-start;
  background: var(--color-surface);
  color: var(--color-text);
  border: 1px solid var(--color-line);
}

.support-widget__form {
  display: flex;
  gap: 0.5rem;
  align-items: stretch;
}

.support-widget__input {
  flex: 1;
  min-width: 0;
  padding: 0.6rem 0.75rem;
  border: 1px solid var(--color-line);
  border-radius: 8px;
  font: inherit;
  font-size: 0.875rem;
  background: #fff;
  color: var(--color-text);
}

.support-widget__input:focus {
  outline: none;
  border-color: var(--color-gold);
}

.support-widget__send {
  flex-shrink: 0;
  padding: 0.6rem 1rem;
  font-size: 0.8125rem;
}

.support-widget__sr {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
