/* ============================================================
   MARINA NOVA TEMİZLİK — main.css
   Koyu lacivert, sinematik, premium. Tokens logodan örneklendi.
   ============================================================ */

:root {
  --navy-950: #050d1a;
  --navy-900: #071a33;
  --navy-800: #0a2d64;
  --navy-700: #123b7a;
  --sky-400: #6ac0f8;
  --sky-200: #b9e2ff;
  --foam: #f4f8fc;
  --mist: rgba(244, 248, 252, 0.62);
  --mist-2: rgba(244, 248, 252, 0.4);
  --line: rgba(106, 192, 248, 0.18);
  --line-2: rgba(244, 248, 252, 0.1);
  --glass: rgba(255, 255, 255, 0.05);

  --serif: "Fraunces", "Times New Roman", serif;
  --sans: "DM Sans", system-ui, -apple-system, "Segoe UI", sans-serif;

  --container: 1400px;
  --gutter: 24px;
  --section-y: 96px;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --header-h: 84px;
}
@media (min-width: 1024px) {
  :root { --gutter: 64px; --section-y: 160px; }
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: auto; }
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-smooth [data-lenis-prevent] { overscroll-behavior: contain; }
.lenis.lenis-stopped { overflow: hidden; }
body {
  margin: 0;
  background: var(--navy-950);
  color: var(--foam);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}
img, video, canvas { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
h1, h2, h3, h4, p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }
::selection { background: var(--sky-400); color: var(--navy-950); }
:focus-visible { outline: 2px solid var(--sky-400); outline-offset: 4px; border-radius: 4px; }

/* ---------- Typography ---------- */
.serif { font-family: var(--serif); font-weight: 300; letter-spacing: -0.01em; }
.eyebrow {
  font-family: var(--sans);
  font-size: 11.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mist);
  display: inline-flex; align-items: center; gap: 12px;
}
.eyebrow::before { content: ""; width: 24px; height: 1px; background: var(--sky-400); opacity: 0.7; }
.eyebrow.no-line::before { display: none; }

.h-display {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(40px, 11vw, 56px);
  line-height: 0.98;
  letter-spacing: -0.015em;
}
.h-1 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(36px, 5.2vw, 72px);
  line-height: 1.02;
  letter-spacing: -0.015em;
}
.h-2 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(26px, 3vw, 40px);
  line-height: 1.12;
}
@media (min-width: 1024px) {
  .h-display { font-size: clamp(56px, 7vw, 112px); line-height: 0.95; }
}
.h-display em, .h-1 em, .h-2 em, em.accent {
  font-style: italic;
  font-weight: 300;
  color: var(--sky-200);
}
.lead { font-size: clamp(16px, 1.4vw, 19px); line-height: 1.6; color: var(--mist); max-width: 46ch; }
.small { font-size: 13.5px; color: var(--mist); }
.muted { color: var(--mist); }

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.section { position: relative; padding-block: var(--section-y); }
.section--tight { padding-block: calc(var(--section-y) * 0.6); }
.grid-2 { display: grid; gap: 40px; }
@media (min-width: 1024px) { .grid-2 { grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; } }
.divider { height: 1px; background: var(--line-2); }

