:root {
  /* Shared page grid — every main block snaps to these */
  --max: 1400px;
  --gutter: max(24px, calc((100vw - var(--max)) / 2));
  --chrome-max: 1600px;
  --chrome-gutter: max(24px, calc((100vw - var(--chrome-max)) / 2));
  --gap: 32px;
  --col: calc((var(--max) - (11 * var(--gap))) / 12);

  --navy: #012f57;
  --ink: #161616;
  --body: #444646;
  --ice: #d4eeff;
  --line: #e6e9eb;
  --white: #fff;
  --muted: #8a8f92;
  --accent: #3b8fd4;
  --font: "Geist", Helvetica, Arial, sans-serif;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.7;
  color: var(--body);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

::selection {
  background: rgba(1, 47, 87, 0.14);
}

/* ——— Shared shell / 12-col grid ——— */
.shell {
  width: 100%;
  max-width: var(--max);
  margin-inline: auto;
  padding-inline: 0;
}

/* When viewport < max, shell needs side padding via gutter trick */
@media (max-width: 1400px) {
  .shell {
    width: auto;
    margin-inline: var(--gutter);
    max-width: none;
  }
}

/* Header + footer: biraz daha geniş chrome çerçevesi */
.header .shell,
.footer .shell {
  max-width: var(--chrome-max);
}

@media (max-width: 1600px) {
  .header .shell,
  .footer .shell {
    width: auto;
    margin-inline: var(--chrome-gutter);
    max-width: none;
  }
}

.grid-12 {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  column-gap: var(--gap);
  row-gap: var(--gap);
}

.span-12 { grid-column: span 12; }
.span-7 { grid-column: span 7; }
.span-6 { grid-column: span 6; }
.span-5 { grid-column: span 5; }
.span-4 { grid-column: span 4; }

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal.in {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .reveal,
  .slide,
  .hero-copy,
  .hero-copy .hero-kicker,
  .hero-copy h1,
  .hero-copy > p,
  .hero-copy .hero-cta,
  .hero-team-cell,
  .hero-team-sq,
  .hero-story {
    transition: none !important;
    animation: none !important;
    transform: none !important;
  }

  .slide.on,
  .hero-copy.on,
  .hero-copy.on .hero-kicker,
  .hero-copy.on h1,
  .hero-copy.on > p,
  .hero-copy.on .hero-cta,
  .reveal.in,
  .slide--team.on .hero-team-cell[data-enter],
  .slide--team.on .hero-team-sq,
  .slide--team.on .hero-team-mark {
    opacity: 1 !important;
    clip-path: none !important;
    transform: none !important;
  }

  .slide:not(.on) {
    opacity: 0 !important;
  }

  .hero-copy:not(.on) {
    opacity: 0 !important;
    visibility: hidden !important;
  }
}

/* ——— Header ——— */
.header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 60;
  height: 80px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.28), rgba(0, 0, 0, 0));
  transform: translateY(0);
  transition:
    transform 0.35s var(--ease),
    background 0.35s ease,
    height 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
  will-change: transform;
}

/* Hide while scrolling down */
.header.is-hidden {
  transform: translateY(-110%);
  pointer-events: none;
}

/* Solid navy bar — only when scrolling up (or mid-page reveal) */
.header.is-solid {
  position: fixed;
  height: 68px;
  background: rgba(1, 47, 87, 0.96);
  backdrop-filter: blur(16px) saturate(1.15);
  box-shadow: 0 10px 32px rgba(1, 20, 40, 0.22);
  border-bottom-color: rgba(255, 255, 255, 0.1);
}

.header-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 28px;
  width: 100%;
}

.logo {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  justify-self: start;
  transition: opacity 0.25s ease, transform 0.25s var(--ease);
}

.logo:hover {
  opacity: 0.88;
}

.logo img {
  width: 124px;
  height: auto;
  display: block;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  justify-self: center;
  grid-column: 2;
}

.nav a {
  position: relative;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.15px;
  color: rgba(255, 255, 255, 0.92);
  padding: 8px 0;
  transition: color 0.25s ease;
}

.nav a:hover {
  color: #fff;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 4px;
  height: 1px;
  background: #fff;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease);
}

.nav a:hover::after {
  transform: scaleX(1);
}

.header-tools {
  display: flex;
  align-items: center;
  justify-self: end;
  grid-column: 3;
  gap: 16px;
  margin-left: 0;
  padding-left: 0;
  border-left: 0;
}

.lang {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: #fff;
}

.lang a {
  transition: opacity 0.2s ease;
}

.lang a.is-active {
  opacity: 1;
}

.lang a:not(.is-active) {
  opacity: 0.5;
}

.lang a:not(.is-active):hover {
  opacity: 0.85;
}

.lang span {
  opacity: 0.3;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.2;
  border: 0;
  border-radius: 0;
  cursor: pointer;
  transition: transform 0.25s var(--ease), background 0.25s ease, color 0.25s ease,
    border-color 0.25s ease, box-shadow 0.25s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn:active {
  transform: translateY(0);
}

.btn-ghost {
  padding: 14px 20px;
  color: #fff;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.85);
}

.btn-ghost:hover {
  background: #fff;
  color: var(--ink);
  border-color: #fff;
}

.btn-white {
  padding: 16px 30px;
  color: var(--ink);
  background: #fff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.btn-white:hover {
  background: var(--ice);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.16);
}

.btn-outline {
  padding: 15px 28px;
  color: #fff;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.75);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: #fff;
}

.btn-navy {
  padding: 14px 28px;
  color: #fff;
  background: var(--navy);
}

.btn-navy:hover {
  background: #02406f;
}

.burger {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: transparent;
  color: #fff;
}

/* ——— Hero ——— */
.hero {
  position: relative;
  height: clamp(680px, 86vh, 900px);
  display: grid;
  align-items: center;
  overflow: hidden;
  color: #fff;
}

