/* ==========================================================
   Forbayt — patterns.css
   GSAP demo patterns + Hero Swiper slider + Theme toggle
   ========================================================== */


/* =============================================================
   HERO SWIPER SLIDER (full-bleed, video + images)
   ============================================================= */
.fb-slider {
  position: relative;
  width: 100%;
  height: 100vh;
  height: 100svh;
  min-height: 640px;
  overflow: hidden;
  background: #000;
  isolation: isolate;
}
.fb-slider__swiper {
  width: 100%;
  height: 100%;
}
.fb-slider .swiper-wrapper { height: 100%; }
.fb-slide {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}
.fb-slide__video,
.fb-slide__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.fb-slide__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg,
      rgba(10,10,12,0.15) 0%,
      rgba(10,10,12,0.35) 45%,
      rgba(10,10,12,0.82) 100%);
  pointer-events: none;
}
.fb-slide__wrap {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-bottom: clamp(80px, 10vw, 140px);
  padding-top: clamp(96px, 10vw, 140px);
}
.fb-slide__content {
  max-width: 900px;
  display: flex;
  flex-direction: column;
  gap: clamp(16px, 2vw, 24px);
  color: #fff;
}

.fb-slide__label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  align-self: flex-start;
}

.fb-slide__title {
  font-family: var(--font-display);
  font-size: clamp(42px, 7.6vw, 132px);
  font-weight: 500;
  line-height: 0.95;
  letter-spacing: -0.04em;
  color: #fff;
  max-width: 16ch;
  margin: 0;
}
.fb-slide__title em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--ember);
}

.fb-slide__lede {
  font-size: clamp(15px, 1vw + 7px, 19px);
  line-height: 1.5;
  max-width: 48ch;
  color: rgba(255,255,255,0.88);
  margin: 0;
}

.fb-slide__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}

/* Light-on-dark button variants for slider */
.fb-btn--solid-light {
  --btn-bg: #fff;
  --btn-fg: #0A0A0C;
  --btn-br: #fff;
  background: var(--btn-bg);
  color: var(--btn-fg);
  border-color: var(--btn-br);
}
.fb-btn--solid-light::before { background: var(--ember); }
.fb-btn--solid-light:hover { color: #fff; border-color: var(--ember); }

.fb-btn--ghost-light {
  --btn-bg: transparent;
  --btn-fg: #fff;
  --btn-br: rgba(255,255,255,0.38);
  background: var(--btn-bg);
  color: var(--btn-fg);
  border-color: var(--btn-br);
}
.fb-btn--ghost-light::before { background: #fff; }
.fb-btn--ghost-light:hover { color: #0A0A0C; border-color: #fff; }

/* Slider controls */
.fb-slider__controls {
  position: absolute;
  left: 0; right: 0;
  bottom: 20px;
  z-index: 5;
  pointer-events: none;
}
.fb-slider__controls-inner {
  display: flex; align-items: center; gap: 24px;
  pointer-events: auto;
}
.fb-slider__counter {
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.78);
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  font-variant-numeric: tabular-nums;
}
.fb-slider__counter em {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.6em;
  color: #fff;
  font-weight: 400;
}
.fb-slider__counter-sep { opacity: 0.6; }

.fb-slider__pag {
  flex: 1;
  display: flex;
  gap: 6px;
  max-width: 240px;
}
.fb-slider__pag .fb-slider-bullet {
  flex: 1;
  height: 2px;
  background: rgba(255,255,255,0.28);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.fb-slider__pag .fb-slider-bullet::after {
  content: "";
  position: absolute; inset: 0;
  background: #fff;
  transform: scaleX(0);
  transform-origin: left;
}
.fb-slider__pag .fb-slider-bullet.is-active::after {
  animation: fbSliderFill var(--slide-dur, 6s) linear forwards;
}
@keyframes fbSliderFill {
  from { transform: scaleX(0); }
  to   { transform: scaleX(1); }
}

.fb-slider__nav {
  display: flex; gap: 8px;
}
.fb-slider__btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.3);
  color: #fff;
  display: grid; place-items: center;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: background .3s var(--ease-out), border-color .3s var(--ease-out);
}
.fb-slider__btn:hover {
  background: #fff;
  color: #0A0A0C;
  border-color: #fff;
}
.fb-slider__btn svg { width: 16px; height: 16px; }

/* Swiper-specific: fade effect enable */
.fb-slider__swiper.swiper-fade .fb-slide {
  transition: opacity .9s var(--ease-out);
}


/* =============================================================
   THEME TOGGLE BUTTON
   ============================================================= */
.fb-theme-toggle {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: transparent;
  border: 1px solid var(--line-strong);
  color: var(--ivory);
  display: inline-flex; align-items: center; justify-content: center;
  position: relative;
  transition: border-color .3s var(--ease-out), color .3s var(--ease-out), background .3s var(--ease-out);
  flex: 0 0 auto;
}
.fb-theme-toggle:hover {
  border-color: var(--accent);
  background: var(--accent);
  color: var(--on-accent);
}
.fb-theme-toggle svg {
  width: 18px; height: 18px;
  position: absolute;
  transition: transform .5s var(--ease-out), opacity .35s var(--ease-out);
}
[data-theme="light"] .fb-theme-toggle__sun { opacity: 0; transform: rotate(60deg) scale(0.6); }
[data-theme="light"] .fb-theme-toggle__moon { opacity: 1; transform: rotate(0) scale(1); }
[data-theme="dark"] .fb-theme-toggle__sun { opacity: 1; transform: rotate(0) scale(1); }
[data-theme="dark"] .fb-theme-toggle__moon { opacity: 0; transform: rotate(-60deg) scale(0.6); }





/* =============================================================
   1. ROLLING TEXT — char stagger (nav, footer, buttons, titles)
   ============================================================= */
.fb-roll {
  display: inline-block;
  position: relative;
  overflow: hidden;
  vertical-align: top;
  line-height: 1.15;
  white-space: nowrap;
}
.fb-roll__a,
.fb-roll__b {
  display: inline-block;
  white-space: nowrap;
  will-change: transform;
}
.fb-roll__a { position: relative; }
.fb-roll__b {
  position: absolute;
  left: 0;
  top: 100%;
  color: var(--ember);   /* hover state ember'e geçer */
}

.fb-roll__c {
  display: inline-block;
  will-change: transform;
}
.fb-roll__c--sp {
  /* nbsp karakter — width korunur ama transform'a katkı yapmasın */
  transform: translateZ(0);
}

/* JS registrasyonu yoksa (reduced-motion) — dup'ı gizle */
.fb-roll--noop .fb-roll__b { display: none; }

/* Navbar link — eski sliding-pill hover efektini sıfırla, roll devralır */
.fb-nav__link { padding: 10px 14px; }
.fb-nav__link::before { display: none; }
.fb-nav__link .fb-roll__a,
.fb-nav__link .fb-roll__b {
  transition: color .35s var(--ease-out);
  color: inherit;
}
.fb-nav__link:hover .fb-roll__a,
.fb-nav__link:hover .fb-roll__b { color: var(--ember); }

/* Navbar CTA — ember bg üzerine ember yazı kalmasın diye iki kopya da inherit */
.fb-nav__cta .fb-roll__a,
.fb-nav__cta .fb-roll__b { color: inherit; }
.fb-nav__cta:hover .fb-roll__a,
.fb-nav__cta:hover .fb-roll__b { color: #fff; }


/* =============================================================
   2. BENTO GALLERY (scrubbed)
   ============================================================= */
.fb-bento {
  padding: var(--section-pad-y) 0;
  border-bottom: 1px solid var(--line);
}

.fb-bento__intro {
  max-width: 34ch;
  color: var(--muted);
  font-size: 15px;
  align-self: flex-end;
}

.fb-bento__grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: clamp(120px, 14vw, 220px);
  gap: clamp(16px, 1.8vw, 28px);
}

.fb-bento__item {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  background-color: var(--surface);
  background-size: cover;
  background-position: center;
  will-change: transform;
  isolation: isolate;
}
.fb-bento__item::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(11,11,13,0) 40%, rgba(11,11,13,.55) 100%);
  z-index: 1;
}
/* Cinematic mask reveal — cream curtain scales away from bottom */
.fb-bento__item::after {
  content: "";
  position: absolute; inset: 0;
  background: var(--ink);
  transform-origin: bottom;
  transform: scaleY(1);
  z-index: 3;
  pointer-events: none;
  transition: transform 1.25s cubic-bezier(0.77, 0, 0.175, 1);
}
.fb-bento__item.is-revealed::after {
  transform: scaleY(0);
}

.fb-bento__item figcaption {
  position: absolute;
  left: 20px; bottom: 18px; right: 20px;
  z-index: 2;
  color: #fff;
  display: flex; flex-direction: column; gap: 2px;
}
.fb-bento__item figcaption span {
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.01em;
}
.fb-bento__item figcaption em {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 13px;
  color: rgba(255,255,255,0.78);
}

/* Bento layout — editorial asymmetric */
.fb-bento__item--a { grid-column: span 7; grid-row: span 3; }
.fb-bento__item--b { grid-column: span 5; grid-row: span 2; }
.fb-bento__item--c { grid-column: span 5; grid-row: span 2; }
.fb-bento__item--d { grid-column: span 4; grid-row: span 2; }
.fb-bento__item--e { grid-column: span 4; grid-row: span 2; }
.fb-bento__item--f { grid-column: span 4; grid-row: span 2; }


/* =============================================================
   3. HORIZONTAL SCROLLING GALLERY (Work)
   ============================================================= */
