:root {
  --ink: #081924;
  --ink-soft: #102b3b;
  --paper: #eef3f5;
  --paper-soft: #dce6eb;
  --primary: #174a6e;
  --signal: #527f99;
  /* --signal acik zeminde 9,9 px'te 3,87 kontrast veriyor (AA 4,5).
     Ayni mavi ailesinden koyu varyant: acik zeminde 5,14. */
  --signal-strong: #3d6b87;
  --signal-rgb: 82, 127, 153;
  --cool: #a9c4d1;
  --graphite: #3f454b;
  --line-dark: rgba(238, 243, 245, 0.16);
  --line-light: rgba(23, 74, 110, 0.18);
  --font-body: "Barlow", "Arial", sans-serif;
  --font-display: "Exo 2", "Barlow", "Arial", sans-serif;
  --pad: clamp(1rem, 2.2vw, 2.25rem);
  --radius: 1.15rem;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: auto;
  background: var(--ink);
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-display);
  font-style: italic;
}

body.menu-open {
  overflow: hidden;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  color: inherit;
  font: inherit;
}

::selection {
  color: var(--paper);
  background: var(--signal);
}

:focus-visible {
  outline: 2px solid var(--signal);
  outline-offset: 5px;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.75rem 1rem;
  color: var(--paper);
  background: var(--ink);
  transform: translateY(-180%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.mono-label {
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.13em;
  line-height: 1.2;
  text-transform: uppercase;
}

.page-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 1rem;
  width: 100%;
  padding-right: var(--pad);
  padding-left: var(--pad);
}

.dark-section {
  position: relative;
  color: var(--paper);
  background: var(--ink);
}

.light-section {
  position: relative;
  color: var(--ink);
  background: var(--paper);
}

.noise {
  position: absolute;
  z-index: 3;
  inset: 0;
  opacity: 0.085;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 160 160' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.88' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.55'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
}

.section-index {
  position: absolute;
  z-index: 5;
  top: 2rem;
  left: var(--pad);
}

.live-dot {
  display: inline-block;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--signal);
  box-shadow: 0 0 0 0 rgba(var(--signal-rgb), 0.6);
  animation: livePulse 2s infinite;
}

/* Intro */

.intro {
  position: fixed;
  z-index: 900;
  inset: 0;
  overflow: hidden;
  color: var(--ink);
  background: #fefefe;
  pointer-events: none;
  isolation: isolate;
  animation: introExit 0.75s var(--ease-in-out) 1.65s forwards;
}

.intro::before {
  position: absolute;
  z-index: 0;
  inset: 0;
  content: "";
  opacity: 0.72;
  background-image: linear-gradient(rgba(23, 74, 110, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23, 74, 110, 0.055) 1px, transparent 1px),
    radial-gradient(circle at 50% 50%, rgba(82, 127, 153, 0.12), transparent 38%);
  background-size: 4.5rem 4.5rem, 4.5rem 4.5rem, auto;
  mask-image: linear-gradient(180deg, transparent, #000 18%, #000 82%, transparent);
}

.intro::after {
  position: absolute;
  z-index: 4;
  right: 0;
  bottom: 0;
  left: 0;
  height: 3px;
  content: "";
  background: linear-gradient(90deg, var(--primary), var(--signal), var(--primary));
  transform: scaleX(0);
  transform-origin: left;
  animation: introProgress 1.95s var(--ease-out) 0.08s forwards;
}

.intro__shell {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: min(100%, 92rem);
  min-height: 100%;
  margin: 0 auto;
  padding: clamp(1.25rem, 3.6vw, 3.25rem) var(--pad) clamp(1.15rem, 3.2vw, 2.7rem);
}

.intro__bottomline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: rgba(8, 25, 36, 0.62);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.62rem;
  letter-spacing: 0.13em;
  line-height: 1.3;
  text-transform: uppercase;
}.intro__brand {
  position: relative;
  display: grid;
  place-items: center;
  gap: clamp(1.2rem, 2.7vw, 2.35rem);
  width: 100%;
  margin: auto;
  isolation: isolate;
  transform: translateY(-2.5vh);
}

.intro__brand::before {
  position: absolute;
  z-index: 0;
  top: 50%;
  left: 50%;
  width: min(118vw, 88rem);
  height: clamp(17rem, 43vw, 30rem);
  content: "";
  background: radial-gradient(ellipse at center, #fefefe 0%, #fefefe 78%, rgba(254, 254, 254, 0.92) 84%, rgba(254, 254, 254, 0) 100%);
  pointer-events: none;
  transform: translate(-50%, -50%);
}

.intro__logo-wrap {
  position: relative;
  z-index: 2;
  width: min(82vw, 54rem);
  aspect-ratio: 4.3;
  overflow: hidden;
  opacity: 0;
  transform: translateY(1.5rem) scale(0.96);
  animation: introLogoIn 1.05s var(--ease-out) 0.24s forwards;
}

.intro__logo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 45%;
  filter: none;
}

.intro__signature {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(0.75rem, 2vw, 1.5rem);
  color: var(--primary);
  opacity: 0;
  transform: translateY(0.7rem);
  animation: introFadeUp 0.8s var(--ease-out) 0.64s forwards;
}

.intro__signature p {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(0.64rem, 0.8vw, 0.78rem);
  font-style: italic;
  font-weight: 600;
  letter-spacing: 0.12em;
  line-height: 1.4;
  text-align: center;
}

.intro__signature-line {
  display: block;
  width: clamp(2.25rem, 7vw, 6rem);
  height: 1px;
  background: var(--signal);
  transform: scaleX(0);
  transform-origin: right;
  animation: introLineIn 0.7s var(--ease-out) 0.82s forwards;
}

.intro__signature-line--reverse {
  transform-origin: left;
}

.intro__bottomline {
  opacity: 0;
  transform: translateY(0.8rem);
  animation: introFadeUp 0.75s var(--ease-out) 0.88s forwards;
}

.intro__status {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}

.intro__status i {
  display: block;
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 50%;
  background: var(--signal);
  box-shadow: 0 0 0 0.3rem rgba(var(--signal-rgb), 0.12);
  animation: livePulse 1.8s infinite;
}

.intro__orbit {
  --orbit-rotation: -13deg;
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  width: min(88vw, 76rem);
  aspect-ratio: 2.45;
  border: 1px solid rgba(23, 74, 110, 0.12);
  border-radius: 50%;
  opacity: 0;
  transform: translate(-50%, -50%) rotate(var(--orbit-rotation)) scale(0.93);
  animation: introOrbitIn 1.6s var(--ease-out) 0.12s forwards;
}

.intro__orbit::after {
  position: absolute;
  top: 13%;
  left: 16%;
  width: 0.45rem;
  height: 0.45rem;
  content: "";
  border-radius: 50%;
  background: var(--signal);
  box-shadow: 0 0 0 0.38rem rgba(var(--signal-rgb), 0.1), 0 0 1.4rem rgba(var(--signal-rgb), 0.45);
}

.intro__orbit--two {
  --orbit-rotation: 18deg;
  width: min(68vw, 58rem);
  aspect-ratio: 2.15;
  border-color: rgba(82, 127, 153, 0.2);
  transform: translate(-50%, -50%) rotate(var(--orbit-rotation)) scale(0.9);
  animation-delay: 0.28s;
}

.intro__orbit--two::after {
  top: auto;
  right: 13%;
  bottom: 11%;
  left: auto;
  background: var(--primary);
}

@media (max-width: 720px) {
  .intro__shell {
    padding-top: 1.25rem;
    padding-bottom: 1.15rem;
  }

  .intro__bottomline {
    font-size: 0.53rem;
    letter-spacing: 0.1em;
  }  .intro__brand {
    gap: 1.15rem;
    transform: translateY(-2vh);
  }

  .intro__logo-wrap {
    width: 92vw;
  }

  .intro__signature {
    gap: 0.6rem;
    width: 100%;
  }

  .intro__signature p {
    max-width: 12rem;
    font-size: 0.55rem;
    letter-spacing: 0.12em;
  }

  .intro__signature-line {
    width: 1.8rem;
  }

  .intro__status {
    gap: 0.4rem;
  }

  .intro__orbit {
    width: 135vw;
  }

  .intro__orbit--two {
    width: 112vw;
  }
}

/* Header */

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  min-height: 5.25rem;
  padding: 0 var(--pad);
  color: var(--paper);
  border-bottom: 1px solid rgba(236, 237, 231, 0.1);
  background: linear-gradient(to bottom, rgba(8, 25, 36, 0.82), transparent);
  transition: transform 450ms var(--ease-out), color 350ms ease,
    background 350ms ease, border-color 350ms ease;
}

.site-header.is-compact {
  min-height: 4.25rem;
  border-bottom-color: rgba(236, 237, 231, 0.16);
  background: rgba(8, 25, 36, 0.88);
  backdrop-filter: blur(14px);
}

.wordmark {
  display: inline-flex;
  align-items: flex-start;
  justify-self: start;
  gap: 0.35rem;
  width: fit-content;
  font-family: var(--font-display);
  font-size: clamp(1rem, 1.35vw, 1.25rem);
  font-style: italic;
  font-weight: 700;
  letter-spacing: -0.06em;
  line-height: 1;
}

.wordmark i {
  display: block;
  width: 0.42rem;
  height: 0.42rem;
  margin-top: -0.08rem;
  border-radius: 50%;
  background: var(--signal);
}/* Panel girisi: yazisiz, tek bir asagi chevron. Daire icinde iki cizgi
   (hamburger) kalibi bilerek birakildi — ajans sitelerinin ortak sozlugunde
   kalan son ogeydi. Ac/kapa hali 180 derece donusle okunuyor: asagi bakan
   ok "asagida daha var", yukari bakan ok "topla" demek.
   Yazi olmadigi icin erisilebilir ad butondaki aria-label'dan geliyor. */
.menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  justify-self: end;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-toggle svg {
  display: block;
  width: 1.35rem;
  height: auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 320ms var(--ease-out);
}

.menu-toggle[aria-expanded="true"] svg {
  transform: rotate(180deg);
}


/* Hero */

.hero {
  position: relative;
  display: grid;
  min-height: 100svh;
  overflow: hidden;
  isolation: isolate;
}

.hero__media {
  position: absolute;
  z-index: 0;
  inset: 0;
  overflow: hidden;
  background: var(--ink);
  pointer-events: none;
}

.hero__media::before {
  position: absolute;
  z-index: 1;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(8, 25, 36, 0.96) 0%, rgba(8, 25, 36, 0.82) 28%, rgba(8, 25, 36, 0.42) 62%, rgba(8, 25, 36, 0.54) 100%),
    linear-gradient(0deg, rgba(8, 25, 36, 0.9) 0%, rgba(8, 25, 36, 0.1) 45%, rgba(8, 25, 36, 0.36) 100%);
  pointer-events: none;
}

.hero__media-frame {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  transform: scale(1.045);
  animation: heroMediaCrossfade 18s var(--ease-in-out) infinite;
  will-change: opacity, transform;
}

.hero__media-frame--one {
  animation-delay: 0s;
}

.hero__media-frame--two {
  animation-delay: 6s;
}

.hero__media-frame--three {
  animation-delay: 12s;
}

.hero__media-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.72) contrast(1.08) brightness(0.76);
}

.hero__media-frame--one img {
  object-position: center;
}

.hero__media-frame--two img {
  object-position: center;
}

.hero__media-frame--three img {
  object-position: 58% center;
}

#route-field {
  position: absolute;
  z-index: 1;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero__grid {
  position: absolute;
  z-index: 2;
  inset: 0;
  opacity: 0.34;
  background-image: linear-gradient(to right, rgba(236, 237, 231, 0.08) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(236, 237, 231, 0.065) 1px, transparent 1px);
  background-size: calc(100vw / 12) 100%, 100% 12.5vh;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.9), transparent 92%);
}

.hero__content {
  position: relative;
  z-index: 5;
  grid-template-rows: 1fr;
  align-items: center;
  padding-top: 8rem;
  padding-bottom: 3rem;
}

.hero__message {
  grid-column: 1 / span 9;
  display: grid;
  align-content: center;
  width: min(100%, 64rem);
}.hero__title {
  grid-column: 1 / -1;
  align-self: center;
  margin: 0;
  font-size: clamp(4rem, 10.8vw, 11rem);
  font-weight: 600;
  letter-spacing: -0.088em;
  line-height: 0.78;
  text-transform: uppercase;
}

.hero__title-line {
  display: block;
  width: max-content;
  white-space: nowrap;
  will-change: transform;
}

.hero__title-line--offset {
  margin-top: 0.2em;
  margin-left: 7.2vw;
}

.hero__title em {
  color: transparent;
  font-style: normal;
  -webkit-text-stroke: 1.5px rgba(236, 237, 231, 0.72);
}

.hero__summary {
  max-width: 23rem;
  margin: 2rem 0 0 7.2vw;
  color: rgba(236, 237, 231, 0.72);
  font-size: 0.9rem;
  line-height: 1.55;
}

.hero__steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  max-width: 37rem;
  margin: clamp(2.5rem, 5vh, 4rem) 0 0 7.2vw;
}

.hero__step {
  display: grid;
  gap: 0.38rem;
  padding-top: 0.7rem;
  border-top: 1px solid rgba(236, 237, 231, 0.34);
}

.hero__step b {
  color: var(--signal);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.55rem;
  font-weight: 400;
  letter-spacing: 0.1em;
}

.hero__step strong {
  color: rgba(236, 237, 231, 0.88);
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-style: italic;
  font-weight: 600;
  letter-spacing: 0.04em;
}/* Statement */

.statement {
  min-height: 108vh;
  padding: 9rem 0 7rem;
  overflow: hidden;
}

.statement__body {
  align-items: start;
}.statement__title {
  grid-column: 4 / -2;
  margin: 3rem 0 10rem;
  font-size: clamp(3.3rem, 7.8vw, 8.2rem);
  font-weight: 500;
  letter-spacing: -0.075em;
  line-height: 0.94;
}

.statement__title span {
  color: var(--signal);
}/* Route system */

.route-system {
  min-height: 120vh;
  padding: 8rem var(--pad) 7rem;
  overflow: hidden;
}

.route-system::before {
  position: absolute;
  inset: 0;
  content: "";
  opacity: 0.45;
  background-image: radial-gradient(circle at 72% 35%, rgba(169, 196, 209, 0.13), transparent 28%),
    radial-gradient(circle at 38% 60%, rgba(var(--signal-rgb), 0.08), transparent 30%);
}

.route-system__header {
  position: relative;
  z-index: 4;
  align-items: end;
  padding: 0;
}

.route-system__header h2 {
  grid-column: 1 / span 8;
  margin: 5rem 0 1rem;
  font-size: clamp(3.5rem, 8vw, 8.5rem);
  font-weight: 600;
  letter-spacing: -0.085em;
  line-height: 0.82;
}

.route-system__header h2 span {
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(236, 237, 231, 0.55);
}

.route-system__header p {
  grid-column: 10 / -1;
  margin: 0 0 1rem;
  color: rgba(236, 237, 231, 0.6);
  font-size: 0.84rem;
  line-height: 1.55;
}

.route-stage {
  position: relative;
  z-index: 4;
  width: 100%;
  min-height: 43rem;
  margin-top: 4rem;
  overflow: hidden;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: rgba(10, 13, 16, 0.72);
}

.route-stage::before,
.route-stage::after {
  position: absolute;
  z-index: 2;
  content: "";
  pointer-events: none;
}

.route-stage::before {
  inset: 0;
  background: linear-gradient(120deg, transparent 25%, rgba(236, 237, 231, 0.035), transparent 72%);
}

.route-stage::after {
  top: 1.25rem;
  right: 1.25rem;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--signal);
  box-shadow: 0 0 1.5rem rgba(var(--signal-rgb), 0.7);
}

.route-stage__map {
  position: absolute;
  z-index: 1;
  inset: 0;
  width: 100%;
  height: 100%;
}

.route-stage__grid path {
  fill: none;
  stroke: rgba(236, 237, 231, 0.055);
  stroke-width: 1;
}

.route-stage__paths path {
  fill: none;
  stroke: rgba(236, 237, 231, 0.18);
  stroke-width: 1.1;
  vector-effect: non-scaling-stroke;
}