.slides {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.slide {
  position: absolute;
  inset: 0;
  background: center 18% / cover no-repeat;
  opacity: 0;
  transform: scale(1.06);
  transition: opacity 1.4s ease, transform 8s ease;
  will-change: opacity, transform;
}

.slide.on {
  opacity: 1;
  transform: scale(1);
}

/* Zoom yalnızca ekip dışı slaytlarda */
.slide--team,
.slide--team.on {
  background: #012f57;
  background-image: none;
  transform: none !important;
  transition: opacity 1.1s ease;
  will-change: opacity;
}

/* Sol: küçük dekor kareleri — grid bitiş çizgilerine hizalı */
.hero-team-accents {
  --team-mosaic-w: min(62vw, 1080px);
  --team-cell: calc(var(--team-mosaic-w) / 4);
  --team-head: 80px;
  --team-mark: clamp(28px, 2.5vw, 44px);
  position: absolute;
  top: var(--team-head);
  bottom: 0;
  left: 0;
  right: var(--team-mosaic-w);
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.hero-team-sq {
  position: absolute;
  display: block;
  width: var(--team-mark);
  height: var(--team-mark);
  background: rgba(212, 238, 255, 0.2);
  opacity: 0;
}

.slide--team.on .hero-team-sq {
  animation: heroTeamSqIn 0.55s var(--ease) forwards;
}

/* Üst bitiş çizgisi */
.hero-team-sq--a {
  top: 0;
  right: calc(var(--team-cell) * 1.5);
  animation-delay: 0.28s;
}
.hero-team-sq--b {
  top: 0;
  right: 0;
  width: calc(var(--team-mark) * 1.25);
  height: calc(var(--team-mark) * 1.25);
  animation-delay: 0.42s;
  background: rgba(212, 238, 255, 0.16);
}

/* Alt sol */
.hero-team-sq--e {
  bottom: 0;
  left: 0;
  width: calc(var(--team-mark) * 1.45);
  height: calc(var(--team-mark) * 1.45);
  animation-delay: 0.36s;
  background: rgba(212, 238, 255, 0.15);
}

.slide--team:not(.on) .hero-team-sq {
  animation: none;
  opacity: 0;
}

@keyframes heroTeamSqIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Sağ mozaik: header bitişinden başlar, 4×2 tam dolu */
.hero-team-mosaic {
  --team-mosaic-w: min(62vw, 1080px);
  --team-head: 80px;
  --team-mark: clamp(28px, 2.5vw, 44px);
  position: absolute;
  top: var(--team-head);
  right: 0;
  bottom: 0;
  width: var(--team-mosaic-w);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-template-rows: 1fr 1fr;
  gap: 0;
  overflow: hidden;
}

.hero-team-cell {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: #0a2740;
  opacity: 0;
  will-change: opacity, clip-path;
}

/* Boş hücre: tam mavi dolgu yok — sadece bitiş çizgilerinde küçük kareler */
.hero-team-cell--gap {
  background: transparent;
  opacity: 1;
  overflow: visible;
  animation: none !important;
  clip-path: none !important;
}

.hero-team-mark {
  position: absolute;
  width: var(--team-mark);
  height: var(--team-mark);
  background: rgba(212, 238, 255, 0.2);
  opacity: 0;
  pointer-events: none;
}

.slide--team.on .hero-team-mark {
  animation: heroTeamSqIn 0.55s var(--ease) forwards;
}

.hero-team-mark--tl { top: 0; left: 0; animation-delay: 0.3s; }
.hero-team-mark--tr { top: 0; right: 0; animation-delay: 0.44s; }
.hero-team-mark--br { bottom: 0; right: 0; animation-delay: 0.56s; }

.slide--team:not(.on) .hero-team-mark {
  animation: none;
  opacity: 0;
}

.hero-team-cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 14%;
  display: block;
  filter: saturate(0.92) contrast(1.02);
}

/* Karışık giriş — sadece maske, zoom/scale yok */
.hero-team-cell[data-enter="down"] {
  clip-path: inset(0 0 100% 0);
}
.hero-team-cell[data-enter="up"] {
  clip-path: inset(100% 0 0 0);
}
.hero-team-cell[data-enter="left"] {
  clip-path: inset(0 100% 0 0);
}
.hero-team-cell[data-enter="right"] {
  clip-path: inset(0 0 0 100%);
}

.slide--team.on .hero-team-cell[data-enter] {
  animation: heroTeamCellIn 0.95s var(--ease) forwards;
}

.slide--team.on .hero-team-cell:nth-child(1) { animation-delay: 0.18s; }
.slide--team.on .hero-team-cell:nth-child(2) { animation-delay: 0.55s; }
.slide--team.on .hero-team-cell:nth-child(3) { animation-delay: 0.32s; }
.slide--team.on .hero-team-cell:nth-child(4) { animation-delay: 0.78s; }
.slide--team.on .hero-team-cell:nth-child(5) { animation-delay: 0.48s; }
.slide--team.on .hero-team-cell:nth-child(6) { animation-delay: 0.22s; }
.slide--team.on .hero-team-cell:nth-child(7) { animation-delay: 0.68s; }
.slide--team.on .hero-team-cell:nth-child(8) { animation-delay: 0.40s; }

.slide--team:not(.on) .hero-team-cell[data-enter] {
  animation: none;
  opacity: 0;
}

.slide--team:not(.on) .hero-team-cell[data-enter="down"] {
  clip-path: inset(0 0 100% 0);
}
.slide--team:not(.on) .hero-team-cell[data-enter="up"] {
  clip-path: inset(100% 0 0 0);
}
.slide--team:not(.on) .hero-team-cell[data-enter="left"] {
  clip-path: inset(0 100% 0 0);
}
.slide--team:not(.on) .hero-team-cell[data-enter="right"] {
  clip-path: inset(0 0 0 100%);
}

@keyframes heroTeamCellIn {
  0% { opacity: 0; }
  45% { opacity: 1; }
  100% {
    opacity: 1;
    clip-path: inset(0 0 0 0);
  }
}

/* Ekip slaytında yazı solunda kalsın; sağdaki fotoğraflar net kalsın */
.hero:has(.slide--team.on) .hero-shade {
  background:
    linear-gradient(90deg, rgba(1, 20, 40, 0.55) 0%, rgba(1, 20, 40, 0.28) 38%, rgba(1, 20, 40, 0.04) 58%, transparent 72%),
    linear-gradient(to top, rgba(1, 20, 40, 0.35) 0%, transparent 36%),
    linear-gradient(to bottom, rgba(0, 0, 0, 0.18) 0%, transparent 26%);
}

@media (max-width: 1100px) {
  .hero-team-accents,
  .hero-team-mosaic {
    --team-mosaic-w: min(58vw, 760px);
    --team-head: 72px;
  }
}

@media (max-width: 900px) {
  .hero-team-accents,
  .hero-team-mosaic {
    --team-head: 68px;
  }

  .hero-team-sq--b {
    display: none;
  }
}

.slide--stories,
.slide--stories.on {
  background: #012f57;
  background-image: none;
  transform: none !important;
  transition: opacity 1.1s ease;
  will-change: opacity;
}

/* Hasta öyküsü kartı: 12 kolon, sağ 6, dikey ortalı — kenara yapışmaz */
.hero-stories-place {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  z-index: 2;
  width: min(calc(100vw - 2 * var(--gutter)), var(--max));
  height: 100%;
  margin: 0;
  transform: translateX(-50%);
  align-items: center;
  pointer-events: none;
}

.hero-stories-track {
  grid-column: 7 / span 6;
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-story {
  position: relative;
  flex: 0 0 86%;
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  pointer-events: auto;
  background: #0b1c2c;
  color: #fff;
  opacity: 0;
  transform: scale(0.96);
  transition:
    opacity 0.75s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.75s cubic-bezier(0.16, 1, 0.3, 1);
}

.slide--stories.on .hero-story.is-active {
  opacity: 1;
  transform: scale(1);
}

.slide--stories.on .hero-story:not(.is-active) {
  opacity: 0.28;
  transform: scale(0.96);
  pointer-events: none;
  cursor: default;
}

.slide--stories.on .hero-story:not(.is-active) .hero-story-media img {
  filter: blur(10px) saturate(0.7);
  transform: scale(1.06);
}

.hero-story:not(.is-active) .hero-story-caption {
  opacity: 0;
  pointer-events: none;
}

.hero-story-media {
  margin: 0;
  height: 100%;
}

.hero-story-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(4, 20, 34, 0.12) 0%,
    rgba(4, 20, 34, 0.05) 34%,
    rgba(4, 20, 34, 0.72) 78%,
    rgba(4, 20, 34, 0.9) 100%
  );
}

.hero-story-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 22%;
  transition: transform 1.1s var(--ease);
}

.hero-story:hover .hero-story-media img {
  transform: scale(1.03);
}

.hero-story-caption {
  position: absolute;
  inset: auto 0 0;
  z-index: 1;
  padding: clamp(18px, 2.4vw, 28px) clamp(18px, 2.6vw, 32px);
  text-align: center;
}

.hero-story-kicker {
  margin: 0 0 8px;
  font-family: var(--font);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}

.hero-story-kicker sup {
  font-size: 0.62em;
  line-height: 0;
  vertical-align: super;
}

.hero-story-caption h3 {
  margin: 0 auto 14px;
  max-width: 28em;
  font-family: var(--font);
  font-size: clamp(16px, 1.45vw, 20px);
  font-weight: 500;
  letter-spacing: -0.45px;
  line-height: 1.28;
  color: #fff;
}

.hero-story-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font);
  font-size: 12.5px;
  font-weight: 600;
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  padding-bottom: 2px;
  transition: border-color 0.25s ease;
}

.hero-story-link i {
  font-style: normal;
  transition: transform 0.3s var(--ease);
}

.hero-story:hover .hero-story-link {
  border-bottom-color: #fff;
}

.hero-story:hover .hero-story-link i {
  transform: translateX(4px);
}

.hero:has(.slide--stories.on) .hero-shade {
  background:
    linear-gradient(90deg, rgba(1, 20, 40, 0.55) 0%, rgba(1, 20, 40, 0.18) 38%, transparent 56%),
    linear-gradient(to top, rgba(1, 20, 40, 0.28) 0%, transparent 32%),
    linear-gradient(to bottom, rgba(0, 0, 0, 0.16) 0%, transparent 24%);
}

@media (max-width: 900px) {
  .hero-stories-track {
    grid-column: 7 / span 6;
  }

  .hero-story {
    flex-basis: 100%;
  }

  .slide--stories.on .hero-story.is-active {
    opacity: 0.5;
  }

  .slide--stories.on .hero-story:not(.is-active) {
    display: none;
  }

  .hero-story-caption h3 {
    font-size: 14px;
  }

  .hero-story .story-stats {
    display: none;
  }
}