.fb-hscroll {
  position: relative;
  height: 100vh;
  height: 100svh;
  overflow: hidden;
  background: var(--ink);
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
}
.fb-hscroll__pin {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.fb-hscroll__track {
  display: flex;
  align-items: center;
  gap: clamp(24px, 3vw, 48px);
  padding: 0 clamp(32px, 6vw, 96px);
  height: 100%;
  width: max-content;
  will-change: transform;
}

.fb-hscroll__intro {
  flex: 0 0 clamp(320px, 34vw, 520px);
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding-right: clamp(16px, 3vw, 48px);
}
.fb-hscroll__intro .fb-section-title { font-size: clamp(36px, 5vw, 76px); }
.fb-hscroll__lede { color: var(--muted); max-width: 40ch; font-size: 15px; }

.fb-hcard {
  flex: 0 0 clamp(300px, 32vw, 520px);
  display: flex; flex-direction: column;
  gap: 20px;
  color: var(--ivory);
}
.fb-hcard__media {
  position: relative;
  aspect-ratio: 4 / 4;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
}
.fb-hcard__img {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transform: scale(1.04);
  transition: transform 1s var(--ease-out);
}
.fb-hcard:hover .fb-hcard__img { transform: scale(1.09); }

/* Cinematic mask reveal — cream curtain scales away from bottom */
.fb-hcard__media::after {
  content: "";
  position: absolute; inset: 0;
  background: var(--ink);
  transform-origin: bottom;
  transform: scaleY(1);
  z-index: 2;
  pointer-events: none;
  transition: transform 1.25s cubic-bezier(0.77, 0, 0.175, 1);
}
.fb-hcard.is-revealed .fb-hcard__media::after {
  transform: scaleY(0);
}

.fb-hcard__no {
  position: absolute;
  top: 18px; left: 20px;
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: 0.14em;
  padding: 4px 10px;
  border: 1px solid rgba(255,255,255,0.4);
  border-radius: 999px;
  color: #fff;
  backdrop-filter: blur(8px);
  background: rgba(11,11,13,0.18);
}

.fb-hcard__meta { display: flex; flex-direction: column; gap: 10px; }
.fb-hcard__meta h3 {
  font-size: clamp(20px, 1.6vw, 26px);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.15;
}
.fb-hcard__meta p {
  color: var(--muted);
  font-size: 14px;
  max-width: 40ch;
  margin: 0;
}
.fb-hcard__meta p strong { color: var(--ivory); font-weight: 500; }

.fb-hscroll__outro {
  flex: 0 0 clamp(300px, 32vw, 480px);
  display: flex; flex-direction: column;
  gap: 28px;
  justify-content: center;
  padding: 0 clamp(16px, 3vw, 48px);
}
.fb-hscroll__outro h3 {
  font-size: clamp(32px, 3.6vw, 56px);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.05;
}
.fb-hscroll__outro h3 em { color: var(--ember); }

/* scroll progress (altta) */
.fb-hscroll__progress {
  position: absolute;
  left: clamp(20px, 4vw, 56px);
  right: clamp(20px, 4vw, 56px);
  bottom: 24px;
  display: flex; align-items: center; gap: 18px;
  z-index: 4;
  pointer-events: none;
}
.fb-hscroll__progress-label {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}
.fb-hscroll__progress-track {
  position: relative;
  flex: 1;
  height: 2px;
  background: var(--line);
  overflow: hidden;
}
.fb-hscroll__progress-track i {
  position: absolute; left: 0; top: 0; bottom: 0;
  width: 100%;
  background: var(--ember);
  transform: scaleX(0);
  transform-origin: left;
  will-change: transform;
}


/* =============================================================
   3b. PINNED HORIZONTAL STRIP (Process Detay — /surec)
   Her aşama bir kart, pin + yatay scroll
   ============================================================= */
.fb-pstrip {
  position: relative;
  height: 100vh;
  height: 100svh;
  min-height: 600px;
  overflow: hidden;
  background: var(--surface-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: var(--ivory);
}
.fb-pstrip__pin {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.fb-pstrip__track {
  display: flex;
  align-items: stretch;
  gap: 0;
  padding: 0;
  height: 100%;
  width: max-content;
  will-change: transform;
  box-sizing: border-box;
}

.fb-pstrip__intro {
  flex: 0 0 100vw;
  display: flex;
  flex-direction: column;
  gap: 18px;
  justify-content: center;
  padding: clamp(80px, 12vh, 140px) clamp(32px, 8vw, 120px);
  border-right: 1px solid var(--line);
  background: var(--surface-2);
}
.fb-pstrip__intro .fb-section-title {
  font-size: clamp(34px, 4.5vw, 68px);
  line-height: 1;
}
.fb-pstrip__lede {
  color: var(--muted);
  font-size: 15px;
  max-width: 38ch;
  margin: 0;
}
.fb-pstrip__hint {
  display: inline-flex;
  width: 44px; height: 44px;
  align-items: center; justify-content: center;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  color: var(--ember);
  margin-top: 8px;
  animation: fb-pstrip-hint 2s ease-in-out infinite;
}
@keyframes fb-pstrip-hint {
  0%, 100% { transform: translateX(0); }
  50%      { transform: translateX(6px); }
}

.fb-pcard {
  flex: 0 0 100vw;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(40px, 5vw, 80px);
  padding: clamp(80px, 12vh, 140px) clamp(32px, 8vw, 120px);
  background: var(--surface);
  border-right: 1px solid var(--line);
  color: var(--ivory);
  position: relative;
}
.fb-pcard:nth-child(odd)  { background: var(--surface); }
.fb-pcard:nth-child(even) { background: var(--surface-2); }
.fb-pcard--last { border-right: none; }

.fb-pcard__left {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.fb-pcard__head {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px;
  align-items: end;
}
.fb-pcard__no {
  font-family: var(--font-display);
  font-size: clamp(96px, 13vw, 220px);
  font-weight: 400;
  letter-spacing: -0.05em;
  line-height: 0.85;
  color: var(--ember);
  font-variant-numeric: tabular-nums;
}
.fb-pcard__title {
  font-size: clamp(40px, 4vw, 72px);
  font-weight: 500;
  letter-spacing: -0.03em;
  margin: 0;
  line-height: 1;
}
.fb-pcard__title em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--ember);
}
.fb-pcard__week {
  display: inline-block;
  margin-top: 8px;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}
.fb-pcard__lede {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: clamp(16px, 1.1vw + 8px, 19px);
  line-height: 1.55;
  max-width: 46ch;
}
.fb-pcard__cols {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
.fb-pcard__sub {
  display: block;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ember);
  margin-bottom: 8px;
}
.fb-pcard__cols ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 6px;
  font-size: 14px;
  color: var(--muted);
}
.fb-pcard__cols ul li::before {
  content: "— ";
  color: var(--line-strong);
}

/* Mobile fallback */
@media (max-width: 991.98px) {
  .fb-pcard {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 80px 24px;
  }
  .fb-pcard__no { font-size: 80px; }
  .fb-pcard__title { font-size: 36px; }
}

/* Progress bar */
.fb-pstrip__progress {
  position: absolute;
  left: clamp(20px, 4vw, 56px);
  right: clamp(20px, 4vw, 56px);
  bottom: 28px;
  display: flex; align-items: center; gap: 16px;
  z-index: 4;
  pointer-events: none;
}
.fb-pstrip__progress-label,
.fb-pstrip__progress-count {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}
.fb-pstrip__progress-track {
  position: relative;
  flex: 1;
  height: 2px;
  background: var(--line);
  overflow: hidden;
}
.fb-pstrip__progress-track i {
  position: absolute; left: 0; top: 0; bottom: 0;
  width: 100%;
  background: var(--ember);
  transform: scaleX(0);
  transform-origin: left;
  will-change: transform;
}

/* Mobile / reduced-motion fallback: yatay scroll yerine dikey liste göster */
.fb-pstrip.is-fallback { height: auto; }
.fb-pstrip.is-fallback .fb-pstrip__pin { height: auto; }
.fb-pstrip.is-fallback .fb-pstrip__track {
  flex-direction: column;
  width: 100%;
  height: auto;
  padding: 48px clamp(20px, 5vw, 40px);
  gap: 20px;
}
.fb-pstrip.is-fallback .fb-pstrip__intro,
.fb-pstrip.is-fallback .fb-pcard {
  flex: 0 0 auto;
  width: 100%;
  border-right: none;
}
.fb-pstrip.is-fallback .fb-pstrip__progress { display: none; }
.fb-pstrip.is-fallback .fb-pstrip__hint { display: none; }

/* =============================================================
   PANEL DETAIL LAYOUT (surec — fb-panel--process içinde kullanılır)
   Homepage animasyonu + daha detaylı içerik
   ============================================================= */
.fb-panels--process { background: var(--ink); }
.fb-panel--process { padding: clamp(80px, 12vh, 120px) 0; }
.fb-panel--process.fb-panel--intro .fb-panel__inner-wide {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 1200px;
}

.fb-pstep {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(0, 1.2fr);
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
}

.fb-pstep__left {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.fb-pstep__no {
  font-family: var(--font-display);
  font-size: clamp(72px, 10vw, 160px);
  font-weight: 400;
  letter-spacing: -0.05em;
  line-height: 0.85;
  color: var(--ember);
  font-variant-numeric: tabular-nums;
}
.fb-pstep__title {
  font-size: clamp(48px, 6vw, 96px);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 0.95;
  margin: 0;
  color: var(--ivory);
}
.fb-pstep__title em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--ember);
  letter-spacing: -0.01em;
}
.fb-pstep__week {
  display: inline-block;
  margin-top: 4px;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ember);
}
.fb-pstep__lede {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: clamp(16px, 1.1vw + 8px, 19px);
  line-height: 1.55;
  max-width: 42ch;
}

.fb-pstep__cols {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
.fb-pstep__sub {
  display: block;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ember);
  margin-bottom: 8px;
}
.fb-pstep__cols ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 6px;
  font-size: 14.5px;
  color: var(--muted);
}
.fb-pstep__cols ul li {
  position: relative;
  padding-left: 16px;
}
.fb-pstep__cols ul li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--line-strong);
}

@media (max-width: 991.98px) {
  .fb-pstep {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .fb-pstep__cols { grid-template-columns: 1fr; gap: 16px; }
}

/* =============================================================
   4. PINNED PANELS WITH OVERSCROLL (Process)
   ============================================================= */
.fb-panels {
  position: relative;
  background: var(--ink);
}

.fb-panel {
  position: relative;
  height: 100vh;
  height: 100svh;
  overflow: hidden;
  display: flex;
  align-items: center;
  border-top: 1px solid var(--line);
  background: var(--ink);
}
.fb-panel:nth-child(odd)  { background: var(--ink); }
.fb-panel:nth-child(even) { background: var(--surface-2); }

.fb-panel__inner {
  width: 100%;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: start;
  gap: clamp(24px, 4vw, 80px);
}
.fb-panel--intro .fb-panel__inner {
  grid-template-columns: 1fr;
  text-align: left;
  gap: 20px;
}
.fb-panel__title {
  font-size: clamp(52px, 10vw, 160px);
  font-weight: 500;
  line-height: 0.92;
  letter-spacing: -0.045em;
}
.fb-panel__title em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--ember);
  letter-spacing: -0.015em;
}
.fb-panel__lede {
  max-width: 56ch;
  color: var(--muted);
  font-size: clamp(15px, 1vw + 6px, 18px);
  margin-top: 10px;
}

.fb-panel__no {
  font-family: var(--font-display);
  font-size: clamp(56px, 10vw, 160px);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 0.9;
  color: var(--ivory);
  font-variant-numeric: tabular-nums;
}
.fb-panel__h {
  font-size: clamp(72px, 13vw, 220px);
  font-weight: 500;
  line-height: 0.88;
  letter-spacing: -0.045em;
  align-self: end;
}
.fb-panel__h em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--ivory);
  letter-spacing: -0.01em;
}
.fb-panel__p {
  max-width: 38ch;
  align-self: end;
  color: var(--muted);
  font-size: 16px;
  margin: 0;
}
.fb-panel__week {
  grid-column: 1 / -1;
  justify-self: start;
  margin-top: clamp(32px, 4vw, 56px);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ember);
}

/* Pinned overlap fade */
.fb-panel::after {
  content: "";
  position: absolute;
  left: 0; right: 0; top: 0;
  height: 80px;
  background: linear-gradient(180deg, rgba(11,11,13,0.05), transparent);
  pointer-events: none;
  opacity: 0;
}
.fb-panel.is-stacked::after { opacity: 1; }


/* =============================================================
   5. FLIP CAROUSEL (Testimonials) — absolute stacked layout
   ============================================================= */
.fb-flip {
  padding: var(--section-pad-y) 0;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}

.fb-flip__stage {
  position: relative;
  height: clamp(440px, 52vw, 560px);
  max-width: 1200px;
  margin: 0 auto;
  perspective: 1600px;
  outline: none;
}

.fb-flip__card {
  position: absolute;
  left: 50%;
  top: 0;
  width: min(680px, 86%);
  height: 100%;
  padding: clamp(28px, 3.5vw, 52px);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  display: flex; flex-direction: column;
  gap: clamp(20px, 2.5vw, 32px);
  color: var(--ivory);
  cursor: pointer;
  will-change: transform, opacity;
  transform-origin: center center;
  transform: translate3d(-50%, 0, 0) scale(0.7);
  opacity: 0;
  pointer-events: none;
  transition:
    transform .85s cubic-bezier(0.77, 0, 0.175, 1),
    opacity .75s cubic-bezier(0.77, 0, 0.175, 1),
    filter .6s var(--ease-out),
    border-color .5s var(--ease-out),
    box-shadow .5s var(--ease-out);
}

/* Konum varyantları */
.fb-flip__card[data-pos="0"] {
  z-index: 5;
  transform: translate3d(-50%, 0, 0) scale(1);
  opacity: 1;
  pointer-events: auto;
  cursor: default;
  filter: none;
  border-color: var(--line-strong);
  box-shadow: 0 32px 60px -28px rgba(10,10,12,0.22);
}
.fb-flip__card[data-pos="-1"] {
  z-index: 3;
  transform: translate3d(calc(-50% - 42%), 24px, 0) scale(0.82);
  opacity: 0.55;
  pointer-events: auto;
  filter: saturate(0.78);
}
.fb-flip__card[data-pos="1"] {
  z-index: 3;
  transform: translate3d(calc(-50% + 42%), 24px, 0) scale(0.82);
  opacity: 0.55;
  pointer-events: auto;
  filter: saturate(0.78);
}
.fb-flip__card[data-pos="-2"] {
  z-index: 2;
  transform: translate3d(calc(-50% - 78%), 40px, 0) scale(0.68);
  opacity: 0.18;
  pointer-events: none;
  filter: saturate(0.55) blur(2px);
}
.fb-flip__card[data-pos="2"] {
  z-index: 2;
  transform: translate3d(calc(-50% + 78%), 40px, 0) scale(0.68);
  opacity: 0.18;
  pointer-events: none;
  filter: saturate(0.55) blur(2px);
}
.fb-flip__card.is-hidden {
  z-index: 1;
  transform: translate3d(-50%, 60px, 0) scale(0.6);
  opacity: 0;
  pointer-events: none;
}

/* Tipografi */
.fb-flip__card blockquote { margin: 0; flex: 1; }
.fb-flip__card blockquote p {
  font-family: var(--font-display);
  font-size: clamp(18px, 1.7vw, 24px);
  line-height: 1.38;
  letter-spacing: -0.015em;
  margin: 0;
  color: var(--ivory);
  font-weight: 400;
}
.fb-flip__card[data-pos="0"] blockquote p {
  font-size: clamp(22px, 2.1vw, 32px);
  line-height: 1.32;
}
.fb-flip__card blockquote em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--ember);
  letter-spacing: -0.005em;
}

.fb-flip__card footer {
  margin-top: auto;
  display: flex; align-items: center; gap: 14px;
  border-top: 1px solid var(--line);
  padding-top: clamp(16px, 2vw, 24px);
}
.fb-flip__card footer strong {
  display: block;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: -0.005em;
}
.fb-flip__card footer span {
  font-size: 13px;
  color: var(--muted);
}

/* Nav */
.fb-flip__nav {
  margin-top: clamp(32px, 4vw, 56px);
  display: flex; align-items: center; justify-content: center;
  gap: 24px;
}
.fb-flip__btn {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: transparent;
  border: 1px solid var(--line-strong);
  color: var(--ivory);
  display: grid; place-items: center;
  transition: border-color .3s var(--ease-out), color .3s var(--ease-out), background .3s var(--ease-out);
}
.fb-flip__btn:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--on-accent);
}
.fb-flip__btn svg { width: 18px; height: 18px; }

.fb-flip__count {
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.08em;
  color: var(--muted);
  font-size: 14px;
  min-width: 64px;
  text-align: center;
  display: inline-flex;
  align-items: baseline;
  justify-content: center;
  gap: 6px;
}
.fb-flip__count em {
  color: var(--ivory);
  font-style: italic;
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 1.5em;
}


/* =============================================================
   6. INFINITE LOOPED SCROLLING (Manifesto band)
   ============================================================= */
.fb-loop {
  padding: clamp(48px, 7vw, 96px) 0 clamp(64px, 9vw, 120px);
  border-bottom: 1px solid var(--line);
  background: var(--ink);
}