.route-stage__paths .route-stage__path--active {
  stroke: url(#routeGlow);
  stroke-width: 2.2;
  stroke-dasharray: 10 9;
  filter: url(#softGlow);
  animation: dashFlow 12s linear infinite;
}

.route-node {
  position: absolute;
  z-index: 5;
  top: var(--y);
  left: var(--x);
  display: grid;
  grid-template-columns: auto auto;
  grid-template-rows: auto auto;
  align-items: center;
  gap: 0.25rem 0.55rem;
  padding: 0;
  color: rgba(236, 237, 231, 0.55);
  border: 0;
  background: transparent;
  cursor: pointer;
  transform: translate(-50%, -50%);
  transition: color 250ms ease;
}

.route-node span,
.route-node b {
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.55rem;
  font-weight: 500;
  letter-spacing: 0.1em;
}

.route-node span {
  grid-column: 2;
}

.route-node b {
  grid-column: 2;
  grid-row: 2;
}

.route-node i {
  grid-row: 1 / span 2;
  width: 1rem;
  height: 1rem;
  border: 1px solid currentColor;
  border-radius: 50%;
  background: var(--ink);
  box-shadow: 0 0 0 0 rgba(var(--signal-rgb), 0.35);
  transition: width 350ms var(--ease-out), height 350ms var(--ease-out),
    background 250ms ease, border-color 250ms ease, box-shadow 250ms ease;
}

.route-node:hover,
.route-node.is-active {
  color: var(--paper);
}

.route-node:hover i,
.route-node.is-active i {
  width: 1.55rem;
  height: 1.55rem;
  border-color: var(--signal);
  background: var(--signal);
  box-shadow: 0 0 0 0.6rem rgba(var(--signal-rgb), 0.1), 0 0 2rem rgba(var(--signal-rgb), 0.4);
}

.route-readout {
  position: absolute;
  z-index: 5;
  right: 1.5rem;
  bottom: 1.5rem;
  width: min(30rem, calc(100% - 3rem));
  padding: 1.4rem;
  border: 1px solid var(--line-dark);
  border-radius: 0.8rem;
  background: rgba(8, 25, 36, 0.84);
  backdrop-filter: blur(14px);
}

.route-readout__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: rgba(236, 237, 231, 0.5);
}

.route-readout h3 {
  margin: 2.3rem 0 0.8rem;
  font-size: clamp(1.45rem, 2.3vw, 2.35rem);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 1.05;
}

.route-readout p {
  max-width: 26rem;
  margin: 0;
  color: rgba(236, 237, 231, 0.58);
  font-size: 0.78rem;
  line-height: 1.55;
}

.route-readout__meter {
  height: 1px;
  margin-top: 1.5rem;
  overflow: hidden;
  background: rgba(236, 237, 231, 0.16);
}

.route-readout__meter i {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, var(--signal), var(--cool));
  transform: scaleX(0.33);
  transform-origin: left;
  transition: transform 600ms var(--ease-out);
}

/* Services */

.services {
  min-height: 100vh;
  padding: 8rem 0 7rem;
  overflow: hidden;
}

.services__intro {
  align-items: end;
  padding-top: 5rem;
  padding-bottom: 4rem;
}

.services__intro h2 {
  grid-column: 2 / span 8;
  margin: 0;
  font-size: clamp(3.5rem, 8vw, 8.4rem);
  font-weight: 600;
  letter-spacing: -0.085em;
  line-height: 0.83;
}

.services__intro h2 span {
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(23, 74, 110, 0.58);
}

.services__intro p {
  grid-column: 10 / -1;
  margin: 0 0 0.7rem;
  color: rgba(8, 25, 36, 0.7);
  font-size: 0.84rem;
  line-height: 1.6;
}

.service-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}

.service-tile {
  display: grid;
  grid-template-rows: auto auto auto 1fr;
  min-width: 0;
  padding: 1rem;
  border-right: 1px solid var(--line-light);
  transition: color 400ms ease, background 400ms ease;
}

.service-tile:last-child {
  border-right: 0;
}

.service-tile:hover {
  color: var(--paper);
  background: var(--primary);
}

.service-tile figure {
  position: relative;
  aspect-ratio: 1.28;
  margin: 0 0 1rem;
  overflow: hidden;
  background: var(--ink-soft);
}

.service-tile figure::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(145deg, transparent 45%, rgba(8, 25, 36, 0.42));
  pointer-events: none;
}

.service-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.78) contrast(1.04);
  transition: transform 850ms var(--ease-out), filter 400ms ease;
}

.service-tile:hover img {
  transform: scale(1.045);
  filter: saturate(0.95) contrast(1.02);
}

/* 0.58 alfa 9,9 px'te 4,26 kontrast veriyordu (AA esigi 4,5). */
.service-tile__meta {
  display: flex;
  justify-content: space-between;
  color: rgba(8, 25, 36, 0.66);
  transition: color 400ms ease;
}

.service-tile:hover .service-tile__meta {
  color: rgba(238, 243, 245, 0.68);
}

.service-tile h3 {
  margin: 2.2rem 0 1.1rem;
  font-size: clamp(2.5rem, 4.3vw, 4.8rem);
  font-weight: 500;
  letter-spacing: -0.075em;
  line-height: 0.88;
}

.service-tile > p {
  max-width: 26rem;
  margin: 0 0 1rem;
  align-self: end;
  color: rgba(8, 25, 36, 0.65);
  font-size: 0.8rem;
  line-height: 1.6;
  transition: color 400ms ease;
}

.service-tile:hover > p {
  color: rgba(238, 243, 245, 0.72);
}

.text-route-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 4rem var(--pad) 0;
  padding: 1.3rem 0;
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
  font-size: clamp(1.3rem, 2.3vw, 2.4rem);
  font-weight: 500;
  letter-spacing: -0.045em;
}

.text-route-link i {
  color: var(--primary);
  font-style: normal;
  transition: transform 350ms var(--ease-out);
}

.text-route-link:hover i {
  transform: translate(0.25rem, -0.25rem);
}

/* Principles */

.principles {
  min-height: 120vh;
  padding: 8rem 0 0;
}

.principles__intro {
  align-items: end;
  padding-bottom: 6rem;
}

.principles__intro h2 {
  grid-column: 2 / span 8;
  margin: 5rem 0 0;
  font-size: clamp(3.5rem, 8.5vw, 9rem);
  font-weight: 600;
  letter-spacing: -0.085em;
  line-height: 0.83;
}

.principles__intro h2 span {
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(23, 74, 110, 0.55);
}

.principles__intro p {
  grid-column: 10 / -1;
  margin: 0 0 0.7rem;
  font-size: 0.85rem;
  line-height: 1.55;
}

.principle-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line-light);
}

.principle {
  position: relative;
  min-height: 39rem;
  padding: 2rem var(--pad);
  overflow: hidden;
  border-right: 1px solid var(--line-light);
  transition: color 450ms ease, background 450ms ease;
}

.principle:last-child {
  border-right: 0;
}

.principle:hover {
  color: var(--paper);
  background: var(--ink);
}.principle h3 {
  margin: 4.5rem 0 1.2rem;
  font-size: clamp(2.4rem, 4.2vw, 4.7rem);
  font-weight: 500;
  letter-spacing: -0.07em;
  line-height: 0.9;
}

.principle > p {
  max-width: 24rem;
  margin: 0;
  color: rgba(8, 25, 36, 0.66);
  font-size: 0.82rem;
  line-height: 1.6;
  transition: color 450ms ease;
}

.principle:hover > p {
  color: rgba(236, 237, 231, 0.6);
}

.principle__glyph {
  position: absolute;
  right: 2rem;
  bottom: 2rem;
  left: 2rem;
  height: 11rem;
}

.principle__glyph--plan {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: end;
  gap: 0.55rem;
}

.principle__glyph--plan i {
  display: block;
  height: var(--h, 30%);
  border: 1px solid currentColor;
  border-radius: 999px 999px 0 0;
  transition: height 500ms var(--ease-out), background 300ms ease;
}

.principle__glyph--plan i:nth-child(1) { --h: 28%; }
.principle__glyph--plan i:nth-child(2) { --h: 53%; }
.principle__glyph--plan i:nth-child(3) { --h: 78%; }
.principle__glyph--plan i:nth-child(4) { --h: 100%; }

.principle:hover .principle__glyph--plan i {
  height: calc(var(--h) * 0.7 + 2rem);
  background: var(--signal);
}

.principle__glyph--flow i {
  position: absolute;
  inset: auto 0 0;
  height: 5rem;
  border-top: 1px solid currentColor;
  border-radius: 50%;
  transform: translateY(var(--offset, 0)) rotate(var(--rotation, 0));
  transition: transform 650ms var(--ease-out), border-color 300ms ease;
}

.principle__glyph--flow i:nth-child(2) { --offset: -2rem; --rotation: 5deg; }
.principle__glyph--flow i:nth-child(3) { --offset: -4rem; --rotation: -5deg; }

.principle:hover .principle__glyph--flow i:nth-child(1) { transform: translateY(-4rem) rotate(9deg); border-color: var(--signal); }
.principle:hover .principle__glyph--flow i:nth-child(2) { transform: translateY(-1rem) rotate(-7deg); }
.principle:hover .principle__glyph--flow i:nth-child(3) { transform: translateY(-6rem) rotate(4deg); }

.principle__glyph--visible {
  display: grid;
  place-items: center;
}

.principle__glyph--visible i {
  position: absolute;
  width: var(--s);
  height: var(--s);
  border: 1px solid currentColor;
  border-radius: 50%;
  transition: transform 650ms var(--ease-out), border-color 300ms ease;
}

.principle__glyph--visible i:nth-child(1) { --s: 3rem; background: var(--signal); border-color: var(--signal); }
.principle__glyph--visible i:nth-child(2) { --s: 7rem; }
.principle__glyph--visible i:nth-child(3) { --s: 11rem; }

.principle:hover .principle__glyph--visible i:nth-child(2) { transform: scale(0.82); border-color: var(--signal); }
.principle:hover .principle__glyph--visible i:nth-child(3) { transform: scale(1.08); }

/* Manifesto */

.manifesto {
  display: grid;
  min-height: 100svh;
  place-items: center;
  overflow: hidden;
}

.manifesto::after {
  position: absolute;
  inset: 0;
  content: "";
  background: radial-gradient(circle at center, transparent, rgba(8, 25, 36, 0.8) 64%);
  pointer-events: none;
}.manifesto__content {
  position: relative;
  z-index: 3;
  width: min(90rem, calc(100% - (2 * var(--pad))));
  text-align: center;
}

.manifesto__content .mono-label {
  margin-bottom: 2.5rem;
  color: rgba(236, 237, 231, 0.54);
}

.manifesto__content h2 {
  margin: 0;
  font-size: clamp(3.2rem, 9.2vw, 9.8rem);
  font-weight: 600;
  letter-spacing: -0.09em;
  line-height: 0.83;
}

.manifesto__content h2 span {
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(236, 237, 231, 0.58);
}

/* Contact */

.contact {
  min-height: 100svh;
  padding: 2rem var(--pad) 1.5rem;
  overflow: hidden;
}

.contact::before {
  position: absolute;
  top: -20vw;
  right: -15vw;
  width: 52vw;
  height: 52vw;
  border: 1px solid rgba(var(--signal-rgb), 0.3);
  border-radius: 50%;
  content: "";
  box-shadow: 0 0 0 7vw rgba(var(--signal-rgb), 0.03), 0 0 0 14vw rgba(var(--signal-rgb), 0.02);
}

.contact__top {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.contact__top .section-index {
  position: static;
}

.contact__body {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: calc(100svh - 11rem);
  flex-direction: column;
  justify-content: center;
}

.contact__body > p {
  margin: 0 0 1.3rem;
  font-size: clamp(0.9rem, 1.3vw, 1.2rem);
}

.contact__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0.18em 0 0.3em;
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
  font-size: clamp(3.4rem, 10vw, 11rem);
  font-weight: 600;
  letter-spacing: -0.09em;
  line-height: 0.95;
  transition: color 350ms ease, padding 450ms var(--ease-out);
}

.contact__link:hover {
  padding-right: 0.04em;
  padding-left: 0.04em;
  color: var(--signal);
}

.contact__link svg {
  width: clamp(3.6rem, 8vw, 8rem);
  height: auto;
  flex: 0 0 auto;
  margin-left: 1rem;
  transition: transform 450ms var(--ease-out);
}

.contact__link:hover svg {
  transform: rotate(45deg);
}

.contact__link circle,
.contact__link path {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.2;
}

.contact footer {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: end;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line-light);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.58rem;
  letter-spacing: 0.08em;
}

.contact footer p {
  margin: 0;
}

.contact footer > a:last-child {
  justify-self: end;
}/* Ic sayfalar: ana sayfadaki sistemin cogaltilmis hali */

.inner-hero {
  position: relative;
  display: grid;
  min-height: 100svh;
  padding: 8rem var(--pad) 3rem;
  overflow: hidden;
  align-items: end;
  isolation: isolate;
}

.inner-hero::before {
  position: absolute;
  z-index: 1;
  inset: 0;
  content: "";
  opacity: 0.42;
  background-image: linear-gradient(to right, rgba(238, 243, 245, 0.075) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(238, 243, 245, 0.055) 1px, transparent 1px);
  background-size: calc(100vw / 12) 100%, 100% 12.5vh;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.92), transparent 96%);
}

.inner-hero::after {
  position: absolute;
  z-index: 2;
  top: 18%;
  right: -12vw;
  width: min(72vw, 72rem);
  aspect-ratio: 1.7;
  border: 1px solid rgba(169, 196, 209, 0.22);
  border-radius: 50%;
  content: "";
  box-shadow: 0 0 0 7vw rgba(82, 127, 153, 0.035), 0 0 0 14vw rgba(82, 127, 153, 0.02);
  transform: rotate(-8deg);
}

.inner-hero__media {
  position: absolute;
  z-index: 0;
  inset: 0;
  opacity: 0.54;
}

.inner-hero__media::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(8, 25, 36, 0.98) 0%, rgba(8, 25, 36, 0.72) 48%, rgba(8, 25, 36, 0.28) 100%),
    linear-gradient(0deg, rgba(8, 25, 36, 0.92), transparent 62%);
}

.inner-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.7) contrast(1.08);
}

.inner-hero__grid {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  align-items: end;
  gap: 1rem;
  width: 100%;
}

.inner-hero__kicker {
  grid-column: 1 / span 5;
  margin-bottom: 3rem;
  color: rgba(238, 243, 245, 0.62);
}

.inner-hero h1 {
  grid-column: 1 / span 10;
  margin: 0;
  font-size: clamp(4.3rem, 10.2vw, 11rem);
  font-weight: 600;
  letter-spacing: -0.09em;
  line-height: 0.79;
  text-transform: uppercase;
}

.inner-hero h1 em {
  display: block;
  color: transparent;
  font-style: normal;
  -webkit-text-stroke: 1.5px rgba(238, 243, 245, 0.68);
}

.inner-hero__summary {
  grid-column: 9 / -1;
  margin: 0 0 0.6rem;
  color: rgba(238, 243, 245, 0.7);
  font-size: clamp(0.9rem, 1.15vw, 1.08rem);
  line-height: 1.65;
}

.editorial-section {
  position: relative;
  padding: 9rem var(--pad);
  overflow: hidden;
}

.editorial-section--tight {
  padding-top: 6rem;
  padding-bottom: 6rem;
}

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

.editorial-label {
  grid-column: 1 / span 2;
  padding-top: 0.5rem;
}

.editorial-heading {
  grid-column: 3 / span 6;
  margin: 0;
  font-size: clamp(3rem, 6.7vw, 7.2rem);
  font-weight: 500;
  letter-spacing: -0.078em;
  line-height: 0.9;
}

.editorial-heading span {
  color: var(--primary);
}

.dark-section .editorial-heading span {
  color: var(--cool);
}

.editorial-copy {
  grid-column: 10 / -1;
  display: grid;
  gap: 1rem;
  align-self: end;
}

.editorial-copy p {
  margin: 0;
  color: rgba(8, 25, 36, 0.68);
  font-size: 0.88rem;
  line-height: 1.7;
}

.dark-section .editorial-copy p {
  color: rgba(238, 243, 245, 0.66);
}

.detail-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 6rem;
  border-top: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  color: var(--line-light);
}

.dark-section .detail-grid {
  color: var(--line-dark);
}