/* ---------- Buttons ---------- */
.btn {
  position: relative;
  display: inline-flex; align-items: center; gap: 12px;
  padding: 16px 26px;
  border-radius: 999px;
  font-weight: 500; font-size: 15px; line-height: 1;
  transition: transform 0.6s var(--ease-out), background 0.3s, color 0.3s, border-color 0.3s;
  will-change: transform;
  white-space: nowrap;
}
.btn .arrow { width: 14px; height: 14px; transition: transform 0.5s var(--ease-out); }
.btn:hover .arrow { transform: translate(3px, -3px); }
.btn--primary { background: var(--foam); color: var(--navy-900); }
.btn--primary:hover { background: #fff; }
.btn--ghost { border: 1px solid var(--line); color: var(--foam); background: transparent; }
.btn--ghost:hover { border-color: var(--sky-400); background: rgba(106, 192, 248, 0.06); }
.btn--sm { padding: 12px 18px; font-size: 13.5px; }
.link-line {
  position: relative; display: inline-flex; align-items: center; gap: 8px;
  font-size: 14.5px; font-weight: 500; padding-bottom: 3px;
  background-image: linear-gradient(var(--sky-400), var(--sky-400));
  background-size: 0% 1px; background-repeat: no-repeat; background-position: left bottom;
  transition: background-size 0.6s var(--ease-out);
}
.link-line:hover { background-size: 100% 1px; }
.phone-link { font-family: var(--sans); font-size: clamp(18px, 1.6vw, 22px); letter-spacing: 0.02em; font-weight: 500; }

/* ---------- Grain overlay ---------- */
.grain {
  position: fixed; inset: -50%; z-index: 60; pointer-events: none;
  width: 200%; height: 200%; opacity: 0.035;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='300' height='300'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.6 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  animation: grain 1.2s steps(6) infinite;
}
@keyframes grain {
  0% { transform: translate(0, 0); } 20% { transform: translate(-3%, 2%); } 40% { transform: translate(2%, -3%); }
  60% { transform: translate(-1%, 3%); } 80% { transform: translate(3%, -1%); } 100% { transform: translate(0, 0); }
}
@media (max-width: 767px), (prefers-reduced-motion: reduce) { .grain { display: none; } }

/* ---------- Preloader ---------- */
.preloader {
  position: fixed; inset: 0; z-index: 100;
  background: var(--navy-950);
  display: grid; place-items: center;
  clip-path: inset(0 0 0 0);
}
.preloader__inner { width: min(320px, 70vw); display: grid; gap: 22px; justify-items: center; }
.preloader__logo { height: 110px; width: auto; opacity: 0; }
.preloader__bar { width: 100%; height: 1px; background: var(--line-2); position: relative; overflow: hidden; }
.preloader__bar span { position: absolute; inset: 0; background: var(--sky-400); transform-origin: left; transform: scaleX(0); }
.preloader__count { font-family: var(--serif); font-size: 13px; letter-spacing: 0.1em; color: var(--mist); justify-self: end; }
body.is-loading { overflow: hidden; }

/* ---------- Header ---------- */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  height: var(--header-h);
  display: flex; align-items: center;
  transition: transform 0.6s var(--ease-out), background 0.4s, backdrop-filter 0.4s, border-color 0.4s;
  border-bottom: 1px solid transparent;
}
.header.is-scrolled { background: rgba(5, 13, 26, 0.78); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); border-color: var(--line-2); }
.header.is-hidden { transform: translateY(-100%); }
.header__inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.header__logo img { height: 36px; width: auto; }
@media (min-width: 1024px) { .header__logo img { height: 44px; } }
.nav { display: none; gap: 30px; }
.nav a { font-size: 14px; color: var(--mist); position: relative; padding: 6px 0; transition: color 0.3s; }
.nav a::after { content: ""; position: absolute; left: 0; bottom: 0; height: 1px; width: 100%; background: var(--sky-400); transform: scaleX(0); transform-origin: right; transition: transform 0.5s var(--ease-out); }
.nav a:hover, .nav a.is-active { color: var(--foam); }
.nav a:hover::after, .nav a.is-active::after { transform: scaleX(1); transform-origin: left; }
.header__cta { display: none; }
@media (min-width: 1024px) { .nav { display: flex; } .header__cta { display: inline-flex; } }
.burger { display: grid; gap: 6px; padding: 10px; }
.burger span { width: 26px; height: 1.5px; background: var(--foam); transition: transform 0.5s var(--ease-out), opacity 0.3s; transform-origin: center; }
@media (min-width: 1024px) { .burger { display: none; } }
body.menu-open .burger span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
body.menu-open .burger span:nth-child(2) { transform: translateY(-7.5px) rotate(-45deg); }

.mobile-menu {
  position: fixed; inset: 0; z-index: 45; background: var(--navy-900);
  display: flex; flex-direction: column; justify-content: center; padding: 120px var(--gutter) 48px;
  clip-path: inset(0 0 100% 0); pointer-events: none;
}
.mobile-menu.is-open { pointer-events: auto; }
.mobile-menu__links a { display: block; font-family: var(--serif); font-weight: 300; font-size: 40px; line-height: 1.25; padding: 4px 0; transform: translateY(40px); opacity: 0; }
.mobile-menu__foot { margin-top: auto; display: grid; gap: 10px; padding-top: 32px; border-top: 1px solid var(--line-2); }

/* ---------- WhatsApp float ---------- */
.wa-float {
  position: fixed; right: 20px; bottom: 20px; z-index: 55;
  display: flex; align-items: center; gap: 0;
  height: 56px; padding: 0 16px; border-radius: 999px;
  background: rgba(7, 26, 51, 0.85); border: 1px solid var(--line);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  transition: gap 0.5s var(--ease-out), padding 0.5s var(--ease-out), border-color 0.3s, box-shadow 0.4s;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}
.wa-float svg { width: 22px; height: 22px; flex: none; }
.wa-float span { max-width: 0; overflow: hidden; white-space: nowrap; font-size: 14px; font-weight: 500; transition: max-width 0.6s var(--ease-out); }
.wa-float:hover { gap: 10px; padding: 0 20px 0 16px; border-color: var(--sky-400); }
.wa-float:hover span { max-width: 80px; }

