/* ====================================================
   NOVIX AIR — İÇ SAYFALAR ORTAK TEMA  (v2 · premium)
   Ana sayfayla aynı görsel dil; rafine tipografi, gradient
   vurgular, cam paneller, hover mikro-etkileşimleri. Hafif.
   ==================================================== */
:root {
  --bg: #05060a;
  --bg-2: #080a10;
  --panel: rgba(16, 20, 30, 0.55);
  --panel-2: rgba(20, 25, 36, 0.65);
  --cyan: #e2e8f2;
  --cyan-strong: rgba(205, 216, 232, 1);
  --cyan-65: rgba(205, 216, 232, 0.6);
  --grad: linear-gradient(120deg, #f2f5fa 0%, #d2dae8 50%, #aeb9cb 100%);
  --border: rgba(255, 255, 255, 0.10);
  --border-2: rgba(255, 255, 255, 0.16);
  --text: #f4f7fb;
  --muted: rgba(233, 240, 250, 0.60);
  --muted-2: rgba(233, 240, 250, 0.38);
  --radius: 18px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-tap-highlight-color: transparent;
  position: relative;
}
/* zemin atmosferi — üstte hafif cyan glow + derinlik */
body::before {
  content: "";
  position: fixed; inset: 0;
  background:
    radial-gradient(1100px 620px at 78% -8%, rgba(80, 160, 210, 0.14), transparent 60%),
    radial-gradient(900px 600px at -10% 12%, rgba(120, 200, 240, 0.07), transparent 55%);
  pointer-events: none; z-index: 0;
}
body > * { position: relative; z-index: 1; }

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.mono { font-family: 'JetBrains Mono', monospace; }
.cyan { color: var(--cyan-strong); }
.accent {
  color: transparent;
  -webkit-text-stroke: 0.8px var(--cyan-strong);
  paint-order: stroke fill;
  text-shadow: 0 0 22px rgba(205, 216, 232, 0.28);
}
.grad-text {
  background: var(--grad);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}

.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 28px; }

/* scroll progress */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 2px; width: 0;
  background: var(--grad);
  box-shadow: 0 0 12px rgba(205, 216, 232, 0.6);
  z-index: 200; transition: width 0.1s linear;
}

/* ---------- NAVBAR ---------- */
.nav {
  position: fixed; top: 0; left: 0; width: 100%;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px clamp(18px, 4vw, 60px);
  z-index: 90;
  background: linear-gradient(to bottom, rgba(5, 6, 10, 0.55), transparent);
  border-bottom: 1px solid transparent;
  transition: padding 0.4s var(--ease), background 0.4s var(--ease), border-color 0.4s var(--ease);
}
.nav.scrolled {
  padding-top: 12px; padding-bottom: 12px;
  background: rgba(7, 9, 14, 0.72);
  backdrop-filter: blur(16px) saturate(150%);
  -webkit-backdrop-filter: blur(16px) saturate(150%);
  border-bottom: 1px solid var(--border);
}
.nav-logo img {
  height: clamp(74px, 7.5vw, 104px); width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.95; transition: opacity 0.3s ease, transform 0.4s var(--ease);
}
.nav-logo:hover img { opacity: 1; transform: translateY(-1px); }