.fb-loop__head {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 32px;
  padding-bottom: clamp(32px, 4vw, 56px);
}
.fb-loop__aside {
  color: var(--muted);
  max-width: 32ch;
  font-size: 14px;
  margin: 0;
  text-align: right;
}

.fb-loop__stage {
  position: relative;
  height: clamp(320px, 52vw, 620px);
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.fb-loop__track {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  will-change: transform;
}

.fb-loop__line {
  flex: 0 0 auto;
  height: clamp(90px, 13vw, 160px);
  display: flex; align-items: center;
  padding: 0 clamp(20px, 4vw, 56px);
  font-family: var(--font-display);
  font-size: clamp(40px, 7vw, 108px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.04em;
  white-space: nowrap;
  border-bottom: 1px solid var(--line);
}
.fb-loop__line:last-child { border-bottom: none; }
.fb-loop__line em { color: var(--ember); }

/* top/bottom fade masks (premium editorial fade) */
.fb-loop__fade {
  position: absolute; left: 0; right: 0;
  height: clamp(60px, 10vw, 140px);
  pointer-events: none;
  z-index: 2;
}
.fb-loop__fade--t { top: 0;    background: linear-gradient(180deg, var(--ink), transparent); }
.fb-loop__fade--b { bottom: 0; background: linear-gradient(0deg, var(--ink), transparent); }


/* =============================================================
   CLIENT LOGO STRIP — güven bandı
   ============================================================= */
.fb-clients {
  padding: clamp(56px, 7vw, 96px) 0 clamp(40px, 5vw, 72px);
  border-bottom: 1px solid var(--line);
}
.fb-clients__head {
  display: grid;
  grid-template-columns: 160px 1fr;
  align-items: center;
  gap: clamp(24px, 4vw, 64px);
  margin-bottom: clamp(32px, 4vw, 56px);
}
.fb-clients__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(18px, 1.6vw, 24px);
  font-weight: 400;
  letter-spacing: -0.015em;
  color: var(--ivory-dim);
  max-width: 60ch;
  line-height: 1.4;
}
.fb-clients__title em {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--ember);
  font-size: 1.3em;
  padding-right: 0.1em;
  font-weight: 400;
}

.fb-clients__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.fb-client {
  display: flex;
  align-items: center;
  justify-content: center;
  height: clamp(80px, 8vw, 110px);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: background .35s var(--ease-out);
}
.fb-client:nth-child(5n) { border-right: 0; }
.fb-client:nth-last-child(-n+5) { border-bottom: 0; }

.fb-client span {
  font-family: var(--font-display);
  font-size: clamp(14px, 1.2vw, 18px);
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--muted);
  opacity: 0.55;
  transition: opacity .35s var(--ease-out), color .35s var(--ease-out), transform .35s var(--ease-out);
  white-space: nowrap;
}
.fb-client span em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--ember);
  padding: 0 0.1em;
}

.fb-client:hover {
  background: var(--accent-soft);
}
.fb-client:hover span {
  opacity: 1;
  color: var(--ivory);
  transform: scale(1.04);
}


/* =============================================================
   CASE METRIC BAR — proje sonuçları stripe
   ============================================================= */
.fb-metrics {
  padding: var(--section-pad-y) 0;
  border-bottom: 1px solid var(--line);
  background: var(--surface-2);
}
.fb-metrics__head {
  margin-bottom: clamp(40px, 5vw, 72px);
  display: flex; flex-direction: column; gap: 16px;
}
.fb-metrics__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(36px, 5.5vw, 88px);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 0.98;
  max-width: 20ch;
  color: var(--ivory);
}
.fb-metrics__title em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--ember);
  letter-spacing: -0.01em;
}

.fb-metrics__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.fb-metric {
  padding: clamp(28px, 3vw, 44px) clamp(20px, 2.5vw, 36px);
  border-right: 1px solid var(--line);
  display: flex; flex-direction: column;
  gap: 10px;
  transition: background .35s var(--ease-out);
  position: relative;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .8s var(--ease-out), transform .8s var(--ease-out), background .35s var(--ease-out);
}
.fb-metric:last-child { border-right: 0; }
.fb-metric:hover { background: var(--ink); }
.fb-metric.is-in {
  opacity: 1;
  transform: none;
}

.fb-metric__num {
  font-family: var(--font-display);
  font-size: clamp(56px, 7vw, 112px);
  font-weight: 500;
  line-height: 0.9;
  letter-spacing: -0.04em;
  color: var(--ivory);
  font-variant-numeric: tabular-nums;
  display: inline-flex;
  align-items: baseline;
  gap: 2px;
}
.fb-metric__sign {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.55em;
  font-weight: 400;
  color: var(--ember);
  margin-right: 4px;
}
.fb-metric__unit {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.48em;
  color: var(--ember);
  font-weight: 400;
  margin-left: 2px;
}

.fb-metric__label {
  margin: 8px 0 0;
  font-size: clamp(14px, 1vw, 16px);
  font-weight: 500;
  letter-spacing: -0.005em;
  color: var(--ivory);
}
.fb-metric__note {
  margin: 0;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
}


/* =============================================================
   FAQ ACCORDION
   ============================================================= */
.fb-faq {
  padding: var(--section-pad-y) 0;
  border-bottom: 1px solid var(--line);
}
.fb-faq__intro {
  max-width: 38ch;
  color: var(--muted);
  font-size: 15px;
  align-self: flex-end;
  line-height: 1.5;
}
.fb-faq__intro a { color: var(--ivory); border-bottom: 1px solid var(--line-strong); text-underline-offset: 3px; }
.fb-faq__intro a:hover { color: var(--ember); border-bottom-color: var(--ember); }

.fb-faq__list {
  border-top: 1px solid var(--line);
}

.fb-faq__item {
  border-bottom: 1px solid var(--line);
  position: relative;
}
.fb-faq__item[open] {
  background: var(--accent-soft);
}
.fb-faq__item[open] .fb-faq__q { color: var(--ivory); }
.fb-faq__item[open] .fb-faq__idx { color: var(--ember); }

.fb-faq__q {
  display: grid;
  grid-template-columns: 56px 1fr 40px;
  align-items: center;
  gap: 20px;
  padding: clamp(20px, 2.5vw, 32px) clamp(8px, 1vw, 16px);
  cursor: pointer;
  list-style: none;
  transition: background .3s var(--ease-out), color .3s var(--ease-out);
  user-select: none;
}
.fb-faq__q::-webkit-details-marker { display: none; }
.fb-faq__q:hover { color: var(--ivory); }
.fb-faq__q:hover .fb-faq__icon::before,
.fb-faq__q:hover .fb-faq__icon::after { background: var(--ember); }

.fb-faq__idx {
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: 0.08em;
  color: var(--muted);
  font-variant-numeric: tabular-nums;
  transition: color .3s var(--ease-out);
}

.fb-faq__question {
  font-family: var(--font-display);
  font-size: clamp(18px, 1.8vw, 26px);
  font-weight: 500;
  letter-spacing: -0.015em;
  line-height: 1.3;
  color: var(--ivory);
}

.fb-faq__icon {
  position: relative;
  width: 20px;
  height: 20px;
  justify-self: end;
}
.fb-faq__icon::before,
.fb-faq__icon::after {
  content: "";
  position: absolute;
  left: 50%; top: 50%;
  background: var(--ivory);
  transition: transform .4s var(--ease-out), background .3s var(--ease-out);
}
.fb-faq__icon::before {
  width: 16px; height: 1.5px;
  transform: translate(-50%, -50%);
}
.fb-faq__icon::after {
  width: 1.5px; height: 16px;
  transform: translate(-50%, -50%);
}
.fb-faq__item[open] .fb-faq__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}
.fb-faq__item[open] .fb-faq__icon::before { background: var(--ember); }

.fb-faq__a {
  padding: 0 clamp(8px, 1vw, 16px) clamp(20px, 2.5vw, 32px) 76px;
  color: var(--ivory-dim);
  font-size: clamp(15px, 1vw + 7px, 17px);
  line-height: 1.6;
  max-width: 70ch;
}
.fb-faq__a p {
  margin: 0;
}
.fb-faq__a strong {
  color: var(--ivory);
  font-weight: 500;
}

/* smooth open animation */
.fb-faq__item[open] .fb-faq__a {
  animation: fbFaqOpen .5s var(--ease-out);
}
@keyframes fbFaqOpen {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}


/* =============================================================
   PRICING HINT (3 paket)
   ============================================================= */
.fb-pricing {
  padding: var(--section-pad-y) 0;
  border-bottom: 1px solid var(--line);
}
.fb-pricing__lede {
  max-width: 60ch;
  color: var(--muted);
  font-size: clamp(15px, 1vw + 7px, 17px);
  line-height: 1.55;
  margin: 16px 0 0;
}
.fb-pricing__lede em {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--ember);
  font-weight: 400;
}

.fb-pricing__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 2vw, 32px);
  margin-top: clamp(48px, 5vw, 72px);
}

.fb-plan {
  position: relative;
  padding: clamp(32px, 3.5vw, 48px);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  gap: 28px;
  transition: transform .5s var(--ease-out), border-color .4s var(--ease-out), box-shadow .5s var(--ease-out), background .4s var(--ease-out);
  opacity: 0;
  transform: translateY(32px);
}
.fb-plan.is-in {
  opacity: 1;
  transform: none;
}
.fb-plan:hover {
  border-color: var(--line-strong);
  box-shadow: 0 24px 48px -20px rgba(10,10,12,0.18);
  transform: translateY(-4px);
}

/* Featured plan — invert panel:
   Light theme: dark bg + light text
   Dark  theme: light bg + dark text
   Tüm alt renkler theme-aware custom property ile yönetilir. */
.fb-plan--featured {
  background: var(--ivory);          /* themenin text renginin tersi */
  color: var(--on-accent);           /* auto-invert fg */
  border-color: var(--ivory);
  box-shadow: 0 32px 60px -28px rgba(10,10,12,0.35);

  /* Alt metin varyasyonları — light theme (koyu panel üstünde beyaz tonlar) */
  --fp-tag:    rgba(255, 255, 255, 0.58);
  --fp-desc:   rgba(255, 255, 255, 0.72);
  --fp-muted:  rgba(255, 255, 255, 0.45);
  --fp-list:   rgba(255, 255, 255, 0.82);
  --fp-border: rgba(255, 255, 255, 0.12);
}
[data-theme="dark"] .fb-plan--featured {
  /* Dark theme: light panel üstünde koyu tonlar */
  --fp-tag:    rgba(10, 10, 12, 0.58);
  --fp-desc:   rgba(10, 10, 12, 0.72);
  --fp-muted:  rgba(10, 10, 12, 0.45);
  --fp-list:   rgba(10, 10, 12, 0.82);
  --fp-border: rgba(10, 10, 12, 0.12);
}
.fb-plan--featured:hover {
  border-color: var(--ember);
  box-shadow: 0 40px 70px -28px rgba(10,10,12,0.45);
}

.fb-plan__badge {
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  padding: 6px 14px;
  background: var(--ember);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 999px;
  white-space: nowrap;
}

.fb-plan__head {
  display: flex; flex-direction: column;
  gap: 10px;
}
.fb-plan__tag {
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.fb-plan--featured .fb-plan__tag { color: var(--fp-tag); }

.fb-plan__name {
  font-family: var(--font-display);
  font-size: clamp(28px, 2.6vw, 38px);
  font-weight: 500;
  letter-spacing: -0.025em;
  margin: 0;
  color: var(--ivory);
}
.fb-plan--featured .fb-plan__name { color: var(--on-accent); }

.fb-plan__desc {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
  max-width: 36ch;
}
.fb-plan--featured .fb-plan__desc { color: var(--fp-desc); }

.fb-plan__price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  flex-wrap: wrap;
  padding: 20px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.fb-plan--featured .fb-plan__price {
  border-top-color: var(--fp-border);
  border-bottom-color: var(--fp-border);
}
.fb-plan__price-from {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}
.fb-plan--featured .fb-plan__price-from { color: var(--fp-muted); }
.fb-plan__price-amount {
  font-family: var(--font-display);
  font-size: clamp(40px, 4vw, 56px);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--ivory);
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
}
.fb-plan--featured .fb-plan__price-amount { color: var(--on-accent); }
.fb-plan__price-amount em {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.56em;
  font-weight: 400;
  color: var(--ember);
}
.fb-plan__price-unit {
  font-size: 12px;
  color: var(--muted);
}
.fb-plan--featured .fb-plan__price-unit { color: var(--fp-muted); }

.fb-plan__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 14px;
  color: var(--ivory-dim);
  line-height: 1.4;
}
.fb-plan--featured .fb-plan__list { color: var(--fp-list); }

.fb-plan__list li {
  position: relative;
  padding-left: 22px;
}
.fb-plan__list li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.55em;
  width: 10px; height: 1.5px;
  background: var(--ember);
}

.fb-plan__cta {
  margin-top: auto;
  justify-content: center;
}
/* Featured CTA = ember button on inverted panel; hover = text rengi ters tarafa kayar */
.fb-plan--featured .fb-plan__cta {
  --btn-bg: var(--ember);
  --btn-fg: #ffffff;
  --btn-br: var(--ember);
  background: var(--btn-bg);
  color: var(--btn-fg);
  border-color: var(--btn-br);
}
.fb-plan--featured .fb-plan__cta::before { background: var(--on-accent); }
.fb-plan--featured .fb-plan__cta:hover {
  color: var(--ivory);
  border-color: var(--on-accent);
}

