/* ==========================================================================
   TMM PRESS — site.css
   Marka: kirmizi #D3111A · antrasit #494949 · zemin #0E1116
   ========================================================================== */

/* ---------- Tokens ---------- */
:root {
  --red: #D3111A;
  --red-dark: #A60D14;
  --red-soft: rgba(211, 17, 26, 0.10);

  --ink-900: #0E1116;
  --ink-800: #161A21;
  --ink-700: #232830;
  --ink-500: #4A515C;
  --ink-400: #6B7280;
  --ink-300: #9AA1AC;

  --paper: #FFFFFF;
  --paper-alt: #F4F5F7;
  --line: #E3E5E9;
  --line-dark: rgba(255, 255, 255, 0.12);

  --font-display: "Archivo", "Segoe UI", system-ui, sans-serif;
  --font-body: "Inter", "Segoe UI", system-ui, sans-serif;

  --shell: 1280px;
  --gut: clamp(20px, 5vw, 64px);
  --sec: clamp(72px, 9vw, 132px);

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink-700);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}
img, svg, iframe { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
h1, h2, h3, h4 { margin: 0; font-family: var(--font-display); font-weight: 700; line-height: 1.08; letter-spacing: -0.02em; }
p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }

:focus-visible { outline: 2px solid var(--red); outline-offset: 3px; }

.skip {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--red); color: #fff; padding: 12px 20px; font-weight: 600;
}
.skip:focus { left: 0; }

/* ---------- Layout ---------- */
.shell { width: 100%; max-width: var(--shell); margin-inline: auto; padding-inline: var(--gut); }
.section { padding-block: var(--sec); }
.section--tight { padding-block: clamp(56px, 6vw, 88px); }
.section--dark { background: var(--ink-900); color: #fff; }
.section--alt { background: var(--paper-alt); }

/* ---------- Tipografi ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--font-display);
  font-size: 12px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--red);
  margin-bottom: 20px;
}
.eyebrow::before {
  content: ""; width: 26px; height: 8px; background: var(--red);
  transform: skewX(-20deg); flex: none;
}
.section--dark .eyebrow { color: #FF4A52; }
.section--dark .eyebrow::before { background: var(--red); }

.h-xl { font-size: clamp(2.4rem, 6.2vw, 4.4rem); }
.h-lg { font-size: clamp(1.9rem, 3.8vw, 2.9rem); }
.h-md { font-size: clamp(1.25rem, 1.8vw, 1.5rem); letter-spacing: -0.01em; }

.lead { font-size: clamp(1.02rem, 1.35vw, 1.18rem); color: var(--ink-500); max-width: 62ch; }
.section--dark .lead { color: rgba(255, 255, 255, 0.72); }

.sec-head { max-width: 780px; margin-bottom: clamp(44px, 5vw, 68px); }
.sec-head .lead { margin-top: 20px; }

/* ---------- Butonlar ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 28px;
  font-family: var(--font-display); font-weight: 600; font-size: 15px;
  letter-spacing: 0.01em;
  border: 1px solid transparent;
  transition: background .22s var(--ease), color .22s var(--ease), border-color .22s var(--ease);
}
.btn svg { flex: none; transition: transform .22s var(--ease); }
.btn:hover svg { transform: translateX(4px); }
.btn--primary { background: var(--red); color: #fff; }
.btn--primary:hover { background: var(--red-dark); }
.btn--ghost { border-color: rgba(255, 255, 255, 0.28); color: #fff; }
.btn--ghost:hover { border-color: #fff; background: rgba(255, 255, 255, 0.08); }
.btn--outline { border-color: var(--line); color: var(--ink-900); }
.btn--outline:hover { border-color: var(--ink-900); background: var(--ink-900); color: #fff; }

.link-arrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-display); font-weight: 600; font-size: 14.5px;
  color: var(--red);
}
.link-arrow svg { transition: transform .22s var(--ease); }
.link-arrow:hover svg { transform: translateX(4px); }

/* ---------- Header ---------- */
.header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(1.4) blur(14px);
  border-bottom: 1px solid var(--line);
}
.header__bar { display: flex; align-items: center; gap: 28px; height: 84px; }
.header__logo { flex: none; display: flex; align-items: center; }
.header__logo svg, .header__logo img { width: 190px; height: auto; }
.header__nav { margin-left: auto; }
.header__nav ul { display: flex; gap: 4px; }
.header__nav a {
  display: block; padding: 10px 14px;
  font-family: var(--font-display); font-weight: 600; font-size: 14.5px;
  color: var(--ink-700);
  position: relative;
}
.header__nav a::after {
  content: ""; position: absolute; left: 14px; right: 14px; bottom: 4px; height: 2px;
  background: var(--red); transform: scaleX(0); transform-origin: left;
  transition: transform .25s var(--ease);
}
.header__nav a:hover::after, .header__nav a[aria-current="page"]::after { transform: scaleX(1); }
.header__aside { display: flex; align-items: center; gap: 18px; flex: none; }
.header__lang {
  font-family: var(--font-display); font-weight: 700; font-size: 13px; letter-spacing: .08em;
  padding: 7px 12px; border: 1px solid var(--line); color: var(--ink-500);
}
.header__lang:hover { border-color: var(--ink-900); color: var(--ink-900); }
.header__phone {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-display); font-weight: 600; font-size: 14.5px; color: var(--ink-900);
}
.header__phone svg { color: var(--red); }
.header__toggle { display: none; padding: 10px; margin-right: -10px; }