.hero-shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(105deg, rgba(1, 20, 40, 0.72) 0%, rgba(1, 20, 40, 0.38) 42%, rgba(1, 20, 40, 0.08) 72%),
    linear-gradient(to top, rgba(1, 20, 40, 0.55) 0%, transparent 42%),
    linear-gradient(to bottom, rgba(0, 0, 0, 0.2) 0%, transparent 28%);
  pointer-events: none;
}

.hero-fade {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 56px;
  background: linear-gradient(to bottom, transparent, rgba(1, 20, 40, 0.35));
  pointer-events: none;
  z-index: 2;
}

.hero-panels {
  position: relative;
  z-index: 3;
  display: grid;
  align-items: center;
  width: 100%;
  padding: 96px 0 72px;
  pointer-events: none;
}

.hero-copy {
  grid-area: 1 / 1;
  position: relative;
  z-index: 0;
  row-gap: 0;
  column-gap: var(--gap);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, visibility 0.25s;
}

.hero-copy.on {
  z-index: 1;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.hero-copy .hero-kicker,
.hero-copy h1,
.hero-copy > p,
.hero-copy .hero-cta {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
  transition-delay: 0s;
}

.hero-copy.on .hero-kicker,
.hero-copy.on h1,
.hero-copy.on > p,
.hero-copy.on .hero-cta {
  opacity: 1;
  transform: none;
  transition-duration: 0.65s;
  transition-timing-function: var(--ease);
}

.hero-copy.on .hero-kicker { transition-delay: 0.08s; }
.hero-copy.on h1 { transition-delay: 0.18s; }
.hero-copy.on > p { transition-delay: 0.3s; }
.hero-copy.on .hero-cta { transition-delay: 0.42s; }

.hero-kicker {
  grid-column: 1 / span 7;
  margin: 0 0 10px;
  font-family: var(--font);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
}

.hero-copy h1 {
  margin: 0 0 12px;
  grid-column: 1 / span 8;
  max-width: 17em;
  font-family: var(--font);
  font-size: clamp(28px, 3.2vw, 40px);
  font-weight: 500;
  letter-spacing: -1.1px;
  line-height: 1.14;
  color: #fff;
  text-wrap: balance;
  text-shadow: 0 10px 40px rgba(0, 0, 0, 0.25);
}

.hero-copy p,
.hero-cta {
  grid-column: 1 / span 8;
}

.hero-copy p {
  margin: 0 0 18px;
  max-width: 34em;
  font-family: var(--font);
  font-size: 16px;
  font-weight: 400;
  letter-spacing: -0.2px;
  line-height: 1.42;
  color: rgba(255, 255, 255, 0.88);
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
}

/* Hero: sağ altta yatay metin sekmeleri */
.hero-nav {
  position: absolute;
  z-index: 4;
  right: var(--gutter);
  bottom: 40px;
  display: flex;
  align-items: flex-end;
  gap: 28px;
}

.hero-thumb {
  position: relative;
  display: block;
  padding: 0 0 12px;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.48);
  cursor: pointer;
  text-align: left;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.4);
  transition: color 0.3s ease;
}

.hero-thumb-label {
  display: block;
  font-family: var(--font);
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: -0.15px;
  line-height: 1.2;
  white-space: nowrap;
}

.hero-thumb i {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1.5px;
  background: rgba(255, 255, 255, 0.2);
  pointer-events: none;
}

.hero-thumb i::after {
  content: "";
  display: block;
  width: 0;
  height: 100%;
  background: #fff;
}

.hero-thumb:hover {
  color: rgba(255, 255, 255, 0.88);
}

.hero-thumb.on {
  color: #fff;
}

.hero-thumb.on i::after {
  animation: heroThumbProgress 5.6s linear forwards;
}

.hero-nav.is-paused .hero-thumb.on i::after {
  animation-play-state: paused;
}

@keyframes heroThumbProgress {
  from { width: 0; }
  to { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-thumb.on i::after {
    animation: none;
    width: 100%;
  }
}

/* ——— Intro: brand panel + treatment paths ——— */
.intro-section {
  padding: clamp(80px, 8.5vw, 120px) 0;
  background: #fafbfc;
}

.intro-grid {
  align-items: stretch;
}

.intro-brand {
  grid-column: 1 / span 6;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(16px, 2vw, 28px) 0;
  background: transparent;
}

.intro-brand-label {
  display: block;
  margin-bottom: 22px;
  font-family: var(--font);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(1, 47, 87, 0.55);
}

.intro-brand p {
  margin: 0 0 16px;
  max-width: 38em;
  font-size: 16px;
  line-height: 1.78;
  color: #2f3940;
}

.intro-brand p.intro-brand-lead {
  margin: 0 0 24px;
  max-width: 24em;
  font-family: var(--font);
  font-size: 24px;
  font-weight: 500;
  letter-spacing: -0.6px;
  line-height: 1.4;
  color: var(--ink);
  text-wrap: pretty;
}

.intro-brand-lead .w {
  color: var(--navy);
  opacity: 0.24;
  transition: opacity 0.15s linear;
}

@media (prefers-reduced-motion: reduce) {
  .intro-brand-lead .w,
  .services-lead .w {
    opacity: 1 !important;
  }
}

.intro-brand strong {
  font-family: var(--font);
  font-weight: 600;
  color: var(--navy);
}

.intro-brand sup {
  font-size: 0.62em;
  vertical-align: super;
  line-height: 0;
}

.intro-brand p:last-child {
  margin-bottom: 0;
}

.intro-links {
  grid-column: 7 / span 6;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding: 0;
  background: transparent;
}

.intro-link {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 24px;
  grid-template-rows: auto 1fr;
  gap: clamp(36px, 4vw, 56px) 24px;
  min-height: 240px;
  padding: clamp(26px, 2.6vw, 36px);
  background: var(--ice);
  color: var(--ink);
  transition: background 0.35s ease;
}

.intro-link:hover {
  background: #c6e8fc;
}

/* strong + small doğrudan kartın grid'ine katılır: başlık üstte, paragraf altta */
.intro-link-copy {
  display: contents;
}

.intro-link-copy strong {
  grid-column: 1;
  grid-row: 1;
  font-family: var(--font);
  font-size: clamp(22px, 1.95vw, 27px);
  font-weight: 600;
  letter-spacing: -0.8px;
  line-height: 1.14;
  color: var(--navy);
}

.intro-link-copy small {
  grid-column: 1 / -1;
  grid-row: 2;
  align-self: end;
  max-width: 26em;
  font-family: var(--font);
  font-size: 15.5px;
  font-weight: 500;
  letter-spacing: -0.2px;
  line-height: 1.62;
  color: #3f6280;
}

.intro-link-go {
  grid-column: 2;
  grid-row: 1;
  justify-self: end;
  font-size: 17px;
  line-height: 1;
  color: var(--navy);
  opacity: 0.42;
  transition: opacity 0.3s ease, transform 0.4s var(--ease);
}

.intro-link:hover .intro-link-go {
  opacity: 1;
  transform: translate(3px, -3px);
}

/* ——— Before / After: 7 + 5 ——— */
.ba {
  padding: 72px 0 56px;
}

.ba-grid {
  align-items: center;
}

.ba-frame {
  grid-column: 1 / span 7;
  border: 8px solid var(--navy);
  background: var(--navy);
  overflow: hidden;
}

.ba-frame img {
  width: 100%;
  height: auto;
  transition: transform 0.7s var(--ease);
}

.ba-frame:hover img {
  transform: scale(1.02);
}

.ba-copy {
  grid-column: 8 / span 5;
}

.ba-copy h2 {
  margin: 0 0 16px;
  font-family: var(--font);
  font-size: clamp(24px, 2.2vw, 30px);
  font-weight: 500;
  letter-spacing: -0.8px;
  line-height: 1.28;
  color: var(--ink);
}

.ba-copy p {
  margin: 0 0 12px;
  font-size: 15px;
  line-height: 1.7;
}

/* ——— Topics: 4 + 4 + 4 ——— */
.topics {
  padding: 24px 0 72px;
}

.topics h2 {
  grid-column: 1 / span 4;
  margin: 0;
  font-family: var(--font);
  font-size: clamp(24px, 2.2vw, 30px);
  font-weight: 500;
  letter-spacing: -0.8px;
  line-height: 1.25;
  color: var(--ink);
}

.topic-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 2px;
}