.fb-pricing__note {
  margin-top: clamp(32px, 4vw, 48px);
  text-align: center;
  color: var(--muted);
  font-size: 13px;
}
.fb-pricing__note a {
  color: var(--ivory);
  border-bottom: 1px solid var(--line-strong);
  text-underline-offset: 3px;
}
.fb-pricing__note a:hover { color: var(--ember); border-bottom-color: var(--ember); }


/* =============================================================
   SERVICE DETAIL PAGE
   ============================================================= */
.fb-svc-hero {
  padding: clamp(120px, 16vw, 200px) 0 clamp(60px, 8vw, 100px);
  border-bottom: 1px solid var(--line);
}

.fb-breadcrumb {
  display: flex; align-items: center; gap: 10px;
  font-size: 13px;
  color: var(--muted);
  letter-spacing: 0.02em;
  margin-bottom: clamp(40px, 5vw, 64px);
}
.fb-breadcrumb a { color: var(--muted); transition: color .3s var(--ease-out); }
.fb-breadcrumb a:hover { color: var(--ember); }
.fb-breadcrumb__sep { color: var(--muted-2); }
.fb-breadcrumb [data-svc-breadcrumb] { color: var(--ivory); }

.fb-svc-hero__top {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(24px, 3vw, 48px);
  align-items: start;
  margin-bottom: clamp(32px, 4vw, 56px);
}
.fb-svc-hero__num {
  font-family: var(--font-display);
  font-size: clamp(80px, 10vw, 180px);
  font-weight: 400;
  line-height: 0.88;
  letter-spacing: -0.04em;
  color: var(--ember);
  font-variant-numeric: tabular-nums;
}
.fb-svc-hero__meta { display: flex; flex-direction: column; gap: 18px; padding-top: 8px; }

.fb-svc-hero__title {
  font-family: var(--font-display);
  font-size: clamp(44px, 7vw, 120px);
  font-weight: 500;
  line-height: 0.94;
  letter-spacing: -0.04em;
  color: var(--ivory);
  margin: 0;
}

.fb-svc-hero__lede {
  font-size: clamp(18px, 1.2vw + 8px, 24px);
  line-height: 1.5;
  color: var(--ivory-dim);
  max-width: 62ch;
  margin: 0 0 32px;
  letter-spacing: -0.01em;
}
.fb-svc-hero__lede em {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--ember);
  font-weight: 400;
}

.fb-svc-hero__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 40px;
}
.fb-svc-hero__tags span {
  padding: 6px 14px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--ivory-dim);
  background: var(--accent-soft);
}

.fb-svc-hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* Tag + CTA bar — page hero (dark) altına yerleşir, light surface */
.fb-svc-tagbar {
  padding: 36px 0;
  border-bottom: 1px solid var(--line);
  background: var(--surface);
}
.fb-svc-tagbar__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.fb-svc-tagbar .fb-svc-hero__tags {
  margin-bottom: 0;
  flex: 1 1 auto;
}
.fb-svc-tagbar .fb-svc-hero__tags span {
  color: var(--ink);
  background: transparent;
  border-color: var(--line);
}
.fb-svc-tagbar .fb-svc-hero__cta { flex: 0 0 auto; }
@media (max-width: 720px) {
  .fb-svc-tagbar__inner { flex-direction: column; align-items: flex-start; }
}

/* Section wrapper */
.fb-svc-section {
  padding: clamp(80px, 10vw, 140px) 0;
  border-bottom: 1px solid var(--line);
}
.fb-svc-section--alt {
  background: var(--surface-2);
}

.fb-svc-split {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: clamp(32px, 5vw, 96px);
  align-items: start;
}
.fb-svc-split__side {
  display: flex; flex-direction: column;
  gap: 12px;
  position: sticky;
  top: 100px;
}
.fb-svc-aside {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 18px;
  color: var(--ember);
  margin: 0;
}
.fb-svc-section__title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.4vw, 48px);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.02;
  margin: 0 0 clamp(24px, 3vw, 40px);
  color: var(--ivory);
  max-width: 20ch;
}

/* Bullets */
.fb-svc-bullets {
  list-style: none;
  padding: 0; margin: 0;
  display: flex; flex-direction: column;
  gap: 14px;
}
.fb-svc-bullets li {
  position: relative;
  padding: 16px 0 16px 40px;
  border-bottom: 1px solid var(--line);
  font-size: clamp(16px, 1vw + 8px, 19px);
  line-height: 1.5;
  color: var(--ivory-dim);
}
.fb-svc-bullets li::before {
  content: "";
  position: absolute;
  left: 0; top: 28px;
  width: 20px; height: 1.5px;
  background: var(--ember);
}
.fb-svc-bullets li strong {
  color: var(--ivory);
  font-weight: 500;
}

/* Deliverables grid */
.fb-svc-deliverables {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.fb-svc-deliverables article {
  padding: 24px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  transition: border-color .3s var(--ease-out);
}
.fb-svc-deliverables article:hover { border-color: var(--line-strong); }
.fb-svc-deliverables h3 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 500;
  margin: 0 0 6px;
  color: var(--ivory);
  letter-spacing: -0.005em;
}
.fb-svc-deliverables p {
  margin: 0;
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.5;
}

/* Tech list */
.fb-svc-tech {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.fb-svc-tech span {
  padding: 10px 16px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ivory);
  letter-spacing: -0.005em;
  transition: border-color .3s var(--ease-out), background .3s var(--ease-out);
}
.fb-svc-tech span:hover {
  border-color: var(--ember);
  background: var(--accent-soft);
}

/* Timeline */
.fb-svc-timeline {
  list-style: none;
  padding: 0;
  margin: 0;
  counter-reset: tl;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.fb-svc-timeline li {
  counter-increment: tl;
  position: relative;
  padding: 20px 0 20px 72px;
  border-bottom: 1px solid var(--line);
}
.fb-svc-timeline li::before {
  content: counter(tl, decimal-leading-zero);
  position: absolute;
  left: 0; top: 20px;
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 500;
  color: var(--ember);
  letter-spacing: -0.02em;
}
.fb-svc-timeline h3 {
  font-family: var(--font-display);
  font-size: clamp(18px, 1.6vw, 22px);
  font-weight: 500;
  margin: 0 0 6px;
  color: var(--ivory);
}
.fb-svc-timeline p {
  margin: 0;
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.55;
}

/* Related services */
.fb-svc-related {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.fb-svc-related a {
  padding: 28px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  display: flex; flex-direction: column;
  gap: 10px;
  color: var(--ivory);
  transition: border-color .3s var(--ease-out), transform .3s var(--ease-out);
}
.fb-svc-related a:hover {
  border-color: var(--ember);
  transform: translateY(-4px);
}
.fb-svc-related h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 500;
  margin: 0;
  color: var(--ivory);
}
.fb-svc-related span {
  font-family: var(--font-display);
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.fb-svc-related p {
  margin: 0;
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.5;
}
.fb-svc-related a::after {
  content: "→";
  align-self: flex-end;
  font-size: 18px;
  color: var(--ember);
  margin-top: auto;
  padding-top: 12px;
}


/* =============================================================
   VIDEO SHOWREEL
   ============================================================= */
.fb-showreel {
  padding: var(--section-pad-y) 0;
  border-bottom: 1px solid var(--line);
}
.fb-showreel__meta {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.06em;
  margin: 0;
  align-self: flex-end;
}

.fb-showreel__player {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  background: #000;
  cursor: pointer;
  margin-top: clamp(40px, 5vw, 64px);
  display: block;
  padding: 0;
  isolation: isolate;
}
.fb-showreel__thumb {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
  transition: transform 1s var(--ease-out);
  z-index: 1;
  filter: saturate(0.88);
}
.fb-showreel__player:hover .fb-showreel__thumb {
  transform: scale(1.08);
}
.fb-showreel__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,10,12,0.15) 0%, rgba(10,10,12,0.65) 100%);
  z-index: 2;
}

.fb-showreel__play {
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  width: clamp(88px, 10vw, 132px);
  height: clamp(88px, 10vw, 132px);
  border-radius: 50%;
  background: #fff;
  color: #0a0a0c;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 4px;
  box-shadow: 0 20px 50px -10px rgba(0,0,0,0.4);
  transition: transform .4s var(--ease-out), background .3s var(--ease-out);
}
.fb-showreel__play::before {
  content: "";
  position: absolute;
  inset: -10px;
  border: 1px solid rgba(255,255,255,0.4);
  border-radius: 50%;
  animation: fbShowreelPulse 2.4s var(--ease-out) infinite;
}
@keyframes fbShowreelPulse {
  0%   { transform: scale(1); opacity: 0.7; }
  70%  { transform: scale(1.25); opacity: 0; }
  100% { transform: scale(1.25); opacity: 0; }
}
.fb-showreel__play svg {
  width: 36px; height: 36px;
  margin-left: 4px;       /* play ikonu optik ortalama için */
}
.fb-showreel__play-label {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.fb-showreel__player:hover .fb-showreel__play {
  transform: translate(-50%, -50%) scale(1.06);
  background: var(--ember);
  color: #fff;
}

.fb-showreel__info {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  z-index: 3;
  padding: clamp(24px, 3vw, 40px);
  color: #fff;
  display: flex; flex-direction: column; gap: 4px;
  text-align: left;
}
.fb-showreel__tag {
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}
.fb-showreel__title {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.2vw, 32px);
  font-weight: 500;
  margin: 4px 0 0;
  color: #fff;
  letter-spacing: -0.02em;
}
.fb-showreel__desc {
  margin: 4px 0 0;
  font-size: 13px;
  color: rgba(255,255,255,0.75);
  letter-spacing: -0.005em;
}


/* Modal */
.fb-showreel-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transition: opacity .3s var(--ease-out);
  pointer-events: none;
  padding: clamp(16px, 3vw, 48px);
}
.fb-showreel-modal[hidden] { display: none; }
.fb-showreel-modal.is-open { opacity: 1; pointer-events: auto; }

.fb-showreel-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 12, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 0;
  padding: 0;
  cursor: pointer;
}

.fb-showreel-modal__box {
  position: relative;
  z-index: 2;
  width: min(1100px, 92vw);
  max-height: 92vh;
  transform: scale(0.92);
  transition: transform .35s var(--ease-out);
}
.fb-showreel-modal.is-open .fb-showreel-modal__box { transform: scale(1); }

.fb-showreel-modal__frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #000;
  border: 1px solid rgba(255,255,255,0.1);
}
.fb-showreel-modal__video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
}

.fb-showreel-modal__close {
  position: absolute;
  right: 0; top: -56px;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.3);
  color: #fff;
  display: grid; place-items: center;
  cursor: pointer;
  transition: background .3s var(--ease-out), transform .3s var(--ease-out);
}
.fb-showreel-modal__close:hover {
  background: #fff;
  color: #0a0a0c;
  transform: scale(1.05);
}
.fb-showreel-modal__close svg { width: 18px; height: 18px; }


/* =============================================================
   TEAM STRIP
   ============================================================= */
.fb-team {
  padding: var(--section-pad-y) 0;
  border-bottom: 1px solid var(--line);
}
.fb-team__intro {
  max-width: 42ch;
  color: var(--muted);
  font-size: clamp(15px, 1vw + 7px, 17px);
  line-height: 1.55;
  margin: 0;
  align-self: flex-end;
}
.fb-team__intro em {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--ember);
  font-weight: 400;
}

.fb-team__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: clamp(16px, 2vw, 28px);
}

.fb-member {
  display: flex;
  flex-direction: column;
  gap: 16px;
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .8s var(--ease-out), transform .8s var(--ease-out);
}
.fb-member.is-in { opacity: 1; transform: none; }

.fb-member__photo {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-md);
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-color: var(--surface-2);
  transition: transform .5s var(--ease-out);
}
.fb-member:hover .fb-member__photo {
  transform: translateY(-4px);
}

.fb-member__badge {
  position: absolute;
  top: 12px; left: 12px;
  padding: 4px 10px;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(8px);
  border-radius: 999px;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: #0a0a0c;
  font-variant-numeric: tabular-nums;
}

.fb-member__info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.fb-member__name {
  font-family: var(--font-display);
  font-size: clamp(15px, 1vw + 6px, 18px);
  font-weight: 500;
  letter-spacing: -0.015em;
  margin: 0;
  color: var(--ivory);
  transition: color .3s var(--ease-out);
}
.fb-member:hover .fb-member__name { color: var(--ember); }

.fb-member__role {
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--muted);
  text-transform: uppercase;
}
.fb-member__specialty {
  margin: 8px 0 0;
  font-size: 13px;
  color: var(--ivory-dim);
  line-height: 1.4;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: opacity .4s var(--ease-out), max-height .5s var(--ease-out), margin .4s var(--ease-out);
}
.fb-member__specialty em {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--ember);
  font-weight: 400;
}
.fb-member:hover .fb-member__specialty {
  opacity: 1;
  max-height: 60px;
  margin-top: 4px;
}


/* =============================================================
   COMPARISON TABLE
   ============================================================= */
.fb-compare {
  padding: var(--section-pad-y) 0;
  border-bottom: 1px solid var(--line);
}
.fb-compare__wrap {
  overflow-x: auto;
  margin: 0 calc(-1 * var(--container-pad));
  padding: 0 var(--container-pad);
  -webkit-overflow-scrolling: touch;
}