.nav-links {
  display: flex; align-items: center; gap: 2px;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px; padding: 5px 6px;
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 8px 32px -6px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.07);
}
.nav-links a {
  font-size: 12px; font-weight: 500; letter-spacing: 0.16em;
  text-transform: uppercase; color: rgba(255, 255, 255, 0.66);
  padding: 9px 17px; border-radius: 999px; white-space: nowrap;
  transition: color 0.3s ease, background 0.3s ease;
}
.nav-links a:hover { color: #fff; background: rgba(255, 255, 255, 0.06); }
.nav-links a.active {
  color: #04121a;
  background: var(--grad);
  box-shadow: 0 4px 18px rgba(120, 200, 240, 0.3);
}

.hamburger { display: none; flex-direction: column; align-items: flex-end; gap: 6px; padding: 10px; background: none; border: none; cursor: pointer; }
.hamburger span { display: block; height: 2px; border-radius: 2px; background: #fff; transition: width 0.3s ease; }
.hamburger span:nth-child(1) { width: 28px; }
.hamburger span:nth-child(2) { width: 20px; }
.hamburger span:nth-child(3) { width: 28px; }
.hamburger:hover span { width: 28px; }

.mobile-menu {
  position: fixed; inset: 0; z-index: 110;
  background: rgba(5, 6, 10, 0.97);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  display: none; flex-direction: column; align-items: center; justify-content: center; gap: 4px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-size: clamp(22px, 6vw, 34px); font-weight: 300; letter-spacing: 0.04em;
  text-transform: uppercase; color: rgba(255, 255, 255, 0.82); padding: 14px 28px;
  transition: color 0.2s ease, letter-spacing 0.3s ease;
}
.mobile-menu a:hover { color: var(--cyan-strong); letter-spacing: 0.1em; }
.mobile-menu .mm-close { position: absolute; top: 20px; right: 20px; background: none; border: none; cursor: pointer; padding: 10px; }
body.menu-open { overflow: hidden; }

/* ---------- PAGE HERO ---------- */
.page-hero {
  position: relative; min-height: 58vh;
  display: flex; flex-direction: column; justify-content: center;
  padding: clamp(140px, 20vh, 210px) 0 clamp(60px, 10vh, 110px);
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}
.page-hero::before {
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.055) 1px, transparent 1px);
  background-size: 36px 36px;
  -webkit-mask-image: radial-gradient(ellipse 80% 75% at 26% 42%, #000 16%, transparent 80%);
  mask-image: radial-gradient(ellipse 80% 75% at 26% 42%, #000 16%, transparent 80%);
  opacity: 0.65; pointer-events: none;
}
.page-hero::after {
  content: ""; position: absolute; top: -25%; right: -8%;
  width: 55%; height: 120%;
  background: radial-gradient(circle, rgba(120, 200, 240, 0.16) 0%, transparent 62%);
  pointer-events: none;
}
.page-hero .container { position: relative; z-index: 2; }
.breadcrumb {
  display: inline-flex; align-items: center;
  font-family: 'JetBrains Mono', monospace; font-size: 11px; letter-spacing: 0.26em;
  text-transform: uppercase; color: var(--muted-2); margin-bottom: 26px;
  padding: 7px 14px; border: 1px solid var(--border); border-radius: 999px;
  background: rgba(255, 255, 255, 0.02);
}
.breadcrumb a { transition: color 0.2s ease; }
.breadcrumb a:hover { color: var(--cyan-strong); }
.breadcrumb .sep { margin: 0 9px; color: rgba(255, 255, 255, 0.22); }
.page-hero h1 {
  font-size: clamp(40px, 6.4vw, 88px); font-weight: 250;
  letter-spacing: -0.035em; line-height: 1.02;
}
.page-hero .lead {
  margin-top: 26px; max-width: 660px;
  font-size: clamp(15px, 1.4vw, 18.5px); color: var(--muted); font-weight: 300; line-height: 1.7;
}

/* ---------- SECTION ---------- */
.section { padding: clamp(60px, 9vw, 120px) 0; position: relative; }
.section.tight { padding: clamp(34px, 5vw, 70px) 0; }
.section-tag {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: 'JetBrains Mono', monospace; font-size: 11px; letter-spacing: 0.3em;
  text-transform: uppercase; color: var(--cyan-65); margin-bottom: 20px;
}
.section-tag::before { content: ""; width: 32px; height: 1px; background: var(--grad); }
.section h2 {
  font-size: clamp(28px, 3.6vw, 50px); font-weight: 250;
  letter-spacing: -0.025em; line-height: 1.1; margin-bottom: 22px;
}
.section h2.center { text-align: center; }
.body-text { color: var(--muted); font-weight: 300; font-size: clamp(14.5px, 1.05vw, 16.5px); max-width: 780px; line-height: 1.8; }
.body-text + .body-text { margin-top: 18px; }
.center-block { margin-left: auto; margin-right: auto; text-align: center; }

/* ---------- GLASS / CARDS ---------- */
.glass {
  position: relative;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.012) 45%), var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: clamp(24px, 2.8vw, 38px);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transition: transform 0.5s var(--ease), border-color 0.5s var(--ease), box-shadow 0.5s var(--ease);
}
.glass.card::after {
  content: ""; position: absolute; left: clamp(24px,2.8vw,38px); right: clamp(24px,2.8vw,38px); top: 0; height: 1px;
  background: var(--grad); transform: scaleX(0); transform-origin: left; opacity: 0;
  transition: transform 0.5s var(--ease), opacity 0.5s var(--ease);
}
.glass.card:hover {
  transform: translateY(-5px);
  border-color: rgba(205, 216, 232, 0.3);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(205, 216, 232, 0.06), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}