.topic-list:nth-of-type(1) {
  grid-column: 5 / span 4;
}

.topic-list:nth-of-type(2) {
  grid-column: 9 / span 4;
}

.topic-list a {
  display: block;
  font-family: var(--font);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.4px;
  line-height: 1.4;
  color: var(--navy);
  padding: 10px 0;
  border-bottom: 1px solid transparent;
  transition: padding-left 0.25s var(--ease), border-color 0.25s ease;
}

.topic-list a:hover {
  padding-left: 8px;
  border-bottom-color: rgba(1, 47, 87, 0.15);
}


@media (prefers-reduced-motion: reduce) {
  .story-slide,
  .story-slide-caption,
  .story-slide-media img {
    transition: none !important;
  }
}

/* ——— Services: sticky image + scrolling content ——— */
.services {
  background: var(--navy);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  column-gap: var(--gap);
  align-items: start;
}

.eyebrow {
  margin: 0 0 10px;
  font-family: var(--font);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.8;
}

.services-photo {
  /* 5/12 ≈ ekip gridinde ilk iki kişinin sağ kenarı */
  grid-column: 1 / span 5;
  margin-left: calc(-1 * var(--gutter));
  position: sticky;
  top: 0;
  height: 100vh;
  min-height: 620px;
  background: #0b1c2c url("../assets/services-surgery.jpg") center 28% / cover no-repeat;
}

.services-panel {
  grid-column: 6 / span 7;
  min-width: 0;
  padding: clamp(80px, 8.5vw, 128px) 0 clamp(88px, 9vw, 128px);
  color: #fff;
}

.services-intro {
  max-width: calc(87.5% - var(--gap) / 8);
  margin-bottom: clamp(44px, 6vw, 72px);
}

.services-intro .eyebrow {
  margin: 0 0 16px;
  color: rgba(212, 238, 255, 0.72);
  opacity: 1;
}

.services-intro h2 {
  margin: 0 0 22px;
  font-family: var(--font);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 500;
  letter-spacing: -1.1px;
  line-height: 1.16;
  color: #fff;
}

.services-intro h2 .text-ice {
  color: var(--ice);
}

.services-lead {
  margin: 0;
  max-width: 46em;
  font-size: 16px;
  line-height: 1.78;
  color: rgba(255, 255, 255, 0.68);
}

.services-lead .w {
  color: rgba(255, 255, 255, 0.95);
  opacity: 0.24;
  transition: opacity 0.15s linear;
}

.svc-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: var(--gap);
}

.svc {
  padding: 28px 0 34px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.svc-num {
  display: block;
  margin-bottom: 14px;
  font-family: var(--font);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: rgba(212, 238, 255, 0.48);
}

.svc h3 {
  margin: 0 0 12px;
  font-family: var(--font);
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.3px;
  line-height: 1.3;
  color: #fff;
}

.svc p {
  margin: 0;
  font-size: 15px;
  line-height: 1.72;
  color: rgba(255, 255, 255, 0.66);
}

.svc-journey {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 30px;
  margin-top: 1px;
  padding: 28px;
  background: var(--ice);
  border-top: 0;
  color: var(--navy);
  transition: background 0.3s ease;
}

.svc-journey:hover {
  background: #c4e6fb;
}

.svc-journey-label {
  font-family: var(--font);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(1, 47, 87, 0.52);
}

.svc-journey strong {
  display: block;
  max-width: 12em;
  font-family: var(--font);
  font-size: clamp(21px, 1.8vw, 26px);
  font-weight: 600;
  letter-spacing: -0.75px;
  line-height: 1.18;
  color: var(--navy);
}

.svc-journey-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  align-self: flex-start;
  font-family: var(--font);
  font-size: 12.5px;
  font-weight: 600;
  color: var(--navy);
}

.svc-journey-link i {
  font-style: normal;
  transition: transform 0.35s var(--ease);
}

.svc-journey:hover .svc-journey-link i {
  transform: translateX(5px);
}

.services-cta {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: clamp(24px, 4vw, 48px);
  padding: 15px 20px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  color: #fff;
  font-family: var(--font);
  font-size: 13px;
  font-weight: 500;
  transition: background 0.25s ease, color 0.25s ease;
}

.services-cta i {
  font-style: normal;
  transition: transform 0.3s var(--ease);
}

.services-cta:hover {
  background: #fff;
  color: var(--navy);
}

.services-cta:hover i {
  transform: translateX(4px);
}

/* ——— Why: 4+4+4 ——— */
.why {
  padding: 80px 0 32px;
}

.why > .shell > h2 {
  margin: 0 0 24px;
  font-family: var(--font);
  font-size: clamp(26px, 2.4vw, 34px);
  font-weight: 500;
  letter-spacing: -0.8px;
  color: var(--ink);
}

.why-grid {
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.why-grid article {
  grid-column: span 4;
}

.why-grid h3 {
  margin: 0 0 12px;
  font-family: var(--font);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.4px;
  color: var(--ink);
}

.why-grid p {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.7;
}

/* ——— Team: profiles ——— */
.team {
  padding: clamp(64px, 7vw, 96px) 0 clamp(56px, 6vw, 84px);
  background: #fafbfc;
}

.team-head {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  align-items: end;
  gap: clamp(24px, 4vw, 64px);
  margin-bottom: clamp(36px, 4.5vw, 52px);
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
}

.team-head h2 {
  margin: 0;
  max-width: 14em;
  font-family: var(--font);
  font-size: clamp(26px, 2.6vw, 34px);
  font-weight: 500;
  letter-spacing: -1px;
  line-height: 1.18;
  color: var(--ink);
}

.team-head > p {
  margin: 0;
  max-width: 38em;
  font-size: 15px;
  line-height: 1.75;
  color: var(--body);
}

.team-lineup {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  column-gap: clamp(12px, 1.6vw, 22px);
  row-gap: clamp(28px, 3vw, 40px);
}

.team-person {
  display: flex;
  flex-direction: column;
  color: var(--ink);
}

.team-person-photo {
  position: relative;
  display: block;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #dbe4ea;
}

.team-person-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 10%;
  display: block;
  filter: grayscale(1) brightness(1.04) contrast(0.96);
  transition: filter 0.5s ease, transform 0.8s var(--ease);
}

.team-person-go {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: var(--navy);
  font-size: 14px;
  line-height: 1;
  opacity: 0;
  transform: translate(4px, -4px) scale(0.92);
  transition: opacity 0.3s ease, transform 0.4s var(--ease), background 0.3s ease;
}

.team-person:hover .team-person-photo img {
  filter: none;
  transform: scale(1.04);
}

.team-person:hover .team-person-go {
  opacity: 1;
  transform: none;
  background: #fff;
}

.team-person-foot {
  display: flex;
  flex-direction: column;
  gap: 5px;
  min-height: 78px;
  margin-top: 14px;
  padding: 15px 2px 0;
  border-top: 1px solid #d3dce2;
  transition: border-color 0.3s ease;
}

.team-person:hover .team-person-foot {
  border-top-color: var(--navy);
}

.team-person-name {
  font-family: var(--font);
  font-size: clamp(16px, 1.4vw, 18px);
  font-weight: 600;
  letter-spacing: -0.4px;
  line-height: 1.25;
  color: var(--ink);
  transition: color 0.3s ease;
}

.team-person-role {
  font-size: 13.5px;
  font-weight: 400;
  letter-spacing: -0.1px;
  line-height: 1.35;
  color: #667178;
}

.team-person-badge {
  display: block;
  margin-top: 2px;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: -0.05px;
  line-height: 1.4;
  color: #7a858c;
}

.team-person:hover .team-person-name {
  color: var(--navy);
}

/* ——— Videolar: dikey ray + Önemli Konular ——— */
.videos {
  padding: clamp(64px, 7vw, 100px) 0;
  background: #fff;
  color: var(--ink);
  overflow: visible;
}

.videos-top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: clamp(28px, 3.5vw, 40px);
}

.videos-head {
  max-width: 34rem;
}

.videos-head h2 {
  margin: 0 0 10px;
  font-family: var(--font);
  font-size: clamp(28px, 3.2vw, 40px);
  font-weight: 500;
  letter-spacing: -1px;
  line-height: 1.12;
  color: var(--navy);
}