.fb-compare__table {
  width: 100%;
  border-collapse: collapse;
  min-width: 640px;
  font-family: var(--font-display);
}
.fb-compare__table th,
.fb-compare__table td {
  padding: 20px clamp(14px, 1.6vw, 24px);
  text-align: left;
  vertical-align: middle;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
  font-weight: 400;
  color: var(--ivory-dim);
  letter-spacing: -0.005em;
}

/* Header row */
.fb-compare__th {
  font-weight: 500;
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--line-strong);
  padding-bottom: 20px;
}
.fb-compare__th--criteria {
  text-transform: uppercase;
  width: 28%;
}
.fb-compare__th--brand {
  background: var(--ivory);
  color: var(--ink);
  border-top-left-radius: var(--radius-md);
  border-top-right-radius: var(--radius-md);
  position: relative;
  z-index: 1;
}
.fb-compare__brand {
  display: flex;
  flex-direction: column;
  gap: 2px;
  text-transform: none;
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.fb-compare__brand-name {
  font-size: 18px;
  font-weight: 500;
  color: var(--ink);
}
.fb-compare__brand-sub {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 14px;
  font-weight: 400;
  color: var(--ember);
  text-transform: none;
  letter-spacing: 0;
}

/* Kriter (row header) */
.fb-compare__row {
  font-weight: 500;
  color: var(--ivory);
  font-size: 14.5px;
  letter-spacing: -0.005em;
}

/* Cells */
.fb-compare__cell {
  position: relative;
  padding-left: calc(clamp(14px, 1.6vw, 24px) + 24px) !important;
}
.fb-compare__cell::before {
  content: "";
  position: absolute;
  left: clamp(14px, 1.6vw, 24px);
  top: 50%;
  transform: translateY(-50%);
  width: 16px; height: 16px;
  border-radius: 50%;
  display: inline-block;
}
.fb-compare__cell.is-yes::before {
  background: var(--ember);
  box-shadow: 0 0 0 3px rgba(184, 61, 31, 0.15);
}
.fb-compare__cell.is-no::before {
  background: transparent;
  border: 1px solid var(--line-strong);
}
.fb-compare__cell.is-partial::before {
  background: linear-gradient(90deg, var(--ember) 50%, transparent 50%);
  border: 1px solid var(--line-strong);
}
.fb-compare__cell.is-yes { color: var(--ivory); font-weight: 500; }
.fb-compare__cell.is-no { color: var(--muted); }
.fb-compare__cell.is-partial { color: var(--ivory-dim); }

/* Forbayt column highlight (2. kolon) */
.fb-compare__table tbody tr td:nth-child(2) {
  background: var(--surface-2);
  border-left: 1px solid var(--line);
  border-right: 1px solid var(--line);
  font-weight: 500;
  color: var(--ivory);
}
.fb-compare__table tbody tr:last-child td:nth-child(2) {
  border-bottom-left-radius: var(--radius-md);
  border-bottom-right-radius: var(--radius-md);
}

.fb-compare__note {
  margin: clamp(24px, 3vw, 40px) 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
  max-width: 80ch;
}
.fb-compare__note em {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--ivory);
  font-weight: 400;
}


/* =============================================================
   SOCIAL PROOF STRIP (hero altı, güven sinyali)
   ============================================================= */
.fb-proof {
  padding: clamp(32px, 4vw, 56px) 0;
  border-bottom: 1px solid var(--line);
  background: var(--surface-2);
}
.fb-proof__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(16px, 2vw, 32px);
}
.fb-proof__item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px clamp(10px, 1.2vw, 20px);
  border-right: 1px solid var(--line);
}
.fb-proof__item:last-child { border-right: 0; }

.fb-proof__icon {
  width: 28px; height: 28px;
  flex: 0 0 auto;
  color: var(--ember);
}
.fb-proof__item > div {
  display: flex; flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.fb-proof__item strong {
  font-family: var(--font-display);
  font-size: clamp(22px, 2vw, 30px);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1;
  color: var(--ivory);
  display: inline-flex;
  align-items: baseline;
  gap: 2px;
  font-variant-numeric: tabular-nums;
}
.fb-proof__item strong em {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.58em;
  font-weight: 400;
  color: var(--ember);
}
.fb-proof__item span {
  font-size: 13px;
  color: var(--muted);
  letter-spacing: -0.005em;
  line-height: 1.3;
}


/* =============================================================
   FOUNDER MESSAGE (kurucu mesajı — insan bağlantısı)
   ============================================================= */
.fb-founder {
  padding: var(--section-pad-y) 0;
  border-bottom: 1px solid var(--line);
}
.fb-founder__grid {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
}

.fb-founder__photo {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.fb-founder__photo-frame {
  width: 100%;
  max-width: 240px;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--line-strong);
  background: var(--surface-2);
  position: relative;
}
.fb-founder__photo-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  box-shadow: inset 0 -60px 80px -40px rgba(10,10,12,0.25);
  pointer-events: none;
}
.fb-founder__photo-frame img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(0.92) contrast(1.02);
}
.fb-founder__photo-tag {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 16px;
  color: var(--ember);
}

.fb-founder__body {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.fb-founder__quote {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(22px, 2.4vw, 34px);
  line-height: 1.32;
  letter-spacing: -0.02em;
  color: var(--ivory);
  font-weight: 400;
  max-width: 48ch;
}
.fb-founder__quote em {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--ember);
  font-weight: 400;
}

.fb-founder__meta {
  display: flex; align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  flex-wrap: wrap;
}
.fb-founder__sig { display: flex; flex-direction: column; gap: 2px; }
.fb-founder__sig strong {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--ivory);
}
.fb-founder__sig span {
  font-size: 12.5px;
  letter-spacing: 0.06em;
  color: var(--muted);
  text-transform: uppercase;
}

.fb-founder__links { display: flex; gap: 8px; }
.fb-founder__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  color: var(--ivory);
  transition: border-color .3s var(--ease-out), background .3s var(--ease-out), color .3s var(--ease-out);
}
.fb-founder__link svg { width: 14px; height: 14px; }
.fb-founder__link:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--on-accent);
}


/* =============================================================
   GUARANTEES (risk azaltıcı kartlar)
   ============================================================= */
.fb-guarantees {
  padding: var(--section-pad-y) 0;
  border-bottom: 1px solid var(--line);
}
.fb-guarantees__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2vw, 28px);
  margin-top: clamp(40px, 5vw, 64px);
}

.fb-guarantee {
  padding: clamp(28px, 3vw, 44px);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: transform .4s var(--ease-out), border-color .3s var(--ease-out), box-shadow .4s var(--ease-out);
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s var(--ease-out), transform .7s var(--ease-out), border-color .3s var(--ease-out), box-shadow .4s var(--ease-out);
}
.fb-guarantee.is-in { opacity: 1; transform: none; }
.fb-guarantee:hover {
  border-color: var(--line-strong);
  box-shadow: 0 24px 48px -20px rgba(10,10,12,0.18);
  transform: translateY(-4px);
}

.fb-guarantee--featured {
  background: var(--ivory);
  color: var(--on-accent);
  border-color: var(--ivory);
  --fp-muted: rgba(255,255,255,0.72);
}
[data-theme="dark"] .fb-guarantee--featured {
  --fp-muted: rgba(10,10,12,0.72);
}

.fb-guarantee__icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--ember);
  display: grid; place-items: center;
  flex: 0 0 auto;
}
.fb-guarantee--featured .fb-guarantee__icon {
  background: rgba(255,255,255,0.12);
  color: #fff;
}
[data-theme="dark"] .fb-guarantee--featured .fb-guarantee__icon {
  background: rgba(10,10,12,0.08);
  color: var(--ember);
}
.fb-guarantee__icon svg { width: 26px; height: 26px; }

.fb-guarantee__title {
  font-family: var(--font-display);
  font-size: clamp(20px, 1.8vw, 26px);
  font-weight: 500;
  letter-spacing: -0.02em;
  margin: 0;
  color: var(--ivory);
}
.fb-guarantee--featured .fb-guarantee__title { color: var(--on-accent); }

.fb-guarantee__desc {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--ivory-dim);
  max-width: 40ch;
}
.fb-guarantee__desc strong { color: var(--ivory); font-weight: 500; }
.fb-guarantee--featured .fb-guarantee__desc { color: var(--fp-muted); }
.fb-guarantee--featured .fb-guarantee__desc strong { color: var(--on-accent); }

.fb-guarantee__list {
  list-style: none;
  padding: 0; margin: auto 0 0;
  display: flex; flex-direction: column;
  gap: 8px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
}
.fb-guarantee__list li {
  position: relative;
  padding-left: 18px;
}
.fb-guarantee__list li::before {
  content: "";
  position: absolute; left: 0; top: 0.55em;
  width: 10px; height: 1.5px;
  background: var(--ember);
}
.fb-guarantee--featured .fb-guarantee__list {
  border-top-color: rgba(255,255,255,0.15);
  color: var(--fp-muted);
}
[data-theme="dark"] .fb-guarantee--featured .fb-guarantee__list {
  border-top-color: rgba(10,10,12,0.15);
}


/* =============================================================
   LIVE ACTIVITY INDICATOR
   ============================================================= */
.fb-activity {
  padding: clamp(32px, 4vw, 56px) 0;
  border-bottom: 1px solid var(--line);
}
.fb-activity__bar {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(20px, 3vw, 40px);
  align-items: center;
  padding: clamp(18px, 2vw, 28px) clamp(20px, 2.5vw, 32px);
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}

.fb-activity__status {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  background: var(--ink);
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ivory);
  flex: 0 0 auto;
}
.fb-activity__pulse {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #22c55e;
  position: relative;
  flex: 0 0 auto;
}
.fb-activity__pulse::before {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: #22c55e;
  opacity: 0.4;
  animation: fbActivityPulse 1.8s var(--ease-out) infinite;
}
@keyframes fbActivityPulse {
  0%   { transform: scale(0.6); opacity: 0.5; }
  70%  { transform: scale(1.8); opacity: 0; }
  100% { transform: scale(1.8); opacity: 0; }
}

.fb-activity__list {
  list-style: none;
  padding: 0; margin: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2vw, 32px);
}
.fb-activity__item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: baseline;
  gap: 8px 10px;
  padding-right: clamp(12px, 1.5vw, 24px);
  border-right: 1px solid var(--line);
  min-width: 0;
}
.fb-activity__item:last-child { border-right: 0; }
.fb-activity__item em {
  grid-column: 1 / -1;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 12px;
  color: var(--ember);
  letter-spacing: 0;
  margin-bottom: 2px;
}
.fb-activity__item strong {
  grid-column: 1 / 2;
  font-family: var(--font-display);
  font-size: clamp(13px, 1vw, 15px);
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--ivory);
  line-height: 1.3;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.fb-activity__item span {
  grid-column: 2 / 3;
  justify-self: end;
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
}


/* =============================================================
   TRUST BADGES (sertifika + ortaklıklar)
   ============================================================= */
.fb-badges {
  padding: clamp(56px, 7vw, 88px) 0 clamp(40px, 5vw, 64px);
  border-bottom: 1px solid var(--line);
}
.fb-badges__head {
  display: flex; flex-direction: column;
  gap: 6px;
  margin-bottom: clamp(28px, 3vw, 40px);
}
.fb-badges__note {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  letter-spacing: -0.005em;
}