/* ---------- Hero ---------- */
.hero {
  position: relative; overflow: hidden;
  background: var(--ink-900); color: #fff;
  padding-block: clamp(84px, 12vw, 156px);
}
.hero__inner { position: relative; z-index: 2; }
.hero h1 { font-size: clamp(2.4rem, 5.6vw, 4.5rem); font-weight: 800; letter-spacing: -0.035em; }
.hero h1 span { display: block; }
.hero h1 span:last-child { color: var(--red); }
.hero__foot {
  display: grid; gap: clamp(28px, 3.5vw, 56px);
  margin-top: clamp(40px, 5vw, 68px);
  padding-top: clamp(32px, 3.5vw, 44px);
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}
@media (min-width: 900px) { .hero__foot { grid-template-columns: minmax(0, 1fr) auto; align-items: start; } }
.hero__lead { font-size: clamp(1.02rem, 1.35vw, 1.15rem); color: rgba(255, 255, 255, 0.72); max-width: 58ch; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; }

/* diyagonal marka motifi */
.hero__motif { position: absolute; inset: 0; z-index: 1; pointer-events: none; overflow: hidden; }
.hero__motif::before {
  content: ""; position: absolute; top: -20%; right: -6%; width: 46%; height: 150%;
  background: linear-gradient(180deg, rgba(211,17,26,.16), rgba(211,17,26,0));
  transform: skewX(-14deg);
}
.hero__bars { position: absolute; right: clamp(24px, 6vw, 96px); bottom: 0; display: flex; gap: 12px; }
.hero__bars i { display: block; width: 16px; height: clamp(90px, 14vw, 200px); background: var(--red); transform: skewX(-20deg); opacity: .9; }
.hero__bars i:nth-child(2) { opacity: .6; height: clamp(66px, 10vw, 150px); align-self: flex-end; }
.hero__bars i:nth-child(3) { opacity: .35; height: clamp(44px, 7vw, 105px); align-self: flex-end; }

/* ---------- Stat seridi ---------- */
.stats { background: var(--ink-800); color: #fff; border-top: 1px solid var(--line-dark); }
.stats__grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); }
@media (min-width: 760px) { .stats__grid { grid-template-columns: repeat(4, minmax(0, 1fr)); } }
.stat { padding: clamp(30px, 3.6vw, 46px) 0; border-top: 1px solid var(--line-dark); }
.stat:nth-child(-n+2) { border-top: 0; }
@media (min-width: 760px) { .stat { border-top: 0; padding-inline-end: 24px; } }
.stat__v { font-family: var(--font-display); font-weight: 800; font-size: clamp(2.3rem, 4.4vw, 3.4rem); line-height: 1; letter-spacing: -0.04em; }
.stat__v em { font-style: normal; color: var(--red); }
.stat__l { margin-top: 12px; font-size: 14px; color: rgba(255, 255, 255, 0.6); letter-spacing: .01em; }