.videos-head > p {
  margin: 0;
  font-size: 15.5px;
  line-height: 1.65;
  color: var(--body);
}

.videos-nav {
  display: flex;
  gap: 8px;
  flex: 0 0 auto;
}

.videos-arrow {
  appearance: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(1, 47, 87, 0.18);
  background: #fff;
  color: var(--navy);
  font-size: 16px;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, opacity 0.2s ease;
}

.videos-arrow:hover:not(:disabled) {
  background: var(--navy);
  border-color: var(--navy);
  color: #fff;
}

.videos-arrow:disabled {
  opacity: 0.35;
  cursor: default;
}

.videos-board {
  --videos-media-h: clamp(320px, 34vw, 420px);
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 360px);
  gap: clamp(18px, 2.2vw, 28px);
  align-items: stretch;
  overflow: visible;
}

.videos-main {
  min-width: 0;
}

.videos-rail {
  --videos-gap: 14px;
  --videos-visible: 3;
  display: flex;
  gap: var(--videos-gap);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding-bottom: 4px;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.videos-rail::-webkit-scrollbar {
  display: none;
}

.videos-rail:focus-visible {
  outline: 2px solid var(--navy);
  outline-offset: 6px;
}

.videos-shot {
  flex: 0 0 calc((100% - (var(--videos-visible) - 1) * var(--videos-gap)) / var(--videos-visible));
  width: calc((100% - (var(--videos-visible) - 1) * var(--videos-gap)) / var(--videos-visible));
  min-width: 0;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  gap: 12px;
  color: inherit;
}

.videos-shot-media {
  position: relative;
  display: block;
  height: var(--videos-media-h);
  overflow: hidden;
  background: #0b1c2c;
}

.videos-shot-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  transition: transform 0.7s var(--ease);
}

.videos-shot:hover .videos-shot-media img {
  transform: scale(1.04);
}

.videos-shot-play {
  position: absolute;
  left: 12px;
  bottom: 12px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--ice);
  transition: transform 0.3s var(--ease);
}

.videos-shot-play::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 53%;
  transform: translate(-50%, -50%);
  border-style: solid;
  border-width: 6px 0 6px 10px;
  border-color: transparent transparent transparent var(--navy);
}

.videos-shot:hover .videos-shot-play {
  transform: scale(1.06);
}

.videos-shot-meta {
  display: grid;
  gap: 5px;
}

.videos-shot-speaker {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(1, 47, 87, 0.45);
}

.videos-shot-meta strong {
  font-family: var(--font);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.3px;
  line-height: 1.35;
  color: var(--ink);
}

.videos-topics {
  position: relative;
  z-index: 2;
  min-width: 0;
  align-self: stretch;
  display: flex;
  flex-direction: column;
  height: auto;
  min-height: 100%;
  background: var(--ice);
  overflow: hidden;
}

.videos-topics-head {
  flex-shrink: 0;
  padding: 22px 22px 6px;
}

.videos-topics-kicker {
  margin: 0 0 5px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(1, 47, 87, 0.42);
}

.videos-topics-head h3 {
  margin: 0 0 14px;
  font-family: var(--font);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.35px;
  line-height: 1.25;
  color: var(--navy);
  text-transform: none;
}

.videos-topics-list {
  flex: 1;
  min-height: 0;
  display: flex;
  flex-direction: column;
  margin: 0 22px 18px;
  border-top: 1px solid rgba(1, 47, 87, 0.14);
  overflow: hidden;
}

.videos-topics-list button {
  appearance: none;
  width: 100%;
  margin: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  text-align: left;
  font: inherit;
  position: relative;
  flex: 1 1 0;
  display: grid;
  grid-template-columns: 26px minmax(0, 1fr) auto;
  gap: 8px 12px;
  align-items: start;
  padding: 10px 2px;
  border-bottom: 1px solid rgba(1, 47, 87, 0.12);
  color: inherit;
  transition: color 0.2s ease;
}

.videos-topics-list button:last-child {
  border-bottom: 0;
}

.videos-topics-list button::before {
  content: "";
  position: absolute;
  left: -22px;
  top: 18%;
  bottom: 18%;
  width: 2px;
  background: var(--navy);
  opacity: 0;
  transition: opacity 0.2s ease;
}

.videos-topics-list button:hover,
.videos-topics-list button:focus-visible {
  outline: none;
}

.videos-topics-list button:hover::before,
.videos-topics-list button:focus-visible::before {
  opacity: 1;
}

.videos-topics-num {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: rgba(1, 47, 87, 0.35);
  padding-top: 2px;
  transition: color 0.2s ease;
}

.videos-topics-copy {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.videos-topics-text {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.15px;
  line-height: 1.3;
  color: rgba(1, 47, 87, 0.82);
  transition: color 0.2s ease;
}

.videos-topics-speaker {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: -0.05px;
  line-height: 1.3;
  color: rgba(1, 47, 87, 0.45);
  transition: color 0.2s ease;
}

.videos-topics-time {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: rgba(1, 47, 87, 0.38);
  font-variant-numeric: tabular-nums;
  padding-top: 2px;
  white-space: nowrap;
  transition: color 0.2s ease;
}

.videos-topics-list button:hover .videos-topics-num,
.videos-topics-list button:focus-visible .videos-topics-num,
.videos-topics-list button:hover .videos-topics-text,
.videos-topics-list button:focus-visible .videos-topics-text {
  color: var(--navy);
}

.videos-topics-list button:hover .videos-topics-speaker,
.videos-topics-list button:focus-visible .videos-topics-speaker,
.videos-topics-list button:hover .videos-topics-time,
.videos-topics-list button:focus-visible .videos-topics-time {
  color: rgba(1, 47, 87, 0.72);
}

/* ——— Hasta Öyküleri ——— */
.stories {
  padding: clamp(80px, 8.5vw, 120px) 0 clamp(72px, 7.5vw, 104px);
  background: #fff;
}

.eyebrow--dark {
  color: var(--navy);
  opacity: 1;
}

.stories-intro {
  margin-bottom: clamp(28px, 3.5vw, 40px);
  text-align: center;
}

.stories-intro .eyebrow {
  margin: 0 auto 12px;
}

.stories-intro h2 {
  margin: 0 auto;
  max-width: 22em;
  font-family: var(--font);
  font-size: clamp(26px, 2.6vw, 34px);
  font-weight: 500;
  letter-spacing: -0.9px;
  line-height: 1.18;
  color: var(--ink);
  text-align: center;
  text-wrap: balance;
}

.story-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: clamp(20px, 2.5vw, 28px);
}

.stories-all {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  margin-top: 18px;
  font-family: var(--font);
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  white-space: nowrap;
  transition: opacity 0.25s ease;
}

.stories-all i {
  font-style: normal;
  transition: transform 0.3s var(--ease);
}

.stories-all:hover i {
  transform: translateX(4px);
}

/* Centered carousel, peeks shell/grid içinde kalır (viewport kenarına taşmaz) */
.story-stage {
  --slide: min(880px, 80%);
  position: relative;
  width: 100%;
  max-width: var(--max);
  margin-inline: auto;
  overflow: hidden;
}

@media (max-width: 1400px) {
  .story-stage {
    width: auto;
    margin-inline: var(--gutter);
    max-width: none;
  }
}

.story-track {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding-inline: calc((100% - var(--slide)) / 2);
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.story-track.is-animating {
  scroll-snap-type: none;
  pointer-events: none;
}

.story-track::-webkit-scrollbar {
  display: none;
}

.story-track:focus-visible {
  outline: 2px solid var(--navy);
  outline-offset: 6px;
}

.story-slide {
  position: relative;
  flex: 0 0 var(--slide);
  aspect-ratio: 16 / 10;
  overflow: hidden;
  scroll-snap-align: center;
  background: #0b1c2c;
  color: #fff;
  opacity: 0.28;
  transform: scale(0.96);
  transition:
    opacity 0.75s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.75s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform, opacity;
  pointer-events: none;
  cursor: default;
}

.story-slide.is-active {
  opacity: 1;
  transform: scale(1);
  z-index: 1;
  pointer-events: auto;
  cursor: pointer;
}

.story-slide:not(.is-active) .story-slide-media img {
  filter: blur(10px) saturate(0.7);
  transform: scale(1.06);
}

.story-slide-media {
  margin: 0;
  height: 100%;
}

.story-slide-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(4, 20, 34, 0.12) 0%,
    rgba(4, 20, 34, 0.05) 34%,
    rgba(4, 20, 34, 0.72) 78%,
    rgba(4, 20, 34, 0.9) 100%
  );
}