.detail-card {
  display: grid;
  min-height: 23rem;
  align-content: space-between;
  padding: 1.5rem;
  color: var(--ink);
  border-right: 1px solid var(--line-light);
}

.detail-card:last-child {
  border-right: 0;
}

.dark-section .detail-card {
  color: var(--paper);
  border-right-color: var(--line-dark);
}

.detail-card h3 {
  margin: 0 0 0.8rem;
  font-size: clamp(1.8rem, 2.7vw, 3rem);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.detail-card p {
  margin: 0;
  color: rgba(8, 25, 36, 0.64);
  font-size: 0.78rem;
  line-height: 1.65;
}

.dark-section .detail-card p {
  color: rgba(238, 243, 245, 0.62);
}

.media-band {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  min-height: 75svh;
  background: var(--ink);
}

.media-band figure {
  position: relative;
  min-height: 38rem;
  margin: 0;
  overflow: hidden;
}

.media-band figure::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, transparent 52%, rgba(8, 25, 36, 0.65));
}

.media-band img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.media-band__copy {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 3rem var(--pad);
  color: var(--paper);
}

.media-band__copy h2 {
  margin: 0;
  font-size: clamp(3rem, 5.3vw, 6rem);
  font-weight: 500;
  letter-spacing: -0.075em;
  line-height: 0.9;
}

.media-band__copy p {
  max-width: 27rem;
  margin: 2rem 0 0;
  color: rgba(238, 243, 245, 0.64);
  font-size: 0.84rem;
  line-height: 1.7;
}

.process-list {
  margin-top: 5rem;
  border-top: 1px solid var(--line-light);
}

.process-step {
  display: grid;
  grid-template-columns: 4rem 1fr minmax(15rem, 28rem);
  align-items: baseline;
  gap: 1rem;
  padding: 2rem 0;
  border-bottom: 1px solid var(--line-light);
}

.process-step > span {
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.65rem;
}

.process-step h3 {
  margin: 0;
  font-size: clamp(2rem, 4.5vw, 5rem);
  font-weight: 500;
  letter-spacing: -0.07em;
  line-height: 0.9;
}

.process-step p {
  margin: 0;
  color: rgba(8, 25, 36, 0.65);
  font-size: 0.82rem;
  line-height: 1.65;
}

.page-next {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 4rem var(--pad);
  color: var(--paper);
  background: var(--primary);
}

.page-next span {
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.66rem;
  letter-spacing: 0.12em;
}

.page-next strong {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 6.8vw, 7.2rem);
  font-style: italic;
  font-weight: 500;
  letter-spacing: -0.08em;
}

.page-next i {
  font-size: clamp(2rem, 5vw, 5rem);
  font-style: normal;
}

.site-footer {
  color: var(--paper);
  background: var(--ink);
  border-top: 1px solid var(--line-dark);
}

.site-footer__main {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 2rem;
  padding: 4rem var(--pad);
}

.site-footer__brand strong {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-style: italic;
  letter-spacing: -0.05em;
}

.site-footer__brand p {
  max-width: 22rem;
  margin: 1.2rem 0 0;
  color: rgba(238, 243, 245, 0.56);
  font-size: 0.78rem;
  line-height: 1.6;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.76rem;
}

/* 0.42 alfa 9,9 px'te 3,75 kontrast veriyordu (AA esigi 4,5).
   0.52 -> 5,09. Renk ailesi ayni, sadece okunur hale geldi. */
.footer-nav .mono-label {
  margin-bottom: 0.5rem;
  color: rgba(238, 243, 245, 0.52);
}

.site-footer__bottom {
  display: flex;
  justify-content: space-between;
  padding: 1.2rem var(--pad);
  border-top: 1px solid var(--line-dark);
  color: rgba(238, 243, 245, 0.48);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.58rem;
  letter-spacing: 0.08em;
}

.brief-form {
  grid-column: 4 / -2;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin-top: 4rem;
  overflow: hidden;
  border: 1px solid var(--line-light);
  background: var(--line-light);
}

.brief-field {
  display: grid;
  gap: 0.75rem;
  padding: 1.3rem;
  background: var(--paper);
}

.brief-field--wide {
  grid-column: 1 / -1;
}

.brief-field label {
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.6rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.brief-field input,
.brief-field select,
.brief-field textarea {
  width: 100%;
  padding: 0.6rem 0;
  color: var(--ink);
  border: 0;
  border-bottom: 1px solid var(--line-light);
  border-radius: 0;
  outline: 0;
  background: transparent;
  font: inherit;
}

.brief-field textarea {
  min-height: 7rem;
  resize: vertical;
}

.brief-submit {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  padding: 1.5rem;
  color: var(--paper);
  border: 0;
  background: var(--primary);
  cursor: pointer;
  font-size: 1rem;
}

.form-status {
  grid-column: 1 / -1;
  min-height: 1.4rem;
  margin: 0;
  padding: 1rem 1.3rem;
  color: var(--primary);
  background: var(--paper);
  font-size: 0.78rem;
  line-height: 1.55;
}

.form-status:empty {
  min-height: 0;
  padding: 0;
}

/* Reveal */

.reveal {
  opacity: 0;
  transform: translateY(2rem);
  transition: opacity 900ms ease, transform 900ms var(--ease-out);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.hero .reveal:nth-child(2) {
  transition-delay: 110ms;
}

.hero .reveal:nth-child(3) {
  transition-delay: 220ms;
}

/* Animations */

@keyframes introProgress {
  to { transform: scaleX(1); }
}

@keyframes introFadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes introLogoIn {
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes introLineIn {
  to { transform: scaleX(1); }
}

@keyframes introOrbitIn {
  to {
    opacity: 1;
    transform: translate(-50%, -50%) rotate(var(--orbit-rotation, -13deg)) scale(1);
  }
}

@keyframes introExit {
  0% {
    opacity: 1;
    clip-path: inset(0 0 0 0);
  }
  100% {
    visibility: hidden;
    opacity: 0;
    clip-path: inset(0 0 100% 0);
  }
}

@keyframes livePulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(var(--signal-rgb), 0.5); }
  50% { box-shadow: 0 0 0 0.45rem rgba(var(--signal-rgb), 0); }
}

@keyframes dashFlow {
  to { stroke-dashoffset: -190; }
}

@keyframes heroMediaCrossfade {
  0%, 34% {
    opacity: 1;
    transform: scale(1);
  }

  42%, 100% {
    opacity: 0;
    transform: scale(1.045);
  }
}

/* Hero fotograf dongusu: hizlandirilmis varyant.
   Bu kare seti tanimli olmadigi icin hero gorselleri opacity:0 kalip gorunmuyordu. */
@keyframes heroMediaCrossfadeFast {
  0%, 30% {
    opacity: 1;
    transform: scale(1);
  }

  38%, 100% {
    opacity: 0;
    transform: scale(1.03);
  }
}

/* Responsive */

@media (max-width: 960px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }
  .hero__message {
    grid-column: 1 / span 9;
  }

  .hero__title-line--offset {
    margin-left: 5vw;
  }  .statement__title {
    grid-column: 2 / -1;
  }  .route-system__header h2,
  .principles__intro h2,
  .services__intro h2 {
    grid-column: 1 / span 9;
  }

  .route-system__header p,
  .principles__intro p,
  .services__intro p {
    grid-column: 10 / -1;
  }

  .principle {
    min-height: 34rem;
  }

  .inner-hero h1 {
    grid-column: 1 / -1;
  }

  .inner-hero__summary {
    grid-column: 8 / -1;
    margin-top: 2rem;
  }

  .editorial-heading {
    grid-column: 3 / span 7;
  }

  .editorial-copy {
    grid-column: 10 / -1;
  }

  .detail-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .detail-card:nth-child(2) {
    border-right: 0;
  }

  .detail-card:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line-light);
  }

  .dark-section .detail-card:nth-child(-n + 2) {
    border-bottom-color: var(--line-dark);
  }

  .site-footer__main {
    grid-template-columns: 1.5fr repeat(3, 1fr);
  }
}

@media (max-width: 720px) {
  :root {
    --pad: 1rem;
  }

  .page-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 0.65rem;
  }

  .site-header {
    min-height: 4.5rem;
  }

  .hero {
    min-height: 100svh;
  }

  .hero__content {
    padding-top: 6.5rem;
    padding-bottom: 5rem;
  }

  .hero__message {
    grid-column: 1 / -1;
    width: 100%;
  }  .hero__title {
    grid-column: 1 / -1;
    font-size: clamp(2.95rem, 14.7vw, 6.6rem);
    line-height: 0.8;
  }

  .hero__title-line--offset {
    width: max-content;
    margin-top: 0.25em;
    margin-left: 0;
  }

  .hero__summary {
    max-width: 19rem;
    margin: 1.6rem 0 0;
    font-size: 0.8rem;
  }

  .hero__steps {
    gap: 0.7rem;
    margin: 2.4rem 0 0;
  }

  .hero__step {
    gap: 0.25rem;
    padding-top: 0.55rem;
  }

  .hero__step strong {
    font-size: 0.56rem;
    letter-spacing: 0;
  }

  .hero__media-frame--one img {
    object-position: 62% center;
  }

  .hero__media-frame--two img,
  .hero__media-frame--three img {
    object-position: 64% center;
  }  .statement {
    min-height: 100vh;
    padding-top: 7rem;
  }  .statement__title {
    grid-column: 1 / -1;
    margin: 2rem 0 7rem;
    font-size: clamp(3.1rem, 14vw, 6rem);
  }  .route-system {
    min-height: auto;
    padding-top: 7rem;
  }

  .route-system__header h2,
  .principles__intro h2,
  .services__intro h2 {
    grid-column: 1 / -1;
    margin-top: 4rem;
    font-size: clamp(3.1rem, 14vw, 6.2rem);
  }

  .route-system__header p,
  .principles__intro p,
  .services__intro p {
    grid-column: 1 / -1;
    max-width: 22rem;
    margin-top: 1.5rem;
  }

  .route-stage {
    min-height: 38rem;
    margin-top: 2.7rem;
  }

  .route-stage__map {
    width: 160%;
    max-width: none;
    transform: translateX(-26%);
  }

  .route-node--origin { --x: 8% !important; --y: 59% !important; }
  .route-node--flow { --x: 49% !important; --y: 33% !important; }
  .route-node--arrival { --x: 89% !important; --y: 20% !important; }

  .route-readout {
    right: 0.85rem;
    bottom: 0.85rem;
    left: 0.85rem;
    width: auto;
  }

  .route-readout h3 {
    margin-top: 1.7rem;
  }

  .principles {
    min-height: auto;
    padding-top: 7rem;
  }

  .services {
    padding-top: 7rem;
  }

  .services__intro {
    padding-top: 4rem;
  }

  .service-gallery {
    grid-template-columns: 1fr;
  }

  .service-tile {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line-light);
  }

  .service-tile:last-child {
    border-bottom: 0;
  }

  .service-tile figure {
    aspect-ratio: 1.35;
  }

  .service-tile h3 {
    font-size: clamp(3rem, 14vw, 5rem);
  }

  .text-route-link {
    margin-top: 2.5rem;
  }

  .principles__intro {
    padding-bottom: 4.5rem;
  }

  .principle-list {
    grid-template-columns: 1fr;
  }

  .principle {
    min-height: 32rem;
    border-right: 0;
    border-bottom: 1px solid var(--line-light);
  }

  .principle h3 {
    font-size: clamp(3rem, 14vw, 5rem);
  }  .manifesto__content h2 {
    font-size: clamp(3.1rem, 15vw, 6.5rem);
  }

  .contact__top .mono-label:last-child {
    display: none;
  }

  .contact__link {
    align-items: flex-end;
    font-size: clamp(3.2rem, 16vw, 6rem);
  }

  .contact__link svg {
    width: 3.8rem;
    margin-bottom: 0.5rem;
  }

  .contact footer {
    grid-template-columns: 1fr auto;
  }

  .contact footer p {
    display: none;
  }

  .inner-hero {
    padding-top: 7rem;
  }

  .inner-hero__grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 0.65rem;
  }

  .inner-hero__kicker,
  .inner-hero h1,
  .inner-hero__summary {
    grid-column: 1 / -1;
  }

  .inner-hero h1 {
    font-size: clamp(3.5rem, 17vw, 7rem);
  }

  .inner-hero__summary {
    max-width: 24rem;
    margin-top: 2rem;
  }

  .inner-hero::after {
    top: 30%;
    right: -60vw;
    width: 145vw;
  }

  .editorial-section {
    padding: 7rem 1rem;
  }

  .editorial-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 0.65rem;
  }

  .editorial-label,
  .editorial-heading,
  .editorial-copy,
  .brief-form {
    grid-column: 1 / -1;
  }

  .editorial-heading {
    margin: 2.5rem 0;
    font-size: clamp(3.1rem, 14vw, 6.2rem);
  }

  .editorial-copy {
    max-width: 28rem;
    justify-self: end;
  }

  .detail-grid {
    grid-template-columns: 1fr;
    margin-top: 4rem;
  }

  .detail-card,
  .detail-card:nth-child(2) {
    min-height: 20rem;
    border-right: 0;
    border-bottom: 1px solid var(--line-light);
  }

  .dark-section .detail-card {
    border-bottom-color: var(--line-dark);
  }

  .detail-card:last-child {
    border-bottom: 0;
  }

  .media-band {
    grid-template-columns: 1fr;
  }

  .media-band figure {
    min-height: 58svh;
  }

  .media-band figure::after {
    background: linear-gradient(0deg, rgba(8, 25, 36, 0.75), transparent 60%);
  }

  .media-band__copy {
    min-height: 28rem;
  }

  .process-step {
    grid-template-columns: 2rem 1fr;
  }

  .process-step p {
    grid-column: 2;
    max-width: 27rem;
  }

  .page-next {
    align-items: flex-end;
    gap: 1rem;
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .page-next span {
    display: none;
  }

  .site-footer__main {
    grid-template-columns: 1fr 1fr;
  }

  .site-footer__brand {
    grid-column: 1 / -1;
    margin-bottom: 1rem;
  }

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

  .brief-field--wide,
  .brief-submit,
  .form-status {
    grid-column: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .intro {
    display: none;
  }

  .hero__media-frame {
    animation: none;
    opacity: 0;
    transform: none;
  }

  .hero__media-frame--one {
    opacity: 1;
  }

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

}

/* Applied optimization layer: smaller type, clearer hierarchy, and route-specific composition. */
:root {
  --content-max: 92rem;
  --body-size: 15.5px;
}

@supports (view-transition-name: root) {
  @media (prefers-reduced-motion: no-preference) {
    @view-transition {
      navigation: auto;
    }

    ::view-transition-old(root) {
      animation: pageFadeOut 180ms ease both;
    }

    ::view-transition-new(root) {
      animation: pageFadeIn 320ms var(--ease-out) both;
    }
  }
}

body {
  font-size: var(--body-size);
}

.page-grid,
.inner-hero__grid,
.editorial-grid,
.process-list {
  max-width: var(--content-max);
  margin-right: auto;
  margin-left: auto;
}

.hero__title {
  font-size: clamp(3.5rem, 8.6vw, 9rem);
  letter-spacing: -0.07em;
  line-height: 0.88;
}

.hero__title-line--offset {
  margin-top: 0.18em;
  margin-left: clamp(1.5rem, 3.6vw, 3.5rem);
}

.hero__title em,
.route-system__header h2 span,
.manifesto__content h2 span,
.inner-hero h1 em {
  color: var(--cool);
  font-style: italic;
  -webkit-text-stroke: 0;
  text-shadow: none;
}

.services__intro h2 span,
.principles__intro h2 span {
  color: var(--primary);
  -webkit-text-stroke: 0;
  text-shadow: none;
}

.hero__summary {
  max-width: 26rem;
  margin-top: 1.5rem;
  margin-left: clamp(1.5rem, 3.6vw, 3.5rem);
}

.hero__steps {
  max-width: 34rem;
  margin-top: 2rem;
  margin-left: clamp(1.5rem, 3.6vw, 3.5rem);
}

.statement {
  min-height: 96vh;
  padding-top: 7rem;
  padding-bottom: 6rem;
}

.statement__title {
  margin-bottom: 7rem;
  font-size: clamp(3rem, 6.7vw, 7rem);
  line-height: 0.96;
}

.route-system {
  min-height: 100vh;
  padding-top: 7rem;
  padding-bottom: 6rem;
}

.route-system__header h2,
.services__intro h2,
.principles__intro h2 {
  font-size: clamp(3.1rem, 6.8vw, 7.4rem);
  line-height: 0.88;
}

.services,
.principles {
  min-height: auto;
}

.services__intro {
  padding-top: 4rem;
  padding-bottom: 3rem;
}

.service-tile h3 {
  font-size: clamp(2.2rem, 3.7vw, 4rem);
  line-height: 0.92;
}

.principles {
  padding-top: 7rem;
}

.principles__intro {
  padding-bottom: 4.5rem;
}

.manifesto__content h2 {
  font-size: clamp(3rem, 7.6vw, 8rem);
  line-height: 0.88;
}

.inner-hero {
  min-height: min(88svh, 52rem);
  padding-top: 7rem;
  padding-bottom: 2.75rem;
}

.inner-hero__kicker {
  margin-bottom: 2rem;
}

.inner-hero h1 {
  font-size: clamp(3.5rem, 8.2vw, 9rem);
  letter-spacing: -0.075em;
  line-height: 0.86;
}

.inner-hero h1 em {
  font-weight: 600;
}

.inner-hero__summary {
  grid-column: 8 / -1;
  max-width: 26rem;
  font-size: clamp(0.84rem, 1.05vw, 1rem);
}

.editorial-section {
  padding-top: 7rem;
  padding-bottom: 7rem;
}

.editorial-heading {
  font-size: clamp(2.7rem, 5.4vw, 6rem);
  line-height: 0.95;
}

.detail-grid {
  margin-top: 4rem;
}

.detail-card {
  min-height: 19rem;
  padding: 1.35rem;
}

.detail-card h3 {
  font-size: clamp(1.65rem, 2.35vw, 2.6rem);
}

.media-band {
  min-height: 65svh;
}

.media-band figure {
  min-height: 32rem;
}

.process-list {
  margin-top: 4rem;
}

.process-step h3 {
  font-size: clamp(1.8rem, 3.7vw, 4.1rem);
  line-height: 0.94;
}

.page-next strong {
  font-size: clamp(2.3rem, 5.6vw, 6rem);
}

/* Image-led inner heroes for pages that previously had only typography. */
.inner-hero__media--panel {
  right: 0;
  left: 51%;
  width: 49%;
  opacity: 0.62;
  clip-path: polygon(10% 0, 100% 0, 100% 100%, 0 100%);
}

.inner-hero__media--panel::after {
  background: linear-gradient(90deg, rgba(8, 25, 36, 0.98) 0%, rgba(8, 25, 36, 0.62) 40%, rgba(8, 25, 36, 0.2) 100%),
    linear-gradient(0deg, rgba(8, 25, 36, 0.86), transparent 62%);
}

.inner-hero__media--panel img {
  object-position: center;
}

.inner-hero__mosaic {
  position: absolute;
  z-index: 0;
  top: 12%;
  right: var(--pad);
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 0.55rem;
  width: min(49vw, 47rem);
  height: min(67svh, 38rem);
  opacity: 0.72;
  pointer-events: none;
  transform: rotate(-2deg);
}

.inner-hero__mosaic::after {
  position: absolute;
  z-index: 2;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(8, 25, 36, 0.7), transparent 48%, rgba(8, 25, 36, 0.36)),
    linear-gradient(0deg, rgba(8, 25, 36, 0.8), transparent 60%);
}