/* ---------- Custom cursor ---------- */
.cursor { position: fixed; top: 0; left: 0; z-index: 90; pointer-events: none; width: 12px; height: 12px; margin: -6px 0 0 -6px; border-radius: 50%; background: var(--foam); mix-blend-mode: difference; transition: width 0.4s var(--ease-out), height 0.4s var(--ease-out), margin 0.4s var(--ease-out), background 0.3s, opacity 0.3s; display: none; opacity: 0; }
.cursor.is-link { width: 56px; height: 56px; margin: -28px 0 0 -28px; background: rgba(255, 255, 255, 0.85); }
.cursor.is-view { width: 72px; height: 72px; margin: -36px 0 0 -36px; background: rgba(244, 248, 252, 0.92); }
.cursor::after { content: attr(data-label); position: absolute; inset: 0; display: grid; place-items: center; font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--navy-950); opacity: 0; transition: opacity 0.2s; }
.cursor.is-view::after { opacity: 1; }
@media (pointer: fine) and (min-width: 1024px) { .cursor { display: block; } body.has-cursor * { cursor: none !important; } }

/* ---------- Reveal helpers ---------- */
.split-line { display: block; overflow: hidden; padding-bottom: 0.08em; margin-bottom: -0.08em; }
.split-line > span { display: block; transform: translateY(110%); will-change: transform; }
.reveal { opacity: 0; transform: translateY(24px); }
.no-js .split-line > span, .no-js .reveal { transform: none; opacity: 1; }

/* ---------- HERO ---------- */
.hero { position: relative; height: 100svh; min-height: 620px; overflow: hidden; background: var(--navy-950); }
.hero__media { position: absolute; inset: 0; }
.hero__media canvas, .hero__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero__media img { transform: scale(1.08); }
.hero__shade { position: absolute; inset: 0; pointer-events: none;
  background:
    linear-gradient(to top, var(--navy-950) 0%, rgba(5, 13, 26, 0.55) 26%, rgba(5, 13, 26, 0) 55%),
    linear-gradient(to bottom, rgba(5, 13, 26, 0.55) 0%, rgba(5, 13, 26, 0) 32%),
    linear-gradient(to right, rgba(5, 13, 26, 0.55) 0%, rgba(5, 13, 26, 0) 60%);
}
.hero__content { position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: flex-end; padding-bottom: 72px; }
.hero__grid { display: grid; gap: 28px; align-items: end; }
@media (min-width: 1024px) { .hero__grid { grid-template-columns: 1.3fr 1fr; gap: 40px; } .hero__content { padding-bottom: 88px; } }
.hero__eyebrow { margin-bottom: 20px; }
.hero__eyebrow .ch { display: inline-block; opacity: 0; transform: translateY(8px); }
.hero__lead { margin-top: 24px; }
.hero__actions { display: flex; flex-wrap: wrap; align-items: center; gap: 18px 28px; margin-top: 32px; }
.hero__call { display: inline-flex; align-items: center; gap: 14px; }
.hero__call .ico { width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--line); display: grid; place-items: center; }
.hero__call .ico svg { width: 16px; height: 16px; }
.hero__call small { display: block; font-size: 10.5px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--mist); margin-bottom: 4px; }
.hero__aside { justify-self: end; text-align: right; display: none; }
@media (min-width: 1024px) { .hero__aside { display: block; } }
.hero__aside p { font-family: var(--serif); font-style: italic; font-weight: 300; font-size: clamp(22px, 2vw, 30px); line-height: 1.25; }
.hero__aside p small { display: block; font-size: 0.62em; margin-top: 6px; color: var(--sky-200); }
.hero__aside .rule { width: 72px; height: 1px; background: var(--sky-400); margin: 18px 0 0 auto; opacity: 0.8; }
.hero__foot { position: absolute; left: 0; right: 0; bottom: 24px; display: flex; justify-content: space-between; align-items: center; font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--mist); }
.hero__foot .scroll-hint { display: inline-flex; align-items: center; gap: 8px; }
.hero__foot .scroll-hint i { width: 1px; height: 28px; background: var(--sky-400); display: inline-block; transform-origin: top; animation: hint 1.8s var(--ease-out) infinite; }
@keyframes hint { 0% { transform: scaleY(0); transform-origin: top; } 50% { transform: scaleY(1); transform-origin: top; } 51% { transform-origin: bottom; } 100% { transform: scaleY(0); transform-origin: bottom; } }
.hero__mid { position: absolute; inset: 0; display: grid; place-items: center; text-align: center; pointer-events: none; opacity: 0; padding: 0 var(--gutter); }
.hero__mid p { font-family: var(--serif); font-style: italic; font-weight: 300; font-size: clamp(30px, 4.6vw, 64px); line-height: 1.15; max-width: 18ch; }
.hero__mid p span { color: var(--sky-200); }