.fb-badges__list {
  list-style: none;
  padding: 0; margin: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(12px, 1.4vw, 20px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.fb-badge {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: clamp(16px, 1.8vw, 24px) clamp(14px, 1.4vw, 20px);
  border-right: 1px solid var(--line);
  transition: background .3s var(--ease-out);
}
.fb-badge:nth-child(4n) { border-right: 0; }
.fb-badge:nth-child(-n+4) { border-bottom: 1px solid var(--line); }
.fb-badge:hover {
  background: var(--accent-soft);
}

.fb-badge__icon {
  width: 32px; height: 32px;
  color: var(--ember);
  flex: 0 0 auto;
}
.fb-badge > div {
  display: flex; flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.fb-badge strong {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.005em;
  color: var(--ivory);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.fb-badge span {
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.fb-badges__disclaimer {
  margin: clamp(20px, 2vw, 28px) 0 0;
  font-size: 12px;
  color: var(--muted);
  letter-spacing: -0.005em;
}
.fb-badges__disclaimer a {
  color: var(--ivory);
  border-bottom: 1px solid var(--line-strong);
  text-underline-offset: 3px;
}
.fb-badges__disclaimer a:hover { color: var(--ember); border-bottom-color: var(--ember); }


/* =============================================================
   SUB-PAGES — ortak page hero (full-bleed dark cover)
   Referans: kurumsal / corporate enterprise tarzı
   ============================================================= */
.fb-page-hero {
  position: relative;
  /* Header üstüne kadar uzansın — negatif top yerine main'i header altına alıyoruz */
  margin-top: calc(-1 * var(--nav-h, 76px));
  min-height: clamp(440px, 62vh, 620px);
  padding: calc(var(--nav-h, 76px) + clamp(40px, 5vw, 72px)) 0 clamp(48px, 6vw, 80px);
  overflow: hidden;
  isolation: isolate;
  display: flex;
  align-items: center;
  background: #0a0a0c;
  color: #fff;
  border-bottom: 1px solid var(--line);
}

.fb-page-hero__bg {
  position: absolute;
  /* Parallax translateY için extra alan — kaydırırken hero'nun siyah arkaplanı asla görünmesin */
  top: -50%;
  left: 0;
  right: 0;
  bottom: -50%;
  z-index: -2;
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
  filter: saturate(1) brightness(1);
  transition: transform 1.2s var(--ease-out);
  will-change: transform;
}
.fb-page-hero:hover .fb-page-hero__bg { transform: scale(1.06); }

/* Çift katmanlı scrim — header bölgesi şeffaf, başlık + altı koyu (yazı okunsun) */
.fb-page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    /* Soldan sağa kontrast: text genelde solda hizalı */
    linear-gradient(90deg,
      rgba(10,10,12,0.45) 0%,
      rgba(10,10,12,0.18) 50%,
      rgba(10,10,12,0.05) 100%),
    /* Yukarıdan aşağı: nav alanı temiz, başlık bölgesinde belirgin koyu */
    linear-gradient(180deg,
      rgba(10,10,12,0) 0%,
      rgba(10,10,12,0) 18%,
      rgba(10,10,12,0.32) 45%,
      rgba(10,10,12,0.55) 80%,
      rgba(10,10,12,0.70) 100%);
  pointer-events: none;
}

.fb-page-hero .container-xxl {
  position: relative;
  z-index: 1;
  width: 100%;
}

/* Breadcrumb — beyaz tonları */
.fb-page-hero .fb-breadcrumb {
  margin-bottom: clamp(32px, 4vw, 56px);
  color: rgba(255, 255, 255, 0.55);
}
.fb-page-hero .fb-breadcrumb a { color: rgba(255, 255, 255, 0.55); }
.fb-page-hero .fb-breadcrumb a:hover { color: #fff; }
.fb-page-hero .fb-breadcrumb span { color: rgba(255, 255, 255, 0.75); }
.fb-page-hero .fb-breadcrumb__sep { color: rgba(255, 255, 255, 0.3); }

.fb-page-hero .fb-section-label {
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 20px;
  display: inline-flex;
}
.fb-page-hero .fb-section-label::before { background: rgba(255, 255, 255, 0.32); }

.fb-page-hero__title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 72px);
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: -0.035em;
  margin: 0 0 clamp(18px, 2vw, 28px);
  color: #fff;
  max-width: 22ch;
}
.fb-page-hero__title .line {
  display: block;
  overflow: hidden;
  padding-bottom: 0.06em;
}
.fb-page-hero__title em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  color: #fff;
  letter-spacing: -0.015em;
}

.fb-page-hero__lede {
  font-size: clamp(16px, 1vw + 7px, 19px);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.72);
  max-width: 62ch;
  letter-spacing: -0.005em;
  margin: 0;
  font-weight: 400;
}
.fb-page-hero__lede em {
  font-family: var(--font-serif);
  font-style: italic;
  color: #fff;
  font-weight: 400;
}

/* Meta strip at bottom of hero — corporate 4-column layout */
.fb-page-hero__meta {
  list-style: none;
  padding: clamp(20px, 2.4vw, 32px) 0 0;
  margin: clamp(28px, 3.5vw, 44px) 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  max-width: 900px;
}
.fb-page-hero__meta li {
  display: flex; flex-direction: column;
  gap: 10px;
}
.fb-page-hero__meta strong {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.42);
  font-weight: 500;
}
.fb-page-hero__meta span {
  font-family: var(--font-display);
  font-size: clamp(16px, 1vw + 6px, 20px);
  font-weight: 500;
  color: #fff;
  letter-spacing: -0.01em;
}
.fb-page-hero__meta span em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.72);
}


.fb-nav__link--active { color: var(--ember); }


/* =============================================================
   FOUNDER — extra text (about sayfası için)
   ============================================================= */
.fb-founder__more {
  font-size: clamp(15px, 1vw + 6px, 17px);
  line-height: 1.6;
  color: var(--ivory-dim);
  max-width: 56ch;
  margin: 0;
}
.fb-founder__more strong {
  color: var(--ivory);
  font-weight: 500;
}


/* =============================================================
   VALUES — değerler kartları (about/services)
   ============================================================= */
.fb-values {
  padding: var(--section-pad-y) 0;
  border-bottom: 1px solid var(--line);
}
.fb-values__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.fb-value {
  background: var(--ink);
  padding: clamp(28px, 3vw, 44px);
  display: flex; flex-direction: column; gap: 12px;
  min-height: 220px;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .8s var(--ease-out), transform .8s var(--ease-out), background .3s var(--ease-out);
}
.fb-value.is-in { opacity: 1; transform: none; }
.fb-value:hover { background: var(--surface-2); }
.fb-value__num {
  font-family: var(--font-display);
  font-size: 13px;
  color: var(--ember);
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.08em;
}
.fb-value__title {
  font-family: var(--font-display);
  font-size: clamp(20px, 1.8vw, 24px);
  font-weight: 500;
  margin: 0;
  letter-spacing: -0.015em;
  color: var(--ivory);
}
.fb-value p {
  margin: 0;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.5;
}


/* =============================================================
   MILESTONES — kilometre taşları (about)
   ============================================================= */
.fb-milestones {
  padding: var(--section-pad-y) 0;
  border-bottom: 1px solid var(--line);
}
.fb-milestones__list {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid var(--line);
}
.fb-milestone {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: clamp(24px, 3vw, 48px);
  align-items: start;
  padding: clamp(24px, 2.5vw, 36px) 0;
  border-bottom: 1px solid var(--line);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .8s var(--ease-out), transform .8s var(--ease-out);
}
.fb-milestone.is-in { opacity: 1; transform: none; }
.fb-milestone__year {
  font-family: var(--font-display);
  font-size: clamp(36px, 3.6vw, 56px);
  font-weight: 400;
  color: var(--ember);
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
  line-height: 1;
}
.fb-milestone h3 {
  font-family: var(--font-display);
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 500;
  margin: 0 0 8px;
  letter-spacing: -0.02em;
  color: var(--ivory);
}
.fb-milestone p {
  margin: 0;
  color: var(--muted);
  max-width: 58ch;
  font-size: 15px;
  line-height: 1.55;
}


/* =============================================================
   SERVICES GRID (services.html)
   ============================================================= */
.fb-services-grid { padding: var(--section-pad-y) 0; border-bottom: 1px solid var(--line); }
.fb-svc-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.fb-svc-card {
  background: var(--ink);
  padding: clamp(28px, 3vw, 40px);
  display: flex; flex-direction: column;
  gap: 14px;
  color: var(--ivory);
  transition: background .35s var(--ease-out);
  min-height: 280px;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s var(--ease-out), transform .7s var(--ease-out), background .35s var(--ease-out);
}
.fb-svc-card.is-in { opacity: 1; transform: none; }
.fb-svc-card:hover {
  background: var(--surface-2);
}
.fb-svc-card:hover .fb-svc-card__cta { color: var(--ember); }
.fb-svc-card__num {
  font-family: var(--font-display);
  font-size: 13px;
  color: var(--muted);
  letter-spacing: 0.08em;
  font-variant-numeric: tabular-nums;
}
.fb-svc-card__title {
  font-family: var(--font-display);
  font-size: clamp(22px, 2vw, 30px);
  font-weight: 500;
  letter-spacing: -0.025em;
  margin: 0;
  color: var(--ivory);
}
.fb-svc-card__desc {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
  max-width: 50ch;
  flex: 1;
}
.fb-svc-card__tags {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.fb-svc-card__tags li {
  font-size: 11px;
  letter-spacing: 0.06em;
  padding: 4px 10px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  color: var(--ivory-dim);
}
.fb-svc-card__cta {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: -0.005em;
  color: var(--ivory-dim);
  margin-top: 8px;
  transition: color .3s var(--ease-out);
}


/* =============================================================
   PROJECTS FILTER + GRID (projects.html)
   ============================================================= */
.fb-projects-filter {
  padding: clamp(24px, 3vw, 40px) 0;
  border-bottom: 1px solid var(--line);
}
.fb-filter {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 6px;
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: 999px;
}
.fb-filter__btn {
  padding: 10px 18px;
  border-radius: 999px;
  background: transparent;
  border: 0;
  color: var(--muted);
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  letter-spacing: -0.005em;
  transition: color .3s, background .3s;
}
.fb-filter__btn em {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--ember);
  font-size: 0.9em;
  margin-left: 4px;
}
.fb-filter__btn:hover { color: var(--ivory); }
.fb-filter__btn.is-active {
  background: var(--ivory);
  color: var(--ink);
}
.fb-filter__btn.is-active em { color: var(--ember); }

/* =============================================================
   PROJECTS — yeniden tasarım: editoryal magazin layout
   ============================================================= */
.fb-projects {
  padding: clamp(48px, 5vw, 80px) 0 var(--section-pad-y);
  border-bottom: 1px solid var(--line);
}
.fb-projects__grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: clamp(20px, 2.4vw, 32px);
}

/* Kart — overlay tipografili magazine card */
.fb-project {
  grid-column: span 6;
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: var(--surface);
  border: 1px solid var(--line);
  color: #fff;
  isolation: isolate;
  aspect-ratio: 4 / 5;
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s var(--ease-out), transform .7s var(--ease-out), border-color .4s var(--ease-out);
}
.fb-project.is-in { opacity: 1; transform: none; }
.fb-project--lg { grid-column: span 12; aspect-ratio: 21 / 9; }

/* Medya — tüm kartı kaplar */
.fb-project__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  border-radius: 0;
  border: 0;
  background: var(--ink);
  overflow: hidden;
}
.fb-project__img {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transform: scale(1.04);
  transition: transform 1s var(--ease-out);
  filter: saturate(0.95);
}
.fb-project:hover .fb-project__img { transform: scale(1.08); }

/* Üstte gradient — yazıyı okunur kıl */
.fb-project::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg,
      rgba(10,10,12,0.05) 0%,
      rgba(10,10,12,0.10) 45%,
      rgba(10,10,12,0.78) 90%,
      rgba(10,10,12,0.92) 100%);
  pointer-events: none;
  transition: background .4s var(--ease-out);
}
.fb-project:hover::before {
  background:
    linear-gradient(180deg,
      rgba(10,10,12,0.20) 0%,
      rgba(10,10,12,0.30) 45%,
      rgba(10,10,12,0.85) 90%,
      rgba(10,10,12,0.96) 100%);
}

/* Sol üst — küçük no + kategori chip */
.fb-project__num {
  position: absolute;
  top: 18px; left: 18px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  background: rgba(255,255,255,0.14);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #fff;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.18);
  font-variant-numeric: tabular-nums;
}

/* Alt — meta blok (kategori + başlık + excerpt + stats) */
.fb-project__meta {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  z-index: 2;
  padding: clamp(20px, 2.4vw, 32px);
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: #fff;
  transform: translateY(0);
  transition: transform .5s var(--ease-out);
}
.fb-project__meta .fb-tag {
  align-self: flex-start;
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ember);
  background: rgba(255,255,255,0.10);
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.16);
  margin-bottom: 4px;
}
.fb-project__meta h2 {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.4vw, 36px);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.08;
  margin: 0;
  color: #fff;
  text-shadow: 0 2px 18px rgba(0,0,0,0.35);
  transition: color .3s var(--ease-out);
}
.fb-project:hover .fb-project__meta h2 { color: var(--ember); }
.fb-project--lg .fb-project__meta h2 { font-size: clamp(28px, 3.2vw, 52px); max-width: 18ch; }

.fb-project__meta p {
  margin: 0;
  color: rgba(255,255,255,0.78);
  font-size: 13.5px;
  line-height: 1.55;
  max-width: 48ch;
  /* Default: gizli, hover'da çıkar */
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height .5s var(--ease-out), opacity .35s var(--ease-out), margin .35s var(--ease-out);
}
.fb-project:hover .fb-project__meta p {
  max-height: 120px;
  opacity: 1;
  margin-top: 2px;
}

.fb-project__stats {
  display: flex; flex-wrap: wrap; gap: 14px;
  margin-top: 6px;
  font-size: 12.5px;
  color: rgba(255,255,255,0.78);
  font-variant-numeric: tabular-nums;
}
.fb-project__stats em {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--ember);
  font-weight: 400;
  margin-right: 4px;
  font-size: 17px;
  line-height: 1;
}

/* Köşe ok ikonu — hover'da görünür */
.fb-project::after {
  content: "↗";
  position: absolute;
  top: 18px; right: 18px;
  z-index: 3;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.14);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #fff;
  font-family: var(--font-display);
  font-size: 18px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.18);
  opacity: 0;
  transform: translate(-6px, 6px);
  transition: opacity .35s var(--ease-out), transform .35s var(--ease-out), background .25s var(--ease-out);
}
.fb-project:hover::after {
  opacity: 1;
  transform: translate(0, 0);
  background: var(--ember);
  border-color: var(--ember);
}

@media (max-width: 991.98px) {
  .fb-project { grid-column: span 12; aspect-ratio: 4 / 5; }
  .fb-project--lg { aspect-ratio: 16 / 11; }
  .fb-project__meta p { max-height: 100px; opacity: 1; margin-top: 4px; }
}

.fb-projects__note {
  margin: clamp(32px, 4vw, 56px) 0 0;
  text-align: center;
  color: var(--muted);
  font-size: 14px;
}
.fb-projects__note em { font-family: var(--font-serif); font-style: italic; color: var(--ivory); }
.fb-projects__note a { color: var(--ivory); border-bottom: 1px solid var(--line-strong); text-underline-offset: 3px; }
.fb-projects__note a:hover { color: var(--ember); border-bottom-color: var(--ember); }