.inner-hero__mosaic figure {
  position: relative;
  min-width: 0;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(169, 196, 209, 0.24);
  background: var(--ink-soft);
}

.inner-hero__mosaic figure:first-child {
  grid-row: 1 / -1;
}

.inner-hero__mosaic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.7) contrast(1.08);
}

html[data-page="hizmetler"] .inner-hero {
  min-height: 76svh;
}

html[data-page="kurumsal"] .inner-hero,
html[data-page="filo"] .inner-hero,
html[data-page="surec"] .inner-hero,
html[data-page="iletisim"] .inner-hero {
  min-height: 80svh;
}

/* Page-in-content examples make the service promise concrete without inventing fleet claims. */
.scenario-strip {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 2rem;
  max-width: var(--content-max);
  margin: 3.5rem auto 0;
  padding: 1rem 0;
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}

.scenario-strip__track {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.7rem;
  color: var(--primary);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.65rem;
  letter-spacing: 0.08em;
}

.scenario-strip__track i {
  color: var(--signal);
  font-style: normal;
}

.planning-board {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  max-width: var(--content-max);
  margin: 4rem auto 0;
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}

.planning-board__item {
  display: grid;
  gap: 0.8rem;
  min-height: 10rem;
  padding: 1.2rem;
  border-right: 1px solid var(--line-light);
}

.planning-board__item:last-child {
  border-right: 0;
}

.planning-board__item span {
  color: var(--signal-strong);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.62rem;
}

.planning-board__item strong {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-style: italic;
  font-weight: 600;
}

.planning-board__item small {
  color: rgba(8, 25, 36, 0.6);
  font-size: 0.75rem;
  line-height: 1.4;
}

@keyframes pageFadeOut {
  to {
    opacity: 0;
  }
}

@keyframes pageFadeIn {
  from {
    opacity: 0;
  }
}

@media (min-width: 721px) {
  .statement,
  .route-system,
  .services,
  .principles,
  .manifesto,
  .editorial-section,
  .media-band {
    content-visibility: auto;
    contain-intrinsic-size: 720px;
  }
}

@media (min-width: 721px) and (max-height: 650px) {
  .hero__content {
    padding-top: 5.25rem;
    padding-bottom: 2.25rem;
  }  .hero__title {
    font-size: clamp(3rem, 8vw, 7.4rem);
    line-height: 0.88;
  }

  .hero__summary {
    margin-top: 1.15rem;
  }

  .hero__steps {
    margin-top: 1.4rem;
  }}

@media (max-width: 960px) {
  .inner-hero__summary {
    grid-column: 7 / -1;
  }

  .editorial-copy {
    grid-column: 8 / -1;
  }
}

@media (max-width: 720px) {
  body {
    font-size: 15px;
  }

  .hero__title {
    font-size: clamp(2.8rem, 13vw, 5.8rem);
    line-height: 0.88;
  }

  .hero__title-line--offset {
    margin-top: 0.16em;
    margin-left: 0;
  }  .hero__summary {
    max-width: 22rem;
    margin-top: 1.25rem;
  }

  .hero__steps {
    margin-top: 1.8rem;
  }

  .inner-hero,
  html[data-page="hizmetler"] .inner-hero,
  html[data-page="kurumsal"] .inner-hero,
  html[data-page="filo"] .inner-hero,
  html[data-page="surec"] .inner-hero,
  html[data-page="iletisim"] .inner-hero {
    min-height: 90svh;
    padding-top: 6.5rem;
    padding-bottom: 2.25rem;
  }

  .inner-hero h1 {
    font-size: clamp(3.1rem, 14.4vw, 6.2rem);
    letter-spacing: -0.07em;
    line-height: 0.88;
  }

  .inner-hero__summary {
    grid-column: 1 / -1;
    max-width: 22rem;
    margin-top: 1.35rem;
  }

  .inner-hero__media--panel {
    top: 22%;
    left: 22%;
    width: 78%;
    opacity: 0.36;
  }

  .inner-hero__mosaic {
    top: 18%;
    right: -8%;
    width: 92%;
    height: 45svh;
    opacity: 0.42;
  }

  .editorial-heading {
    font-size: clamp(2.7rem, 13vw, 5.8rem);
  }

  .editorial-copy {
    grid-column: 1 / -1;
    margin-top: 0;
  }

  .scenario-strip {
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-top: 2.5rem;
  }

  .scenario-strip__track {
    flex-wrap: wrap;
    justify-content: flex-start;
    row-gap: 0.8rem;
  }

  .planning-board {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .planning-board__item:nth-child(2) {
    border-right: 0;
  }

  .planning-board__item:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line-light);
  }
}

/* Final typography correction: reduce display weight and protect text geometry at every breakpoint. */
:root {
  --body-size: 15px;
}

body {
  font-size: var(--body-size);
}

.hero__title,
.statement__title,
.route-system__header h2,
.services__intro h2,
.principles__intro h2,
.manifesto__content h2,
.inner-hero h1,
.editorial-heading,
.media-band__copy h2,
.page-next strong,
.service-tile h3,
.principle h3,
.process-step h3 {
  text-wrap: balance;
}

.hero__title {
  font-size: clamp(3.1rem, 7.2vw, 7.6rem);
  line-height: 0.9;
}

.hero__title-line--offset {
  margin-top: 0.12em;
}.hero__summary {
  margin-top: 1.2rem;
}

.hero__steps {
  margin-top: 1.6rem;
}

.statement__title {
  margin-bottom: 5.5rem;
  font-size: clamp(2.7rem, 5.6vw, 5.8rem);
  line-height: 0.98;
}

.route-system__header h2,
.services__intro h2,
.principles__intro h2 {
  font-size: clamp(2.85rem, 5.8vw, 6.4rem);
  line-height: 0.92;
}

.service-tile h3 {
  font-size: clamp(1.9rem, 2.9vw, 3.2rem);
  line-height: 0.96;
}

.principle h3 {
  font-size: clamp(2rem, 3.1vw, 3.6rem);
  line-height: 0.96;
}

.manifesto__content h2 {
  font-size: clamp(2.8rem, 6.2vw, 6.8rem);
  line-height: 0.9;
}

.contact__link {
  font-size: clamp(2.8rem, 7.2vw, 8.2rem);
  line-height: 0.98;
}

.inner-hero h1 {
  font-size: clamp(3.1rem, 7.2vw, 7.6rem);
  line-height: 0.9;
}

.inner-hero__summary {
  line-height: 1.6;
}

.editorial-heading {
  font-size: clamp(2.5rem, 4.7vw, 5.2rem);
  line-height: 0.98;
}

.detail-card h3 {
  font-size: clamp(1.5rem, 2vw, 2.25rem);
  line-height: 1;
}

.media-band__copy h2 {
  font-size: clamp(2.6rem, 4.2vw, 4.9rem);
  line-height: 0.94;
}

.process-step h3 {
  font-size: clamp(1.6rem, 2.8vw, 3.1rem);
  line-height: 0.98;
}

.page-next strong {
  font-size: clamp(2.1rem, 4.6vw, 5.2rem);
  line-height: 0.98;
}

@media (max-width: 960px) and (min-width: 721px) {
  .hero__title,
  .inner-hero h1 {
    font-size: clamp(3rem, 7vw, 6.6rem);
  }

  .editorial-heading {
    font-size: clamp(2.4rem, 4.8vw, 4.8rem);
  }
}

@media (max-width: 720px) {
  .hero__title {
    font-size: clamp(2.35rem, 11.5vw, 5.2rem);
    line-height: 0.92;
  }

  .hero__title-line--offset {
    margin-top: 0.1em;
  }  .hero__summary {
    max-width: 20rem;
    margin-top: 1rem;
  }

  .hero__steps {
    margin-top: 1.45rem;
  }

  .statement {
    padding-top: 5.5rem;
  }  .statement__title {
    margin-top: 1.35rem;
    margin-bottom: 4.5rem;
    font-size: clamp(2.35rem, 10.2vw, 5rem);
    line-height: 1;
  }

  .route-system__header h2,
  .principles__intro h2,
  .services__intro h2 {
    margin-top: 3rem;
    font-size: clamp(2.4rem, 10.5vw, 5rem);
    line-height: 0.96;
  }

  .service-tile h3 {
    margin-top: 1.6rem;
    margin-bottom: 0.8rem;
    font-size: clamp(1.8rem, 8.4vw, 3.4rem);
    line-height: 0.98;
  }

  .principles {
    padding-top: 5.5rem;
  }

  .principle {
    min-height: 26rem;
  }

  .principle h3 {
    margin-top: 3.3rem;
    margin-bottom: 1rem;
    font-size: clamp(1.9rem, 9vw, 3.6rem);
    line-height: 0.98;
  }

  .manifesto__content h2 {
    font-size: clamp(2.35rem, 10.5vw, 5.2rem);
    line-height: 0.94;
  }

  .contact__link {
    font-size: clamp(2.4rem, 10.2vw, 5rem);
    line-height: 1;
  }

  .contact__link svg {
    width: 2.8rem;
  }

  .inner-hero,
  html[data-page="hizmetler"] .inner-hero,
  html[data-page="kurumsal"] .inner-hero,
  html[data-page="filo"] .inner-hero,
  html[data-page="surec"] .inner-hero,
  html[data-page="iletisim"] .inner-hero {
    padding-top: 6rem;
  }

  .inner-hero h1 {
    font-size: clamp(2.75rem, 12.5vw, 5.8rem);
    line-height: 0.92;
  }

  .inner-hero__summary {
    max-width: 20rem;
    margin-top: 1rem;
  }

  .editorial-section {
    padding-top: 5.5rem;
    padding-bottom: 5.5rem;
  }

  .editorial-heading {
    margin-top: 1.75rem;
    margin-bottom: 1.5rem;
    font-size: clamp(2.3rem, 10.3vw, 5.1rem);
    line-height: 0.98;
  }

  .editorial-copy {
    gap: 0.8rem;
  }

  .detail-grid {
    margin-top: 2.75rem;
  }

  .detail-card,
  .detail-card:nth-child(2) {
    min-height: 15rem;
    padding: 1.1rem;
  }

  .detail-card h3 {
    font-size: clamp(1.45rem, 5.9vw, 2.25rem);
    line-height: 1.02;
  }

  .media-band figure {
    min-height: 48svh;
  }

  .media-band__copy {
    min-height: 22rem;
    padding-top: 2.25rem;
    padding-bottom: 2.25rem;
  }

  .media-band__copy h2 {
    font-size: clamp(2.25rem, 9.8vw, 4.6rem);
    line-height: 0.98;
  }

  .process-list {
    margin-top: 2.75rem;
  }

  .process-step h3 {
    font-size: clamp(1.5rem, 6.8vw, 2.9rem);
    line-height: 1;
  }

  .page-next strong {
    font-size: clamp(2rem, 8.5vw, 4.4rem);
    line-height: 1;
  }
}

/* Annotated layout refinement: remove marked chrome, widen key messages, and keep motion light. */
html {
  scroll-behavior: smooth;
}

html[data-page="home"] .hero__message {
  width: min(100%, 68rem);
}

html[data-page="home"] .hero__title {
  max-width: 100%;
}

html[data-page="home"] .statement__title,
html[data-page="home"] .services__intro h2,
html[data-page="home"] .principles__intro h2 {
  grid-column: 1 / -1;
  width: 100%;
  max-width: var(--content-max);
}

html[data-page="home"] .statement__title {
  margin-top: 2rem;
  margin-bottom: 4.5rem;
  font-size: clamp(2.55rem, 5.2vw, 5.5rem);
  line-height: 0.99;
}

html[data-page="home"] .services__intro,
html[data-page="home"] .principles__intro {
  padding-bottom: 3rem;
}

html[data-page="home"] .services__intro h2,
html[data-page="home"] .principles__intro h2 {
  margin-top: 2.5rem;
  font-size: clamp(2.7rem, 5.2vw, 5.8rem);
  line-height: 0.96;
}

html[data-page="home"] .principles__intro h2 {
  font-size: clamp(2.55rem, 4.8vw, 5.45rem);
}

html[data-page="home"] .route-system {
  min-height: auto;
  padding-top: 6rem;
  padding-bottom: 5rem;
}

html[data-page="home"] .route-stage {
  min-height: clamp(28rem, 39vw, 34rem);
  margin-top: 2.75rem;
  border-radius: 0.9rem;
}

html[data-page="home"] .route-stage__paths .route-stage__path--active {
  filter: none;
  animation-duration: 18s;
  will-change: stroke-dashoffset;
}

html[data-page="home"] .route-node i {
  width: 0.9rem;
  height: 0.9rem;
}

html[data-page="home"] .route-node:hover i,
html[data-page="home"] .route-node.is-active i {
  width: 1.3rem;
  height: 1.3rem;
  box-shadow: 0 0 0 0.45rem rgba(var(--signal-rgb), 0.1), 0 0 1.2rem rgba(var(--signal-rgb), 0.35);
}

html[data-page="home"] .route-readout {
  width: min(25rem, calc(100% - 2rem));
  padding: 1.1rem;
  backdrop-filter: blur(8px);
}