/* ---------- Services ---------- */
.services { background: var(--navy-950); }
.services__head { display: grid; gap: 24px; margin-bottom: 56px; }
@media (min-width: 1024px) { .services__head { grid-template-columns: 1fr 1fr; align-items: end; } .services__head p { justify-self: end; max-width: 42ch; } }
.services__track { display: grid; gap: 40px; }
@media (min-width: 1024px) {
  .services__pin { height: 100vh; display: flex; align-items: center; overflow: hidden; }
  .services__track { display: flex; gap: 32px; padding-inline: var(--gutter); width: max-content; will-change: transform; }
}
.svc-card { position: relative; display: grid; gap: 18px; }
@media (min-width: 1024px) { .svc-card { width: clamp(300px, 24vw, 380px); flex: none; } }
.svc-card__media { position: relative; aspect-ratio: 3 / 4; border-radius: 20px; overflow: hidden; background: var(--navy-800); }
.svc-card__media img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.06); transition: transform 1.1s var(--ease-out); }
.svc-card:hover .svc-card__media img { transform: scale(1.1); }
.svc-card__num { position: absolute; top: 18px; left: 18px; font-family: var(--serif); font-size: 13px; letter-spacing: 0.1em; color: var(--sky-200); padding: 6px 10px; border-radius: 999px; background: rgba(5, 13, 26, 0.5); backdrop-filter: blur(6px); }
.svc-card__body { display: grid; grid-template-columns: 1fr auto; gap: 6px 16px; align-items: start; }
.svc-card__body h3 { font-family: var(--sans); font-weight: 500; font-size: 18px; line-height: 1.3; position: relative; display: inline-block; }
.svc-card__body h3::after { content: ""; position: absolute; left: 0; bottom: -6px; height: 1px; width: 100%; background: var(--sky-400); transform: scaleX(0); transform-origin: left; transition: transform 0.6s var(--ease-out); }
.svc-card:hover h3::after { transform: scaleX(1); }
.svc-card__body p { grid-column: 1; font-size: 14px; color: var(--mist); }
.svc-card__arrow { grid-column: 2; grid-row: 1 / span 2; width: 20px; height: 20px; margin-top: 2px; transition: transform 0.5s var(--ease-out); }
.svc-card:hover .svc-card__arrow { transform: translateX(6px); }
.svc-card > a { position: absolute; inset: 0; z-index: 2; }

/* ---------- Marquee ---------- */
.marquee { padding: 28px 0; border-top: 1px solid var(--line-2); border-bottom: 1px solid var(--line-2); overflow: hidden; background: var(--navy-950); }
.marquee__row { display: flex; width: max-content; white-space: nowrap; will-change: transform; }
.marquee__row + .marquee__row { margin-top: 14px; }
.marquee__row span { font-family: var(--serif); font-style: italic; font-weight: 300; font-size: clamp(18px, 2vw, 26px); color: var(--mist); padding-right: 28px; }
.marquee__row span i { font-style: normal; color: var(--sky-400); padding-left: 28px; font-size: 0.7em; vertical-align: middle; }

/* ---------- Approach ---------- */
.approach { background: var(--navy-900); }
.approach__sticky { position: sticky; top: 120px; }
.steps { display: grid; }
.step { position: relative; display: grid; grid-template-columns: 48px 1fr; gap: 16px; padding: 36px 0; border-top: 1px solid var(--line-2); }
.step::before { content: ""; position: absolute; top: -1px; left: 0; height: 1px; width: 100%; background: var(--sky-400); transform: scaleX(0); transform-origin: left; }
.step.is-in::before { animation: lineIn 1.2s var(--ease-out) forwards; }
@keyframes lineIn { to { transform: scaleX(1); } }
.step__num { font-family: var(--serif); font-size: 15px; color: var(--sky-400); padding-top: 4px; }
.step h3 { font-family: var(--sans); font-weight: 500; font-size: clamp(18px, 1.6vw, 22px); margin-bottom: 8px; }
.step p { color: var(--mist); font-size: 15px; max-width: 52ch; }

/* ---------- About ---------- */
.about { background: var(--navy-900); overflow: hidden; }
.about__grid { display: grid; gap: 48px; }
@media (min-width: 1024px) { .about__grid { grid-template-columns: 1fr 1fr; gap: 0; align-items: stretch; } .about .container { max-width: none; padding: 0; } .about__text { padding: var(--section-y) var(--gutter); display: flex; flex-direction: column; justify-content: center; max-width: 720px; margin-left: auto; width: 100%; } }
.about__text p + p { margin-top: 18px; }
.about__media { position: relative; aspect-ratio: 4 / 5; overflow: hidden; border-radius: 20px; }
@media (min-width: 1024px) { .about__media { aspect-ratio: auto; min-height: 100vh; border-radius: 0; } }
.about__media img { width: 100%; height: 116%; margin-top: -8%; object-fit: cover; will-change: transform; }
.about__tag { position: absolute; left: 28px; bottom: 28px; font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; line-height: 1.8; color: var(--foam); }
.about__tag small { display: block; letter-spacing: 0.05em; text-transform: none; color: var(--mist); margin-top: 6px; font-size: 11px; }