.story-slide-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 22%;
  transition: transform 1.1s var(--ease);
}

.story-slide.is-active:hover .story-slide-media img {
  transform: scale(1.03);
}

.story-slide-caption {
  position: absolute;
  inset: auto 0 0;
  z-index: 1;
  padding: clamp(18px, 2.4vw, 28px) clamp(18px, 2.6vw, 32px);
  text-align: center;
  opacity: 0;
  transform: translateY(14px);
  transition:
    opacity 0.55s cubic-bezier(0.16, 1, 0.3, 1) 0.08s,
    transform 0.55s cubic-bezier(0.16, 1, 0.3, 1) 0.08s;
}

.story-slide.is-active .story-slide-caption {
  opacity: 1;
  transform: none;
}

.story-slide-kicker {
  margin: 0 0 8px;
  font-family: var(--font);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}

.story-slide-caption h3 {
  margin: 0 auto 14px;
  max-width: 28em;
  font-family: var(--font);
  font-size: clamp(16px, 1.45vw, 20px);
  font-weight: 500;
  letter-spacing: -0.45px;
  line-height: 1.28;
  color: #fff;
}

.story-stats {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  margin: 0 0 14px;
}

.story-stats div {
  padding: 0 clamp(12px, 1.5vw, 20px);
  border-left: 1px solid rgba(255, 255, 255, 0.22);
}

.story-stats div:first-child {
  border-left: 0;
}

.story-stats dt {
  margin-bottom: 3px;
  font-family: var(--font);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.58);
}

.story-stats dd {
  margin: 0;
  font-family: var(--font);
  font-size: clamp(13px, 1.15vw, 16px);
  font-weight: 500;
  letter-spacing: -0.3px;
  line-height: 1.15;
  color: #fff;
}

.story-slide-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font);
  font-size: 12.5px;
  font-weight: 600;
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  padding-bottom: 2px;
  transition: border-color 0.25s ease;
}

.story-slide-link i {
  font-style: normal;
  transition: transform 0.3s var(--ease);
}

.story-slide:hover .story-slide-link {
  border-bottom-color: #fff;
}

.story-slide:hover .story-slide-link i {
  transform: translateX(4px);
}

.story-stats sup,
.story-slide-kicker sup {
  font-size: 0.62em;
  line-height: 0;
  vertical-align: super;
}

.story-arrow {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 1px solid #ccd6dd;
  border-radius: 50%;
  background: transparent;
  font-size: 13px;
  color: var(--navy);
  cursor: pointer;
  transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease,
    opacity 0.25s ease;
}

.story-arrow:hover {
  background: var(--navy);
  border-color: var(--navy);
  color: #fff;
}

.story-arrow[disabled] {
  opacity: 0.32;
  cursor: default;
  background: transparent;
  border-color: #ccd6dd;
  color: var(--navy);
}

.story-dots {
  display: flex;
  align-items: center;
  gap: 9px;
}

.story-dots button {
  width: 7px;
  height: 7px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #c2ccd4;
  cursor: pointer;
  transition: background 0.25s ease, transform 0.25s ease;
}

.story-dots button.is-on {
  background: var(--navy);
  transform: scale(1.5);
}

/* ——— İçerikler: Cantor tarzı kartlar ——— */
.blog {
  padding: clamp(72px, 7vw, 104px) 0 clamp(72px, 7vw, 96px);
  background: #fff;
}

.blog-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: clamp(28px, 3.2vw, 40px);
  text-align: left;
}

.blog-head .eyebrow {
  margin-bottom: 12px;
}

.blog-head h2 {
  margin: 0;
  max-width: 24em;
  font-family: var(--font);
  font-size: clamp(26px, 2.6vw, 36px);
  font-weight: 500;
  letter-spacing: -1px;
  line-height: 1.14;
  color: var(--navy);
  text-wrap: balance;
}

.blog-head-tools {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
}

.blog-filter-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: clamp(20px, 2.2vw, 28px);
}

.rail-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.rail-arrow {
  appearance: none;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(1, 47, 87, 0.18);
  border-radius: 0;
  background: #fff;
  font-size: 16px;
  line-height: 1;
  color: var(--navy);
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, opacity 0.2s ease;
}

.rail-arrow:hover:not(:disabled) {
  background: var(--navy);
  border-color: var(--navy);
  color: #fff;
}

.rail-arrow:disabled {
  opacity: 0.35;
  cursor: default;
}

.blog-all {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  /* eyebrow satırının optik hizasına oturur */
  margin-top: 3px;
  font-family: var(--font);
  font-size: 12.5px;
  font-weight: 600;
  color: var(--navy);
  white-space: nowrap;
  transition: opacity 0.25s ease;
}

.blog-all i {
  font-style: normal;
  transition: transform 0.3s var(--ease);
}

.blog-all:hover i {
  transform: translateX(4px);
}

.blog-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  min-width: 0;
}

.chip {
  padding: 12px 22px;
  border: 1px solid rgba(1, 47, 87, 0.18);
  border-radius: 999px;
  background: transparent;
  font-family: var(--font);
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: -0.15px;
  line-height: 1.2;
  color: var(--navy);
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

.chip:hover {
  background: #eef2f6;
  border-color: rgba(1, 47, 87, 0.3);
}

.chip.is-active {
  background: var(--navy);
  border-color: var(--navy);
  color: #fff;
}

/* Yatay ray: üç kart shell'i doldurur; tutup sürükleyerek kayar */
.post-rail {
  --rail-gap: 12px;
  --card: calc((100% - 2 * var(--rail-gap)) / 3);
  display: flex;
  gap: var(--rail-gap);
  margin-right: calc(-1 * var(--gutter));
  padding-right: var(--gutter);
  overflow-x: auto;
  overflow-y: hidden;
  overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  touch-action: pan-x pan-y;
  cursor: default;
}

.post-rail.is-dragging {
  cursor: grabbing;
  scroll-snap-type: none;
  user-select: none;
}

.post-rail.is-dragging .post {
  pointer-events: none;
}

.post-rail::-webkit-scrollbar {
  display: none;
}

.post-rail:focus-visible {
  outline: 2px solid var(--navy);
  outline-offset: 6px;
}

.post.is-filtered {
  display: none;
}

.post {
  flex: 0 0 var(--card);
  display: flex;
  flex-direction: column;
  align-items: stretch;
  padding: 14px 14px 20px;
  background: #f0f4f8;
  cursor: pointer;
  border: 0;
  border-radius: 2px;
  scroll-snap-align: start;
  color: inherit;
}

.post-media {
  display: block;
  width: 100%;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  border-radius: 2px;
  background: #e1e8ee;
}

.post-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s var(--ease);
}

.post-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin: 13px 0 0;
}

.post-tag {
  display: inline-flex;
  align-items: center;
  padding: 4px 7px;
  border-radius: 2px;
  font-family: var(--font);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.2;
  color: var(--navy);
}

.post-tag--cat {
  background: #d9eafb;
  color: #174d7b;
}

.post-tag--meta {
  background: #e4edf6;
  border: 0;
  color: #315d82;
}

.post-title {
  margin: 11px 0 0;
  font-family: var(--font);
  font-size: clamp(18px, 1.45vw, 21px);
  font-weight: 600;
  letter-spacing: -0.6px;
  line-height: 1.22;
  color: #064f91;
}

@media (hover: hover) and (pointer: fine) {
  .post:hover .post-media img {
    transform: scale(1.03);
  }
}

/* ——— Sık Sorulan Sorular ——— */
.faq {
  padding: clamp(80px, 8vw, 120px) 0;
  background: #f3f6f8;
}

.faq-layout {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: var(--gap);
  align-items: start;
}

.faq-intro {
  grid-column: 1 / span 4;
  position: sticky;
  top: 110px;
}

.faq-intro .eyebrow {
  margin-bottom: 16px;
}

.faq-intro h2 {
  margin: 0 0 18px;
  max-width: 11em;
  font-family: var(--font);
  font-size: clamp(30px, 3vw, 42px);
  font-weight: 500;
  letter-spacing: -1.3px;
  line-height: 1.1;
  color: var(--navy);
  text-wrap: balance;
}