html[data-page="home"] .route-readout h3 {
  margin-top: 1.25rem;
  font-size: clamp(1.25rem, 1.8vw, 2rem);
  line-height: 1.08;
}

html[data-page="home"] .route-readout__meter {
  margin-top: 1rem;
}

.principle__glyph--plan {
  display: grid;
  grid-template-columns: 1fr;
  place-items: center;
  gap: 0;
  width: auto;
  height: 8rem;
}

.principle__svg {
  display: block;
  width: min(100%, 15rem);
  height: auto;
  overflow: visible;
}

.principle__svg-track,
.principle__svg-flow {
  vector-effect: non-scaling-stroke;
  fill: none;
}

.principle__svg-track {
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-opacity: 0.28;
}

.principle__svg-flow {
  stroke: var(--signal);
  stroke-width: 2;
  stroke-dasharray: 8 9;
  animation: principleRouteFlow 7s linear infinite;
}

.principle__svg-node {
  fill: var(--paper);
  stroke: currentColor;
  stroke-width: 1.5;
}

.principle__svg-pulse {
  fill: none;
  stroke: var(--signal);
  stroke-width: 1.25;
  stroke-opacity: 0.65;
  transform-box: fill-box;
  transform-origin: center;
  animation: principleRoutePulse 2.6s var(--ease-in-out) infinite;
}

.principle__svg-dot {
  fill: var(--signal);
}

.manifesto__media {
  position: absolute;
  z-index: 0;
  inset: 0;
  margin: 0;
  overflow: hidden;
  opacity: 0.36;
}

.manifesto__media::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(8, 25, 36, 0.92), rgba(8, 25, 36, 0.48) 50%, rgba(8, 25, 36, 0.86)),
    linear-gradient(0deg, rgba(8, 25, 36, 0.8), transparent 62%);
}

.manifesto__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.65) contrast(1.04);
}

.manifesto__content {
  width: min(92rem, calc(100% - (2 * var(--pad))));
}

.manifesto__content h2 {
  max-width: 100%;
  margin-inline: auto;
}

.hero__media-frame img {
  transform: translate3d(0, var(--hero-scroll-shift, 0px), 0) scale(1.02);
  transition: transform 900ms var(--ease-out);
}

@keyframes principleRouteFlow {
  to { stroke-dashoffset: -68; }
}

@keyframes principleRoutePulse {
  0%, 100% { opacity: 0.35; transform: scale(0.75); }
  50% { opacity: 0.9; transform: scale(1.15); }
}

@media (max-width: 720px) {
  html[data-page="home"] .statement {
    min-height: auto;
    padding-top: 5rem;
    padding-bottom: 4.5rem;
  }

  html[data-page="home"] .statement__title {
    margin: 1rem 0 2.75rem;
    font-size: clamp(2.3rem, 9.2vw, 4.8rem);
    line-height: 1.02;
  }

  html[data-page="home"] .route-system {
    padding-top: 5rem;
    padding-bottom: 4rem;
  }

  html[data-page="home"] .route-stage {
    min-height: 28rem;
    margin-top: 2rem;
    border-radius: 0.75rem;
  }

  html[data-page="home"] .route-stage__map {
    width: 140%;
    max-width: none;
    transform: translateX(-20%) scale(0.94);
  }

  html[data-page="home"] .route-readout {
    right: 0.65rem;
    bottom: 0.65rem;
    left: 0.65rem;
    width: auto;
    padding: 0.9rem;
  }

  html[data-page="home"] .route-readout h3 {
    margin-top: 1rem;
    font-size: 1.25rem;
    line-height: 1.08;
  }

  html[data-page="home"] .route-readout p {
    font-size: 0.72rem;
  }

  html[data-page="home"] .services__intro h2,
  html[data-page="home"] .principles__intro h2 {
    margin-top: 2.25rem;
    font-size: clamp(2.2rem, 9.1vw, 4.7rem);
    line-height: 0.99;
  }

  html[data-page="home"] .principles__intro h2 {
    font-size: clamp(2.05rem, 8.2vw, 4.4rem);
  }

  html[data-page="home"] .manifesto {
    min-height: 72svh;
  }

  .manifesto__media {
    opacity: 0.3;
  }

  .principle__glyph--plan {
    height: 7rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .hero__media-frame img {
    transition: none;
    transform: none;
  }

  .principle__svg-flow,
  .principle__svg-pulse {
    animation: none;
  }

  .principle__svg-dot {
    display: none;
  }
}

/* Final global type scale: keep the interface compact and protect narrow layouts. */
:root {
  --body-size: 14.5px;
}

body {
  font-size: var(--body-size);
}

.hero__title,
.inner-hero h1 {
  font-size: clamp(2.8rem, 6.5vw, 7rem);
}

html[data-page="home"] .statement__title {
  font-size: clamp(2.4rem, 4.7vw, 5.1rem);
}

html[data-page="home"] .route-system__header h2,
html[data-page="home"] .services__intro h2,
html[data-page="home"] .principles__intro h2 {
  font-size: clamp(2.55rem, 4.7vw, 5.75rem);
}

html[data-page="home"] .manifesto__content h2 {
  font-size: clamp(2.55rem, 5.6vw, 6.2rem);
}

html[data-page="home"] .contact__link {
  font-size: clamp(2.55rem, 6.5vw, 7.7rem);
}

.editorial-heading {
  font-size: clamp(2.3rem, 4.35vw, 4.85rem);
}

.media-band__copy h2 {
  font-size: clamp(2.4rem, 3.9vw, 4.55rem);
}

.page-next strong {
  font-size: clamp(1.95rem, 4.25vw, 4.85rem);
}

.service-tile h3 {
  font-size: clamp(1.8rem, 2.65vw, 3rem);
}

.principle h3 {
  font-size: clamp(1.9rem, 2.8vw, 3.4rem);
}

.process-step h3 {
  font-size: clamp(1.5rem, 2.5vw, 2.85rem);
}

@media (max-width: 960px) and (min-width: 721px) {
  .hero__title,
  .inner-hero h1 {
    font-size: clamp(2.7rem, 6.3vw, 6.2rem);
  }
}

@media (max-width: 720px) {
  .hero__title {
    font-size: clamp(2.2rem, 10.3vw, 4.8rem);
  }

  html[data-page="home"] .statement__title {
    font-size: clamp(2.15rem, 9.3vw, 4.45rem);
  }

  html[data-page="home"] .services__intro h2,
  html[data-page="home"] .principles__intro h2,
  html[data-page="home"] .route-system__header h2 {
    font-size: clamp(2.1rem, 9.35vw, 4.4rem);
  }

  html[data-page="home"] .principles__intro h2 {
    font-size: clamp(1.95rem, 7.8vw, 4.15rem);
  }

  html[data-page="home"] .manifesto__content h2 {
    font-size: clamp(2.15rem, 9.5vw, 4.7rem);
  }

  html[data-page="home"] .contact__link {
    font-size: clamp(2.2rem, 9.25vw, 4.7rem);
  }

  .inner-hero h1 {
    font-size: clamp(2.55rem, 11.3vw, 5.25rem);
  }

  .editorial-heading {
    font-size: clamp(2.15rem, 9.5vw, 4.7rem);
  }

  .media-band__copy h2 {
    font-size: clamp(2.1rem, 9.1vw, 4.35rem);
  }

  .page-next strong {
    font-size: clamp(1.85rem, 8vw, 4.05rem);
  }

  .service-tile h3 {
    font-size: clamp(1.7rem, 7.6vw, 3.15rem);
  }

  .principle h3 {
    font-size: clamp(1.8rem, 8.2vw, 3.25rem);
  }

  .process-step h3 {
    font-size: clamp(1.45rem, 6.2vw, 2.7rem);
  }
}

/* Keep the deliberate section cue; remove only the mouse-following cursor. */
html[data-page="home"] .scroll-cue {
  position: absolute;
  z-index: 5;
  bottom: 1.8rem;
  left: var(--pad);
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.55rem;
  letter-spacing: 0.12em;
}

html[data-page="home"] .scroll-cue i {
  position: relative;
  width: 2.8rem;
  height: 1px;
  overflow: hidden;
  background: rgba(236, 237, 231, 0.28);
}

html[data-page="home"] .scroll-cue i::after {
  position: absolute;
  inset: 0;
  content: "";
  background: var(--paper);
  transform: translateX(-100%);
  animation: scrollCue 1.8s var(--ease-in-out) infinite;
}

html[data-page="home"] .statement__media {
  position: relative;
  grid-column: 1 / -1;
  width: 100%;
  height: clamp(16rem, 30vw, 28rem);
  margin: 0 0 1rem;
  overflow: hidden;
  border: 1px solid var(--line-light);
  background: var(--ink);
}

html[data-page="home"] .statement__media::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  content: "";
  pointer-events: none;
  background: linear-gradient(90deg, rgba(8, 25, 36, 0.18), transparent 62%, rgba(8, 25, 36, 0.28)),
    linear-gradient(0deg, rgba(8, 25, 36, 0.46), transparent 42%);
}

html[data-page="home"] .statement__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.84) contrast(1.03);
}

html[data-page="home"] .statement__media-caption {
  position: absolute;
  z-index: 2;
  bottom: 1.1rem;
  left: 1.25rem;
  color: var(--paper);
}

@keyframes scrollCue {
  0% { transform: translateX(-100%); }
  48%, 55% { transform: translateX(0); }
  100% { transform: translateX(100%); }
}

@media (max-width: 720px) {
  html[data-page="home"] .scroll-cue {
    bottom: 1.3rem;
  }

  html[data-page="home"] .statement__media {
    height: clamp(15rem, 66vw, 23rem);
    margin-bottom: 0.5rem;
  }

  html[data-page="home"] .statement__media-caption {
    bottom: 0.85rem;
    left: 0.9rem;
  }
}

/* Inner-page refinement: keep navigation centered and tighten long display copy. */
.site-header {
  column-gap: 1.25rem;
}

.site-header .wordmark {
  grid-column: 1;
}.header-cta {
  display: inline-flex;
  grid-column: 2;
  align-items: center;
  justify-content: center;
  justify-self: end;
  min-height: 2.2rem;
  padding: 0.62rem 0.82rem;
  color: var(--paper);
  border: 1px solid rgba(236, 237, 231, 0.48);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.56rem;
  letter-spacing: 0.1em;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
  transition: color 250ms ease, background 250ms ease, border-color 250ms ease;
}

.header-cta:hover,
.header-cta:focus-visible {
  color: var(--ink);
  background: var(--paper);
  border-color: var(--paper);
}

.site-header .menu-toggle {
  grid-column: 3;
}

html[data-page]:not([data-page="home"]) .inner-hero h1 {
  font-size: clamp(2.75rem, 5.9vw, 6.4rem);
  letter-spacing: -0.065em;
  line-height: 0.92;
}

html[data-page]:not([data-page="home"]) .inner-hero__summary {
  font-size: clamp(0.8rem, 0.95vw, 0.92rem);
  line-height: 1.55;
}

html[data-page]:not([data-page="home"]) .editorial-heading {
  font-size: clamp(2.25rem, 4vw, 4.55rem);
  line-height: 0.98;
}

html[data-page]:not([data-page="home"]) .detail-card h3 {
  font-size: clamp(1.4rem, 1.75vw, 2rem);
}

html[data-page]:not([data-page="home"]) .media-band__copy h2 {
  font-size: clamp(2.2rem, 3.65vw, 4.25rem);
  line-height: 0.96;
}

html[data-page]:not([data-page="home"]) .process-step h3 {
  font-size: clamp(1.5rem, 2.35vw, 2.65rem);
}

html[data-page]:not([data-page="home"]) .page-next strong {
  font-size: clamp(1.8rem, 3.8vw, 4rem);
}

html[data-page="hizmetler"] .services__intro h2 {
  font-size: clamp(2.55rem, 4.7vw, 5.15rem);
  line-height: 0.95;
}

html[data-page="hizmetler"] .service-tile h3 {
  font-size: clamp(1.7rem, 2.35vw, 2.6rem);
}

@media (max-width: 960px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }
  .site-header .header-cta {
    display: none;
  }

  .site-header .menu-toggle {
    grid-column: 2;
  }
}

@media (max-width: 720px) {
  html[data-page]:not([data-page="home"]) .inner-hero h1 {
    font-size: clamp(2.1rem, 9.4vw, 4rem);
    line-height: 0.94;
  }

  html[data-page]:not([data-page="home"]) .editorial-heading {
    font-size: clamp(1.95rem, 8.1vw, 3.65rem);
  }

  html[data-page]:not([data-page="home"]) .detail-card h3 {
    font-size: clamp(1.3rem, 5.2vw, 1.9rem);
  }

  html[data-page]:not([data-page="home"]) .media-band__copy h2 {
    font-size: clamp(1.95rem, 8vw, 3.7rem);
  }

  html[data-page]:not([data-page="home"]) .process-step h3 {
    font-size: clamp(1.35rem, 5.4vw, 2.25rem);
  }

  html[data-page]:not([data-page="home"]) .page-next strong {
    font-size: clamp(1.7rem, 7vw, 3.5rem);
  }

  html[data-page="hizmetler"] .services__intro h2 {
    font-size: clamp(2.25rem, 8vw, 4rem);
  }

  html[data-page="hizmetler"] .service-tile h3 {
    font-size: clamp(1.55rem, 6.2vw, 2.6rem);
  }
}

/* Balanced inner-page grid: remove accidental track collisions and narrow content columns. */
html[data-page]:not([data-page="home"]) .inner-hero {
  min-height: min(80svh, 42rem);
}

html[data-page]:not([data-page="home"]) .inner-hero__grid {
  grid-template-rows: auto auto;
  align-items: end;
  row-gap: 1rem;
}

html[data-page]:not([data-page="home"]) .inner-hero__kicker {
  grid-column: 1 / span 4;
  grid-row: 1;
  margin-bottom: 0;
}

html[data-page]:not([data-page="home"]) .inner-hero h1 {
  grid-column: 1 / span 8;
  grid-row: 2;
  max-width: none;
}

html[data-page]:not([data-page="home"]) .inner-hero__summary {
  grid-column: 9 / -1;
  grid-row: 2;
  align-self: end;
  max-width: none;
  margin: 0;
}

html[data-page]:not([data-page="home"]) .editorial-section {
  padding-top: 6rem;
  padding-bottom: 6rem;
}

html[data-page]:not([data-page="home"]) .editorial-grid {
  align-items: start;
}

html[data-page]:not([data-page="home"]) .editorial-label {
  grid-column: 1 / span 2;
}

html[data-page]:not([data-page="home"]) .editorial-heading {
  grid-column: 3 / span 6;
}

html[data-page]:not([data-page="home"]) .editorial-copy {
  grid-column: 9 / -1;
  align-self: start;
  max-width: none;
}

html[data-page]:not([data-page="home"]) .detail-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 3.5rem;
}

html[data-page]:not([data-page="home"]) .detail-card {
  min-height: 15rem;
  padding: 1.25rem;
}

html[data-page]:not([data-page="home"]) .detail-card:nth-child(even) {
  border-right: 0;
}

html[data-page]:not([data-page="home"]) .detail-card:nth-child(-n + 2) {
  border-bottom: 1px solid var(--line-light);
}

html[data-page]:not([data-page="home"]) .detail-card:nth-child(n + 3) {
  border-bottom: 0;
}

html[data-page]:not([data-page="home"]) .dark-section .detail-card:nth-child(-n + 2) {
  border-bottom-color: var(--line-dark);
}