/* ---------- Intro ---------- */
.intro__grid { display: grid; gap: clamp(32px, 4vw, 64px); }
@media (min-width: 900px) { .intro__grid { grid-template-columns: 0.9fr 1.1fr; } }
.intro__body p + p { margin-top: 20px; }
.intro__body { color: var(--ink-500); font-size: 1.02rem; }
.intro__cta { margin-top: 32px; }

/* ---------- Pillar kartlari ---------- */
.pillars { display: grid; gap: 1px; background: var(--line); border-block: 1px solid var(--line); }
@media (min-width: 640px) { .pillars { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1060px) { .pillars { grid-template-columns: repeat(4, minmax(0, 1fr)); } }
.pillar {
  background: var(--paper); padding: clamp(30px, 3vw, 42px) clamp(24px, 2.4vw, 34px) clamp(34px, 3.4vw, 46px);
  display: flex; flex-direction: column; gap: 16px;
  transition: background .25s var(--ease);
  position: relative;
}
.pillar::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 3px;
  background: var(--red); transform: scaleX(0); transform-origin: left;
  transition: transform .3s var(--ease);
}
.pillar:hover { background: var(--paper-alt); }
.pillar:hover::after { transform: scaleX(1); }
.pillar__no { font-family: var(--font-display); font-weight: 700; font-size: 13px; letter-spacing: .14em; color: var(--red); }
.pillar__desc { font-size: 15.5px; color: var(--ink-500); flex: 1; }
.pillar .link-arrow { margin-top: 4px; }