.faq-intro > p {
  max-width: 29em;
  margin: 0 0 30px;
  font-family: var(--font);
  font-size: 15px;
  line-height: 1.65;
  color: #657078;
}

.faq-contact {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 3px;
  font-family: var(--font);
  font-size: 12px;
  font-weight: 500;
  color: #7b858c;
}

.faq-contact span {
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  border-bottom: 1px solid rgba(1, 47, 87, 0.25);
}

.faq-list {
  grid-column: 6 / -1;
  border-top: 1px solid rgba(1, 47, 87, 0.18);
}

.faq-item {
  border-bottom: 1px solid rgba(1, 47, 87, 0.16);
}

.faq-item summary {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) 28px;
  align-items: center;
  gap: 18px;
  min-height: 88px;
  padding: 8px 0;
  list-style: none;
  cursor: pointer;
  font-family: var(--font);
  font-size: clamp(16px, 1.5vw, 19px);
  font-weight: 500;
  letter-spacing: -0.35px;
  line-height: 1.35;
  color: var(--ink);
  transition: color 0.25s ease;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-number {
  align-self: center;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: #9aa4aa;
}

.faq-item summary i {
  position: relative;
  width: 28px;
  height: 28px;
  border: 1px solid rgba(1, 47, 87, 0.18);
  border-radius: 50%;
  transition: background 0.3s ease, border-color 0.3s ease;
}

.faq-item summary i::before,
.faq-item summary i::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 9px;
  height: 1px;
  background: var(--navy);
  transform: translate(-50%, -50%);
  transition: transform 0.35s var(--ease), background 0.3s ease;
}

.faq-item summary i::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item summary:hover {
  color: var(--navy);
}

.faq-item summary:hover i {
  border-color: var(--navy);
}

.faq-item[open] summary {
  color: var(--navy);
}

.faq-item[open] summary i {
  background: var(--navy);
  border-color: var(--navy);
}

.faq-item[open] summary i::before,
.faq-item[open] summary i::after {
  background: #fff;
}

.faq-item[open] summary i::after {
  transform: translate(-50%, -50%) rotate(0);
}

.faq-answer {
  overflow: hidden;
  padding: 0 46px 26px 52px;
}

.faq-answer p {
  margin: 0;
  max-width: 48em;
  font-family: var(--font);
  font-size: 14.5px;
  line-height: 1.7;
  color: #657078;
}

/* ——— Sticky bottom CTA ——— */
.footer-cta-home {
  width: 100%;
}

.sticky-cta {
  --sticky-inset: 24px;
  width: 100%;
  display: grid;
  grid-template-rows: auto auto;
  position: relative;
  overflow: hidden;
  background: var(--navy);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.14);
  transform: none;
}

.sticky-cta-copy {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
  min-width: 0;
  padding: 18px 14px 16px 20px;
  background: var(--ice);
  color: var(--ink);
}

.sticky-cta-title {
  margin: 0;
  flex: 1 1 auto;
  min-width: 0;
  font-family: var(--font);
  font-size: clamp(15px, 1.35vw, 17px);
  font-weight: 600;
  letter-spacing: -0.35px;
  line-height: 1.3;
  text-wrap: balance;
}

.sticky-cta-close {
  display: inline-flex;
  flex: none;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  margin-top: -2px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--ink);
  font-family: var(--font);
  font-size: 22px;
  font-weight: 400;
  line-height: 1;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, background 0.2s ease, visibility 0.2s ease;
}

.sticky-cta-close:hover {
  background: rgba(1, 47, 87, 0.08);
}

/* Sadece yüzerken görünür; yerini footer’da da korur ki satır kırılımı değişmesin */
.sticky-cta.is-stuck.is-visible .sticky-cta-close {
  opacity: 0.45;
  visibility: visible;
  pointer-events: auto;
}

.sticky-cta.is-stuck.is-visible .sticky-cta-close:hover {
  opacity: 0.9;
}

.sticky-cta-actions {
  display: grid;
  grid-template-rows: repeat(3, 1fr);
  background: var(--navy);
  color: #fff;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.sticky-cta-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-height: 50px;
  padding: 0 20px;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.15px;
  line-height: 1.2;
  color: rgba(255, 255, 255, 0.92);
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: background 0.2s ease, color 0.2s ease;
}

.sticky-cta-link:last-child {
  border-bottom: 0;
}

.sticky-cta-link i {
  flex: none;
  font-style: normal;
  font-size: 0.95em;
  opacity: 0.75;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.2s ease;
}

.sticky-cta-link:hover {
  background: rgba(255, 255, 255, 0.07);
  color: #fff;
}

.sticky-cta-link:hover i {
  opacity: 1;
  transform: translate(2px, -2px);
}

/* Sağ altta footer grid hizasında; kolonuna gelince fixed kalkar */
.sticky-cta.is-stuck {
  position: fixed;
  right: auto;
  bottom: var(--sticky-inset);
  z-index: 70;
  margin: 0;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.14),
    0 18px 48px rgba(1, 20, 40, 0.28);
  transform: translate3d(0, calc(100% + 32px), 0);
  pointer-events: none;
}

.sticky-cta.is-stuck.is-visible {
  transform: translate3d(0, 0, 0);
  pointer-events: auto;
  transition: transform 0.75s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Site geneli: footer kolonu olmayan sayfalarda sağ alt float */
.sticky-cta.is-global {
  position: fixed;
  left: auto !important;
  right: max(16px, var(--gutter, 24px));
  bottom: var(--sticky-inset);
  z-index: 70;
  width: min(340px, calc(100vw - 32px)) !important;
  margin: 0;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.14),
    0 18px 48px rgba(1, 20, 40, 0.28);
  transform: translate3d(0, calc(100% + 40px), 0);
  pointer-events: none;
  opacity: 0;
}

.sticky-cta.is-global.is-visible {
  transform: translate3d(0, 0, 0);
  pointer-events: auto;
  opacity: 1;
  transition:
    transform 0.75s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 0.35s ease;
}

.sticky-cta.is-global .sticky-cta-close {
  opacity: 0.45;
  visibility: visible;
  pointer-events: auto;
}

.sticky-cta.is-global[hidden] {
  display: none !important;
}

@media (prefers-reduced-motion: reduce) {
  .sticky-cta.is-stuck.is-visible {
    transition: none;
  }

  .sticky-cta-link i {
    transition: none;
  }
}

@media (max-width: 720px) {
  .sticky-cta {
    --sticky-inset: 12px;
  }

  .sticky-cta-copy {
    padding: 16px 10px 14px 16px;
  }

  .sticky-cta-link {
    min-height: 48px;
    padding: 0 16px;
  }
}

/* ——— Footer ——— */
.footer {
  background: var(--navy);
  color: #fff;
  padding: clamp(44px, 4.5vw, 64px) 0 20px;
}

.footer-cols {
  align-items: start;
  padding: 0 0 28px;
  column-gap: clamp(20px, 2.4vw, 36px);
  row-gap: 36px;
}

.footer-brand {
  grid-column: span 3;
  min-width: 0;
}

.footer-logo {
  display: inline-flex;
  margin-bottom: 16px;
}

.footer-logo img {
  height: 40px;
  width: auto;
}

.footer-brand-text {
  margin: 0 0 16px;
  max-width: 22em;
  font-size: 14.5px;
  font-weight: 400;
  line-height: 1.55;
  letter-spacing: -0.15px;
  color: rgba(255, 255, 255, 0.62);
}

.footer-mail,
.footer-phone {
  display: block;
  margin: 0 0 6px;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.15px;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.9);
  transition: color 0.2s ease;
}

.footer-mail:hover,
.footer-phone:hover {
  color: var(--ice);
}

.footer-phone {
  margin-bottom: 0;
}

.footer-brand .footer-social {
  margin-top: 16px;
}

.fcol {
  grid-column: span 2;
  min-width: 0;
}

.fcol h4 {
  margin: 4px 0 14px;
  font-family: var(--font);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(212, 238, 255, 0.55);
}

.fcol a {
  display: block;
  margin: 0 0 10px;
  font-size: 14.5px;
  font-weight: 500;
  letter-spacing: -0.15px;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.78);
  transition: color 0.2s ease;
}

.fcol a:last-child {
  margin-bottom: 0;
}

.fcol a:hover {
  color: #fff;
}