html[data-page]:not([data-page="home"]) .media-band {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

html[data-page]:not([data-page="home"]) .media-band__copy {
  padding-right: clamp(2rem, 3.5vw, 4rem);
  padding-left: clamp(2rem, 3.5vw, 4rem);
}

html[data-page]:not([data-page="home"]) .process-step {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}

@media (max-width: 960px) and (min-width: 721px) {
  html[data-page]:not([data-page="home"]) .inner-hero__grid {
    grid-template-rows: auto auto auto;
  }

  html[data-page]:not([data-page="home"]) .inner-hero__kicker,
  html[data-page]:not([data-page="home"]) .inner-hero h1 {
    grid-column: 1 / -1;
  }

  html[data-page]:not([data-page="home"]) .inner-hero__kicker {
    grid-row: 1;
  }

  html[data-page]:not([data-page="home"]) .inner-hero h1 {
    grid-row: 2;
  }

  html[data-page]:not([data-page="home"]) .inner-hero__summary {
    grid-column: 7 / -1;
    grid-row: 3;
    margin-top: 1rem;
  }
}

@media (max-width: 720px) {
  html[data-page]:not([data-page="home"]) .inner-hero {
    min-height: 90svh;
  }

  html[data-page]:not([data-page="home"]) .inner-hero__grid {
    grid-template-rows: auto auto auto;
  }

  html[data-page]:not([data-page="home"]) .inner-hero__kicker,
  html[data-page]:not([data-page="home"]) .inner-hero h1,
  html[data-page]:not([data-page="home"]) .inner-hero__summary {
    grid-column: 1 / -1;
    grid-row: auto;
  }

  html[data-page]:not([data-page="home"]) .inner-hero__kicker {
    margin-bottom: 0;
  }

  html[data-page]:not([data-page="home"]) .inner-hero__summary {
    margin-top: 1rem;
  }

  html[data-page]:not([data-page="home"]) .editorial-section {
    padding-top: 4.5rem;
    padding-bottom: 4.5rem;
  }

  html[data-page]:not([data-page="home"]) .editorial-label,
  html[data-page]:not([data-page="home"]) .editorial-heading,
  html[data-page]:not([data-page="home"]) .editorial-copy {
    grid-column: 1 / -1;
  }

  html[data-page]:not([data-page="home"]) .editorial-heading {
    margin-top: 1.5rem;
    margin-bottom: 1.25rem;
  }

  html[data-page]:not([data-page="home"]) .detail-grid {
    grid-template-columns: 1fr;
    margin-top: 2.25rem;
  }

  html[data-page]:not([data-page="home"]) .detail-card,
  html[data-page]:not([data-page="home"]) .detail-card:nth-child(2) {
    min-height: 12.5rem;
    padding: 1rem;
    border-right: 0;
    border-bottom: 1px solid var(--line-light);
  }

  html[data-page]:not([data-page="home"]) .detail-card:last-child {
    border-bottom: 0;
  }

  html[data-page]:not([data-page="home"]) .media-band {
    grid-template-columns: 1fr;
  }

  html[data-page]:not([data-page="home"]) .media-band__copy {
    min-height: 19rem;
    padding-right: 1rem;
    padding-left: 1rem;
  }

  html[data-page]:not([data-page="home"]) .process-step {
    padding-top: 1.35rem;
    padding-bottom: 1.35rem;
  }
}

/* Final conversion cascade: keep the approved pass effective after the legacy base rules. */
:root {
  --body-size: 14px;
  --content-max: 94rem;
}

body {
  font-size: var(--body-size);
}

.mono-label {
  font-size: 0.62rem;
  letter-spacing: 0.11em;
}

.site-header .wordmark {
  gap: 0.55rem;
  align-items: center;
  min-height: 1.6rem;
  font-size: clamp(0.9rem, 1.15vw, 1.1rem);
  letter-spacing: -0.075em;
}

.site-footer__brand strong {
  align-items: center;
}

.site-header .wordmark::before,
.site-footer__brand strong::before {
  display: block;
  flex: 0 0 auto;
  width: 1.5rem;
  height: 1.5rem;
  content: "";
  /* 96 px WEBP: 24 px gosterim icin 4x DPR yeter.
     256 px PNG 29,5 KB idi, bu 3,7 KB — her sayfada yukleniyor. */
  background-image: url("assets/geztas-mark-light.webp");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.site-header .wordmark i {
  display: none;
}

.intro {
  animation-delay: 0.9s;
  animation-duration: 0.55s;
}

.intro::after {
  animation-duration: 1.25s;
}

.intro__logo-wrap {
  animation-delay: 0.12s;
  animation-duration: 0.78s;
}

.intro__signature {
  animation-delay: 0.44s;
  animation-duration: 0.55s;
}

.intro__signature-line {
  animation-delay: 0.55s;
  animation-duration: 0.45s;
}

.intro__bottomline {
  animation-delay: 0.52s;
  animation-duration: 0.5s;
}

.intro--skip {
  display: none;
}

.hero__media-frame {
  animation-name: heroMediaCrossfadeFast;
  animation-duration: 10.5s;
}

.hero__media-frame--two {
  animation-delay: 3.5s;
}

.hero__media-frame--three {
  animation-delay: 7s;
}

.hero__media-frame img {
  transform: translate3d(0, var(--hero-scroll-shift, 0px), 0) scale(1.015);
  transition: none;
}

html[data-page="home"] .hero__title {
  font-size: clamp(2.55rem, 6vw, 6.4rem);
  line-height: 0.93;
}

html[data-page="home"] .hero__title-line--offset {
  margin-left: clamp(1rem, 2.8vw, 2.8rem);
}

html[data-page="home"] .route-system__header h2,
html[data-page="home"] .services__intro h2,
html[data-page="home"] .principles__intro h2 {
  font-size: clamp(2.3rem, 4.1vw, 5rem);
  line-height: 0.98;
}

html[data-page="home"] .statement__title {
  font-size: clamp(2.25rem, 4.2vw, 4.7rem);
  line-height: 1;
}

html[data-page="home"] .service-tile figure,
html[data-page="hizmetler"] .service-tile figure {
  aspect-ratio: 16 / 10;
}

html[data-page="home"] .service-tile h3,
html[data-page="hizmetler"] .service-tile h3 {
  margin-top: 1.6rem;
  font-size: clamp(1.55rem, 2.3vw, 2.65rem);
  line-height: 0.98;
}

html[data-page="home"] .service-tile > p,
html[data-page="hizmetler"] .service-tile > p {
  min-height: 4.2rem;
  font-size: 0.78rem;
}

html[data-page="home"] .principles__intro h2 {
  font-size: clamp(2.25rem, 3.9vw, 4.75rem);
}

html[data-page="home"] .principle {
  min-height: 32rem;
}

html[data-page="home"] .principle h3 {
  margin-top: 3.2rem;
  font-size: clamp(1.65rem, 2.4vw, 2.8rem);
}.manifesto__media {
  opacity: 0.5;
}

.manifesto__media::after {
  background: linear-gradient(90deg, rgba(8, 25, 36, 0.76), rgba(8, 25, 36, 0.26) 50%, rgba(8, 25, 36, 0.7)),
    linear-gradient(0deg, rgba(8, 25, 36, 0.66), transparent 62%);
}

html[data-page="home"] .contact__link {
  font-size: clamp(2.25rem, 5.6vw, 6.3rem);
  line-height: 1;
}

html[data-page="home"] .contact__link svg {
  width: clamp(2.8rem, 5.5vw, 5.4rem);
}

html[data-page]:not([data-page="home"]) .inner-hero {
  min-height: min(78svh, 43rem);
}

html[data-page]:not([data-page="home"]) .inner-hero h1 {
  font-size: clamp(2.45rem, 5.1vw, 5.7rem);
  letter-spacing: -0.06em;
  line-height: 0.95;
}

html[data-page]:not([data-page="home"]) .inner-hero__summary {
  max-width: 31rem;
  font-size: clamp(0.94rem, 1.15vw, 1.05rem);
  line-height: 1.6;
}

html[data-page]:not([data-page="home"]) .editorial-section {
  padding-top: clamp(5rem, 8vw, 7.5rem);
  padding-bottom: clamp(5rem, 8vw, 7.5rem);
}

html[data-page]:not([data-page="home"]) .editorial-heading {
  max-width: 39rem;
  font-size: clamp(2.15rem, 3.8vw, 4.35rem);
  line-height: 1;
}

html[data-page]:not([data-page="home"]) .editorial-copy {
  max-width: 34rem;
}

html[data-page]:not([data-page="home"]) .editorial-copy p {
  font-size: 0.88rem;
  line-height: 1.72;
}

html[data-page]:not([data-page="home"]) .detail-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: clamp(2.75rem, 5vw, 4.5rem);
}

html[data-page]:not([data-page="home"]) .detail-card {
  min-height: 14rem;
  align-content: start;
  gap: 2.25rem;
  padding: clamp(1.1rem, 1.8vw, 1.5rem);
}

html[data-page]:not([data-page="home"]) .detail-card > div {
  max-width: 34rem;
}

html[data-page]:not([data-page="home"]) .detail-card h3 {
  font-size: clamp(1.35rem, 1.7vw, 1.95rem);
  line-height: 1.02;
}

html[data-page]:not([data-page="home"]) .detail-card p {
  font-size: 0.78rem;
  line-height: 1.65;
}

.process-step > span {
  display: none;
}

html[data-page="surec"] .process-list {
  margin-top: clamp(3rem, 5vw, 5rem);
}

html[data-page="surec"] .process-step {
  grid-template-columns: minmax(0, 1fr) minmax(17rem, 30rem);
  gap: 2rem;
  padding-block: clamp(1.5rem, 2.5vw, 2.4rem);
}

html[data-page="surec"] .process-step h3 {
  font-size: clamp(1.45rem, 2.25vw, 2.55rem);
  line-height: 1;
}

html[data-page="surec"] .process-step p {
  max-width: 30rem;
  font-size: 0.82rem;
  line-height: 1.68;
}

html[data-page="surec"] .planning-board {
  margin-top: clamp(3rem, 5vw, 5rem);
}

.contact-overview .brief-form {
  width: min(100%, var(--content-max));
  margin-right: auto;
  margin-left: auto;
}

.brief-field {
  min-width: 0;
  padding: 1.1rem 1.2rem;
}

.brief-field label {
  font-size: 0.58rem;
}

.brief-field input,
.brief-field select,
.brief-field textarea {
  min-width: 0;
  font-size: 0.92rem;
}

.brief-field--consent {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.brief-consent {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  font-family: var(--font-body) !important;
  font-size: 0.75rem !important;
  letter-spacing: 0 !important;
  line-height: 1.45;
  text-transform: none !important;
}

.brief-consent input {
  flex: 0 0 auto;
  width: 1rem;
  height: 1rem;
  margin: 0.1rem 0 0;
  accent-color: var(--primary);
}

.brief-submit {
  padding: 1.2rem 1.35rem;
  font-size: 0.92rem;
}

.site-footer__main {
  grid-template-columns: minmax(17rem, 2fr) repeat(4, minmax(0, 1fr));
  gap: 1.5rem;
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
}

.site-footer__brand strong {
  display: inline-flex;
  align-items: center;
  gap: 0.48rem;
  font-size: 1.05rem;
  letter-spacing: -0.075em;
}

.site-footer__brand strong::before {
  width: 1.25rem;
  height: 1.25rem;
}

.site-footer__brand p {
  max-width: 25rem;
  margin-top: 1rem;
  font-size: 0.76rem;
}

.footer-nav {
  gap: 0.6rem;
  font-size: 0.72rem;
}

.footer-nav a {
  transition: color 220ms ease, transform 220ms var(--ease-out);
}

.footer-nav a:hover,
.footer-nav a:focus-visible {
  color: var(--cool);
  transform: translateX(0.15rem);
}

.reveal {
  transform: translateY(0.9rem);
  transition-duration: 600ms;
}

/* ------------------------------------------------------------------
   Taban kurallari: asagidaki bloklar yalnizca @media icinde tanimliydi.
   Masaustunde hicbir yerlesim almadiklari icin ilgili bolumler tam
   genislige yayilip kirik gorunuyordu (surec, iletisim, kvkk, cerez).
   ------------------------------------------------------------------ */

.process-proof {
  position: relative;
  padding: clamp(5rem, 8vw, 8rem) var(--pad);
  overflow: hidden;
}

.process-proof__header {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 1rem;
  max-width: var(--content-max);
  margin-inline: auto;
}

.process-proof__header > .mono-label {
  grid-column: 1 / span 2;
  padding-top: 0.5rem;
}

.process-proof__header h2 {
  grid-column: 3 / span 6;
  margin: 0;
  font-size: clamp(2.4rem, 5.2vw, 5.4rem);
  font-weight: 500;
  letter-spacing: -0.075em;
  line-height: 0.92;
}

.process-proof__header h2 span {
  color: var(--cool);
}

.process-proof__header > p {
  grid-column: 10 / -1;
  align-self: end;
  max-width: 32rem;
  margin: 0;
  color: rgba(238, 243, 245, 0.66);
  font-size: 0.86rem;
  line-height: 1.7;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: var(--content-max);
  margin: clamp(3rem, 5vw, 5rem) auto 0;
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

.proof-card {
  display: grid;
  gap: 0.85rem;
  align-content: start;
  min-height: 13rem;
  padding: 1.6rem 1.5rem;
  border-right: 1px solid var(--line-dark);
}

.proof-card:last-child {
  border-right: 0;
}

.proof-card .mono-label {
  color: var(--cool);
}

.proof-card h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 1.9vw, 1.75rem);
  font-style: italic;
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 1.05;
}

.proof-card p {
  margin: 0;
  color: rgba(238, 243, 245, 0.64);
  font-size: 0.82rem;
  line-height: 1.65;
}

/* Iletisim: teklif icin gerekenler seridi */
.contact-checklist {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: var(--content-max);
  margin: clamp(3rem, 5vw, 5rem) auto 0;
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

.check-item {
  display: grid;
  gap: 0.85rem;
  align-content: start;
  min-height: 12rem;
  padding: 1.6rem 1.5rem;
  border-right: 1px solid var(--line-dark);
}

.check-item:last-child {
  border-right: 0;
}

.check-item .mono-label {
  color: var(--cool);
}

.check-item strong {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 1.8vw, 1.6rem);
  font-style: italic;
  font-weight: 600;
  letter-spacing: -0.045em;
}

.check-item p {
  margin: 0;
  color: rgba(238, 243, 245, 0.64);
  font-size: 0.82rem;
  line-height: 1.65;
}

/* Yasal sayfalar: KVKK ve Cerez Politikasi */
.legal-hero {
  min-height: 52svh;
}

.legal-document {
  position: relative;
  padding: clamp(4.5rem, 7vw, 7rem) var(--pad);
  overflow: hidden;
}

.legal-document__body {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 0 1rem;
  max-width: var(--content-max);
  margin: clamp(3rem, 5vw, 4.5rem) auto 0;
  padding-top: clamp(2rem, 3.5vw, 3rem);
  border-top: 1px solid var(--line-light);
}

.legal-document__body h2 {
  grid-column: 3 / span 8;
  margin: 2rem 0 0.65rem;
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 1.9vw, 1.7rem);
  font-style: italic;
  font-weight: 600;
  letter-spacing: -0.04em;
}

.legal-document__body h2:first-child {
  margin-top: 0;
}

.legal-document__body p {
  grid-column: 3 / span 8;
  max-width: 46rem;
  margin: 0 0 0.9rem;
  color: rgba(8, 25, 36, 0.7);
  font-size: 0.9rem;
  line-height: 1.75;
}

/* Yasal metinlere madde listeleri eklendi (31.08.2026). Izgaraya
   yerlestirilmedikleri surece kendi sutunlarina dusuyor ve tarayici
   varsayilaniyla (list-style disc, padding 40px) paragraflardan kopuk
   gorunuyorlardi. Paragrafla ayni sutun, ayni renk ve ayni satir
   yuksekligi kullanilir; isaret olarak kurumsal maviyle cizgi. */
.legal-document__body ul {
  grid-column: 3 / span 8;
  max-width: 46rem;
  margin: 0 0 1.1rem;
  padding: 0;
  list-style: none;
}

.legal-document__body li {
  position: relative;
  padding-left: 1.1rem;
  margin-bottom: 0.5rem;
  color: rgba(8, 25, 36, 0.7);
  font-size: 0.9rem;
  line-height: 1.75;
}

.legal-document__body li:last-child {
  margin-bottom: 0;
}

.legal-document__body li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 0.5rem;
  height: 1px;
  background: var(--signal-strong);
}

.legal-document__body li b {
  color: var(--ink);
  font-weight: 600;
}

.legal-notice {
  display: grid;
  grid-column: 3 / span 8;
  gap: 0.4rem;
  margin-top: 1.6rem;
  padding: 1.2rem 1.35rem;
  border-left: 2px solid var(--signal);
  background: rgba(var(--signal-rgb), 0.08);
}