/* =============================================================
   PROJECT DETAIL (project-detail.html)
   ============================================================= */
.fb-proj-hero {
  padding: clamp(120px, 15vw, 200px) 0 0;
  border-bottom: 1px solid var(--line);
}
.fb-proj-hero__top {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: clamp(32px, 4vw, 72px);
  align-items: start;
  margin: clamp(32px, 4vw, 56px) 0 clamp(48px, 5vw, 72px);
}
.fb-proj-hero__meta-side {
  display: flex; flex-direction: column;
  gap: 24px;
  position: sticky;
  top: 100px;
}
.fb-proj-hero__meta {
  list-style: none;
  padding: 0; margin: 0;
  display: flex; flex-direction: column;
  gap: 12px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}
.fb-proj-hero__meta li {
  display: flex; flex-direction: column;
  gap: 2px;
  font-size: 13px;
}
.fb-proj-hero__meta strong {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
}
.fb-proj-hero__meta span { color: var(--ivory); letter-spacing: -0.005em; }

.fb-proj-hero__title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5.5vw, 80px);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1;
  margin: 8px 0 20px;
  color: var(--ivory);
}
.fb-proj-hero__lede {
  font-size: clamp(16px, 1vw + 7px, 19px);
  line-height: 1.5;
  color: var(--ivory-dim);
  margin: 0 0 24px;
  max-width: 56ch;
}
.fb-proj-hero__lede em {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--ember);
}
.fb-proj-hero__cta {
  display: flex; flex-wrap: wrap; gap: 10px;
}

.fb-proj-hero__cover {
  width: 100%;
  aspect-ratio: 16 / 9;
  background-size: cover;
  background-position: center;
  background-color: var(--surface);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  position: relative;
  margin: 0 calc(-1 * var(--container-pad));
}

/* Results strip */
.fb-proj-results {
  padding: clamp(48px, 6vw, 80px) 0;
  border-bottom: 1px solid var(--line);
  background: var(--surface-2);
}
.fb-proj-results__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.fb-proj-result {
  padding: clamp(20px, 2.5vw, 32px);
  border-right: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 8px;
}
.fb-proj-result:last-child { border-right: 0; }

.fb-proj-result__num {
  font-family: var(--font-display);
  font-size: clamp(36px, 4.5vw, 64px);
  font-weight: 500;
  line-height: 0.95;
  letter-spacing: -0.035em;
  color: var(--ivory);
  font-variant-numeric: tabular-nums;
  display: inline-flex;
  align-items: baseline;
  gap: 2px;
}
.fb-proj-result__sign {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.6em;
  font-weight: 400;
  color: var(--ember);
  margin-right: 2px;
}
.fb-proj-result__unit {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.5em;
  font-weight: 400;
  color: var(--ember);
  margin-left: 2px;
}
.fb-proj-result__label {
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}

/* Section (challenge / solution / etc) */
.fb-proj-section {
  padding: clamp(80px, 10vw, 140px) 0;
  border-bottom: 1px solid var(--line);
}
.fb-proj-body {
  font-size: clamp(16px, 1vw + 7px, 18px);
  line-height: 1.7;
  color: var(--ivory-dim);
  max-width: 68ch;
}
.fb-proj-body p { margin: 0 0 16px; }
.fb-proj-body p:last-child { margin-bottom: 0; }
.fb-proj-body strong { color: var(--ivory); font-weight: 500; }

/* Gallery */
.fb-proj-gallery {
  padding: var(--section-pad-y) 0;
  border-bottom: 1px solid var(--line);
}
.fb-proj-gallery__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(16px, 2vw, 28px);
}
.fb-proj-shot {
  margin: 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--line);
  aspect-ratio: 16 / 10;
  background: var(--surface-2);
}
.fb-proj-shot--lg {
  grid-column: 1 / -1;
  aspect-ratio: 16 / 8;
}
.fb-proj-shot__img {
  width: 100%; height: 100%;
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
  transition: transform 1s var(--ease-out);
}
.fb-proj-shot:hover .fb-proj-shot__img { transform: scale(1.05); }

/* Testimonial */
.fb-proj-testimonial {
  padding: var(--section-pad-y) 0;
  border-bottom: 1px solid var(--line);
}
.fb-proj-testimonial__box {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: clamp(40px, 5vw, 72px);
  max-width: 880px;
  margin: 0 auto;
}
.fb-proj-testimonial__box blockquote {
  margin: 0 0 24px;
  font-family: var(--font-display);
  font-size: clamp(22px, 2.4vw, 32px);
  line-height: 1.38;
  letter-spacing: -0.02em;
  color: var(--ivory);
}
.fb-proj-testimonial__box blockquote em {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--ember);
  font-weight: 400;
}
.fb-proj-testimonial__box blockquote p { margin: 0; }
.fb-proj-testimonial__box footer {
  display: flex; flex-direction: column; gap: 2px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}
.fb-proj-testimonial__box footer strong {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 500;
  color: var(--ivory);
}
.fb-proj-testimonial__box footer span {
  font-size: 13px;
  color: var(--muted);
}

/* Next project */
.fb-proj-next {
  padding: clamp(48px, 6vw, 80px) 0 var(--section-pad-y);
  border-bottom: 1px solid var(--line);
}
.fb-proj-next__link {
  display: block;
  padding: clamp(40px, 5vw, 72px) 0;
  color: var(--ivory);
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
  margin-top: 20px;
  transition: background .3s var(--ease-out);
}
.fb-proj-next__link:hover {
  background: var(--accent-soft);
  color: var(--ivory);
}
.fb-proj-next__label {
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ember);
}
.fb-proj-next__title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4.5vw, 64px);
  font-weight: 500;
  letter-spacing: -0.035em;
  margin: 12px 0 8px;
  color: var(--ivory);
}
.fb-proj-next__cat {
  font-size: 14px;
  color: var(--muted);
  letter-spacing: 0.02em;
}


/* =============================================================
   CONTACT PAGE
   ============================================================= */
.fb-contact {
  padding: clamp(56px, 6vw, 88px) 0 var(--section-pad-y);
  border-bottom: 1px solid var(--line);
}
.fb-contact__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(32px, 4vw, 64px);
  align-items: start;
}

/* Form */
.fb-contact__form-wrap {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: clamp(28px, 3vw, 48px);
}
.fb-contact__form-head { margin-bottom: clamp(24px, 3vw, 36px); }
.fb-contact__form-title {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.2vw, 28px);
  font-weight: 500;
  letter-spacing: -0.02em;
  margin: 0 0 8px;
  color: var(--ivory);
}
.fb-contact__form-hint {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}
.fb-contact__form-hint strong { color: var(--ivory); font-weight: 500; }

.fb-brief {
  display: flex; flex-direction: column;
  gap: 20px;
}
.fb-brief__row--2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.fb-brief__field {
  display: flex; flex-direction: column;
  gap: 6px;
  border: 0;
  padding: 0;
  margin: 0;
}
.fb-brief__field label,
.fb-brief__field legend {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
}
.fb-brief__field input,
.fb-brief__field select,
.fb-brief__field textarea {
  background: var(--ink);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 12px 14px;
  font-family: inherit;
  font-size: 14px;
  color: var(--ivory);
  letter-spacing: -0.005em;
  transition: border-color .3s var(--ease-out);
  font-weight: 400;
}
.fb-brief__field input:focus,
.fb-brief__field select:focus,
.fb-brief__field textarea:focus {
  outline: none;
  border-color: var(--ember);
}
.fb-brief__field textarea { resize: vertical; min-height: 100px; }

.fb-brief__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 4px;
}
.fb-brief__chips label {
  padding: 8px 14px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  cursor: pointer;
  font-size: 13px;
  color: var(--ivory);
  text-transform: none;
  letter-spacing: -0.005em;
  font-weight: 400;
  transition: border-color .3s, background .3s, color .3s;
}
.fb-brief__chips label:hover { border-color: var(--ember); }
.fb-brief__chips input { display: none; }
.fb-brief__chips input:checked + span { color: var(--ember); font-weight: 500; }
.fb-brief__chips label:has(input:checked) {
  background: var(--accent-soft);
  border-color: var(--ember);
}

.fb-brief__submit {
  display: flex; flex-direction: column;
  gap: 10px;
  margin-top: 8px;
}
.fb-brief__privacy {
  margin: 0;
  font-size: 12px;
  color: var(--muted);
}
.fb-brief__privacy a { color: var(--ivory); border-bottom: 1px solid var(--line-strong); }
.fb-brief__privacy a:hover { color: var(--ember); border-bottom-color: var(--ember); }

/* Side cards */
.fb-contact__side {
  display: flex; flex-direction: column;
  gap: 16px;
}
.fb-contact__card {
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: clamp(24px, 2.5vw, 36px);
}
.fb-contact__card .fb-section-label { margin-bottom: 16px; display: block; }

.fb-contact__channels-list,
.fb-contact__info {
  list-style: none;
  padding: 0; margin: 0;
  display: flex; flex-direction: column;
  gap: 14px;
}
.fb-contact__channels-list li {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 12px;
  align-items: center;
}
.fb-contact__channels-list svg {
  width: 18px; height: 18px;
  color: var(--ember);
}
.fb-contact__channels-list em {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 11px;
  color: var(--muted);
  display: block;
  margin-bottom: 2px;
  letter-spacing: 0;
}
.fb-contact__channels-list a {
  font-family: var(--font-display);
  color: var(--ivory);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.005em;
  transition: color .3s var(--ease-out);
}
.fb-contact__channels-list a:hover { color: var(--ember); }

.fb-contact__info li {
  display: flex; flex-direction: column;
  gap: 2px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}
.fb-contact__info li:last-child { border-bottom: 0; padding-bottom: 0; }
.fb-contact__info strong {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
}
.fb-contact__info span { color: var(--ivory); font-size: 14px; letter-spacing: -0.005em; }
.fb-contact__info em { font-family: var(--font-serif); font-style: italic; color: var(--ember); }

.fb-contact__card--map { padding: 0; overflow: hidden; }
.fb-contact__map-placeholder {
  position: relative;
  display: block;
}
.fb-contact__map-placeholder svg {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
}
.fb-contact__map-placeholder > div {
  padding: 20px 24px;
  border-top: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 4px;
}
.fb-contact__map-placeholder strong {
  font-family: var(--font-display);
  font-size: 14px;
  color: var(--ivory);
  font-weight: 500;
}
.fb-contact__map-placeholder a {
  font-size: 13px;
  color: var(--ember);
}


/* =============================================================
   MANIFESTO — numaralı editorial liste
   ============================================================= */
.fb-manifesto-list {
  list-style: none;
  padding: 0; margin: 0;
  border-top: 1px solid var(--line);
}
.fb-mf-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: clamp(20px, 3vw, 48px);
  align-items: baseline;
  padding: clamp(28px, 3vw, 48px) 0;
  border-bottom: 1px solid var(--line);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .8s var(--ease-out), transform .8s var(--ease-out);
}
.fb-mf-item.is-in { opacity: 1; transform: none; }
.fb-mf-num {
  font-family: var(--font-display);
  font-size: clamp(24px, 2.4vw, 36px);
  font-weight: 400;
  color: var(--ember);
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
}
.fb-mf-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.05;
  margin: 0 0 12px;
  color: var(--ivory);
}
.fb-mf-title em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--ember);
  letter-spacing: -0.01em;
}
.fb-mf-item p {
  margin: 0;
  font-size: clamp(16px, 1vw + 7px, 18px);
  color: var(--ivory-dim);
  line-height: 1.55;
  max-width: 60ch;
}
.fb-mf-sig {
  margin-top: clamp(40px, 5vw, 64px);
  padding-top: clamp(32px, 4vw, 48px);
  border-top: 1px solid var(--line);
  font-family: var(--font-serif);
  font-style: italic;
}
.fb-mf-sig p { margin: 0 0 8px; color: var(--muted); font-size: 15px; }
.fb-mf-sig strong {
  font-family: var(--font-display);
  font-style: normal;
  font-size: 20px;
  color: var(--ivory);
  letter-spacing: -0.015em;
  display: block;
}
.fb-mf-sig span { color: var(--muted); font-style: normal; font-family: var(--font-display); font-size: 13px; letter-spacing: 0.04em; }


/* =============================================================
   KARIYER — yan haklar listesi & iş ilanları
   ============================================================= */
.fb-benefit-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.fb-benefit-list li {
  background: var(--ink);
  padding: 24px;
  display: flex; flex-direction: column; gap: 6px;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .7s var(--ease-out), transform .7s var(--ease-out);
}
.fb-benefit-list li.is-in { opacity: 1; transform: none; }
.fb-benefit-list strong {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 500;
  color: var(--ivory);
  letter-spacing: -0.01em;
}
.fb-benefit-list span {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.5;
}