.fcol a:focus-visible {
  outline: 1px solid rgba(212, 238, 255, 0.55);
  outline-offset: 3px;
}

.footer-cta-col {
  grid-column: span 3;
  justify-self: stretch;
}

.footer-cta-home {
  margin-bottom: 0;
}

.footer .sticky-cta:not(.is-stuck) {
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.14);
}

/* Footer üstü SEO metni — navy full-bleed, içerik sayfa grid’inde */
.footer-seo {
  background: var(--navy);
  padding: clamp(32px, 3.5vw, 44px) 0;
  border-bottom: 1px solid rgba(212, 238, 255, 0.1);
}

.footer-seo .shell {
  max-width: var(--max);
}

@media (max-width: 1400px) {
  .footer-seo .shell {
    width: auto;
    margin-inline: var(--gutter);
    max-width: none;
  }
}

.footer-seo-inner {
  grid-column: 1 / -1;
  min-width: 0;
}

.footer-seo-title {
  margin: 0 0 12px;
  font-family: var(--font);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.2px;
  line-height: 1.35;
  color: var(--ice);
}

.footer-seo p {
  margin: 0;
  font-size: 14.5px;
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: -0.08px;
  color: rgba(212, 238, 255, 0.82);
}

.footer-bottom {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px 24px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 14px;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.3;
  color: rgba(255, 255, 255, 0.48);
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.55);
  font-weight: 500;
  transition: color 0.2s ease;
}

.footer-legal a:hover {
  color: rgba(255, 255, 255, 0.88);
}

.footer-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: flex-end;
  gap: 8px 18px;
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.footer-social a {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: -0.1px;
  color: rgba(255, 255, 255, 0.58);
  transition: color 0.2s ease;
}

.footer-social a:hover {
  color: var(--ice);
}

.footer-credit {
  margin: 0;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: -0.1px;
  color: rgba(255, 255, 255, 0.42);
  white-space: nowrap;
}

/* ——— Responsive ——— */
@media (max-width: 980px) {
  :root {
    --gap: 20px;
  }

  .videos-board {
    grid-template-columns: minmax(0, 1fr) minmax(240px, 280px);
    gap: 18px;
  }

  .videos-rail {
    --videos-visible: 3;
  }

  .hero-copy h1,
  .hero-copy p,
  .hero-cta,
  .ba-frame,
  .ba-copy,
  .topics h2,
  .topic-list:nth-of-type(1),
  .topic-list:nth-of-type(2),
  .why-grid article,
  .contact-copy,
  .form,
  .footer-cta-copy,
  .footer-actions,
  .footer-brand,
  .fcol,
  .footer-cta-col {
    grid-column: 1 / -1;
  }

  .intro-brand,
  .intro-links {
    grid-column: 1 / -1;
  }

  .intro-links {
    padding-left: 0;
    margin-top: 24px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .services-photo,
  .services-panel {
    grid-column: 1 / -1;
  }

  .services-photo {
    margin-inline: calc(-1 * var(--gutter));
    position: relative;
    top: auto;
    height: min(62vw, 520px);
    min-height: 360px;
  }

  .services-panel {
    padding-top: clamp(44px, 7vw, 72px);
  }

  .services-intro {
    max-width: none;
  }

  .svc {
    min-height: 200px;
  }

  .team-lineup {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px 16px;
  }

  .team-person + .team-person {
    border-left: none;
  }

  .team-person-foot {
    padding-right: 0;
  }

  .story-stage {
    --slide: min(720px, 82%);
  }

  .post-rail {
    --rail-gap: 10px;
    --card: calc((100% - var(--rail-gap)) / 2.15);
  }

  .faq-intro {
    grid-column: 1 / span 5;
  }

  .faq-list {
    grid-column: 6 / -1;
  }
}

@media (max-width: 720px) {
  .header-row {
    grid-template-columns: 1fr auto;
  }

  .nav {
    display: none;
  }

  .header-tools .lang,
  .header-tools .btn {
    display: none;
  }

  .header-tools {
    grid-column: 2;
  }

  .burger {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .nav.open {
    display: flex;
    position: absolute;
    top: 100%;
    left: var(--chrome-gutter, var(--gutter));
    right: var(--chrome-gutter, var(--gutter));
    flex-direction: column;
    gap: 0;
    background: rgba(1, 47, 87, 0.98);
    padding: 8px;
    z-index: 70;
  }

  .nav.open a {
    padding: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .blog-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .blog-filter-row {
    flex-wrap: wrap;
    gap: 12px;
  }

  .blog-filter {
    gap: 8px;
  }

  .rail-arrow {
    width: 40px;
    height: 40px;
  }

  .chip {
    padding: 10px 17px;
    font-size: 12.5px;
  }

  .faq-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .faq-intro,
  .faq-list {
    grid-column: 1;
  }

  .faq-intro {
    position: static;
  }

  .faq-intro h2 {
    max-width: 14em;
  }

  .faq-item summary {
    grid-template-columns: 26px minmax(0, 1fr) 28px;
    gap: 12px;
    min-height: 76px;
  }

  .faq-answer {
    padding: 0 40px 24px 38px;
  }

  .post-rail {
    --card: 78vw;
  }

  .post-media {
    aspect-ratio: 16 / 10;
  }

  .story-stage {
    --slide: 88%;
  }

  .story-slide {
    aspect-ratio: 4 / 5;
  }

  .story-slide-caption h3 {
    max-width: none;
    font-size: 17px;
  }

  .story-stats {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 0;
  }

  .story-stats div {
    padding: 0 8px;
  }

  .story-stats div:nth-child(odd) {
    border-left: 0;
  }

  .story-stats dd {
    font-size: 14px;
  }

  .hero {
    height: clamp(600px, 88svh, 780px);
  }

  .hero-team-mosaic {
    --team-mosaic-w: min(64vw, 480px);
    --team-head: 64px;
    width: var(--team-mosaic-w);
    opacity: 0.55;
  }

  .hero-team-accents {
    --team-mosaic-w: min(64vw, 480px);
    --team-head: 64px;
  }

  .hero:has(.slide--team.on) .hero-shade {
    background:
      linear-gradient(90deg, rgba(1, 20, 40, 0.82) 0%, rgba(1, 20, 40, 0.55) 48%, rgba(1, 20, 40, 0.2) 78%, transparent 100%),
      linear-gradient(to top, rgba(1, 20, 40, 0.45) 0%, transparent 40%);
  }

  .hero-panels {
    padding: 88px 0 72px;
  }

  .hero-nav {
    right: max(16px, var(--gutter));
    bottom: 22px;
    gap: 16px;
  }

  .hero-thumb {
    padding-bottom: 10px;
  }

  .hero-thumb-label {
    font-size: 12.5px;
  }

  .hero-kicker,
  .hero-copy h1,
  .hero-copy p,
  .hero-copy .hero-cta {
    grid-column: 1 / -1;
  }

  .intro-brand {
    padding: 0;
  }

  .intro-links {
    grid-template-columns: 1fr;
  }

  .intro-link {
    min-height: 220px;
  }

  .svc-grid,
  .form {
    grid-template-columns: 1fr;
  }

  .team-lineup {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px 12px;
  }

  .team-head {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .videos-top {
    flex-direction: column;
    align-items: flex-start;
  }

  .videos-board {
    grid-template-columns: 1fr;
  }

  .videos-rail {
    --videos-visible: 2;
  }

  .videos-topics {
    height: auto;
  }

  .videos-topics-list button {
    flex: none;
    min-height: 48px;
    padding: 10px 2px;
  }

  .services-panel {
    padding: 44px 0 64px;
  }

  .svc {
    min-height: 0;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .footer-meta {
    justify-content: flex-start;
  }
}

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

.ct-form,
.om-form,
.ll-form,
.quiz-lead-fields {
  position: relative;
}

.lead-form-status {
  grid-column: 1 / -1;
  margin: 8px 0 0;
  font-size: 14px;
  line-height: 1.5;
}

.lead-form-status.is-ok {
  color: #1f6b3a;
}

.lead-form-status.is-err {
  color: #b42318;
}

.ll-form .lead-form-status.is-ok {
  color: #7ddea0;
}

.ll-form .lead-form-status.is-err {
  color: #ffb4b4;
}

.lead-form-status a {
  margin-left: 4px;
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.ll-form .lead-form-status a {
  color: #fff;
}