/* ---------- Surec ---------- */
.steps { display: grid; gap: 1px; background: var(--line-dark); }
@media (min-width: 700px) { .steps { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1060px) { .steps { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
.step { background: var(--ink-900); padding: clamp(28px, 3vw, 40px) clamp(22px, 2.2vw, 32px); }
.step__no {
  font-family: var(--font-display); font-weight: 800; font-size: 2.6rem; line-height: 1;
  letter-spacing: -.04em; color: transparent;
  -webkit-text-stroke: 1.4px rgba(255, 255, 255, .3);
  transition: color .3s var(--ease), -webkit-text-stroke-color .3s var(--ease);
}
.step:hover .step__no { color: var(--red); -webkit-text-stroke-color: var(--red); }
.step h3 { margin-top: 18px; font-size: 1.18rem; color: #fff; }
.step p { margin-top: 12px; font-size: 15px; color: rgba(255, 255, 255, .62); }

/* ---------- Vaka / video ---------- */
.cases { display: grid; gap: clamp(20px, 2.4vw, 32px); margin-top: 8px; }
@media (min-width: 860px) { .cases { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
.vid {
  position: relative; aspect-ratio: 16 / 9; width: 100%;
  background: var(--ink-800) center / cover no-repeat;
  border: 0; padding: 0; cursor: pointer; overflow: hidden;
  display: block;
}
.vid::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(14,17,22,.15) 0%, rgba(14,17,22,.78) 100%);
  transition: background .3s var(--ease);
}
.vid:hover::after { background: linear-gradient(180deg, rgba(14,17,22,.05) 0%, rgba(14,17,22,.7) 100%); }
.vid__play {
  position: absolute; z-index: 2; left: 50%; top: 50%; transform: translate(-50%, -50%);
  width: 74px; height: 74px; background: var(--red); color: #fff;
  display: grid; place-items: center;
  transition: transform .3s var(--ease), background .3s var(--ease);
}
.vid:hover .vid__play { transform: translate(-50%, -50%) scale(1.08); background: var(--red-dark); }
.vid__cap {
  position: absolute; z-index: 2; left: 0; right: 0; bottom: 0;
  padding: clamp(20px, 2.4vw, 28px);
  font-family: var(--font-display); font-weight: 600; font-size: clamp(15px, 1.3vw, 17px);
  color: #fff; text-align: left; line-height: 1.35;
}
.vid iframe { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 3; }
.vid--live::after, .vid--live .vid__play, .vid--live .vid__cap { display: none; }
.vid-note { margin-top: 20px; font-size: 13.5px; color: rgba(255, 255, 255, .45); }

/* ---------- Sektorler ---------- */
.sectors { display: grid; gap: 1px; background: var(--line); border-block: 1px solid var(--line); }
@media (min-width: 640px) { .sectors { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1000px) { .sectors { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
.sector { background: var(--paper); padding: clamp(28px, 2.8vw, 38px); display: flex; gap: 18px; }
.sector__mark { flex: none; width: 10px; height: 26px; background: var(--red); transform: skewX(-20deg); margin-top: 5px; }
.sector h3 { font-size: 1.08rem; }
.sector p { margin-top: 10px; font-size: 15px; color: var(--ink-500); }

/* ---------- Logo duvari ---------- */
.logos {
  display: grid; gap: 1px; background: var(--line);
  border: 1px solid var(--line);
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
@media (min-width: 520px) { .logos { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (min-width: 760px) { .logos { grid-template-columns: repeat(4, minmax(0, 1fr)); } }
@media (min-width: 1040px) { .logos { grid-template-columns: repeat(6, minmax(0, 1fr)); } }
.logos--dist { grid-template-columns: repeat(2, minmax(0, 1fr)); max-width: 900px; }
@media (min-width: 760px) { .logos--dist { grid-template-columns: repeat(4, minmax(0, 1fr)); } }
.logo {
  background: var(--paper); aspect-ratio: 5 / 2;
  display: grid; place-items: center; padding: 14px;
}
.logo img {
  max-width: 100%; max-height: 100%; width: auto;
  filter: grayscale(1); opacity: .62;
  transition: filter .3s var(--ease), opacity .3s var(--ease), transform .3s var(--ease);
}
.logo:hover img { filter: grayscale(0); opacity: 1; transform: scale(1.04); }
.logos-more { margin-top: 44px; display: flex; justify-content: center; }

/* ---------- CTA seridi ---------- */
.cta-band { position: relative; overflow: hidden; background: var(--ink-900); color: #fff; }
.cta-band::before {
  content: ""; position: absolute; top: 0; bottom: 0; right: -4%; width: 34%;
  background: linear-gradient(180deg, rgba(211,17,26,.22), rgba(211,17,26,0));
  transform: skewX(-14deg);
}
.cta-band__inner { position: relative; z-index: 2; display: grid; gap: 32px; align-items: center; }
@media (min-width: 880px) { .cta-band__inner { grid-template-columns: 1fr auto; gap: 56px; } }

/* ---------- Footer ---------- */
.footer { background: #0A0C10; color: rgba(255, 255, 255, .62); font-size: 15px; }
.footer__grid { display: grid; gap: clamp(36px, 4vw, 56px); padding-block: clamp(56px, 6vw, 80px); }
@media (min-width: 820px) { .footer__grid { grid-template-columns: 1.5fr 1fr 1.2fr; } }
.footer__logo svg, .footer__logo img { width: 190px; height: auto; }
.footer__about { margin-top: 22px; max-width: 44ch; font-size: 14.5px; line-height: 1.7; }
.footer h4 {
  font-size: 12px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
  color: #fff; margin-bottom: 20px;
}
.footer li + li { margin-top: 11px; }
.footer a:hover { color: #fff; }
.footer address { font-style: normal; line-height: 1.8; }
.footer address a { color: #fff; font-weight: 500; }
.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, .1);
  padding-block: 26px;
  display: flex; flex-wrap: wrap; gap: 12px 24px; justify-content: space-between;
  font-size: 13.5px; color: rgba(255, 255, 255, .42);
}

/* ---------- Mobil ---------- */
@media (max-width: 1020px) {
  /* Sabit height DEGIL: menu acilinca cubugun buyumesi gerekiyor,
     aksi halde nav header'in disina tasip icerigin uzerine biniyor. */
  .header__bar { height: auto; min-height: 72px; gap: 16px; flex-wrap: wrap; }
  .header__logo svg, .header__logo img { width: 148px; }
  .header__phone span { display: none; }
  .header__toggle { display: block; margin-left: auto; order: 3; }

  /* menu acikken zemin tam opak olmali (koyu hero uzerinde yari saydam gri okunuyor) */
  .header[data-nav-open="true"] { background: var(--paper); }

  .header__nav {
    order: 4; margin-left: 0; flex-basis: 100%;
    display: none; border-top: 1px solid var(--line); padding-block: 6px 18px;
    max-height: calc(100dvh - 72px); overflow-y: auto;
  }
  .header__nav[data-open="true"] { display: block; }
  .header__nav ul { flex-direction: column; gap: 0; }
  .header__nav a { padding: 14px 0; font-size: 16px; }
  .header__nav a::after { left: 0; right: 0; bottom: 8px; }
}

/* ---------- Ince ayarlar ---------- */
.cta-band .lead { color: rgba(255, 255, 255, .72); }
.cta-band__inner .btn { white-space: nowrap; }

/* ardisik acik bolumler arasinda ustuste binen bosluğu kis */
.section + .section, .section + .section--tight { padding-top: clamp(48px, 5vw, 76px); }
.section--dark + .section, .section--alt + .section { padding-top: var(--sec); }

.pillar__desc { font-size: 16px; }
.step p, .sector p { font-size: 15.5px; }

/* video kapak: fotograf gelene kadar marka dokusu */
.vid { background-image:
  linear-gradient(135deg, rgba(211,17,26,.30) 0%, rgba(211,17,26,0) 46%),
  linear-gradient(180deg, #1B2028 0%, #0E1116 100%); }

/* ==========================================================================
   IC SAYFALAR
   ========================================================================== */

/* ---------- Sayfa hero ---------- */
.phero {
  position: relative; overflow: hidden;
  background: var(--ink-900); color: #fff;
  padding-block: clamp(64px, 8vw, 108px);
}
.phero__inner { position: relative; z-index: 2; max-width: 900px; }
.phero h1 { font-weight: 800; letter-spacing: -0.032em; }
.phero__lead {
  margin-top: 24px; max-width: 62ch;
  font-size: clamp(1.02rem, 1.35vw, 1.15rem); color: rgba(255, 255, 255, 0.72);
}
.phero__motif { position: absolute; inset: 0; z-index: 1; pointer-events: none; overflow: hidden; }
.phero__motif::before {
  content: ""; position: absolute; top: -30%; right: -8%; width: 42%; height: 160%;
  background: linear-gradient(180deg, rgba(211,17,26,.15), rgba(211,17,26,0));
  transform: skewX(-14deg);
}
.phero__motif i {
  position: absolute; bottom: 0; width: 14px; background: var(--red); transform: skewX(-20deg);
}
.phero__motif i:nth-child(1) { right: clamp(24px, 6vw, 92px); height: clamp(58px, 9vw, 118px); opacity: .9; }
.phero__motif i:nth-child(2) { right: calc(clamp(24px, 6vw, 92px) + 26px); height: clamp(42px, 6.5vw, 86px); opacity: .55; }
.phero__motif i:nth-child(3) { right: calc(clamp(24px, 6vw, 92px) + 52px); height: clamp(28px, 4.5vw, 58px); opacity: .3; }

/* ---------- Kurumsal: vizyon / misyon ---------- */
.vm { display: grid; gap: 1px; background: var(--line-dark); margin-top: 8px; }
@media (min-width: 800px) { .vm { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
.vm__item { background: var(--ink-900); padding: clamp(28px, 3vw, 42px) clamp(24px, 2.6vw, 38px) clamp(32px, 3.4vw, 46px); }
.vm__item h2 { color: #fff; }
.vm__item p { margin-top: 16px; color: rgba(255, 255, 255, .7); font-size: 16px; }

/* ---------- Kurumsal: politika ---------- */
.policy { display: grid; gap: clamp(32px, 4vw, 60px); }
@media (min-width: 900px) { .policy { grid-template-columns: 1fr 1fr; } }
.policy__body p { color: var(--ink-500); }
.policy__body p + p { margin-top: 18px; }
.policy__points { border-top: 1px solid var(--line); }
.policy__points li { display: flex; gap: 16px; padding: 20px 0; border-bottom: 1px solid var(--line); }
.policy__mark { flex: none; width: 9px; height: 22px; background: var(--red); transform: skewX(-20deg); margin-top: 4px; }
.policy__points strong { display: block; font-family: var(--font-display); font-size: 15.5px; color: var(--ink-900); }
.policy__points span { display: block; margin-top: 5px; font-size: 15px; color: var(--ink-500); }

/* ---------- Hizmetler: hizli gecis ---------- */
.svc-jump { background: var(--ink-800); border-bottom: 1px solid var(--line-dark); }
.svc-jump__inner { display: flex; flex-wrap: wrap; gap: 2px 0; }
.svc-jump a {
  display: inline-flex; align-items: baseline; gap: 10px;
  padding: 20px 26px 20px 0; margin-right: 26px;
  font-family: var(--font-display); font-weight: 600; font-size: 15px; color: rgba(255, 255, 255, .78);
  border-bottom: 2px solid transparent;
}
.svc-jump a span { font-size: 12px; letter-spacing: .1em; color: var(--red); }
.svc-jump a:hover { color: #fff; border-bottom-color: var(--red); }

/* ---------- Hizmetler: grup basligi ---------- */
.svc-head { max-width: none; display: grid; gap: 18px; }
@media (min-width: 820px) { .svc-head { grid-template-columns: auto minmax(0, 1fr); gap: 40px; align-items: start; } }
.svc-head__no {
  font-family: var(--font-display); font-weight: 800; font-size: clamp(2.6rem, 5vw, 4rem);
  line-height: .9; letter-spacing: -.05em; color: transparent;
  -webkit-text-stroke: 1.6px var(--red);
}
.svc-head .lead { margin-top: 16px; }

/* ---------- Hizmetler: kalemler ---------- */
.svc-list { display: grid; gap: 1px; background: var(--line); border-block: 1px solid var(--line); }
.svc {
  background: var(--paper);
  display: grid; gap: 18px;
  padding: clamp(28px, 3.2vw, 44px) 0;
  scroll-margin-top: 110px;
}
.section--alt .svc { background: var(--paper-alt); }
@media (min-width: 900px) { .svc { grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr); gap: clamp(32px, 4vw, 64px); } }
.svc__lead { margin-top: 14px; font-size: 16px; color: var(--ink-500); }
.svc__bullets li {
  position: relative; padding-left: 26px; font-size: 15.5px; color: var(--ink-500);
}
.svc__bullets li + li { margin-top: 12px; }
.svc__bullets li::before {
  content: ""; position: absolute; left: 0; top: 10px;
  width: 9px; height: 9px; background: var(--red); transform: skewX(-20deg);
}
.svc__note {
  margin-top: 22px; padding-left: 20px; border-left: 2px solid var(--red);
  font-size: 15px; color: var(--ink-700);
}

/* ---------- Iletisim ---------- */
.contact { display: grid; gap: clamp(40px, 5vw, 72px); }
@media (min-width: 900px) { .contact { grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr); } }
.cinfo { padding: 24px 0; border-top: 1px solid var(--line); }
.cinfo:first-of-type { margin-top: 28px; }
.cinfo__label {
  display: block; margin-bottom: 12px;
  font-family: var(--font-display); font-size: 11.5px; font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase; color: var(--ink-400);
}
.cinfo address { font-style: normal; line-height: 1.75; color: var(--ink-500); margin-bottom: 14px; }
.cinfo address strong { color: var(--ink-900); font-weight: 600; }
.cinfo__big {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(1.15rem, 1.8vw, 1.45rem); color: var(--ink-900);
  border-bottom: 2px solid transparent;
}
.cinfo__big:hover { border-bottom-color: var(--red); color: var(--red); }

.cform { margin-top: 28px; display: grid; gap: 20px; }
.cform__row { display: grid; gap: 20px; }
@media (min-width: 620px) { .cform__row { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
.cform label {
  display: block;
  font-family: var(--font-display); font-weight: 600; font-size: 13.5px; color: var(--ink-700);
}
.cform label span { color: var(--red); }
.cform input, .cform select, .cform textarea {
  display: block; width: 100%; margin-top: 9px;
  padding: 13px 15px;
  font: inherit; font-size: 16px; color: var(--ink-900);
  background: var(--paper); border: 1px solid var(--line); border-radius: 0;
  transition: border-color .2s var(--ease);
}
.cform input:focus, .cform select:focus, .cform textarea:focus { border-color: var(--ink-900); outline-offset: 1px; }
.cform textarea { resize: vertical; min-height: 130px; }
.cform__kvkk { font-size: 13px; color: var(--ink-400); max-width: 60ch; }
.cform__off-note { color: var(--ink-500); max-width: 54ch; }
.cform__off-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 24px; }
.cform--off { padding: clamp(28px, 3vw, 40px); background: var(--paper-alt); }

.map { height: clamp(340px, 44vw, 500px); background: var(--paper-alt); }
/* Gri filtre yok: kirmizi konum ignesi haritanin tek onemli ogesi,
   grayscale onu da griye cevirip gorunmez kiliyordu. */
.map iframe { width: 100%; height: 100%; border: 0; }

/* uc video varsa genis ekranda tek sirada */
@media (min-width: 1100px) {
  .cases:has(> .vid:nth-child(3)) { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .cases:has(> .vid:nth-child(3)) .vid__cap { font-size: 15px; padding: 20px; }
}

/* ---------- 404 ---------- */
.nf {
  position: relative; overflow: hidden;
  background: var(--ink-900); color: #fff;
  min-height: calc(100dvh - 84px - 120px);
  display: flex; align-items: center;
  padding-block: clamp(72px, 10vw, 130px);
}
.nf__inner { position: relative; z-index: 2; max-width: 760px; }
.nf__code {
  display: block;
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(4rem, 14vw, 9rem); line-height: .85; letter-spacing: -.06em;
  color: transparent; -webkit-text-stroke: 2px var(--red);
  margin-bottom: clamp(20px, 3vw, 32px);
}
.nf h1 { font-weight: 800; letter-spacing: -.032em; }
.nf__lead {
  margin-top: 22px; max-width: 54ch;
  font-size: clamp(1.02rem, 1.35vw, 1.15rem); color: rgba(255, 255, 255, .72);
}
.nf__links-title {
  margin-top: clamp(36px, 4vw, 52px); margin-bottom: 14px;
  font-family: var(--font-display); font-size: 11.5px; font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase; color: rgba(255, 255, 255, .45);
}
.nf__links { display: flex; flex-wrap: wrap; gap: 8px 28px; }
.nf__links a {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 0;
  font-family: var(--font-display); font-weight: 600; font-size: 15.5px;
  color: #fff; border-bottom: 2px solid transparent;
}
.nf__links a:hover { border-bottom-color: var(--red); color: #FF4A52; }
.nf__links svg { transition: transform .22s var(--ease); }
.nf__links a:hover svg { transform: translateX(4px); }
.nf__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: clamp(36px, 4vw, 52px); }

.nf__motif { position: absolute; inset: 0; z-index: 1; pointer-events: none; overflow: hidden; }
.nf__motif::before {
  content: ""; position: absolute; top: -25%; right: -8%; width: 44%; height: 160%;
  background: linear-gradient(180deg, rgba(211,17,26,.16), rgba(211,17,26,0));
  transform: skewX(-14deg);
}
.nf__motif i { position: absolute; bottom: 0; width: 15px; background: var(--red); transform: skewX(-20deg); }
.nf__motif i:nth-child(1) { right: clamp(24px, 7vw, 110px); height: clamp(70px, 12vw, 160px); opacity: .9; }
.nf__motif i:nth-child(2) { right: calc(clamp(24px, 7vw, 110px) + 28px); height: clamp(50px, 8.5vw, 118px); opacity: .55; }
.nf__motif i:nth-child(3) { right: calc(clamp(24px, 7vw, 110px) + 56px); height: clamp(34px, 6vw, 80px); opacity: .3; }