/* ---------- Staffing ---------- */
.staffing { background: var(--navy-950); }
.staff-card { position: relative; border-radius: 24px; border: 1px solid var(--line-2); background: var(--glass); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); padding: 40px 28px; display: grid; gap: 36px; overflow: hidden; }
@media (min-width: 1024px) { .staff-card { grid-template-columns: 1.1fr 1fr; padding: 72px 64px; gap: 64px; } }
.staff-card::before { content: ""; position: absolute; left: 0; top: 0; width: 2px; height: 100%; background: var(--sky-400); transform: scaleY(0); transform-origin: top; }
.staff-list { display: grid; gap: 0; align-self: center; }
.staff-list li { display: flex; align-items: center; gap: 16px; padding: 18px 0; border-top: 1px solid var(--line-2); font-size: 16px; }
.staff-list li:last-child { border-bottom: 1px solid var(--line-2); }
.staff-list svg { width: 20px; height: 20px; color: var(--sky-400); flex: none; }
.staff-list small { color: var(--mist); font-size: 13px; margin-left: auto; text-align: right; }

/* ---------- Process ---------- */
.process { background: var(--navy-950); }
.process__grid { position: relative; display: grid; gap: 40px; margin-top: 56px; }
@media (min-width: 1024px) { .process__grid { grid-template-columns: repeat(4, 1fr); gap: 32px; } }
.process__line { position: absolute; top: 24px; left: 0; right: 0; height: 1px; display: none; }
@media (min-width: 1024px) { .process__line { display: block; } }
.process__line line { stroke: var(--sky-400); stroke-width: 1; stroke-dasharray: 2000; stroke-dashoffset: 2000; }
.pstep { display: grid; gap: 18px; position: relative; }
.pstep__dot { width: 48px; height: 48px; border-radius: 50%; border: 1px solid var(--line); display: grid; place-items: center; background: var(--navy-950); font-family: var(--serif); font-size: 15px; color: var(--sky-200); position: relative; z-index: 1; }
.pstep h3 { font-family: var(--sans); font-weight: 500; font-size: 19px; }
.pstep p { color: var(--mist); font-size: 14.5px; max-width: 30ch; }

/* ---------- Stats ---------- */
.stats { background: var(--navy-900); }
.stats__grid { display: grid; gap: 32px; grid-template-columns: repeat(2, 1fr); }
@media (min-width: 1024px) { .stats__grid { grid-template-columns: repeat(4, 1fr); } }
.stat { border-top: 1px solid var(--line-2); padding-top: 22px; }
.stat b { display: block; font-family: var(--serif); font-weight: 300; font-size: clamp(40px, 5vw, 72px); line-height: 1; color: var(--sky-200); }
.stat span { display: block; margin-top: 10px; font-size: 13.5px; color: var(--mist); }

/* ---------- Testimonials ---------- */
.testi { background: var(--navy-900); overflow: hidden; }
.testi__track { display: flex; gap: 24px; cursor: grab; user-select: none; padding-block: 8px; }
.testi__track:active { cursor: grabbing; }
.tcard { flex: 0 0 min(88vw, 420px); border-radius: 20px; border: 1px solid var(--line-2); background: var(--glass); padding: 32px; display: grid; gap: 22px; }
.tcard p { font-family: var(--serif); font-weight: 300; font-size: 19px; line-height: 1.45; }
.tcard small { display: block; font-size: 12.5px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--mist); }
.tcard .stars { color: var(--sky-400); letter-spacing: 4px; font-size: 12px; }

/* ---------- CTA ---------- */
.cta { position: relative; min-height: 88vh; display: flex; align-items: center; overflow: hidden; background: var(--navy-950); }
.cta__bg { position: absolute; inset: -6%; background-size: cover; background-position: center; filter: blur(6px); opacity: 0.35; will-change: transform; }
.cta__bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to bottom, var(--navy-950), rgba(5, 13, 26, 0.5) 40%, var(--navy-950)); }
.cta .container { position: relative; z-index: 1; display: grid; gap: 40px; }
@media (min-width: 1024px) { .cta .container { grid-template-columns: 1.4fr 1fr; align-items: end; } }
.cta__side { display: grid; gap: 22px; justify-items: start; }
.cta__side p { color: var(--mist); max-width: 34ch; }
.cta__foot { position: absolute; left: 0; right: 0; bottom: 28px; z-index: 1; display: flex; justify-content: space-between; font-size: 12px; color: var(--mist); letter-spacing: 0.06em; }