.glass.card:hover::after { transform: scaleX(1); opacity: 1; }

.grid { display: grid; gap: 20px; }
.grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
.grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.grid.cols-4 { grid-template-columns: repeat(4, 1fr); }
.grid .reveal:nth-child(2) { transition-delay: 0.07s; }
.grid .reveal:nth-child(3) { transition-delay: 0.14s; }
.grid .reveal:nth-child(4) { transition-delay: 0.21s; }

.card-icon {
  width: 50px; height: 50px; display: flex; align-items: center; justify-content: center;
  border-radius: 14px; margin-bottom: 20px; color: var(--cyan-strong);
  background: linear-gradient(160deg, rgba(205, 216, 232, 0.12), rgba(205, 216, 232, 0.02));
  border: 1px solid rgba(205, 216, 232, 0.22);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
}
.card h3 { font-size: 18.5px; font-weight: 500; margin-bottom: 11px; letter-spacing: 0.005em; color: #fff; }
.card p { color: var(--muted); font-size: 14px; font-weight: 300; line-height: 1.7; }

/* ---------- STATS ---------- */
.stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px;
  background: var(--border); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden;
}
.stat { background: var(--bg-2); padding: clamp(28px, 3.2vw, 44px) clamp(16px, 2vw, 28px); text-align: center; transition: background 0.4s ease; }
.stat:hover { background: rgba(20, 26, 38, 0.9); }
.stat .num { font-family: 'JetBrains Mono', monospace; font-size: clamp(32px, 4.2vw, 56px); font-weight: 300; line-height: 1; background: var(--grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent; }
.stat .label { margin-top: 14px; font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted-2); }