.legal-notice strong {
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.66rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.legal-notice span {
  color: rgba(8, 25, 36, 0.7);
  font-size: 0.84rem;
  line-height: 1.65;
}

/* 404: yonlendirme kartlarindaki baglantilar tiklanabilir gorunmeli.
   Taban kural a{color:inherit} oldugu icin ayrica isaretlenir. */
html[data-page="404"] .detail-card h3 a {
  display: inline-flex;
  align-items: baseline;
  gap: 0.4rem;
  min-height: 1.75rem;
  padding-block: 0.25rem;
  color: var(--primary);
  transition: color 200ms ease, gap 200ms var(--ease-out);
}

html[data-page="404"] .detail-card h3 a::after {
  content: "97";
  font-size: 0.6em;
}

html[data-page="404"] .detail-card h3 a:hover,
html[data-page="404"] .detail-card h3 a:focus-visible {
  color: var(--signal-strong);
  gap: 0.65rem;
}

/* Hizmet bolgeleri: 39 ilce listesi.
   Ilce basina ayri sayfa acilmadi (kopru sayfa riski) — tek sayfada liste. */
.bolge-listesi {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  max-width: var(--content-max);
  margin: clamp(2.5rem, 4vw, 4rem) auto 0;
  background: var(--line-light);
  border: 1px solid var(--line-light);
}

.bolge-sutun {
  padding: clamp(1.4rem, 2.4vw, 2.2rem);
  background: var(--paper);
}

.bolge-sutun h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 1.7vw, 1.5rem);
  font-style: italic;
  font-weight: 600;
  letter-spacing: -0.04em;
}

.bolge-sutun > .mono-label {
  display: block;
  margin-top: 0.3rem;
  color: var(--signal-strong);
}

.bolge-sutun ul {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(8.5rem, 1fr));
  gap: 0.4rem 1rem;
  margin: 1.3rem 0 0;
  padding: 0;
  list-style: none;
}

.bolge-sutun li {
  color: rgba(8, 25, 36, 0.74);
  font-size: 0.88rem;
  line-height: 1.5;
}

@media (max-width: 760px) {
  .bolge-listesi {
    grid-template-columns: 1fr;
  }
}

/* ------------------------------------------------------------------
   Header (03.09.2026, rev 3)

   Onceki kurgu: marka | ortada MENU | Teklif Al. Menu tusu masaustunde
   tek navigasyon girisiydi; butun sayfalar JS arkasindaki tam ekran
   panelde duruyordu. Bu hem sektorun ana alicisini (IK, okul yonetimi,
   satin alma) fazladan bir tiklamaya zorluyor hem de header i her ajans
   sitesiyle ayni sozluge sokuyordu.

   Yeni kurgu: marka (sol) | yatay nav (orta) | Teklif Al + tum sayfalar
   (sag). Nav daki dort sayfa alicinin ilk sordugu dort sey: kimsiniz,
   ne yapiyorsunuz, araclar guvenli mi, benim bolgeme geliyor musunuz.
   Panel ortadan kalkmadi; artik tek giris degil, tam site haritasi.
   ------------------------------------------------------------------ */

.site-header {
  grid-template-columns: auto minmax(0, 1fr) auto;
  column-gap: clamp(0.75rem, 1.6vw, 1.4rem);
}

.site-header .wordmark {
  grid-row: 1;
  grid-column: 1;
  justify-self: start;
}

.site-nav {
  display: flex;
  grid-row: 1;
  grid-column: 2;
  gap: clamp(0.85rem, 2vw, 2rem);
  align-items: center;
  justify-self: center;
  /* Wordmark ile ayni karakter: Exo 2, italik, 700. Mono kalan tek sey
     sistem kontrolleri (TUM SAYFALAR ve Teklif Al); ayrim bilincli.
     Display font mono kadar genis aralik istemedigi icin letter-spacing
     0,1em'den dusuruldu, punto 0,62 -> 0,86rem'e cikarildi. */
  font-family: var(--font-display);
  font-size: clamp(0.78rem, 0.95vw, 0.86rem);
  font-style: italic;
  font-weight: 700;
  letter-spacing: 0.005em;
  text-transform: uppercase;
  white-space: nowrap;
}

.site-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  /* Yazi buyutulmedi; tiklanabilir alan 44 px e cikarildi. */
  min-height: 2.75rem;
  color: inherit;
  opacity: 0.76;
  transition: opacity 220ms ease;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 0.78rem;
  left: 0;
  height: 1px;
  content: "";
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 260ms var(--ease-out);
}

.site-nav a:hover,
.site-nav a:focus-visible {
  opacity: 1;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.site-nav a[aria-current="page"] {
  opacity: 1;
}

.site-nav a[aria-current="page"]::after {
  background: var(--signal);
  transform: scaleX(1);
}

/* Tum navigasyon tek grupta: dort sayfa + panelin girisi. Boylece
   Teklif Al header'in sagindaki tek eylem olarak yalniz kalir; onceki
   kurguda kutulu CTA'nin sagina sarkan bir kontrol vardi. */
.site-header__nav {
  display: flex;
  grid-row: 1;
  grid-column: 2;
  gap: clamp(0.85rem, 2vw, 2rem);
  align-items: center;
  justify-self: center;
}

.header-cta {
  grid-row: 1;
  grid-column: 3;
}

/* Header'in tamami wordmark karakterinde: nav, panel girisi ve CTA.
   Mono yalnizca sayfa icindeki teknik etiketlerde kaliyor.
   Punto mono karsiligindan buyuk: ayni optik agirligi vermek icin
   0,56 -> 0,8rem. Panel girisi artik yazisiz oldugu icin listede yok. */
.site-header .header-cta {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-style: italic;
  font-weight: 700;
  letter-spacing: 0.01em;
}

@media (min-width: 1081px) {
  /* Ince ayrac: dort sayfa "git" baglantisi, chevron ise "hepsini ac".
     Ayni gruptalar ama ayni tur degiller. Yandaki bosluk ayni zamanda
     dokunma/tiklama alanini genisletiyor. */
  .site-header__nav .menu-toggle {
    padding-inline: clamp(0.85rem, 2vw, 2rem) 0.35rem;
    border-left: 1px solid rgba(236, 237, 231, 0.18);
  }
}

/* 1080 px altinda yatay nav panele devredilir; sira eskisi gibi
   Teklif Al -> menu tusu olarak kalir. */
@media (max-width: 1080px) {
  .site-header {
    grid-template-columns: minmax(0, 1fr) auto auto;
  }

  .site-nav {
    display: none;
  }

  .site-header__nav {
    grid-column: 3;
    justify-self: end;
  }

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

/* 960 px altinda Teklif Al gizlenir; tus tek basina sagda kalir. */
@media (max-width: 960px) {
  .site-header {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .site-header .header-cta {
    display: none;
  }

  .site-header__nav {
    grid-column: 2;
  }
}

/* Teklif formu sonuc paneli (Serviceport kalibi).
   Backend yok: ozet metin + mailto + web posta deeplink + panoya kopyala. */
.brief-result {
  display: grid;
  gap: 1.5rem;
  max-width: var(--content-max);
  margin: clamp(2.5rem, 4vw, 3.5rem) auto 0;
  padding: clamp(1.5rem, 3vw, 2.4rem);
  color: var(--paper);
  background: var(--ink);
  border-left: 3px solid var(--signal);
}

.brief-result[hidden] {
  display: none;
}

.brief-result__head {
  display: grid;
  gap: 0.5rem;
}

.brief-result__head .mono-label {
  color: var(--cool);
}

.brief-result__head h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.4vw, 1.9rem);
  font-style: italic;
  font-weight: 600;
  letter-spacing: -0.04em;
}

.brief-result__head p {
  max-width: 44rem;
  margin: 0;
  color: rgba(238, 243, 245, 0.7);
  font-size: 0.9rem;
  line-height: 1.65;
}

.brief-result__ozet {
  margin: 0;
  padding: 1.1rem 1.25rem;
  overflow-x: auto;
  color: rgba(238, 243, 245, 0.86);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.78rem;
  line-height: 1.75;
  white-space: pre;
  background: rgba(238, 243, 245, 0.05);
  border: 1px solid var(--line-dark);
}

.brief-result__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.brief-action {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  min-height: 2.75rem;
  padding: 0.7rem 1.1rem;
  color: var(--paper);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.68rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  cursor: pointer;
  background: transparent;
  border: 1px solid rgba(238, 243, 245, 0.34);
  transition: background 240ms ease, border-color 240ms ease;
}

.brief-action:hover,
.brief-action:focus-visible {
  background: rgba(238, 243, 245, 0.09);
  border-color: rgba(238, 243, 245, 0.6);
}

.brief-action--primary {
  color: var(--ink);
  background: var(--paper);
  border-color: var(--paper);
}

.brief-action--primary:hover,
.brief-action--primary:focus-visible {
  background: var(--cool);
  border-color: var(--cool);
}

.brief-action[hidden] {
  display: none;
}

.brief-result__not:empty {
  display: none;
}

.brief-result__not {
  margin: 0;
  color: var(--cool);
  font-size: 0.82rem;
  line-height: 1.6;
}


/* Teklif Al bandi: "sonraki rota" bandinin hemen altinda, ic sayfalarda.
   page-next --primary zeminli; bu band --ink ile ondan ayrilir. */
.teklif-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: clamp(1.6rem, 3vw, 2.4rem) var(--pad);
  color: var(--ink);
  background: var(--paper);
  border-top: 1px solid var(--line-light);
  transition: background 320ms ease;
}

.teklif-band:hover,
.teklif-band:focus-visible {
  background: var(--paper-soft);
}

.teklif-band .mono-label {
  flex: 0 0 auto;
  color: var(--signal-strong);
}

.teklif-band strong {
  flex: 1 1 auto;
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 2vw, 1.7rem);
  font-style: italic;
  font-weight: 600;
  letter-spacing: -0.04em;
  text-align: center;
}

.teklif-band i {
  flex: 0 0 auto;
  font-size: clamp(1.1rem, 2vw, 1.7rem);
  font-style: normal;
  transition: transform 320ms var(--ease-out);
}

.teklif-band:hover i,
.teklif-band:focus-visible i {
  transform: translate(0.25rem, -0.25rem);
}

@media (max-width: 620px) {
  .teklif-band {
    flex-wrap: wrap;
    gap: 0.5rem 1rem;
  }

  .teklif-band strong {
    flex: 1 1 100%;
    order: 3;
    text-align: left;
  }
}

/* ------------------------------------------------------------------
   Punto ayarlari (30.08.2026)
   5)  SSS bolum basligi bir tik kucuk
   10) Ic sayfalardaki "sonraki rota" bandi bir tik kucuk
   11) Ana sayfa kapanis CTA'si kucultuldu
   ------------------------------------------------------------------ */

.process-proof__header h2 {
  font-size: clamp(2.05rem, 4.3vw, 4.4rem);
}

html[data-page]:not([data-page="home"]) .page-next strong {
  font-size: clamp(1.7rem, 3.5vw, 3.9rem);
}

html[data-page]:not([data-page="home"]) .page-next i {
  font-size: clamp(1.6rem, 3.4vw, 3.4rem);
}

html[data-page="home"] .contact__link {
  font-size: clamp(1.9rem, 4.4vw, 4.9rem);
}

html[data-page="home"] .contact__link svg {
  width: clamp(2.3rem, 4.2vw, 4.2rem);
}

/* Ana sayfa hero'su sade tutuluyor: ozet cumlesi ve uc adim gizli.
   (30.08.2026 karari — bir tur acildi, sonra geri alindi.)
   Metinler HTML'de duruyor; gorunur yapmak icin bu kurali silmek yeterli. */
html[data-page="home"] .hero__summary,
html[data-page="home"] .hero__steps {
  display: none;
}

/* Metin ici tel:/mailto: baglantilari. WCAG'in "inline" istisnasina
   girseler de birincil iletisim eylemi olduklari icin dokunma alani
   24 px'e cikariliyor; satir akisi bozulmasin diye dikey padding ve
   inline-block kullaniliyor. */
.longform a[href^="tel:"],
.longform a[href^="mailto:"],
.legal-document__body a[href^="tel:"],
.legal-document__body a[href^="mailto:"] {
  display: inline-block;
  padding-block: 0.22rem;
  color: var(--signal-strong);
  border-bottom: 1px solid rgba(61, 107, 135, 0.4);
  transition: color 200ms ease, border-color 200ms ease;
}

/* Koyu bolumdeki ayni baglantilar: --signal-strong acik zemin icin
   secilmisti, koyu uzerinde 3,11 kontrast veriyor. Koyu zeminde --cool. */
.dark-section .longform a[href^="tel:"],
.dark-section .longform a[href^="mailto:"] {
  color: var(--cool);
  border-bottom-color: rgba(169, 196, 209, 0.45);
}

.dark-section .longform a[href^="tel:"]:hover,
.dark-section .longform a[href^="mailto:"]:hover,
.dark-section .longform a[href^="tel:"]:focus-visible,
.dark-section .longform a[href^="mailto:"]:focus-visible {
  color: var(--paper);
  border-bottom-color: var(--paper);
}

.longform a[href^="tel:"]:hover,
.longform a[href^="mailto:"]:hover,
.longform a[href^="tel:"]:focus-visible,
.longform a[href^="mailto:"]:focus-visible,
.legal-document__body a[href^="tel:"]:hover,
.legal-document__body a[href^="mailto:"]:hover,
.legal-document__body a[href^="tel:"]:focus-visible,
.legal-document__body a[href^="mailto:"]:focus-visible {
  color: var(--primary);
  border-bottom-color: var(--primary);
}

/* Footer kunyesindeki tiklanabilir telefon / e-posta. */
.site-footer__iletisim {
  display: inline-block;
  margin-top: 0.35rem;
  margin-right: 1.1rem;
  padding-block: 0.3rem;
  color: rgba(238, 243, 245, 0.72);
  font-size: 0.74rem;
  border-bottom: 1px solid transparent;
  transition: color 220ms ease, border-color 220ms ease;
}

.site-footer__iletisim:hover,
.site-footer__iletisim:focus-visible {
  color: var(--paper);
  border-bottom-color: var(--cool);
}

/* Footer kunyesi: vergi levhasindan dogrulanmis resmi unvan ve adres. */
.site-footer__legal {
  display: grid;
  gap: 0.3rem;
  margin-top: 1.1rem;
  padding-top: 1rem;
  color: rgba(238, 243, 245, 0.5);
  font-size: 0.7rem;
  line-height: 1.5;
  border-top: 1px solid var(--line-dark);
}

/* .site-footer__brand strong display fontunu ve italigi getiriyor; burada
   ikisi de geri aliniyor. font-style satiri eksikti: Barlow'un italik kesimi
   yok, o yuzden tarayici romani egerek sahte italik uretiyordu — sirketin
   resmi unvani her sayfanin altinda oyle cikiyordu. */
.site-footer__legal strong {
  color: rgba(238, 243, 245, 0.72);
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-style: normal;
  font-weight: 600;
  letter-spacing: 0;
}

.site-footer__legal strong::before {
  content: none;
}

/* ------------------------------------------------------------------
   Dokunma hedefleri ve okunabilirlik.

   Olcum: 390 px'te 23 etkilesimli oge 44 px'in altindaydi. En kritigi
   MENU dugmesiydi (21 px) — mobil navigasyonun tek girisi. Form alanlari
   38 px, footer baglantilari 14 px yuksekliginde kaliyordu.

   Yaklasim: yazi boyutunu buyutmek yerine tiklanabilir alani genislettik;
   gorunum degismedi, hedef buyudu.
   ------------------------------------------------------------------ */

/* Tus artik yazisiz; genislik tek basina chevron'dan geliyordu (~31 px).
   min-width ile hedef 44x44'e tamamlandi, chevron saga dayali kaliyor. */
.menu-toggle {
  min-width: 2.75rem;
  min-height: 2.75rem;
  padding-block: 0.6rem;
  padding-inline-start: 0.6rem;
}

.site-header .wordmark {
  min-height: 2.75rem;
  padding-block: 0.35rem;
}

.brief-field input,
.brief-field select,
.brief-field textarea {
  min-height: 2.75rem;
  padding-block: 0.75rem;
}

.brief-field textarea {
  min-height: 6rem;
}

.brief-consent input {
  width: 1.15rem;
  height: 1.15rem;
}

.brief-consent {
  min-height: 2.75rem;
  align-items: center;
  cursor: pointer;
}

.footer-nav a,
.site-footer__bottom a {
  display: inline-block;
  padding-block: 0.42rem;
}