/* ---------- Footer ---------- */
.footer { background: linear-gradient(to bottom, var(--navy-950), #081f47); padding: 72px 0 28px; border-top: 1px solid var(--line-2); }
.footer__top { display: grid; gap: 36px; align-items: center; }
@media (min-width: 1024px) { .footer__top { grid-template-columns: auto 1fr auto; } .footer__mid { text-align: center; } }
.footer__logo img { height: 84px; width: auto; }
.footer__nav { display: flex; flex-wrap: wrap; gap: 8px 22px; font-size: 13.5px; color: var(--mist); }
.footer__nav a:hover { color: var(--foam); }
.footer__bottom { margin-top: 48px; padding-top: 22px; border-top: 1px solid var(--line-2); display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px; font-size: 12px; color: var(--mist-2); }
.footer__bottom a { text-decoration: underline; text-underline-offset: 3px; }

/* ---------- Sub pages ---------- */
.page-hero { position: relative; padding: calc(var(--header-h) + 72px) 0 56px; overflow: hidden; }
.page-hero--media { min-height: 72vh; display: flex; align-items: flex-end; padding-bottom: 64px; }
.page-hero__bg { position: absolute; inset: 0; }
.page-hero__bg img { width: 100%; height: 116%; margin-top: -8%; object-fit: cover; will-change: transform; }
.page-hero__bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, var(--navy-950) 0%, rgba(5, 13, 26, 0.5) 45%, rgba(5, 13, 26, 0.3) 100%); }
.page-hero .container { position: relative; z-index: 1; }
.page-hero p.lead { margin-top: 22px; }
.crumbs { font-size: 12px; letter-spacing: 0.08em; color: var(--mist); margin-bottom: 26px; display: flex; gap: 10px; }
.crumbs a:hover { color: var(--foam); }

.card-grid { display: grid; gap: 20px; }
@media (min-width: 768px) { .card-grid { grid-template-columns: 1fr 1fr; } }
.icard { border-radius: 20px; border: 1px solid var(--line-2); background: var(--glass); padding: 32px 28px; display: grid; gap: 14px; transition: border-color 0.4s, transform 0.6s var(--ease-out); }
.icard:hover { border-color: var(--line); transform: translateY(-3px); }
.icard svg { width: 26px; height: 26px; color: var(--sky-400); }
.icard h3 { font-family: var(--sans); font-weight: 500; font-size: 18px; }
.icard p { color: var(--mist); font-size: 14.5px; }

.check-list { display: grid; gap: 14px; }
.check-list li { display: grid; grid-template-columns: 20px 1fr; gap: 14px; align-items: start; padding: 14px 0; border-top: 1px solid var(--line-2); color: var(--foam); }
.check-list li svg { width: 18px; height: 18px; color: var(--sky-400); margin-top: 4px; }
.check-list li:last-child { border-bottom: 1px solid var(--line-2); }