/* ---------- TIMELINE ---------- */
.timeline { position: relative; margin-top: 26px; padding-left: 30px; }
.timeline::before { content: ""; position: absolute; left: 4px; top: 8px; bottom: 8px; width: 1px; background: linear-gradient(to bottom, var(--cyan-strong), rgba(205, 216, 232, 0.1)); }
.tl-item { position: relative; padding-bottom: 38px; }
.tl-item:last-child { padding-bottom: 0; }
.tl-item::before { content: ""; position: absolute; left: -30px; top: 5px; width: 10px; height: 10px; border-radius: 50%; background: var(--cyan-strong); box-shadow: 0 0 0 4px rgba(205, 216, 232, 0.12), 0 0 14px rgba(205, 216, 232, 0.7); }
.tl-year { font-family: 'JetBrains Mono', monospace; font-size: 12.5px; letter-spacing: 0.12em; color: var(--cyan-strong); }
.tl-item h3 { font-size: 19.5px; font-weight: 500; margin: 7px 0 9px; color: #fff; }
.tl-item p { color: var(--muted); font-size: 14.5px; font-weight: 300; max-width: 660px; line-height: 1.7; }

/* ---------- BUTTONS ---------- */
.btn {
  position: relative; overflow: hidden;
  display: inline-flex; align-items: center; gap: 12px;
  background: #fff; color: #05060a; border: none; border-radius: 999px;
  padding: 15px 30px; font-family: 'Montserrat', sans-serif; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase; font-size: 12.5px; cursor: pointer;
  transition: box-shadow 0.45s var(--ease), transform 0.4s var(--ease);
}
.btn::before { content: ""; position: absolute; inset: 0; background: linear-gradient(120deg, transparent 30%, rgba(205,216,232,0.5) 50%, transparent 70%); transform: translateX(-120%); transition: transform 0.7s var(--ease); }
.btn:hover { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(205, 216, 232, 0.35); }
.btn:hover::before { transform: translateX(120%); }
.btn svg { width: 14px; height: 14px; position: relative; z-index: 1; transition: transform 0.4s var(--ease); }
.btn:hover svg { transform: translate(3px, -3px); }
.btn > * { position: relative; z-index: 1; }
.btn-ghost { background: rgba(255, 255, 255, 0.03); color: #fff; border: 1px solid var(--border-2); }
.btn-ghost::before { display: none; }
.btn-ghost:hover { border-color: var(--cyan-strong); box-shadow: 0 12px 40px rgba(205, 216, 232, 0.2); }

/* ---------- CONTACT ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: 32px; align-items: start; }
.info-row { display: flex; gap: 18px; padding: 20px 0; border-bottom: 1px solid var(--border); }
.info-row:last-child { border-bottom: none; }
.info-row .ic { flex-shrink: 0; width: 44px; height: 44px; border-radius: 12px; display: flex; align-items: center; justify-content: center; color: var(--cyan-strong); background: linear-gradient(160deg, rgba(205, 216, 232, 0.12), rgba(205, 216, 232, 0.02)); border: 1px solid rgba(205, 216, 232, 0.2); }
.info-row .lbl { font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted-2); margin-bottom: 5px; }
.info-row .val { font-size: 15px; color: #fff; font-weight: 300; line-height: 1.6; }
.info-row .val a:hover { color: var(--cyan-strong); }

.field { display: flex; flex-direction: column; gap: 9px; margin-bottom: 18px; }
.field label { font-size: 11.5px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); }
.field input, .field textarea, .field select {
  width: 100%; background: rgba(255, 255, 255, 0.035); border: 1px solid var(--border);
  border-radius: 12px; padding: 14px 16px; color: #fff; font-family: 'Montserrat', sans-serif; font-size: 14px; font-weight: 300;
  transition: border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}
.field textarea { resize: vertical; min-height: 140px; }
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--cyan-strong); background: rgba(205, 216, 232, 0.05); box-shadow: 0 0 0 3px rgba(205, 216, 232, 0.1); }
.field input::placeholder, .field textarea::placeholder { color: rgba(255, 255, 255, 0.28); }
.field select { appearance: none; -webkit-appearance: none; cursor: pointer; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-note { font-size: 12.5px; color: var(--muted-2); margin-top: 8px; line-height: 1.6; }
.form-success { display: none; margin-top: 18px; padding: 15px 20px; border: 1px solid rgba(205, 216, 232, 0.4); border-radius: 12px; background: rgba(205, 216, 232, 0.07); color: var(--cyan-strong); font-size: 14px; }
.form-success.show { display: block; }

.map-embed { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); margin-top: 28px; box-shadow: 0 18px 50px rgba(0,0,0,0.5); }
.map-embed iframe { width: 100%; height: 380px; border: 0; display: block; filter: grayscale(0.5) invert(0.92) hue-rotate(180deg) contrast(0.88); }

/* ---------- JOBS ---------- */
.job {
  display: flex; align-items: center; justify-content: space-between; gap: 22px;
  padding: 24px clamp(22px, 2.6vw, 32px); margin-bottom: 14px;
  border: 1px solid var(--border); border-radius: 16px; background: var(--panel);
  position: relative; overflow: hidden;
  transition: border-color 0.4s var(--ease), transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.job::before { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 2px; background: var(--grad); transform: scaleY(0); transform-origin: top; transition: transform 0.4s var(--ease); }
.job:hover { border-color: rgba(205, 216, 232, 0.35); transform: translateX(4px); box-shadow: 0 14px 44px rgba(0, 0, 0, 0.45); }
.job:hover::before { transform: scaleY(1); }
.job .role { font-size: 17.5px; font-weight: 500; color: #fff; }
.job .meta { font-family: 'JetBrains Mono', monospace; font-size: 12px; color: var(--muted-2); margin-top: 7px; letter-spacing: 0.05em; }
.job .apply { font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--cyan-strong); white-space: nowrap; transition: gap 0.3s ease; }
.job .apply:hover { text-decoration: underline; }

/* ---------- LEGAL PROSE ---------- */
.legal { max-width: 850px; }
.legal .updated { font-family: 'JetBrains Mono', monospace; font-size: 12px; color: var(--muted-2); margin-bottom: 40px; padding-bottom: 20px; border-bottom: 1px solid var(--border); }
.legal h2 { font-size: clamp(20px, 2vw, 27px); font-weight: 500; margin: 42px 0 15px; letter-spacing: -0.01em; color: #fff; }
.legal h2:first-of-type { margin-top: 0; }
.legal h3 { font-size: 16px; font-weight: 500; margin: 24px 0 10px; color: rgba(255, 255, 255, 0.92); }
.legal p { color: var(--muted); font-weight: 300; font-size: 15px; margin-bottom: 15px; line-height: 1.8; }
.legal ul { color: var(--muted); font-weight: 300; font-size: 15px; margin: 0 0 18px 22px; line-height: 1.7; }
.legal li { margin-bottom: 9px; }
.legal a { color: var(--cyan-strong); }
.legal a:hover { text-decoration: underline; }
.disclaimer { margin-top: 12px; padding: 18px 22px; border: 1px solid var(--border); border-left: 2px solid var(--cyan-strong); border-radius: 12px; background: rgba(205, 216, 232, 0.04); color: var(--muted-2); font-size: 13px; line-height: 1.7; }

/* ---------- CTA BAND ---------- */
.cta-band { text-align: center; position: relative; }
.cta-band::before { content: ""; position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); width: min(680px, 90%); height: 300px; background: radial-gradient(circle, rgba(120, 200, 240, 0.12), transparent 65%); pointer-events: none; }
.cta-band h2 { font-size: clamp(30px, 4.4vw, 58px); font-weight: 250; letter-spacing: -0.025em; margin-bottom: 18px; position: relative; }
.cta-band p { color: var(--muted); font-weight: 300; max-width: 580px; margin: 0 auto 34px; position: relative; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; position: relative; }

/* ---------- FOOTER ---------- */
.footer { background: #07080c; border-top: 1px solid var(--border); position: relative; }
.footer .container { padding-top: clamp(60px, 8vw, 100px); padding-bottom: 42px; }
.footer-top { display: grid; grid-template-columns: 1.4fr 2fr; gap: 52px; margin-bottom: 52px; }
.footer-brand img { height: clamp(90px, 12vw, 150px); width: auto; filter: brightness(0) invert(1); margin-bottom: 26px; margin-left: -6px; }
.footer-brand p { color: rgba(255, 255, 255, 0.48); font-size: 14px; font-weight: 300; max-width: 370px; line-height: 1.7; }
.footer-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.footer-cols h4 { font-size: 12px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: #fff; margin-bottom: 20px; }
.footer-cols a { display: block; color: rgba(255, 255, 255, 0.5); font-size: 13.5px; font-weight: 300; padding: 7px 0; transition: color 0.25s ease, padding-left 0.25s ease; }
.footer-cols a:hover { color: var(--cyan-strong); padding-left: 5px; }
.footer-mid { border-top: 1px solid var(--border); padding: 30px 0; display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.footer-mid h4 { font-size: 13px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: #fff; margin-bottom: 7px; }
.footer-mid p { color: rgba(255, 255, 255, 0.5); font-size: 12.5px; font-weight: 300; line-height: 1.7; }
.footer-mid .right { font-family: 'JetBrains Mono', monospace; }
.footer-mid .right a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid var(--border); padding-top: 30px; display: flex; align-items: center; justify-content: space-between; gap: 18px; flex-wrap: wrap; }
.footer-bottom p, .footer-bottom a { color: rgba(255, 255, 255, 0.4); font-size: 13px; font-weight: 300; }
.footer-bottom .legal-links { display: flex; align-items: center; gap: 14px; }
.footer-bottom .legal-links a:hover { color: #fff; }
.footer-bottom .legal-links .sep { color: rgba(255, 255, 255, 0.14); }

/* ---------- REVEAL ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.reveal.in { opacity: 1; transform: translateY(0); }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 900px) {
  .footer-mid .right { text-align: left; }
}
@media (max-width: 860px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 34px; }
  .grid.cols-4 { grid-template-columns: repeat(2, 1fr); }
  .grid.cols-3 { grid-template-columns: 1fr; }
  .grid.cols-2 { grid-template-columns: 1fr; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .footer-mid { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .form-row { grid-template-columns: 1fr; }
  .footer-cols { grid-template-columns: 1fr 1fr; }
  .job { flex-direction: column; align-items: flex-start; }
  .container { padding: 0 20px; }
}
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  .reveal { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
  .btn::before { display: none; }
}

/* Anduril tarzı başlık maske reveal (iç sayfalar) */
.r-mask .r-word { display: inline-block; overflow: hidden; vertical-align: top; margin-right: 0.26em; }
.r-mask .r-word > span { display: inline-block; transform: translateY(115%); transition: transform 0.95s cubic-bezier(0.16,1,0.3,1); will-change: transform; }
.r-mask.in .r-word > span { transform: translateY(0); }
@media (prefers-reduced-motion: reduce) { .r-mask .r-word > span { transform: none !important; } }

/* Anduril minimal navbar (iç sayfalar) — pill yerine düz, uppercase */
.nav-links {
  background: transparent !important; border: none !important; box-shadow: none !important;
  backdrop-filter: none !important; -webkit-backdrop-filter: none !important;
  border-radius: 0 !important; padding: 0 !important; gap: clamp(14px, 1.8vw, 32px) !important;
}
.nav-links a { font-size: 12px !important; letter-spacing: 0.18em !important; padding: 6px 0 !important; border-radius: 0 !important; position: relative; }
.nav-links a:hover { background: transparent !important; color: #fff !important; }
.nav-links a.active { color: #fff !important; background: transparent !important; box-shadow: none !important; }
.nav-links a.active::after { content: ""; position: absolute; left: 0; right: 0; bottom: -2px; height: 1px; background: currentColor; opacity: 0.55; }

/* Dil düğmesi iç sayfa mobil menüsünde de tutarlı/görünür */
.lang-toggle { opacity: 1 !important; transform: none !important; animation: none !important; }
.mobile-menu a.lang-toggle { font-size: 12px !important; margin-top: 18px; align-self: flex-start; }

/* ============ BEBAS NEUE — DISPLAY/BAŞLIK FONTU ============ */
.nav .nav-links a, .mobile-menu a {
  font-family: 'Bebas Neue', "Helvetica Neue", Arial, sans-serif !important;
  font-weight: 400 !important; letter-spacing: 0.06em !important;
}
.page-hero h1, .section h2, .cta-band h2, .legal h2 {
  font-family: 'Bebas Neue', 'Montserrat', sans-serif !important;
  font-weight: 400 !important; letter-spacing: 0.015em !important;
}

/* ============ YAZI GÖLGELERİNİ KALDIR ============ */
.accent, .page-hero h1, .section h2, .cta-band h2, .legal h2 { text-shadow: none !important; }

/* ============ ALT SAYFA: splash scroll-kilidini iptal et ============ */
/* style.css'teki html/body:not(.splash-done){overflow:hidden} kuralı alt sayfalarda
   intro olmadığı için scroll'u kilitliyordu. Burada (style.css'ten sonra) eziyoruz. */
html:not(.splash-done), body:not(.splash-done) {
  overflow-x: hidden !important;
  overflow-y: auto !important;
  height: auto !important;
  touch-action: auto !important;
  overscroll-behavior: auto !important;
}