.fb-jobs {
  list-style: none;
  padding: 0;
  margin: 40px 0 0;
  display: flex; flex-direction: column;
  gap: 12px;
}
.fb-job {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  padding: clamp(24px, 3vw, 36px);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  transition: border-color .3s var(--ease-out), transform .3s var(--ease-out);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .7s, transform .7s, border-color .3s;
}
.fb-job.is-in { opacity: 1; transform: none; }
.fb-job:hover { border-color: var(--ember); }
.fb-job__tag {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ember);
  margin-bottom: 8px;
  font-weight: 500;
}
.fb-job h3 {
  font-family: var(--font-display);
  font-size: clamp(18px, 1.8vw, 24px);
  font-weight: 500;
  margin: 0 0 6px;
  letter-spacing: -0.015em;
  color: var(--ivory);
}
.fb-job p {
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
  max-width: 60ch;
}
.fb-job__meta {
  list-style: none;
  padding: 0; margin: 0;
  display: flex; flex-wrap: wrap; gap: 14px;
  font-size: 12px;
  color: var(--muted);
}
.fb-job__meta li {
  position: relative;
  padding-right: 14px;
}
.fb-job__meta li:not(:last-child)::after {
  content: "·";
  position: absolute;
  right: 0;
  color: var(--muted-2);
}
.fb-jobs__note {
  margin-top: 32px;
  text-align: center;
  font-size: 14px;
  color: var(--muted);
}
.fb-jobs__note a { color: var(--ivory); border-bottom: 1px solid var(--line-strong); }


/* =============================================================
   BASIN — medya bahisleri listesi
   ============================================================= */
.fb-press-list {
  list-style: none;
  padding: 0;
  margin: 32px 0 0;
  border-top: 1px solid var(--line);
}
.fb-press-list li {
  display: grid;
  grid-template-columns: 180px 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .7s, transform .7s;
}
.fb-press-list li.is-in { opacity: 1; transform: none; }
.fb-press-date {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 15px;
  color: var(--ember);
}
.fb-press-list h3 {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 500;
  margin: 0;
  letter-spacing: -0.01em;
  color: var(--ivory);
}
.fb-press-list a {
  font-size: 13px;
  color: var(--muted);
  letter-spacing: 0.02em;
  white-space: nowrap;
  transition: color .3s var(--ease-out);
}
.fb-press-list a:hover { color: var(--ember); }


/* =============================================================
   SÖZLÜK — alfabetik term listesi
   ============================================================= */
.fb-sozluk { padding: var(--section-pad-y) 0; border-bottom: 1px solid var(--line); }
.fb-sozluk__alpha {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: clamp(48px, 6vw, 80px);
  padding-bottom: clamp(24px, 3vw, 40px);
  border-bottom: 1px solid var(--line);
}
.fb-sozluk__alpha a {
  width: 36px; height: 36px;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--surface-2);
  color: var(--ivory);
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 500;
  transition: background .3s, color .3s;
}
.fb-sozluk__alpha a:hover {
  background: var(--ember);
  color: #fff;
}

.fb-sozluk__list {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin: 0;
}
.fb-sozluk__letter {
  font-family: var(--font-display);
  font-size: clamp(56px, 7vw, 96px);
  font-weight: 400;
  color: var(--ember);
  letter-spacing: -0.04em;
  line-height: 1;
  margin: clamp(40px, 5vw, 64px) 0 24px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--line);
  scroll-margin-top: 100px;
}
.fb-sozluk__letter:first-child { margin-top: 0; }

.fb-sozluk__list dt {
  font-family: var(--font-display);
  font-size: clamp(18px, 1.6vw, 22px);
  font-weight: 500;
  margin: 20px 0 8px;
  color: var(--ivory);
  letter-spacing: -0.015em;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .6s, transform .6s;
}
.fb-sozluk__list dt.is-in { opacity: 1; transform: none; }
.fb-sozluk__list dd {
  margin: 0 0 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
  color: var(--ivory-dim);
  font-size: clamp(15px, 1vw + 6px, 16px);
  line-height: 1.6;
  max-width: 72ch;
}


/* =============================================================
   LEGAL PAGES — Gizlilik, KVKK, Çerezler, Şartlar
   ============================================================= */
.fb-legal {
  padding: var(--section-pad-y) 0;
  border-bottom: 1px solid var(--line);
}
.fb-legal__wrap {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: start;
}
.fb-legal__toc {
  position: sticky;
  top: 100px;
  padding: 24px;
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}
.fb-legal__toc-title {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 16px;
  font-weight: 500;
}
.fb-legal__toc ol {
  list-style: none;
  padding: 0; margin: 0;
  display: flex; flex-direction: column;
  gap: 2px;
  counter-reset: toc;
}
.fb-legal__toc li { counter-increment: toc; }
.fb-legal__toc a {
  display: block;
  padding: 8px 10px;
  font-family: var(--font-display);
  font-size: 13.5px;
  color: var(--ivory-dim);
  border-radius: 8px;
  transition: background .25s, color .25s;
  letter-spacing: -0.005em;
}
.fb-legal__toc a::before {
  content: counter(toc, decimal-leading-zero);
  font-family: var(--font-display);
  font-size: 11px;
  color: var(--ember);
  margin-right: 10px;
  font-variant-numeric: tabular-nums;
}
.fb-legal__toc a:hover {
  background: var(--accent-soft);
  color: var(--ember);
}

.fb-legal__content {
  max-width: 74ch;
}
.fb-legal__updated {
  font-size: 13px;
  color: var(--muted);
  margin: 0 0 48px;
  padding: 14px 18px;
  background: var(--surface-2);
  border-left: 3px solid var(--ember);
  border-radius: 0 8px 8px 0;
}
.fb-legal__updated strong { color: var(--ivory); }

.fb-legal__content h2 {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.4vw, 32px);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.15;
  margin: clamp(40px, 5vw, 64px) 0 16px;
  color: var(--ivory);
  scroll-margin-top: 100px;
}
.fb-legal__content h2::before {
  content: counter(legal, decimal-leading-zero);
  display: inline-block;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.58em;
  color: var(--ember);
  margin-right: 14px;
  vertical-align: baseline;
  font-weight: 400;
  letter-spacing: 0;
}
.fb-legal__content { counter-reset: legal; }
.fb-legal__content h2 { counter-increment: legal; }
.fb-legal__content h2:first-child { margin-top: 0; }

.fb-legal__content h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.015em;
  margin: 28px 0 10px;
  color: var(--ivory);
}
.fb-legal__content p {
  margin: 0 0 16px;
  font-size: clamp(15px, 1vw + 6px, 17px);
  line-height: 1.7;
  color: var(--ivory-dim);
}
.fb-legal__content p strong { color: var(--ivory); font-weight: 500; }
.fb-legal__content ul,
.fb-legal__content ol {
  margin: 0 0 20px;
  padding-left: 24px;
  color: var(--ivory-dim);
  font-size: clamp(15px, 1vw + 6px, 16px);
  line-height: 1.7;
}
.fb-legal__content li { margin-bottom: 6px; }
.fb-legal__content a {
  color: var(--ember);
  border-bottom: 1px solid transparent;
  transition: border-color .25s;
}
.fb-legal__content a:hover { border-bottom-color: var(--ember); }
.fb-legal__content em {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--ember);
  font-weight: 400;
}

/* Table of contact info for legal pages */
.fb-legal__info-box {
  padding: 24px;
  background: var(--accent-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  margin: 24px 0;
  font-size: 14px;
}
.fb-legal__info-box strong {
  display: block;
  margin-bottom: 6px;
  color: var(--ivory);
}

/* =============================================================
   404 PAGE
   ============================================================= */
.fb-404 {
  min-height: 92vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 160px 0 80px;
  text-align: center;
  background: var(--ink);
}
.fb-404__inner {
  max-width: 680px;
}
.fb-404__num {
  font-family: var(--font-display);
  font-size: clamp(160px, 26vw, 340px);
  font-weight: 500;
  line-height: 0.9;
  letter-spacing: -0.06em;
  color: var(--ember);
  margin: 0 0 24px;
  font-variant-numeric: tabular-nums;
  background: linear-gradient(180deg, var(--ember), rgba(184,61,31,0.35));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.fb-404__title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 500;
  letter-spacing: -0.03em;
  margin: 0 0 16px;
  color: var(--ivory);
}
.fb-404__title em {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--ember);
  font-weight: 400;
}
.fb-404__lede {
  font-size: clamp(15px, 1vw + 7px, 17px);
  color: var(--muted);
  line-height: 1.6;
  margin: 0 0 40px;
  max-width: 52ch;
  margin-left: auto;
  margin-right: auto;
}
.fb-404__actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.fb-404__links {
  padding: 24px;
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  text-align: left;
}
.fb-404__links h3 {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 14px;
  font-weight: 500;
}
.fb-404__links ul {
  list-style: none;
  padding: 0; margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 6px;
}
.fb-404__links a {
  display: block;
  padding: 10px 12px;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 500;
  color: var(--ivory);
  border-radius: 8px;
  transition: background .25s, color .25s, transform .25s;
}
.fb-404__links a:hover {
  background: var(--accent-soft);
  color: var(--ember);
  transform: translateX(4px);
}

/* ==========================================================
   PROCESS PAGE (surec.html) — 6 aşama detay + DoR/DoD + RACI
   ========================================================== */
.fb-process {
  padding: clamp(80px, 10vw, 140px) 0;
  border-bottom: 1px solid var(--line);
}
.fb-process__list {
  list-style: none;
  margin: 60px 0 0;
  padding: 0;
  display: grid;
  gap: 24px;
}
.fb-process__step {
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: clamp(28px, 3.4vw, 44px);
  transition: border-color .3s, transform .3s, opacity .6s;
  opacity: 0;
  transform: translate3d(0, 32px, 0);
}
.fb-process__step.is-in {
  opacity: 1;
  transform: none;
}
.fb-process__step:hover {
  border-color: var(--ember);
}
.fb-process__head {
  display: flex;
  align-items: flex-start;
  gap: 22px;
  margin-bottom: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}
.fb-process__num {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(48px, 5.6vw, 84px);
  line-height: 0.9;
  color: var(--ember);
  flex-shrink: 0;
}
.fb-process__head > div {
  flex: 1;
  min-width: 0;
}
.fb-process__title {
  font-family: var(--font-display);
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 6px 0 4px;
  color: var(--ink);
}
.fb-process__week {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-dim);
  padding: 4px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
}
.fb-process__lede {
  font-size: clamp(15px, 1vw + 7px, 18px);
  line-height: 1.6;
  color: var(--ink-dim);
  margin: 0 0 24px;
  max-width: 80ch;
}
.fb-process__cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.fb-process__sub {
  display: block;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ember);
  margin-bottom: 10px;
  font-weight: 600;
}
.fb-process__cols ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.fb-process__cols li {
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-dim);
  padding: 6px 0 6px 18px;
  position: relative;
}
.fb-process__cols li::before {
  content: "·";
  position: absolute;
  left: 4px;
  top: 4px;
  color: var(--ember);
  font-weight: 700;
  font-size: 18px;
}
.fb-process__cols li strong {
  color: var(--ink);
  font-weight: 600;
}
@media (max-width: 880px) {
  .fb-process__cols { grid-template-columns: 1fr; gap: 22px; }
  .fb-process__head { flex-direction: column; gap: 12px; }
}

/* ===== DoR / DoD ===== */
.fb-process-dod {
  padding: clamp(80px, 10vw, 140px) 0;
  border-bottom: 1px solid var(--line);
  background: var(--surface);
}
.fb-dod-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.fb-dod-card {
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: clamp(28px, 3.4vw, 40px);
  opacity: 0;
  transform: translate3d(0, 32px, 0);
  transition: opacity .7s var(--ease-out), transform .7s var(--ease-out), border-color .3s;
}
.fb-dod-card.is-in {
  opacity: 1;
  transform: none;
}
.fb-dod-card:hover {
  border-color: var(--ember);
}
.fb-dod-card__label {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ember);
  margin-bottom: 14px;
  font-weight: 600;
}
.fb-dod-card h3 {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 600;
  letter-spacing: -0.02em;
  margin: 0 0 18px;
  color: var(--ink);
}
.fb-dod-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 22px;
}
.fb-dod-card li {
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink-dim);
  padding: 8px 0 8px 22px;
  position: relative;
  border-bottom: 1px solid var(--line);
}
.fb-dod-card li:last-child { border-bottom: 0; }
.fb-dod-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 8px;
  color: var(--ember);
  font-weight: 600;
}
.fb-dod-card__note {
  font-size: 13px;
  font-style: italic;
  color: var(--ink-dim);
  margin: 0;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}
@media (max-width: 720px) {
  .fb-dod-grid { grid-template-columns: 1fr; }
}

/* ===== RACI table ===== */
.fb-process-raci {
  padding: clamp(80px, 10vw, 140px) 0;
  border-bottom: 1px solid var(--line);
}
.fb-raci-table {
  margin-top: 48px;
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  opacity: 0;
  transform: translate3d(0, 24px, 0);
  transition: opacity .7s var(--ease-out), transform .7s var(--ease-out);
}
.fb-raci-table.is-in {
  opacity: 1;
  transform: none;
}
.fb-raci-row {
  display: grid;
  grid-template-columns: 1.2fr 1.6fr 1.6fr;
  border-bottom: 1px solid var(--line);
}
.fb-raci-row:last-child { border-bottom: 0; }
.fb-raci-row > div {
  padding: 16px 22px;
  font-size: 14px;
  line-height: 1.5;
  color: var(--ink-dim);
  border-right: 1px solid var(--line);
}
.fb-raci-row > div:last-child { border-right: 0; }
.fb-raci-row > div:first-child {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--ink);
  background: var(--surface-2);
}
.fb-raci-row--head > div {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ember);
  background: var(--surface-2);
}
.fb-raci-row--head > div:first-child {
  background: var(--ink);
  color: var(--ivory);
}
@media (max-width: 720px) {
  .fb-raci-row { grid-template-columns: 1fr; }
  .fb-raci-row > div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .fb-raci-row > div:last-child { border-bottom: 0; }
}