.menu-panel nav a {
  min-height: 2.75rem;
}

/* Kendi tipografi kuraliniz aciklama metinleri icin 14 px alt sinir
   koyuyordu; kart ve editoryal metinler 12,5-13,8 px'te kalmisti. */
.detail-card p {
  font-size: 0.88rem;
}

/* 0.92rem masaustu kokunde (15 px) 13,8 px veriyordu; alt sinir 14 px. */
.editorial-copy p {
  font-size: 0.95rem;
}

/* WCAG 2.2 AA hedef boyutu (24x24 CSS px) icin kalan dort oge:
   rota dugumleri, kaydirma ipucu ve onay kutusu. */
.route-node {
  min-height: 1.6rem;
  padding-block: 0.35rem;
}

.scroll-cue {
  display: inline-flex;
  align-items: center;
  min-height: 1.6rem;
  padding-block: 0.5rem;
}

.brief-consent input {
  width: 1.5rem;
  height: 1.5rem;
}

html[data-page]:not([data-page="home"]) .detail-card p {
  font-size: 0.88rem;
}

/* ------------------------------------------------------------------
   Bilerek stilsiz birakilan hedefleme kancalari:
     .process-overview      (surec.html)
     .fleet-overview        (filo-guvenlik.html)
     .contact-confidence    (iletisim.html)
     .media-band--editorial (kurumsal.html)
   Bu siniflarin kendi kurallari yok; bolumler taban siniflarindan
   (.editorial-section, .media-band) bicim aliyor. Ileride yalnizca
   bu bolumleri hedeflemek gerekirse kanca hazir. Silinmediler ki
   HTML'de bir sey degistirmeden stil verilebilsin.
   ------------------------------------------------------------------ */

/* ------------------------------------------------------------------
   Derinlestirilmis icerik bloklari (tools/derinlik.py tarafindan yazilir).
   .longform  : uzun anlatim kolonu
   .faq-list  : sikca sorulan sorular
   ------------------------------------------------------------------ */

.longform {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 0 1rem;
  max-width: var(--content-max);
  margin: clamp(3rem, 5vw, 4.5rem) auto 0;
  padding-top: clamp(2rem, 3.5vw, 3rem);
  border-top: 1px solid var(--line-light);
}

.dark-section .longform {
  border-top-color: var(--line-dark);
}

.longform > * {
  grid-column: 3 / span 8;
}

.longform h3 {
  margin: 2.2rem 0 0.7rem;
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 1.8vw, 1.6rem);
  font-style: italic;
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1.15;
}

.longform h3:first-child {
  margin-top: 0;
}

.longform p {
  max-width: 44rem;
  margin: 0 0 0.95rem;
  color: rgba(8, 25, 36, 0.72);
  font-size: 0.94rem;
  line-height: 1.75;
}

.dark-section .longform p {
  color: rgba(238, 243, 245, 0.68);
}

.longform ul {
  display: grid;
  gap: 0.5rem;
  max-width: 44rem;
  margin: 0 0 1.1rem;
  padding: 0;
  list-style: none;
}

.longform li {
  position: relative;
  padding-left: 1.4rem;
  color: rgba(8, 25, 36, 0.72);
  font-size: 0.92rem;
  line-height: 1.65;
}

.dark-section .longform li {
  color: rgba(238, 243, 245, 0.68);
}

.longform li::before {
  position: absolute;
  top: 0.72em;
  left: 0.1rem;
  width: 0.55rem;
  height: 1px;
  content: "";
  background: var(--signal);
}

.longform li b,
.longform p b {
  color: var(--ink);
  font-weight: 600;
}

.dark-section .longform li b,
.dark-section .longform p b {
  color: var(--paper);
}

.faq-list {
  display: grid;
  max-width: var(--content-max);
  margin: clamp(3rem, 5vw, 4.5rem) auto 0;
  border-top: 1px solid var(--line-light);
}

.dark-section .faq-list {
  border-top-color: var(--line-dark);
}

.faq-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(18rem, 34rem);
  gap: 1rem 2.5rem;
  padding: clamp(1.3rem, 2.2vw, 2rem) 0;
  border-bottom: 1px solid var(--line-light);
}

.dark-section .faq-item {
  border-bottom-color: var(--line-dark);
}

.faq-item h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 1.7vw, 1.5rem);
  font-style: italic;
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1.15;
}

.faq-item p {
  margin: 0;
  color: rgba(8, 25, 36, 0.7);
  font-size: 0.88rem;
  line-height: 1.7;
}

.dark-section .faq-item p {
  color: rgba(238, 243, 245, 0.66);
}

@media (max-width: 960px) {
  .site-footer__main {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .site-footer__brand {
    grid-column: 1 / -1;
  }

  .process-proof__header > .mono-label,
  .process-proof__header h2,
  .process-proof__header > p {
    grid-column: 1 / -1;
  }

  .process-proof__header h2 {
    margin-top: 1.2rem;
  }

  .process-proof__header > p {
    max-width: 38rem;
    margin-top: 0.5rem;
  }

  .legal-document__body h2,
  .legal-document__body p,
  .legal-document__body ul,
  .legal-notice {
    grid-column: 2 / -2;
  }

  .longform > * {
    grid-column: 2 / -2;
  }

  .faq-item {
    grid-template-columns: 1fr;
    gap: 0.6rem;
  }
}

@media (max-width: 720px) {
  html[data-page="home"] .hero__title {
    font-size: clamp(2.2rem, 10vw, 4.6rem);
  }

  html[data-page="home"] .statement__title {
    font-size: clamp(2rem, 8.8vw, 4.2rem);
  }

  html[data-page="home"] .service-tile > p,
  html[data-page="hizmetler"] .service-tile > p {
    min-height: 0;
  }

  html[data-page="home"] .principle {
    min-height: 25rem;
  }

  html[data-page]:not([data-page="home"]) .inner-hero {
    min-height: 82svh;
  }

  html[data-page]:not([data-page="home"]) .inner-hero h1 {
    font-size: clamp(2.1rem, 9vw, 4rem);
  }

  html[data-page]:not([data-page="home"]) .detail-grid {
    grid-template-columns: 1fr;
  }

  html[data-page]:not([data-page="home"]) .detail-card,
  html[data-page]:not([data-page="home"]) .detail-card:nth-child(2) {
    min-height: 11rem;
    gap: 1.45rem;
    border-right: 0;
    border-bottom: 1px solid var(--line-light);
  }

  html[data-page]:not([data-page="home"]) .detail-card:last-child {
    border-bottom: 0;
  }

  html[data-page="surec"] .process-step {
    grid-template-columns: 1fr !important;
    gap: 0.8rem;
  }

  html[data-page="surec"] .process-step p {
    grid-column: auto !important;
    max-width: none;
  }

  html[data-page="surec"] .process-step h3 {
    font-size: clamp(1.35rem, 6vw, 2.2rem);
  }

  .planning-board,
  .proof-grid,
  .contact-checklist {
    grid-template-columns: 1fr;
  }

  .planning-board__item,
  .proof-card,
  .check-item {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid var(--line-light);
  }

  .proof-card,
  .check-item {
    border-bottom-color: var(--line-dark);
  }

  .planning-board__item:last-child,
  .proof-card:last-child,
  .check-item:last-child {
    border-bottom: 0;
  }

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

  .brief-field--wide,
  .brief-submit,
  .form-status {
    grid-column: auto;
  }

  .site-footer__main {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2rem 1rem;
  }

  .site-footer__brand {
    grid-column: 1 / -1;
  }

  .site-footer__bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.65rem;
  }

  .legal-document__body {
    grid-template-columns: 1fr;
  }

  .legal-document__body h2,
  .legal-document__body p,
  .legal-document__body ul,
  .legal-notice {
    grid-column: 1;
  }

  .longform > * {
    grid-column: 1 / -1;
  }

}

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

  .hero__media-frame {
    animation: none;
    opacity: 0;
  }

  .hero__media-frame--one {
    opacity: 1;
  }

  .reveal {
    transform: none;
    transition: none;
  }
}

/* ------------------------------------------------------------------
   MOBIL DUZELTMELERI (30.08.2026)
   Dosyanin SONUNDA duruyor: ayni ozgullukteki kurallarda kaynak sirasi
   belirleyici oldugu icin buradaki degerler kesin uygulanir.

   1) Form alanlari 16 px — iOS Safari 16 px altindaki alana odaklaninca
      sayfayi otomatik buyutur; kullanici her alanda yakinlasip geri
      uzaklasmak zorunda kalir. Masaustunde bu davranis yok.
   2) Ic sayfa hero ozeti ve editoryal metinler mobilde 12,5-13,8 px'e
      dusuyordu; kendi kuralimiz aciklama metinleri icin 14 px alt sinir.
   3) mono etiketler 9,9 px'ti, kucuk ekranda okunmuyordu.
   ------------------------------------------------------------------ */

@media (max-width: 720px) {
  .brief-field input,
  .brief-field select,
  .brief-field textarea {
    font-size: 1rem;
  }

  html[data-page]:not([data-page="home"]) .inner-hero__summary {
    font-size: 0.95rem;
    line-height: 1.6;
  }

  /* 4172. satirdaki kuralla ayni ozgullukte; sonra geldigi icin kazanir. */
  html[data-page]:not([data-page="home"]) .editorial-copy p,
  html[data-page="home"] .editorial-copy p {
    font-size: 0.95rem;
    line-height: 1.7;
  }

  .mono-label {
    font-size: 0.72rem;
  }

  .bolge-sutun li {
    font-size: 0.92rem;
  }
}

/* ------------------------------------------------------------------
   Menu paneli - hat menusu (03.09.2026, rev 3)

   Rev 2 de panel tam ekran koyu perde + tek sutunda 11 dev baslikti.
   O kalip (perde, mono sayac, satir alti cizgi, daire-hamburger) ajans
   sitelerinde ortak sozluk oldugu icin site baska islerle akraba
   gorunuyordu. Rev 3 kalibi degistiriyor:

   - Sayfalar uc hatta bolundu (KURUMSAL / HIZMETLER / SISTEM); ayni
     gruplama footer da zaten kullaniliyordu.
   - Her grup dikey bir hat, her sayfa hat uzerinde bir durak. Aktif
     sayfa dolu ve halkali durak.
   - Tipografi anitsal degil okunur olcekte; 11 oge uc sutuna dagildigi
     icin punto artik ekran yuksekligine gore sikismiyor.
   - Panelin dibinde telefon, e-posta ve teklif baglantisi var: menu
     ayni zamanda iletisim yuzeyi.
   ------------------------------------------------------------------ */

.menu-panel {
  position: fixed;
  z-index: 90;
  inset: 0;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  gap: clamp(1.5rem, 4vh, 3rem);
  /* Ust bosluk sabit header yuksekligini (5.25rem) asmali. */
  padding: calc(5.25rem + clamp(1rem, 4vh, 2.5rem)) var(--pad)
    clamp(1.5rem, 4vh, 2.5rem);
  overflow-y: auto;
  overscroll-behavior: contain;
  color: var(--paper);
  background: var(--ink);
  visibility: hidden;
  opacity: 0;
  transition: visibility 0s linear 420ms, opacity 320ms ease;
}

.menu-panel.is-open {
  visibility: visible;
  opacity: 1;
  transition-delay: 0s;
}

.menu-hat {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1.5rem, 4vw, 4rem);
  align-content: center;
}

.menu-hat__group {
  min-width: 0;
}

.menu-hat__label {
  margin: 0 0 clamp(0.7rem, 1.6vh, 1.1rem);
  color: var(--cool);
}

.menu-hat__list {
  position: relative;
  margin: 0;
  padding: 0 0 0 1.75rem;
  list-style: none;
}

/* Hat: panel acilirken ilk duraktan son duraga dogru cizilir.
   top/bottom degeri = satir yuksekliginin yarisi (2,75rem / 2), yani
   hat tam olarak ilk ve son durak merkezinde baslar ve biter. */
.menu-hat__list::before {
  position: absolute;
  top: 1.375rem;
  bottom: 1.375rem;
  left: 0.4rem;
  width: 1px;
  content: "";
  background: var(--signal);
  opacity: 0.5;
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 640ms var(--ease-out);
}

.menu-panel.is-open .menu-hat__list::before {
  transform: scaleY(1);
}

.menu-hat__group:nth-child(2) .menu-hat__list::before {
  transition-delay: 90ms;
}

.menu-hat__group:nth-child(3) .menu-hat__list::before {
  transition-delay: 180ms;
}

/* Durak adlari wordmark ile ayni karakteri kullanir: Exo 2, italik, 700.
   Gruplarin ustundeki mono etiketler bilerek disarida birakildi; kontrast
   oradan geliyor. */
.menu-panel nav a {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 2.75rem;
  padding: 0.25rem 0;
  font-family: var(--font-display);
  font-size: clamp(1.02rem, 1.5vw, 1.35rem);
  font-style: italic;
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 1.2;
  transition: color 220ms ease;
}

/* Durak: hattin uzerinde oturur (genislik 0,8rem, merkez 0,4rem). */
.menu-panel nav a::before {
  position: absolute;
  top: 50%;
  left: -1.75rem;
  width: 0.8rem;
  height: 0.8rem;
  content: "";
  border: 1px solid rgba(169, 196, 209, 0.45);
  border-radius: 50%;
  background: var(--ink);
  transform: translateY(-50%);
  transition: border-color 220ms ease, background 220ms ease,
    box-shadow 220ms ease;
}

.menu-panel nav a:hover,
.menu-panel nav a:focus-visible {
  color: var(--cool);
}

.menu-panel nav a:hover::before,
.menu-panel nav a:focus-visible::before {
  background: var(--signal);
  border-color: var(--signal);
}

.menu-panel nav a[aria-current="page"] {
  color: var(--cool);
}

.menu-panel nav a[aria-current="page"]::before {
  background: var(--signal);
  border-color: var(--signal);
  box-shadow: 0 0 0 4px rgba(var(--signal-rgb), 0.22);
}

.menu-panel__foot {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(0.9rem, 3vw, 2.5rem);
  align-items: end;
  padding-top: clamp(0.9rem, 3vh, 1.6rem);
  border-top: 1px solid var(--line-dark);
}

.menu-panel__foot p {
  max-width: 26rem;
  margin: 0;
  color: rgba(236, 237, 231, 0.55);
  font-size: 0.78rem;
  line-height: 1.55;
}

.menu-panel__contact {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 1.35rem;
  align-items: center;
  justify-content: flex-end;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.68rem;
  letter-spacing: 0.06em;
}

.menu-panel__contact a {
  display: inline-flex;
  align-items: center;
  min-height: 2.75rem;
  color: var(--cool);
  transition: color 220ms ease;
}

.menu-panel__contact a:hover,
.menu-panel__contact a:focus-visible {
  color: var(--paper);
}

.menu-panel__contact .menu-panel__cta {
  padding: 0 1.1rem;
  color: var(--paper);
  border: 1px solid rgba(236, 237, 231, 0.42);
  text-transform: uppercase;
  transition: color 220ms ease, background 220ms ease, border-color 220ms ease;
}

.menu-panel__contact .menu-panel__cta:hover,
.menu-panel__contact .menu-panel__cta:focus-visible {
  color: var(--ink);
  background: var(--paper);
  border-color: var(--paper);
}

/* Uc hat dar ekranda alt alta gecer; sira degismez.
   11 durak + uc etiket + iletisim satiri 812 px'lik bir ekrana tam
   sigmiyor; panel kayiyor. Dokunma hedefleri (44 px) kucultulmedigi
   icin kazanc ust bosluktan ve grup araligindan alindi. */
@media (max-width: 860px) {
  .menu-panel {
    grid-template-rows: auto auto;
    gap: clamp(1.1rem, 3vh, 1.75rem);
    padding-top: calc(5.25rem + clamp(0.75rem, 2vh, 1.25rem));
  }

  .menu-hat {
    grid-template-columns: 1fr;
    gap: clamp(1rem, 3vh, 1.5rem);
    align-content: start;
  }

  .menu-panel__foot {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .menu-panel__contact {
    justify-content: flex-start;
  }
}

/* Hareket azaltmada hat cizilmez, dogrudan tam boy durur. */
@media (prefers-reduced-motion: reduce) {
  .menu-hat__list::before {
    transform: scaleY(1);
    transition: none;
  }
}