.faq details { border-top: 1px solid var(--line-2); }
.faq details:last-child { border-bottom: 1px solid var(--line-2); }
.faq summary { list-style: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 20px; padding: 22px 0; font-weight: 500; font-size: 17px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary i { width: 28px; height: 28px; border-radius: 50%; border: 1px solid var(--line); display: grid; place-items: center; flex: none; transition: transform 0.5s var(--ease-out), background 0.3s; font-style: normal; font-weight: 300; }
.faq details[open] summary i { transform: rotate(45deg); background: rgba(106, 192, 248, 0.1); }
.faq details p { padding: 0 0 22px; color: var(--mist); max-width: 62ch; }

.note-box { border-left: 2px solid var(--sky-400); padding: 6px 0 6px 20px; color: var(--mist); font-size: 14.5px; }

/* Contact */
.contact-grid { display: grid; gap: 56px; }
@media (min-width: 1024px) { .contact-grid { grid-template-columns: 1.1fr 0.9fr; gap: 96px; } }
.form { display: grid; gap: 22px; }
.form-row { display: grid; gap: 22px; }
@media (min-width: 640px) { .form-row { grid-template-columns: 1fr 1fr; } }
.field { display: grid; gap: 8px; }
.field label { font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--mist); }
.field input, .field select, .field textarea {
  width: 100%; background: transparent; border: 0; border-bottom: 1px solid var(--line-2);
  color: var(--foam); font: inherit; font-size: 16px; padding: 12px 0; border-radius: 0; outline: none;
  transition: border-color 0.3s;
}
.field select option { background: var(--navy-900); color: var(--foam); }
.field textarea { min-height: 120px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--sky-400); }
.field .err { font-size: 12.5px; color: #ffb4b4; display: none; }
.field.is-invalid .err { display: block; }
.field.is-invalid input, .field.is-invalid select, .field.is-invalid textarea { border-color: #ff8f8f; }
.form__note { font-size: 12.5px; color: var(--mist-2); }
.contact-side { display: grid; gap: 36px; align-content: start; }
.contact-side .big-phone { font-family: var(--serif); font-weight: 300; font-size: clamp(32px, 4vw, 52px); letter-spacing: 0.01em; }
.chip-list { display: flex; flex-wrap: wrap; gap: 8px; }
.chip-list li { font-size: 13px; padding: 8px 14px; border-radius: 999px; border: 1px solid var(--line-2); color: var(--mist); }
.map-wrap { border-radius: 20px; overflow: hidden; border: 1px solid var(--line-2); aspect-ratio: 16 / 7; background: var(--navy-900); }
.map-wrap iframe { width: 100%; height: 100%; border: 0; filter: grayscale(1) invert(0.92) hue-rotate(185deg) saturate(1.6) brightness(0.85) contrast(1.05); }

/* Utilities */
.mt-1 { margin-top: 12px; } .mt-2 { margin-top: 24px; } .mt-3 { margin-top: 40px; } .mt-4 { margin-top: 64px; }
.mb-2 { margin-bottom: 24px; } .mb-3 { margin-bottom: 40px; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}

/* Yeni alt sayfalar: mevcut tasarım dilinin devamı. */
[hidden] { display: none !important; }
.contact-photo { margin: 0; position: relative; overflow: hidden; border-radius: 20px; aspect-ratio: 4 / 3; background: var(--navy-800); }
.contact-photo img { width: 100%; height: 116%; object-fit: cover; margin-top: -8%; }
.contact-photo figcaption { position: absolute; inset: auto 0 0; padding: 32px 20px 14px; background: linear-gradient(transparent, var(--navy-950)); color: var(--foam); }
.sub-cta { background: linear-gradient(135deg, var(--navy-900), var(--navy-950)); border-top: 1px solid var(--line); }
.sub-cta__actions { align-self: end; justify-self: start; display: flex; flex-direction: column; align-items: flex-start; }

.staff-process { display: grid; gap: 20px; padding: 0; margin: 0; list-style: none; }
@media (min-width: 900px) { .staff-process { grid-template-columns: repeat(3, 1fr); } }

.service-audience { background: var(--navy-900); border-block: 1px solid var(--line); }
.related-services { display: flex; flex-wrap: wrap; gap: 20px 36px; }
.page-hero--media .lead { color: var(--foam); }

/* Erişilebilirlik ve küçük ekran düzeltmeleri */
:root { --mist-2: rgba(244, 248, 252, 0.66); }
html { scroll-padding-top: 100px; }
[tabindex="-1"]:focus { outline: none; }
.skip-link { position: fixed; top: 12px; left: 16px; z-index: 150; transform: translateY(-180%); padding: 12px 20px; border-radius: 8px; color: var(--navy-950); background: var(--foam); }
.skip-link:focus { transform: none; }
.header__logo { padding-block: 11px; flex-shrink: 0; }
.header:focus-within { transform: none; }
.footer__logo img { height: 96px; }
.mobile-menu { z-index: 70; overflow-y: auto; overscroll-behavior: contain; padding-top: max(100px, env(safe-area-inset-top)); padding-bottom: max(28px, env(safe-area-inset-bottom)); }
.mobile-menu__close { position: absolute; top: 20px; right: var(--gutter); min-height: 48px; display: inline-flex; align-items: center; gap: 16px; font-size: 14px; }
.mobile-menu__close span { font-size: 30px; }
body.menu-open { overflow: hidden; }
.burger { min-width: 44px; min-height: 44px; align-content: center; }
.wa-float { right: max(20px, env(safe-area-inset-right)); bottom: max(20px, env(safe-area-inset-bottom)); }
.wa-float:focus-visible { gap: 10px; }
.wa-float:focus-visible span { max-width: 80px; }
.btn { min-height: 48px; will-change: auto; }
.split-line > span, .marquee__row, .page-hero__bg img, .about__media img, .cta__bg { will-change: auto; }
.field :is(input,select,textarea):focus-visible { outline: 2px solid var(--sky-400); outline-offset: 6px; border-radius: 2px; }
.field input::placeholder, .field textarea::placeholder { color: var(--mist); opacity: 1; }
.field .err, .field.is-invalid label { color: var(--sky-200); }
.field.is-invalid :is(input,select,textarea) { border-color: var(--sky-400); }
.form__note { color: var(--mist); }
.form, .contact-grid > *, .grid-2 > *, .staff-card > * { min-width: 0; }
.crumbs { flex-wrap: wrap; }
.crumbs a, .footer__nav a { min-height: 32px; display: inline-flex; align-items: center; }
.testi__track { overflow-x: auto; overscroll-behavior-x: contain; scrollbar-width: thin; scrollbar-color: var(--sky-400) transparent; }
.tcard { min-height: 225px; flex-basis: min(85%, 420px); }
.slider-controls { margin-top: 22px; display: flex; gap: 20px; align-items: center; }
.slider-controls button { width: 48px; height: 48px; border: 1px solid var(--line); border-radius: 50%; }
.slider-controls button:disabled { opacity: 0.35; cursor: default; }
.image-placeholder { background-color: var(--navy-800); }
.image-placeholder::before { content: "PLACEHOLDER — Görsel bekleniyor"; position: absolute; inset: 0; display: grid; place-items: center; padding: 24px; text-align: center; color: var(--sky-200); font-size: 12px; background: linear-gradient(rgba(10,45,100,.92),rgba(10,45,100,.92)),url('../../public/brand/logo-white.png') center / 30% auto no-repeat; }
.subpage .page-hero:not(.page-hero--media) .h-display { font-size: clamp(48px, 7vw, 96px); }
.page-hero--media .h-display { max-width: 18ch; }
.page-hero--media .page-hero__bg::after { background: linear-gradient(to top, var(--navy-950),rgba(5,13,26,.65) 60%,rgba(5,13,26,.4)); }
@media (min-width: 1024px) and (max-width: 1199px) {
  .nav, .header__cta { display: none; }
  .burger { display: grid; }
}
@media (min-width: 1200px) { .nav { gap: clamp(14px, 1.8vw, 30px); } .nav a { white-space: nowrap; font-size: 13px; } }
@media (max-width: 1023px) {
  .approach__sticky { position: static; }
  .about { padding-bottom: 56px; }
  .hero__foot { gap: 16px; font-size: 9px; letter-spacing: .08em; }
  .hero__foot > :first-child { max-width: 24ch; }
  .footer__bottom { padding-bottom: 72px; }
  .footer__nav { justify-content: flex-start !important; }
  .footer__top > .small { text-align: left !important; }
}
@media (max-width: 600px) {
  .page-hero { padding-top: 128px; padding-bottom: 36px; }
  .page-hero--media { min-height: 85svh; padding-bottom: 40px; }
  .btn { max-width: 100%; white-space: normal; line-height: 1.35; padding: 15px 22px; }
  .staff-card { padding: 32px 22px; }
  .staff-list li { display: grid; grid-template-columns: 20px 1fr; gap: 3px 14px; }
  .staff-list small { grid-column: 2; text-align: left; margin-left: 0; }
  .hero { min-height: 650px; }
  .hero__content { padding-bottom: 104px; }
  .hero__foot { bottom: 24px; padding-right: 86px; }
  .scroll-hint { flex-shrink: 0; }
  .hero__eyebrow { gap: 7px; }
  .stat b { font-size: clamp(30px, 9vw, 46px); }
  .stats__grid { gap: 20px; }
  .cta { padding-block: 96px 156px; min-height: 100svh; display: block; }
  .cta .cta__foot { display: flex; flex-wrap: wrap; font-size: 11px; bottom: 76px; gap: 12px; }
  .contact-side .big-phone { font-size: clamp(28px, 8.5vw, 46px); white-space: nowrap; }
  .mobile-menu__links a { font-size: clamp(28px, 8vw, 40px); padding-block: 7px; }
}
@media (max-height: 580px) { .mobile-menu { padding-top: 75px; } .mobile-menu__links a { font-size: 25px; } .mobile-menu__foot { margin-top: 20px; padding-top: 16px; } }
.no-js .preloader { display: none; }
.no-js body.is-loading { overflow: auto; }
.no-js .hero__eyebrow .ch { opacity: 1; transform: none; }
.no-js .header { position: relative; height: auto; padding-block: 16px; }
.no-js .header__inner { flex-wrap: wrap; }
.no-js .nav { display: flex; flex-wrap: wrap; gap: 12px 20px; }
.no-js .burger { display: none; }
.no-js .services__pin, .motion-reduced .services__pin { height: auto; overflow: visible; display: block; }
.no-js .services__track, .motion-reduced .services__track { display: grid; width: 100%; grid-template-columns: repeat(auto-fit,minmax(min(100%,280px),1fr)); }
.no-js .svc-card, .motion-reduced .svc-card { width: auto; }
.motion-reduced .reveal, .motion-reduced .split-line > span, .motion-reduced .hero__eyebrow .ch, .motion-reduced .mobile-menu__links a { opacity: 1; transform: none; }
.motion-reduced .marquee__row { white-space: normal; flex-wrap: wrap; width: auto; }
.motion-reduced .staff-card::before { transform: scaleY(1); }
.motion-reduced .process__line line { stroke-dashoffset: 0; }
.motion-reduced .approach__sticky { position: static; }
.motion-reduced .grain, .motion-reduced .cursor { display: none; }
.motion-reduced *, .motion-reduced *::before, .motion-reduced *::after { animation: none !important; transition: none !important; }

.contact-side .big-phone { display: block; }
