/* ============================================================
   U2 SOFT LANDING — Design System v0.3
   AI-Native Software Studio
   ============================================================ */

/* ---------- 1. RESET ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; line-height: 1.5; }
img, svg { display: block; max-width: 100%; height: auto; }
button { font: inherit; cursor: pointer; background: none; border: 0; color: inherit; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
input, textarea, select { font: inherit; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 2px; }

/* ---------- 2. DESIGN TOKENS ---------- */
:root {
  --primary-900: #0c1f3a;
  --primary-800: #0f2647;
  --primary-700: #14305a;
  --primary-500: #1e4783;
  --primary-300: #4d6da3;
  --primary-100: #c5d2e6;

  --accent: #06b6d4;
  --accent-soft: #67e8f9;
  --accent-deep: #0e7490;
  --accent-glow: rgba(6, 182, 212, 0.18);

  --magenta: #d946ef;
  --indigo: #6366f1;

  --bg: #fafafa;
  --bg-alt: #f3f4f7;
  --bg-card: #ffffff;
  --surface-dark: #0c1f3a;
  --surface-darker: #081530;
  --surface-deepest: #050d1f;

  --text: #0c1f3a;
  --text-muted: #5a6678;
  --text-faint: #8a94a3;
  --text-on-dark: #fafafa;
  --text-on-dark-muted: #b4bdcc;
  --text-on-dark-faint: #6c7790;

  --border: #e3e6ec;
  --border-strong: #c8ccd4;
  --border-on-dark: rgba(250, 250, 250, 0.10);
  --border-on-dark-strong: rgba(250, 250, 250, 0.22);

  --success: #2e7d57;
  --danger: #b3261e;

  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --fs-xs:   0.75rem;
  --fs-sm:   0.875rem;
  --fs-base: 1rem;
  --fs-md:   1.125rem;
  --fs-lg:   1.375rem;
  --fs-xl:   1.75rem;
  --fs-2xl:  2.25rem;
  --fs-3xl:  3rem;
  --fs-4xl:  4rem;
  --fs-5xl:  5.5rem;

  --sp-1: 0.25rem;  --sp-2: 0.5rem;   --sp-3: 0.75rem;  --sp-4: 1rem;
  --sp-5: 1.5rem;   --sp-6: 2rem;     --sp-7: 3rem;     --sp-8: 4rem;
  --sp-9: 6rem;     --sp-10: 8rem;    --sp-11: 12rem;

  --container: 1320px;
  --gutter: 1.5rem;
  --nav-h: 92px;

  --shadow-sm: 0 1px 2px rgba(12, 31, 58, 0.06);
  --shadow-md: 0 4px 12px rgba(12, 31, 58, 0.08);
  --shadow-lg: 0 12px 32px rgba(12, 31, 58, 0.12);
  --shadow-xl: 0 24px 56px rgba(12, 31, 58, 0.18);

  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 18px;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --dur: 320ms;
}

/* ---------- 3. BASE TYPOGRAPHY ---------- */
body {
  font-family: var(--font-sans);
  font-size: var(--fs-base);
  font-weight: 400;
  color: var(--text);
  background: var(--bg);
  letter-spacing: -0.011em;
  font-feature-settings: "ss01", "cv11";
}

h1, h2, h3, h4, h5 {
  font-family: var(--font-sans);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--text);
}
h1 { font-size: clamp(2.5rem, 6vw, var(--fs-5xl)); font-weight: 800; letter-spacing: -0.04em; }
h2 { font-size: clamp(2rem, 4vw, var(--fs-3xl)); letter-spacing: -0.03em; }
h3 { font-size: var(--fs-xl); }
h4 { font-size: var(--fs-lg); }

p { line-height: 1.65; color: var(--text-muted); }
strong { font-weight: 600; color: var(--text); }

/* ---------- 4. LAYOUT ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.section { padding: var(--sp-10) 0; position: relative; }
.section--dark {
  background: var(--surface-dark);
  color: var(--text-on-dark);
}
.section--dark h1, .section--dark h2, .section--dark h3, .section--dark h4 { color: var(--text-on-dark); }
.section--dark p { color: var(--text-on-dark-muted); }

/* ---------- 5. BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  padding: 0.95rem 1.6rem;
  font-size: var(--fs-sm);
  font-weight: 600;
  letter-spacing: -0.005em;
  border-radius: var(--radius-md);
  transition: all var(--dur) var(--ease);
  white-space: nowrap;
  position: relative;
}
.btn--primary {
  background: var(--accent);
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(6, 182, 212, 0.25);
}
.btn--primary:hover {
  background: var(--accent-deep);
  transform: translateY(-1px);
  box-shadow: 0 10px 28px rgba(6, 182, 212, 0.4);
}
.btn--ghost {
  background: transparent;
  color: var(--text-on-dark);
  border: 1px solid var(--border-on-dark-strong);
}
.btn--ghost:hover {
  background: rgba(250, 250, 250, 0.06);
  border-color: var(--text-on-dark);
}
.btn .btn-arrow { width: 14px; height: 14px; transition: transform var(--dur) var(--ease); }
.btn:hover .btn-arrow { transform: translateX(3px); }

/* ---------- 6. TOPNAV (large logo) ---------- */
.topnav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 100;
  display: flex;
  align-items: center;
  background: rgba(8, 21, 48, 0.78);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid var(--border-on-dark);
  transition: background var(--dur) var(--ease);
}
.topnav__inner {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: var(--sp-6);
}
.topnav__logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  height: 66px;
}
.topnav__logo img,
.topnav__logo svg { height: 66px; width: auto; display: block; }
.topnav__menu {
  display: flex;
  justify-content: center;
  gap: var(--sp-6);
}
.topnav__menu a {
  font-size: var(--fs-sm);
  font-weight: 500;
  color: var(--text-on-dark-muted);
  padding: 0.5rem 0;
  position: relative;
  transition: color var(--dur) var(--ease);
}
.topnav__menu a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 2px;
  background: var(--accent);
  transition: width var(--dur) var(--ease);
}
.topnav__menu a:hover, .topnav__menu a.is-active { color: var(--text-on-dark); }
.topnav__menu a:hover::after, .topnav__menu a.is-active::after { width: 100%; }
.topnav__actions { display: flex; align-items: center; gap: var(--sp-4); }
.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-family: var(--font-sans);
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--text-on-dark-muted);
  padding: 0.5rem 0.75rem;
  border: 1px solid var(--border-on-dark);
  border-radius: var(--radius-sm);
  transition: all var(--dur) var(--ease);
}
.lang-switch:hover { border-color: var(--border-on-dark-strong); }
.lang-switch__item {
  color: var(--text-on-dark-muted);
  text-decoration: none;
  padding: 1px 2px;
  border-radius: 3px;
  transition: color var(--dur) var(--ease);
}
.lang-switch__item:hover { color: var(--text-on-dark); }
.lang-switch__item--active {
  color: var(--accent-soft);
  cursor: default;
}
.lang-switch__sep {
  color: var(--text-on-dark-muted);
  opacity: 0.5;
}
.topnav__cta {
  font-size: var(--fs-sm);
  font-weight: 600;
  padding: 0.7rem 1.3rem;
  background: var(--accent);
  color: #ffffff;
  border-radius: var(--radius-md);
  transition: all var(--dur) var(--ease);
  box-shadow: 0 4px 14px rgba(6, 182, 212, 0.25);
}
.topnav__cta:hover { background: var(--accent-deep); transform: translateY(-1px); }
.topnav__burger {
  display: none;
  width: 44px; height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-on-dark);
  border-radius: var(--radius-sm);
  color: var(--text-on-dark);
}

/* ---------- 7. HERO ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  background: var(--surface-dark);
  color: var(--text-on-dark);
  padding-top: var(--nav-h);
  overflow: hidden;
  display: flex;
  align-items: center;
}
.hero__grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 90% 75% at 65% 50%, #000 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 90% 75% at 65% 50%, #000 30%, transparent 80%);
  pointer-events: none;
}
.hero__aurora { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.hero__aurora-blob {
  position: absolute;
  width: 800px; height: 800px;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.55;
}
.hero__aurora-blob--cyan {
  right: -200px; top: -100px;
  background: radial-gradient(circle, rgba(6,182,212,0.30) 0%, transparent 60%);
  animation: blobDrift 18s var(--ease) infinite alternate;
}
.hero__aurora-blob--indigo {
  left: -150px; bottom: -200px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(99,102,241,0.22) 0%, transparent 60%);
  animation: blobDrift 24s var(--ease) infinite alternate-reverse;
}
.hero__aurora-blob--magenta {
  right: 30%; bottom: 10%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(217,70,239,0.14) 0%, transparent 60%);
  animation: blobDrift 30s var(--ease) infinite alternate;
}
@keyframes blobDrift {
  0%   { transform: translate(0, 0) scale(1); }
  100% { transform: translate(60px, -40px) scale(1.08); }
}

.hero__container {
  position: relative;
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: var(--sp-7) var(--gutter) var(--sp-9);
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: var(--sp-8);
  align-items: center;
}
.hero__meta {
  position: absolute;
  top: calc(var(--nav-h) + var(--sp-5));
  left: var(--gutter);
  right: var(--gutter);
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-sans);
  font-size: var(--fs-xs);
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--text-on-dark-faint);
}
.hero__meta-stats { display: flex; gap: var(--sp-5); }
.hero__meta-stats span { color: var(--text-on-dark-muted); }
.hero__meta-stats strong {
  color: var(--accent-soft);
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}
.hero__content { position: relative; z-index: 2; }
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  margin-bottom: var(--sp-5);
  font-family: var(--font-sans);
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--accent-soft);
  padding: 0.55rem 0.95rem;
  background: rgba(6, 182, 212, 0.08);
  border: 1px solid rgba(6, 182, 212, 0.25);
  border-radius: 999px;
}
.hero__eyebrow::before {
  content: "";
  width: 7px; height: 7px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 14px var(--accent), 0 0 4px var(--accent-soft);
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(1.5); }
}
.hero__title {
  font-size: clamp(2.5rem, 6vw, var(--fs-5xl));
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -0.045em;
  color: var(--text-on-dark);
  margin-bottom: var(--sp-6);
}
.hero__title .accent { color: var(--accent-soft); }
.hero__title .grad-text {
  background: linear-gradient(120deg, var(--accent-soft) 0%, var(--accent) 40%, var(--magenta) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  background-size: 200% 100%;
  animation: gradientShift 8s ease-in-out infinite;
}
@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50%      { background-position: 100% 50%; }
}
.hero__title-line {
  display: block;
  opacity: 0;
  transform: translateY(24px);
  animation: heroLineIn 900ms var(--ease) forwards;
}
.hero__title-line:nth-child(1) { animation-delay: 0.1s; }
.hero__title-line:nth-child(2) { animation-delay: 0.25s; }
.hero__title-line:nth-child(3) { animation-delay: 0.4s; }
@keyframes heroLineIn { to { opacity: 1; transform: translateY(0); } }
.hero__lead {
  max-width: 38rem;
  font-size: var(--fs-md);
  line-height: 1.6;
  color: var(--text-on-dark-muted);
  margin-bottom: var(--sp-6);
  opacity: 0;
  animation: heroLineIn 800ms var(--ease) 0.6s forwards;
}
.hero__lead strong { color: var(--text-on-dark); font-weight: 600; }
.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-4);
  opacity: 0;
  animation: heroLineIn 800ms var(--ease) 0.75s forwards;
}

/* ---------- HERO VISUAL — neural mesh w/ data flow ---------- */
.hero__visual {
  position: relative;
  z-index: 1;
  height: 540px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero__mesh {
  width: 100%;
  max-width: 580px;
  filter: drop-shadow(0 0 90px rgba(6, 182, 212, 0.20));
  animation: heroMeshIn 1200ms var(--ease) 0.3s both;
}
@keyframes heroMeshIn {
  from { opacity: 0; transform: scale(0.92); }
  to   { opacity: 1; transform: scale(1); }
}
.mesh-rotate-slow { transform-origin: 260px 240px; animation: meshSpin 80s linear infinite; }
.mesh-rotate-fast { transform-origin: 260px 240px; animation: meshSpinReverse 50s linear infinite; }
@keyframes meshSpin        { from { transform: rotate(0deg); }  to { transform: rotate(360deg); } }
@keyframes meshSpinReverse { from { transform: rotate(0deg); }  to { transform: rotate(-360deg); } }

.mesh-node { fill: var(--accent); }
.mesh-node--pulse { animation: nodePulse 2.4s ease-in-out infinite; transform-origin: center; }
.mesh-node--pulse:nth-of-type(1) { animation-delay: 0s; }
.mesh-node--pulse:nth-of-type(2) { animation-delay: 0.4s; }
.mesh-node--pulse:nth-of-type(3) { animation-delay: 0.9s; }
.mesh-node--pulse:nth-of-type(4) { animation-delay: 1.4s; }
@keyframes nodePulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.mesh-line { stroke: var(--accent); stroke-width: 1; fill: none; opacity: 0.18; animation: lineFade 6s ease-in-out infinite; }
.mesh-line:nth-of-type(2n) { animation-delay: 0.5s; }
.mesh-line:nth-of-type(3n) { animation-delay: 1.2s; }
.mesh-line:nth-of-type(5n) { animation-delay: 2s; opacity: 0.12; }
@keyframes lineFade {
  0%, 100% { opacity: 0.10; }
  50% { opacity: 0.30; }
}

.mesh-core { fill: rgba(255, 255, 255, 0.96); }
.mesh-core-glow {
  fill: var(--accent);
  opacity: 0.18;
  transform-origin: center;
  animation: corePulse 3.2s ease-in-out infinite;
}
@keyframes corePulse {
  0%, 100% { opacity: 0.08; transform: scale(0.9); }
  50% { opacity: 0.30; transform: scale(1.15); }
}
.mesh-particle  { fill: var(--accent-soft); }
.mesh-particle--m { fill: var(--magenta); }

/* ---------- HERO TAG MARQUEE (no label) ---------- */
.hero__tags {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  border-top: 1px solid var(--border-on-dark);
  background: rgba(5, 13, 31, 0.65);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  overflow: hidden;
  padding: var(--sp-4) 0;
  mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
}
.hero__tags-track {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  width: max-content;
  animation: tagMarquee 60s linear infinite;
}
.tag-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: var(--fs-sm);
  font-weight: 500;
  color: var(--text-on-dark-muted);
  padding: 0.5rem 1rem;
  border: 1px solid var(--border-on-dark);
  border-radius: 999px;
  white-space: nowrap;
}
.tag-pill::before {
  content: "";
  width: 5px; height: 5px;
  background: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 0 8px var(--accent);
}
.tag-pill:nth-child(3n)::before { background: var(--magenta); box-shadow: 0 0 8px var(--magenta); }
.tag-pill:nth-child(5n)::before { background: var(--indigo); box-shadow: 0 0 8px var(--indigo); }
@keyframes tagMarquee {
  from { transform: translateX(0); }
  to   { transform: translateX(calc(-50% - var(--sp-3) / 2)); }
}

/* ============================================================
   PRODUCTS — §02
   ============================================================ */
.products {
  position: relative;
  background: var(--surface-darker);
  color: var(--text-on-dark);
  padding: var(--sp-10) 0 var(--sp-11);
  overflow: hidden;
}
.products::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 40% at 80% 20%, rgba(6,182,212,0.12) 0%, transparent 50%),
    radial-gradient(ellipse 50% 40% at 20% 80%, rgba(217,70,239,0.08) 0%, transparent 50%);
  pointer-events: none;
}
.products__header {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: var(--sp-6);
  align-items: end;
  margin-bottom: var(--sp-8);
  position: relative;
}
.products__heading-block { max-width: 60rem; }
.products__label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--accent-soft);
  margin-bottom: var(--sp-4);
}
.products__label::before {
  content: "";
  width: 24px; height: 1px;
  background: var(--accent);
}
.products__title {
  font-size: clamp(2rem, 4.5vw, var(--fs-4xl));
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.05;
  color: var(--text-on-dark);
  margin-bottom: var(--sp-4);
}
.products__title .grad-text {
  background: linear-gradient(120deg, var(--accent-soft) 0%, var(--accent) 50%, var(--magenta) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.products__subtitle {
  font-size: var(--fs-md);
  color: var(--text-on-dark-muted);
  max-width: 38rem;
}
.products__counter {
  font-variant-numeric: tabular-nums;
  text-align: right;
}
.products__counter-num {
  font-size: 4rem;
  font-weight: 800;
  line-height: 1;
  background: linear-gradient(120deg, var(--accent-soft), var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: -0.05em;
}
.products__counter-label {
  font-size: var(--fs-xs);
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--text-on-dark-faint);
  margin-top: 0.25rem;
}

.products__grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: var(--sp-5);
  position: relative;
}

.product-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: linear-gradient(180deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0.015) 100%);
  border: 1px solid var(--border-on-dark);
  border-radius: var(--radius-lg);
  padding: var(--sp-6);
  min-height: 320px;
  overflow: hidden;
  transition: all 380ms var(--ease);
  isolation: isolate;
}
.product-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 0%), rgba(6,182,212,0.10) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 380ms var(--ease);
  pointer-events: none;
  z-index: -1;
}
.product-card:hover {
  border-color: rgba(103, 232, 249, 0.4);
  transform: translateY(-4px);
  box-shadow: 0 24px 60px rgba(6, 182, 212, 0.10);
}
.product-card:hover::before { opacity: 1; }
.product-card:hover .product-card__arrow {
  transform: translate(4px, -4px);
  background: var(--accent);
  color: #ffffff;
  border-color: var(--accent);
}

/* Card layout variants */
.product-card__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: var(--sp-5);
  gap: var(--sp-4);
}
.product-card__brand {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--text-on-dark-faint);
  flex-wrap: wrap;
}
.product-card__brand-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 10px var(--accent);
  flex-shrink: 0;
}
.product-card__brand-dot--m { background: var(--magenta); box-shadow: 0 0 10px var(--magenta); }
.product-card__brand-dot--i { background: var(--indigo); box-shadow: 0 0 10px var(--indigo); }
.product-card__brand-dot--g { background: #10b981; box-shadow: 0 0 10px #10b981; }
.product-card__brand-dot--a { background: #f59e0b; box-shadow: 0 0 10px #f59e0b; }
.product-card__brand-dot--t { background: #14b8a6; box-shadow: 0 0 10px #14b8a6; }
.product-card__brand-dot--r { background: #ec4899; box-shadow: 0 0 10px #ec4899; }

.product-card__arrow {
  width: 36px; height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-on-dark-strong);
  border-radius: 50%;
  color: var(--text-on-dark);
  transition: all 380ms var(--ease);
  flex-shrink: 0;
}

.product-card__name {
  font-size: clamp(1.5rem, 2.5vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.05;
  color: var(--text-on-dark);
  margin-bottom: var(--sp-2);
}
.product-card__tagline {
  font-size: var(--fs-md);
  font-weight: 500;
  color: var(--accent-soft);
  margin-bottom: var(--sp-4);
  letter-spacing: -0.01em;
  line-height: 1.4;
}
.product-card__desc {
  font-size: var(--fs-sm);
  line-height: 1.65;
  color: var(--text-on-dark-muted);
  margin-bottom: var(--sp-4);
  max-width: 36rem;
}
.product-card__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: auto;
  padding-top: var(--sp-4);
}
.product-card__chip {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-on-dark-faint);
  padding: 0.3rem 0.7rem;
  border: 1px solid var(--border-on-dark);
  border-radius: 999px;
}

/* ↳ Fix: <strong> in products section must be light, not navy */
.products strong,
.product-card strong,
.product-card p strong,
.product-card__desc strong { color: var(--text-on-dark); font-weight: 600; }

/* App store badges — official black brand style */
.app-stores {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: var(--sp-3);
}
.app-store-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  height: 52px;
  padding: 0 1rem 0 0.85rem;
  background: #000;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 9px;
  transition: all var(--dur) var(--ease);
  cursor: pointer;
  user-select: none;
}
.app-store-badge:hover {
  background: #1a1a1a;
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-1px);
}
.app-store-badge__icon {
  flex-shrink: 0;
}
.app-store-badge__text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.05;
}
.app-store-badge__small {
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0;
  color: #ffffff;
  margin-bottom: 0.18rem;
}
.app-store-badge__name {
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: -0.015em;
  color: #ffffff;
}

.product-card--flagship { grid-column: span 12; min-height: 380px; }
.product-card--xl  { grid-column: span 7; min-height: 440px; }
.product-card--lg  { grid-column: span 5; min-height: 440px; }
.product-card--md  { grid-column: span 4; }
.product-card--sm  { grid-column: span 3; }

/* Flagship — KDM lokomotif */
.product-card--flagship {
  background: linear-gradient(135deg, rgba(6,182,212,0.06) 0%, rgba(217,70,239,0.04) 50%, rgba(255,255,255,0.02) 100%);
  border: 1px solid rgba(103, 232, 249, 0.20);
}
.product-card--flagship::after {
  content: "";
  position: absolute;
  top: 0; right: 0;
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(6,182,212,0.18) 0%, transparent 60%);
  pointer-events: none;
  z-index: -1;
}
.product-card--flagship .product-card__inner {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: var(--sp-7);
  align-items: stretch;
  height: 100%;
}
.product-card--flagship .product-card__left {
  display: flex;
  flex-direction: column;
}
.product-card--flagship .product-card__right {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-left: var(--sp-6);
  border-left: 1px solid var(--border-on-dark);
}
.product-card--flagship .product-card__name { font-size: clamp(2.5rem, 4.5vw, 4rem); }
.product-card--flagship .product-card__tagline { font-size: var(--fs-lg); }

/* Product logo on cards */
.product-card__logo {
  height: 56px;
  width: auto;
  display: block;
  margin-bottom: var(--sp-4);
}
.product-card--flagship .product-card__logo { height: 88px; margin-bottom: var(--sp-5); }
.product-card--xl .product-card__logo { height: 72px; }
.product-card--lg .product-card__logo { height: 64px; }

/* Flagship badge — top of card */
.product-card__flagship-badge {
  position: absolute;
  top: var(--sp-5);
  right: var(--sp-5);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--accent-soft);
  padding: 0.4rem 0.85rem;
  background: rgba(6, 182, 212, 0.10);
  border: 1px solid rgba(103, 232, 249, 0.40);
  border-radius: 999px;
  z-index: 2;
}
.product-card__flagship-badge::before {
  content: "";
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--accent);
  animation: pulse 2.4s ease-in-out infinite;
}

/* Certification badges — small pills with icon */
.product-card__certs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: var(--sp-4);
  padding-top: var(--sp-4);
  border-top: 1px dashed var(--border-on-dark);
}
.product-card__cert {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--text-on-dark-muted);
  padding: 0.45rem 0.8rem;
  background: rgba(250, 250, 250, 0.04);
  border: 1px solid var(--border-on-dark);
  border-radius: var(--radius-sm);
}
.product-card__cert-icon {
  width: 14px; height: 14px;
  color: var(--accent-soft);
  flex-shrink: 0;
}
.product-card__cert--gold .product-card__cert-icon { color: #f59e0b; }
.product-card__cert--green .product-card__cert-icon { color: #10b981; }
.product-card__cert--magenta .product-card__cert-icon { color: var(--magenta); }

/* Stats inline (for flagship right block) */
.product-card__stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-5);
  margin: var(--sp-5) 0;
}
.product-card__stat-num {
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--accent-soft);
  font-variant-numeric: tabular-nums;
}
.product-card__stat-label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--text-on-dark-faint);
  margin-top: 0.4rem;
}

/* Feature list for flagship/xl cards */
.product-card__features {
  list-style: none;
  margin: var(--sp-3) 0 var(--sp-4);
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem 1.5rem;
}
.product-card__features li {
  font-size: var(--fs-sm);
  font-weight: 500;
  color: var(--text-on-dark-muted);
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  line-height: 1.4;
}
.product-card__features li::before {
  content: "";
  width: 14px; height: 14px;
  flex-shrink: 0;
  margin-top: 0.15rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 14' fill='none'%3E%3Cpath d='M2 7l3.5 3.5L12 4' stroke='%2367e8f9' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}

/* Soon / placeholder */
.product-card--soon {
  border-style: dashed;
  border-color: rgba(250, 250, 250, 0.14);
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.005));
}
.product-card--soon .product-card__name { color: var(--text-on-dark-faint); }
.product-card--soon:hover { transform: none; box-shadow: none; }
.product-card__soon-badge {
  display: inline-block;
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--text-on-dark-faint);
  padding: 0.3rem 0.65rem;
  border: 1px solid var(--border-on-dark);
  border-radius: 999px;
  margin-bottom: var(--sp-3);
}

/* Decorative corner brackets */
.product-card__corner {
  position: absolute;
  width: 18px; height: 18px;
  border: 1px solid var(--accent);
  opacity: 0.35;
}
.product-card__corner--tl { top: 12px; left: 12px; border-right: 0; border-bottom: 0; }
.product-card__corner--br { bottom: 12px; right: 12px; border-left: 0; border-top: 0; }

/* Responsive grid */
@media (max-width: 1080px) {
  .product-card--xl,
  .product-card--lg { grid-column: span 6; min-height: 380px; }
  .product-card--md { grid-column: span 6; }
  .product-card--sm { grid-column: span 6; }
  .product-card--flagship .product-card__inner {
    grid-template-columns: 1fr;
    gap: var(--sp-5);
  }
  .product-card--flagship .product-card__right {
    padding-left: 0;
    padding-top: var(--sp-5);
    border-left: 0;
    border-top: 1px solid var(--border-on-dark);
  }
}
@media (max-width: 720px) {
  .products__grid { gap: var(--sp-4); }
  .product-card--flagship,
  .product-card--xl,
  .product-card--lg,
  .product-card--md,
  .product-card--sm { grid-column: span 12; min-height: 280px; }
  .products__header { grid-template-columns: 1fr; }
  .products__counter { text-align: left; }
  .product-card__features { grid-template-columns: 1fr; }
}

/* ---------- 8. RESPONSIVE ---------- */
@media (max-width: 1080px) {
  .topnav__menu { gap: var(--sp-5); }
  .topnav__menu a { font-size: var(--fs-xs); }
}
@media (max-width: 960px) {
  :root { --nav-h: 76px; }
  .topnav__logo,
  .topnav__logo img,
  .topnav__logo svg { height: 50px; }
  .topnav__menu { display: none; }
  .topnav__burger { display: inline-flex; }
  .topnav__cta { display: none; }
  .hero__container {
    grid-template-columns: 1fr;
    padding-top: var(--sp-9);
    padding-bottom: var(--sp-8);
    gap: var(--sp-6);
  }
  .hero__visual { height: 360px; order: -1; }
  .hero__mesh { max-width: 320px; }
  .hero__meta {
    position: static;
    flex-direction: column;
    align-items: flex-start;
    gap: var(--sp-3);
    padding: var(--sp-7) var(--gutter) 0;
  }
  .hero__meta-stats { gap: var(--sp-4); flex-wrap: wrap; }
}
@media (max-width: 600px) {
  :root { --sp-10: 4rem; --sp-9: 3rem; --gutter: 1.25rem; --nav-h: 64px; }
  .topnav__logo,
  .topnav__logo img,
  .topnav__logo svg { height: 40px; }
  .hero { min-height: auto; }
  .hero__cta .btn { flex: 1 1 auto; }
  .hero__title { font-size: clamp(2rem, 11vw, 2.75rem); }
}

/* ============================================================
   §03 HAKKIMIZDA — About section
   ============================================================ */
.about {
  background: var(--primary-900);
  color: var(--text-on-dark);
  padding: var(--sp-10) 0;
  position: relative;
  overflow: hidden;
}
.about::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 64px 64px;
  pointer-events: none;
  z-index: 0;
}
.about__container { position: relative; z-index: 1; }

/* — Header — */
.about__header { max-width: 880px; margin-bottom: var(--sp-8); }
.about__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  color: var(--accent-soft);
  margin-bottom: var(--sp-4);
}
.about__eyebrow::before {
  content: "";
  width: 24px;
  height: 1px;
  background: var(--accent);
}
.about__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: var(--sp-5);
  color: var(--text-on-dark);
}
.about__title em {
  font-style: normal;
  background: linear-gradient(135deg, var(--accent) 0%, var(--magenta) 50%, var(--indigo) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.about__lead {
  font-size: 1.125rem;
  line-height: 1.65;
  color: var(--text-on-dark-muted);
  max-width: 760px;
}

/* — Metrics grid — */
.about__metrics {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: var(--sp-3);
  margin-bottom: var(--sp-9);
}
.about__metric {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  padding: var(--sp-5);
  position: relative;
  transition: border-color 200ms ease, background 200ms ease;
}
.about__metric:hover {
  border-color: rgba(103,232,249,0.30);
  background: rgba(255,255,255,0.05);
}
.about__metric-icon {
  width: 28px;
  height: 28px;
  margin-bottom: var(--sp-3);
  color: var(--accent-soft);
  opacity: 0.85;
}
.about__metric-value {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 600;
  line-height: 1;
  color: var(--text-on-dark);
  margin-bottom: var(--sp-2);
  letter-spacing: -0.02em;
}
.about__metric-label {
  font-size: 0.8125rem;
  line-height: 1.45;
  color: var(--text-on-dark-muted);
  font-weight: 400;
}

/* — Story / manifesto — */
.about__story {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: var(--sp-7);
  margin-bottom: var(--sp-9);
  align-items: start;
}
.about__story-label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  color: var(--accent-soft);
  padding-top: var(--sp-2);
}
.about__story-body {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--text-on-dark-muted);
}
.about__story-body p { margin-bottom: var(--sp-4); }
.about__story-body p:last-child { margin-bottom: 0; }
.about__story-body strong { color: var(--text-on-dark); font-weight: 600; }
.about__quote {
  border-left: 2px solid var(--accent);
  padding: var(--sp-2) 0 var(--sp-2) var(--sp-4);
  margin: var(--sp-5) 0;
  font-style: italic;
  color: var(--text-on-dark);
  font-size: 1rem;
  line-height: 1.65;
}
.about__quote-attr {
  display: block;
  font-style: normal;
  font-size: 0.8125rem;
  color: var(--text-on-dark-faint);
  margin-top: var(--sp-2);
  letter-spacing: 0.04em;
}

/* — Vision & Mission — */
.about__vm {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-4);
  margin-bottom: var(--sp-9);
}
.about__vm-card {
  background: linear-gradient(180deg, rgba(6,182,212,0.04) 0%, rgba(6,182,212,0) 100%);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 16px;
  padding: var(--sp-7);
  position: relative;
  overflow: hidden;
}
.about__vm-card--mission {
  background: linear-gradient(180deg, rgba(217,70,239,0.04) 0%, rgba(217,70,239,0) 100%);
}
.about__vm-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--accent), transparent 60%);
}
.about__vm-card--mission::before {
  background: linear-gradient(90deg, var(--magenta), transparent 60%);
}
.about__vm-icon {
  width: 36px;
  height: 36px;
  margin-bottom: var(--sp-4);
  color: var(--accent-soft);
}
.about__vm-card--mission .about__vm-icon { color: #f0abfc; }
.about__vm-label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  color: var(--accent-soft);
  margin-bottom: var(--sp-2);
}
.about__vm-card--mission .about__vm-label { color: #f0abfc; }
.about__vm-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-on-dark);
  margin-bottom: var(--sp-4);
  letter-spacing: -0.01em;
}
.about__vm-text {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-on-dark-muted);
}
.about__vm-text strong { color: var(--text-on-dark); font-weight: 600; }

/* — Principles grid — */
.about__principles-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: var(--sp-5);
  flex-wrap: wrap;
  gap: var(--sp-3);
}
.about__section-label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  color: var(--accent-soft);
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
}
.about__section-label::before {
  content: "";
  width: 24px;
  height: 1px;
  background: var(--accent);
}
.about__section-heading {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 600;
  color: var(--text-on-dark);
  letter-spacing: -0.01em;
}
.about__principles {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-3);
  margin-bottom: var(--sp-8);
}
.about__principle {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  padding: var(--sp-5);
  transition: border-color 200ms ease, transform 200ms ease;
}
.about__principle:hover {
  border-color: rgba(103,232,249,0.25);
  transform: translateY(-2px);
}
.about__principle-num {
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--accent-soft);
  margin-bottom: var(--sp-3);
  letter-spacing: 0.04em;
}
.about__principle-title {
  font-family: var(--font-display);
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--text-on-dark);
  margin-bottom: var(--sp-2);
  line-height: 1.3;
}
.about__principle-text {
  font-size: 0.875rem;
  line-height: 1.55;
  color: var(--text-on-dark-muted);
}

/* — Footprint band — */
.about__footprint {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: var(--sp-5);
  align-items: center;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: var(--sp-5) var(--sp-6);
}
.about__footprint-icon {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, rgba(6,182,212,0.18), rgba(99,102,241,0.18));
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-soft);
  flex-shrink: 0;
}
.about__footprint-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.about__footprint-label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  color: var(--accent-soft);
}
.about__footprint-addr {
  font-size: 0.9375rem;
  line-height: 1.5;
  color: var(--text-on-dark);
  font-weight: 500;
}
.about__footprint-meta {
  font-size: 0.8125rem;
  color: var(--text-on-dark-muted);
  font-weight: 400;
}
.about__footprint-tags {
  display: flex;
  gap: var(--sp-2);
  flex-wrap: wrap;
  justify-content: flex-end;
}
.about__footprint-tag {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(6,182,212,0.10);
  border: 1px solid rgba(103,232,249,0.30);
  color: var(--accent-soft);
}

/* — Locations grid — */
.about__locations {
  margin-top: var(--sp-2);
}
.about__locations-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: var(--sp-5);
  flex-wrap: wrap;
  gap: var(--sp-3);
}
.about__location-group {
  margin-bottom: var(--sp-5);
}
.about__location-group:last-child { margin-bottom: 0; }
.about__location-group-label {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  color: var(--text-on-dark-faint);
  margin-bottom: var(--sp-3);
  text-transform: none;
}
.about__location-group-label::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(255,255,255,0.10), transparent);
}
.about__location-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-3);
}
.about__location-grid--abroad {
  grid-template-columns: repeat(2, 1fr);
  max-width: calc((100% - var(--sp-3) * 2) * 2 / 3 + var(--sp-3));
}
.about__location-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  padding: var(--sp-4) var(--sp-5);
  display: flex;
  align-items: flex-start;
  gap: var(--sp-3);
  transition: border-color 200ms ease, background 200ms ease, transform 200ms ease;
  position: relative;
  overflow: hidden;
}
.about__location-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 3px;
  height: 100%;
  background: var(--accent);
  opacity: 0.35;
}
.about__location-card--abroad::before { background: var(--indigo); opacity: 0.45; }
.about__location-card:hover {
  border-color: rgba(103,232,249,0.30);
  background: rgba(255,255,255,0.05);
  transform: translateY(-1px);
}
.about__location-card--abroad:hover {
  border-color: rgba(99,102,241,0.40);
}
.about__location-flag {
  width: 28px;
  height: 20px;
  border-radius: 3px;
  flex-shrink: 0;
  margin-top: 2px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.12);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.about__location-flag svg { width: 100%; height: 100%; display: block; }
.about__location-text {
  flex: 1;
  min-width: 0;
}
.about__location-role {
  font-family: var(--font-display);
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text-on-dark);
  line-height: 1.3;
  margin-bottom: 4px;
  letter-spacing: -0.005em;
}
.about__location-place {
  font-size: 0.8125rem;
  line-height: 1.45;
  color: var(--text-on-dark-muted);
  font-weight: 400;
}

/* — Responsive — */
@media (max-width: 1100px) {
  .about__metrics { grid-template-columns: repeat(3, 1fr); }
  .about__principles { grid-template-columns: repeat(2, 1fr); }
  .about__location-grid { grid-template-columns: repeat(2, 1fr); }
  .about__location-grid--abroad { max-width: 100%; }
}
@media (max-width: 820px) {
  .about__story { grid-template-columns: 1fr; gap: var(--sp-4); }
  .about__vm { grid-template-columns: 1fr; }
}
@media (max-width: 540px) {
  .about__metrics { grid-template-columns: repeat(2, 1fr); }
  .about__principles { grid-template-columns: 1fr; }
  .about__location-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   §04 HİZMETLER — Services section (light theme)
   ============================================================ */
.services {
  background: var(--bg);
  color: var(--text);
  padding: var(--sp-10) 0;
  position: relative;
  overflow: hidden;
}
.services::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(12,31,58,0.025) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(12,31,58,0.025) 1px, transparent 1px);
  background-size: 64px 64px;
  pointer-events: none;
  z-index: 0;
}
.services__container { position: relative; z-index: 1; }

/* — Header — */
.services__header {
  max-width: 880px;
  margin-bottom: var(--sp-8);
}
.services__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  color: var(--accent);
  margin-bottom: var(--sp-4);
}
.services__eyebrow::before {
  content: "";
  width: 24px;
  height: 1px;
  background: var(--accent);
}
.services__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: var(--sp-5);
  color: var(--text);
}
.services__title em {
  font-style: normal;
  background: linear-gradient(135deg, var(--accent) 0%, var(--indigo) 60%, var(--magenta) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.services__lead {
  font-size: 1.125rem;
  line-height: 1.65;
  color: var(--text-muted);
  max-width: 760px;
}

/* — Group — */
.services__group {
  margin-bottom: var(--sp-8);
}
.services__group:last-child { margin-bottom: 0; }
.services__group-header {
  display: flex;
  align-items: baseline;
  gap: var(--sp-4);
  margin-bottom: var(--sp-5);
  flex-wrap: wrap;
}
.services__group-label {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-3);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  color: var(--text-muted);
}
.services__group-label::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(6,182,212,0.10);
}
.services__group--classic .services__group-label::before {
  background: var(--indigo);
  box-shadow: 0 0 0 4px rgba(99,102,241,0.10);
}
.services__group-heading {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2vw, 1.625rem);
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.01em;
}
.services__group-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(12,31,58,0.10), transparent);
  min-width: 60px;
}

/* — Grid — */
.services__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-3);
}
.services__grid--classic { grid-template-columns: repeat(2, 1fr); }

/* — Card — */
.service-card {
  position: relative;
  background: #ffffff;
  border: 1px solid rgba(12,31,58,0.08);
  border-radius: 16px;
  padding: var(--sp-5);
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  transition: border-color 200ms ease, transform 200ms ease, box-shadow 200ms ease;
  overflow: hidden;
}
.service-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--accent);
  opacity: 0;
  transition: opacity 200ms ease;
}
.service-card--classic::before { background: var(--indigo); }
.service-card:hover {
  border-color: rgba(6,182,212,0.40);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px -16px rgba(6,182,212,0.30);
}
.service-card--classic:hover {
  border-color: rgba(99,102,241,0.40);
  box-shadow: 0 12px 32px -16px rgba(99,102,241,0.30);
}
.service-card:hover::before { opacity: 1; }

.service-card__cat {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  color: var(--accent);
}
.service-card--classic .service-card__cat { color: var(--indigo); }
.service-card__cat::before {
  content: "";
  width: 4px; height: 4px;
  border-radius: 999px;
  background: currentColor;
}
.service-card__icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(6,182,212,0.10), rgba(6,182,212,0.04));
  border: 1px solid rgba(6,182,212,0.20);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}
.service-card--classic .service-card__icon {
  background: linear-gradient(135deg, rgba(99,102,241,0.10), rgba(99,102,241,0.04));
  border-color: rgba(99,102,241,0.20);
  color: var(--indigo);
}
.service-card__title {
  font-family: var(--font-display);
  font-size: 1.0625rem;
  font-weight: 600;
  line-height: 1.3;
  color: var(--text);
  letter-spacing: -0.01em;
}
.service-card__desc {
  font-size: 0.875rem;
  line-height: 1.55;
  color: var(--text-muted);
  flex: 1;
}
.service-card__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: auto;
  padding-top: var(--sp-3);
  border-top: 1px dashed rgba(12,31,58,0.08);
}
.service-card__chip {
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  padding: 4px 9px;
  border-radius: 999px;
  background: rgba(12,31,58,0.04);
  color: var(--text-muted);
  border: 1px solid rgba(12,31,58,0.06);
}
.service-card--classic .service-card__chip {
  background: rgba(99,102,241,0.06);
  color: var(--indigo);
  border-color: rgba(99,102,241,0.12);
}
.service-card:not(.service-card--classic) .service-card__chip {
  background: rgba(6,182,212,0.06);
  color: #0e7490;
  border-color: rgba(6,182,212,0.12);
}

/* — Wide cards (classic group, larger layout) — */
.services__grid--classic .service-card {
  flex-direction: row;
  align-items: flex-start;
  gap: var(--sp-4);
  padding: var(--sp-6);
}
.services__grid--classic .service-card__icon {
  width: 48px;
  height: 48px;
}
.services__grid--classic .service-card__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}
.services__grid--classic .service-card__title {
  font-size: 1.1875rem;
}
.services__grid--classic .service-card__desc {
  font-size: 0.9375rem;
}

/* — Spotlight card (Group A · 5th item, full-width) — */
.service-card--spotlight {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.4fr);
  gap: var(--sp-7);
  padding: var(--sp-7);
  background:
    linear-gradient(135deg, #ffffff 0%, rgba(6,182,212,0.04) 60%, rgba(99,102,241,0.06) 100%);
  border: 1px solid rgba(6,182,212,0.22);
  position: relative;
}
.service-card--spotlight::before {
  height: 3px;
  opacity: 1;
  background: linear-gradient(90deg, var(--accent), var(--indigo) 60%, var(--magenta));
}
.service-card--spotlight::after {
  content: "FLAGSHIP HİZMET";
  position: absolute;
  top: 16px; right: 18px;
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  color: var(--accent);
  background: rgba(6,182,212,0.10);
  border: 1px solid rgba(6,182,212,0.30);
  padding: 4px 9px;
  border-radius: 999px;
}
.service-card__head {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}
.service-card--spotlight .service-card__icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
}
.service-card--spotlight .service-card__icon svg { width: 28px; height: 28px; }
.service-card--spotlight .service-card__title {
  font-size: 1.5rem;
  letter-spacing: -0.015em;
  line-height: 1.2;
}
.service-card--spotlight .service-card__desc {
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text-muted);
}
.service-card--spotlight .service-card__desc strong { color: var(--text); font-weight: 600; }
.service-card--spotlight .service-card__chips { border-top: 0; padding-top: var(--sp-2); }

.service-card__features-block {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}
.service-card__features-label {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
}
.service-card__features-label::before {
  content: "";
  width: 14px;
  height: 1px;
  background: var(--accent);
}
.service-card__features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-3) var(--sp-4);
  list-style: none;
  margin: 0;
  padding: 0;
}
.service-card__features li {
  font-size: 0.875rem;
  line-height: 1.5;
  color: var(--text-muted);
  display: flex;
  gap: var(--sp-2);
  align-items: flex-start;
}
.service-card__features li::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(6,182,212,0.16);
  border: 1px solid rgba(6,182,212,0.40);
  flex-shrink: 0;
  margin-top: 6px;
}
.service-card__features li strong {
  color: var(--text);
  font-weight: 600;
  display: block;
  margin-bottom: 2px;
}

/* — CTA strip — */
.services__cta {
  margin-top: var(--sp-7);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
  padding: var(--sp-5) var(--sp-6);
  background: var(--primary-900);
  color: var(--text-on-dark);
  border-radius: 16px;
  flex-wrap: wrap;
}
.services__cta-text {
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 500;
  max-width: 720px;
}
.services__cta-text strong { color: var(--accent-soft); font-weight: 600; }
.services__cta-actions {
  display: flex;
  gap: var(--sp-3);
  flex-wrap: wrap;
}

/* — Responsive — */
@media (max-width: 1100px) {
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .service-card--spotlight { grid-template-columns: 1fr; gap: var(--sp-5); }
  .service-card--spotlight .service-card__features { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 820px) {
  .services__grid--classic { grid-template-columns: 1fr; }
  .services__grid--classic .service-card {
    flex-direction: column;
    padding: var(--sp-5);
  }
  .services__cta { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 540px) {
  .services__grid { grid-template-columns: 1fr; }
  .service-card--spotlight { padding: var(--sp-5); }
  .service-card--spotlight::after { top: 12px; right: 12px; font-size: 0.5625rem; }
  .service-card--spotlight .service-card__features { grid-template-columns: 1fr; }
  .service-card--spotlight .service-card__title { font-size: 1.25rem; }
}

/* ============================================================
   §05 REFERANSLAR — References & Partners (light theme)
   ============================================================ */
.references {
  background: var(--bg);
  color: var(--text);
  padding: var(--sp-10) 0;
  position: relative;
}
.references__container { position: relative; z-index: 1; }

/* — Header — */
.references__header {
  max-width: 880px;
  margin-bottom: var(--sp-8);
}
.references__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  color: var(--accent);
  margin-bottom: var(--sp-4);
}
.references__eyebrow::before {
  content: "";
  width: 24px;
  height: 1px;
  background: var(--accent);
}
.references__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: var(--sp-5);
  color: var(--text);
}
.references__title em {
  font-style: normal;
  background: linear-gradient(135deg, var(--accent) 0%, var(--indigo) 60%, var(--magenta) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.references__lead {
  font-size: 1.125rem;
  line-height: 1.65;
  color: var(--text-muted);
  max-width: 760px;
}

/* — Subgroup — */
.references__subgroup {
  margin-bottom: var(--sp-9);
}
.references__subgroup:last-child { margin-bottom: 0; }
.references__subgroup-header {
  display: flex;
  align-items: baseline;
  gap: var(--sp-4);
  margin-bottom: var(--sp-5);
  flex-wrap: wrap;
}
.references__subgroup-label {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-3);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  color: var(--text-muted);
}
.references__subgroup-label::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(6,182,212,0.10);
}
.references__subgroup-heading {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2vw, 1.625rem);
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.01em;
}
.references__subgroup-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(12,31,58,0.10), transparent);
  min-width: 60px;
}

/* — Partners grid — */
.partners-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-3);
}
.partner-card {
  position: relative;
  background: #ffffff;
  border: 1px solid rgba(12,31,58,0.08);
  border-radius: 14px;
  padding: var(--sp-5);
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  text-align: center;
  align-items: center;
  transition: border-color 200ms ease, transform 200ms ease, box-shadow 200ms ease;
  overflow: hidden;
}
.partner-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--accent);
  opacity: 0;
  transition: opacity 200ms ease;
}
.partner-card:hover {
  border-color: rgba(6,182,212,0.30);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px -16px rgba(6,182,212,0.30);
}
.partner-card:hover::before { opacity: 1; }
.partner-card__logo {
  width: 100%;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--sp-2);
  background: var(--bg);
  border-radius: 8px;
}
.partner-card__logo img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}
.partner-card__name {
  font-family: var(--font-display);
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--text);
  margin: 0;
  letter-spacing: -0.01em;
}
.partner-card__relation {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(6,182,212,0.08);
  color: var(--accent);
  border: 1px solid rgba(6,182,212,0.20);
}
.partner-card__desc {
  font-size: 0.8125rem;
  line-height: 1.55;
  color: var(--text-muted);
  margin: 0;
}

/* — Reference categories — */
.references__category {
  margin-bottom: var(--sp-7);
}
.references__category:last-child { margin-bottom: 0; }
.references__category-label {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  color: var(--text-muted);
  margin-bottom: var(--sp-4);
}
.references__category-label::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--accent);
  flex-shrink: 0;
}
.references__category-label::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(12,31,58,0.10), transparent);
  min-width: 40px;
}
.references__category--international .references__category-label::before {
  background: var(--magenta);
}
.references__category--private .references__category-label::before {
  background: var(--indigo);
}

/* — Reference logo grid — */
.refs-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--sp-2);
}
.ref-card {
  background: #ffffff;
  border: 1px solid rgba(12,31,58,0.08);
  border-radius: 12px;
  padding: var(--sp-3) var(--sp-4);
  display: flex;
  align-items: center;
  justify-content: center;
  height: 88px;
  transition: border-color 200ms ease, transform 200ms ease, box-shadow 200ms ease;
}
.ref-card:hover {
  border-color: rgba(6,182,212,0.30);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px -10px rgba(6,182,212,0.25);
}
.ref-card img {
  max-width: 100%;
  max-height: 56px;
  width: auto;
  height: auto;
  display: block;
  object-fit: contain;
}

/* — Stats strip — */
.references__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-3);
  margin-top: var(--sp-7);
  padding: var(--sp-5) var(--sp-6);
  background: var(--primary-900);
  color: var(--text-on-dark);
  border-radius: 16px;
}
.references__stat-num {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 600;
  line-height: 1;
  background: linear-gradient(135deg, var(--accent) 0%, var(--magenta) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}
.references__stat-label {
  font-size: 0.8125rem;
  color: var(--text-on-dark-muted);
  line-height: 1.4;
}

/* — Responsive — */
@media (max-width: 1100px) {
  .partners-grid { grid-template-columns: repeat(3, 1fr); }
  .refs-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 900px) {
  .partners-grid { grid-template-columns: repeat(2, 1fr); }
  .references__stats { grid-template-columns: repeat(2, 1fr); gap: var(--sp-4); }
}
@media (max-width: 720px) {
  .refs-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 540px) {
  .partners-grid { grid-template-columns: 1fr; }
  .refs-grid { grid-template-columns: repeat(2, 1fr); }
  .references__stats { grid-template-columns: 1fr; }
}

/* ============================================================
   §06 YÖNETİM — Management section (dark theme)
   ============================================================ */
.management {
  background: var(--primary-900);
  color: var(--text-on-dark);
  padding: var(--sp-10) 0;
  position: relative;
  overflow: hidden;
}
.management::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 64px 64px;
  pointer-events: none;
  z-index: 0;
}
.management__container { position: relative; z-index: 1; }

/* — Header — */
.management__header {
  max-width: 880px;
  margin-bottom: var(--sp-8);
}
.management__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  color: var(--accent-soft);
  margin-bottom: var(--sp-4);
}
.management__eyebrow::before {
  content: "";
  width: 24px;
  height: 1px;
  background: var(--accent);
}
.management__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: var(--sp-5);
  color: var(--text-on-dark);
}
.management__title em {
  font-style: normal;
  background: linear-gradient(135deg, var(--accent) 0%, var(--magenta) 50%, var(--indigo) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.management__lead {
  font-size: 1.125rem;
  line-height: 1.65;
  color: var(--text-on-dark-muted);
  max-width: 760px;
}

/* — Tier — */
.team-tier {
  margin-bottom: var(--sp-9);
}
.team-tier:last-child { margin-bottom: 0; }
.team-tier__header {
  display: flex;
  align-items: baseline;
  gap: var(--sp-4);
  margin-bottom: var(--sp-5);
  flex-wrap: wrap;
}
.team-tier__label {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-3);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  color: var(--text-on-dark-muted);
}
.team-tier__label::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(6,182,212,0.10);
}
.team-tier--exec .team-tier__label::before { background: var(--magenta); box-shadow: 0 0 0 4px rgba(217,70,239,0.10); }
.team-tier--clevel .team-tier__label::before { background: var(--indigo); box-shadow: 0 0 0 4px rgba(99,102,241,0.10); }
.team-tier__heading {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2vw, 1.625rem);
  font-weight: 600;
  color: var(--text-on-dark);
  letter-spacing: -0.01em;
}
.team-tier__line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(255,255,255,0.10), transparent);
  min-width: 60px;
}

/* — Grids — */
.team-grid {
  display: grid;
  gap: var(--sp-3);
}
.team-grid--board { grid-template-columns: repeat(4, 1fr); }
.team-grid--exec {
  grid-template-columns: repeat(3, 1fr);
  max-width: 75%;
  margin: 0 auto;
}
.team-grid--clevel { grid-template-columns: repeat(6, 1fr); }
.team-grid--auditor {
  display: flex;
  justify-content: center;
  gap: var(--sp-3);
}
.team-grid--auditor .team-card {
  width: calc((100% / 6) - (var(--sp-3) * 5 / 6));
  min-width: 180px;
}

/* — Card (base) — */
.team-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  padding: var(--sp-4);
  cursor: pointer;
  transition: border-color 200ms ease, transform 200ms ease, background 200ms ease, box-shadow 200ms ease;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  position: relative;
  overflow: hidden;
}
.team-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--accent);
  opacity: 0;
  transition: opacity 200ms ease;
}
.team-card:hover {
  border-color: rgba(103,232,249,0.30);
  background: rgba(255,255,255,0.05);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px -16px rgba(6,182,212,0.30);
}
.team-card:hover::before { opacity: 1; }
.team-card:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}
.team-card__photo {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 12px;
  overflow: hidden;
  background: linear-gradient(135deg, #1e3a5f 0%, #0c1f3a 100%);
  position: relative;
}

/* Multi-role badge on card (top-right corner) */
.team-card__multi-role {
  position: absolute;
  top: 12px;
  right: 12px;
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 4px 9px;
  border-radius: 999px;
  background: rgba(6, 182, 212, 0.12);
  border: 1px solid rgba(103, 232, 249, 0.35);
  color: var(--accent-soft);
  z-index: 2;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  pointer-events: none;
}
.team-card__photo img,
.team-card__photo svg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.team-card__photo::after {
  content: "Özgeçmiş ▸";
  position: absolute;
  inset: auto 0 0 0;
  padding: var(--sp-2);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.10em;
  color: var(--accent-soft);
  background: linear-gradient(0deg, rgba(12,31,58,0.95), transparent);
  text-align: center;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 200ms ease, transform 200ms ease;
}
.team-card:hover .team-card__photo::after,
.team-card:focus-visible .team-card__photo::after {
  opacity: 1;
  transform: translateY(0);
}
.team-card__name {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--text-on-dark);
  letter-spacing: -0.01em;
  line-height: 1.25;
}
.team-card__title {
  font-size: 0.8125rem;
  color: var(--accent-soft);
  font-weight: 500;
  line-height: 1.3;
}

/* Secondary roles line for multi-role cards */
.team-card__title-extra {
  font-size: 0.75rem;
  color: var(--text-on-dark-muted);
  font-weight: 400;
  margin-top: 4px;
  letter-spacing: 0.01em;
  line-height: 1.3;
}
.team-card--board .team-card__title-extra { font-size: 0.8125rem; }
.team-card--clevel .team-card__title-extra { font-size: 0.6875rem; }

/* — Tier-specific card sizes — */
.team-card--board { padding: var(--sp-5); }
.team-card--board .team-card__name { font-size: 1.125rem; }
.team-card--board .team-card__title { font-size: 0.875rem; }

.team-card--exec { padding: var(--sp-4); }
.team-card--exec .team-card__name { font-size: 1.0625rem; }

.team-card--clevel { padding: var(--sp-3); }
.team-card--clevel .team-card__name { font-size: 0.9375rem; }
.team-card--clevel .team-card__title { font-size: 0.75rem; letter-spacing: 0.04em; }

/* — Modal — */
.team-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: var(--sp-4);
}
.team-modal.is-open { display: flex; animation: teamModalFadeIn 200ms ease forwards; }
@keyframes teamModalFadeIn { from { opacity: 0; } to { opacity: 1; } }
.team-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8,15,28,0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.team-modal__content {
  position: relative;
  background: var(--primary-900);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 18px;
  max-width: 760px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 0;
  box-shadow: 0 24px 64px -20px rgba(0,0,0,0.60);
}
.team-modal.is-open .team-modal__content {
  animation: teamModalScaleIn 220ms cubic-bezier(0.2, 0.9, 0.3, 1) forwards;
}
@keyframes teamModalScaleIn {
  from { transform: scale(0.96); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}
.team-modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--text-on-dark);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 200ms ease, border-color 200ms ease;
  z-index: 1;
}
.team-modal__close:hover {
  background: rgba(255,255,255,0.10);
  border-color: rgba(255,255,255,0.20);
}
.team-modal__photo {
  background: linear-gradient(135deg, #1e3a5f 0%, #0c1f3a 100%);
  border-right: 1px solid rgba(255,255,255,0.08);
  position: relative;
  min-height: 240px;
}
.team-modal__photo img,
.team-modal__photo svg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.team-modal__body {
  padding: var(--sp-7);
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}
.team-modal__tier {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  color: var(--accent-soft);
}
.team-modal__tier::before {
  content: "";
  width: 16px; height: 1px;
  background: var(--accent);
}
.team-modal__name {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 1.875rem);
  font-weight: 600;
  color: var(--text-on-dark);
  letter-spacing: -0.015em;
  line-height: 1.15;
}
.team-modal__title {
  font-size: 1rem;
  color: var(--accent-soft);
  font-weight: 500;
  margin-bottom: var(--sp-2);
}

/* Multi-role list inside modal (replaces single title for multi-role people) */
.team-modal__roles {
  display: none;
  flex-direction: column;
  gap: 8px;
  margin: var(--sp-2) 0 var(--sp-3);
  padding: var(--sp-4);
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
}
.team-modal__roles.is-visible { display: flex; }
.team-modal__role-row {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: var(--sp-3);
  align-items: baseline;
}
.team-modal__role-tier {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.10em;
  color: var(--accent-soft);
}
.team-modal__role-title {
  font-size: 0.9375rem;
  color: var(--text-on-dark);
  font-weight: 500;
}
.team-modal__bio {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--text-on-dark-muted);
  white-space: pre-wrap;
}
.team-modal__linkedin {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  margin-top: var(--sp-3);
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(6,182,212,0.10);
  border: 1px solid rgba(103,232,249,0.30);
  color: var(--accent-soft);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  width: fit-content;
  transition: background 200ms ease, border-color 200ms ease;
}
.team-modal__linkedin:hover {
  background: rgba(6,182,212,0.18);
  border-color: rgba(103,232,249,0.50);
}
body.team-modal-open { overflow: hidden; }

/* — Responsive — */
@media (max-width: 1100px) {
  .team-grid--board { grid-template-columns: repeat(2, 1fr); }
  .team-grid--exec { max-width: 100%; }
  .team-grid--clevel { grid-template-columns: repeat(3, 1fr); }
  .team-grid--auditor .team-card { width: 33%; min-width: 200px; }
}
@media (max-width: 820px) {
  .team-grid--exec { grid-template-columns: repeat(2, 1fr); }
  .team-grid--auditor .team-card { width: 50%; min-width: 220px; }
  .team-modal__content { grid-template-columns: 1fr; }
  .team-modal__photo { min-height: 220px; max-height: 280px; border-right: 0; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .team-modal__body { padding: var(--sp-5); }
}
@media (max-width: 540px) {
  .team-grid--board,
  .team-grid--exec,
  .team-grid--clevel { grid-template-columns: 1fr; }
  .team-grid--auditor .team-card { width: 100%; }
}

/* ============================================================
   §07 İLETİŞİM — Contact section (light theme)
   ============================================================ */
.contact {
  background: var(--bg);
  color: var(--text);
  padding: var(--sp-10) 0;
  position: relative;
}
.contact__container { position: relative; z-index: 1; }

/* Header */
.contact__header {
  max-width: 880px;
  margin-bottom: var(--sp-8);
}
.contact__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  color: var(--accent);
  margin-bottom: var(--sp-4);
}
.contact__eyebrow::before {
  content: "";
  width: 24px; height: 1px;
  background: var(--accent);
}
.contact__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: var(--sp-5);
  color: var(--text);
}
.contact__title em {
  font-style: normal;
  background: linear-gradient(135deg, var(--accent), var(--indigo) 60%, var(--magenta));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.contact__lead {
  font-size: 1.125rem;
  line-height: 1.65;
  color: var(--text-muted);
  max-width: 760px;
}

/* Main: form + sidebar */
.contact__main {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: var(--sp-5);
  margin-bottom: var(--sp-9);
}

/* Form */
.contact-form {
  background: #ffffff;
  border: 1px solid rgba(12,31,58,0.08);
  border-radius: 18px;
  padding: var(--sp-6);
}
.contact-form__heading {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: var(--sp-2);
  letter-spacing: -0.01em;
}
.contact-form__sub {
  font-size: 0.9375rem;
  color: var(--text-muted);
  margin-bottom: var(--sp-5);
}
.contact-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-3);
  margin-bottom: var(--sp-3);
}
.contact-form__field { display: flex; flex-direction: column; }
.contact-form__field--full { grid-column: 1 / -1; }
.contact-form__label {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 6px;
  letter-spacing: 0.01em;
}
.contact-form__label .req { color: var(--accent); margin-left: 2px; }
.contact-form__input,
.contact-form__textarea,
.contact-form__select {
  font-family: inherit;
  font-size: 0.9375rem;
  color: var(--text);
  background: var(--bg);
  border: 1px solid rgba(12,31,58,0.10);
  border-radius: 10px;
  padding: 11px 14px;
  transition: border-color 200ms ease, box-shadow 200ms ease, background 200ms ease;
  width: 100%;
  outline: none;
}
.contact-form__textarea {
  resize: vertical;
  min-height: 120px;
  line-height: 1.55;
}
.contact-form__select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'><path d='M2 4l4 4 4-4' stroke='%2306b6d4' stroke-width='1.6' fill='none' stroke-linecap='round'/></svg>");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 12px 12px;
  padding-right: 36px;
}
.contact-form__input:focus,
.contact-form__textarea:focus,
.contact-form__select:focus {
  border-color: var(--accent);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(6,182,212,0.12);
}
.contact-form__field.is-error .contact-form__input,
.contact-form__field.is-error .contact-form__textarea,
.contact-form__field.is-error .contact-form__select {
  border-color: #ef4444;
  box-shadow: 0 0 0 3px rgba(239,68,68,0.10);
}
.contact-form__error {
  font-size: 0.75rem;
  color: #ef4444;
  margin-top: 4px;
  min-height: 1em;
  display: none;
}
.contact-form__field.is-error .contact-form__error { display: block; }

/* Phone: country code select + masked number */
.contact-form__phone {
  display: flex;
  gap: 8px;
}
.contact-form__phone-cc {
  width: 120px;
  flex-shrink: 0;
  font-family: inherit;
  font-size: 0.9375rem;
  color: var(--text);
  background: var(--bg);
  border: 1px solid rgba(12,31,58,0.10);
  border-radius: 10px;
  padding: 11px 32px 11px 12px;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'><path d='M2 4l4 4 4-4' stroke='%2306b6d4' stroke-width='1.6' fill='none' stroke-linecap='round'/></svg>");
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 12px 12px;
  transition: border-color 200ms ease, box-shadow 200ms ease;
  font-variant-numeric: tabular-nums;
}
.contact-form__phone-cc:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(6,182,212,0.12);
  background-color: #fff;
}
.contact-form__phone-num {
  flex: 1;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.04em;
}

/* Honeypot (spam) - visually hidden but accessible */
.contact-form__honeypot {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
}

/* KVKK */
.contact-form__kvkk {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-2);
  margin-top: var(--sp-2);
  margin-bottom: var(--sp-4);
  font-size: 0.8125rem;
  line-height: 1.5;
  color: var(--text-muted);
}
.contact-form__kvkk input[type="checkbox"] {
  width: 18px; height: 18px;
  margin-top: 2px;
  flex-shrink: 0;
  accent-color: var(--accent);
  cursor: pointer;
}
.contact-form__kvkk a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* Submit */
.contact-form__submit {
  font-family: inherit;
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: -0.005em;
  color: #fff;
  background: var(--accent);
  border: 0;
  border-radius: 10px;
  padding: 13px 24px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: background 200ms ease, transform 150ms ease, box-shadow 200ms ease;
  box-shadow: 0 4px 14px rgba(6,182,212,0.25);
}
.contact-form__submit:hover:not(:disabled) {
  background: var(--accent-deep);
  transform: translateY(-1px);
  box-shadow: 0 10px 28px rgba(6,182,212,0.40);
}
.contact-form__submit:disabled { opacity: 0.6; cursor: not-allowed; }

/* Form success state */
.contact-form__success {
  display: none;
  background: rgba(34,197,94,0.08);
  border: 1px solid rgba(34,197,94,0.30);
  color: #15803d;
  border-radius: 10px;
  padding: var(--sp-5);
  margin-top: var(--sp-3);
  font-size: 0.9375rem;
  line-height: 1.5;
}
.contact-form__success.is-visible { display: block; }
.contact-form__success-title {
  font-family: var(--font-display);
  font-weight: 600;
  margin-bottom: 4px;
}

.contact-form__error {
  display: none;
  background: rgba(239,68,68,0.08);
  border: 1px solid rgba(239,68,68,0.30);
  color: #b91c1c;
  border-radius: 10px;
  padding: var(--sp-5);
  margin-top: var(--sp-3);
  font-size: 0.9375rem;
  line-height: 1.5;
}
.contact-form__error.is-visible { display: block; }
.contact-form__error-title {
  font-family: var(--font-display);
  font-weight: 600;
  margin-bottom: 4px;
}

/* Sidebar */
.contact-sidebar {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}
.contact-sidebar__block {
  background: #ffffff;
  border: 1px solid rgba(12,31,58,0.08);
  border-radius: 14px;
  padding: var(--sp-5);
}
.contact-sidebar__label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  color: var(--text-muted);
  margin-bottom: var(--sp-3);
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
}
.contact-sidebar__label::before {
  content: "";
  width: 8px; height: 8px;
  border-radius: 999px;
  background: var(--accent);
}
.contact-channel {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-3);
  padding: var(--sp-3) 0;
  border-top: 1px solid rgba(12,31,58,0.06);
  text-decoration: none;
  color: var(--text);
  transition: color 200ms ease;
}
.contact-channel:first-of-type { border-top: 0; padding-top: 0; }
.contact-channel:last-of-type { padding-bottom: 0; }
.contact-channel:hover { color: var(--accent); }
.contact-channel__icon {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: rgba(6,182,212,0.08);
  border: 1px solid rgba(6,182,212,0.18);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
  transition: background 200ms ease;
}
.contact-channel:hover .contact-channel__icon {
  background: rgba(6,182,212,0.16);
}
.contact-channel__text { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.contact-channel__label {
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.10em;
  color: var(--text-muted);
}
.contact-channel__value {
  font-family: var(--font-display);
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.3;
  word-break: break-word;
}

/* Social */
.contact-social {
  display: flex;
  gap: var(--sp-2);
  flex-wrap: wrap;
}
.contact-social__link {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: var(--bg);
  border: 1px solid rgba(12,31,58,0.08);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: all 200ms ease;
}
.contact-social__link:hover {
  background: rgba(6,182,212,0.08);
  border-color: rgba(6,182,212,0.30);
  color: var(--accent);
  transform: translateY(-2px);
}

/* Locations */
.contact-locations__header {
  display: flex;
  align-items: baseline;
  gap: var(--sp-4);
  margin-bottom: var(--sp-5);
  flex-wrap: wrap;
}
.contact-locations__label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  color: var(--text-muted);
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
}
.contact-locations__label::before {
  content: "";
  width: 8px; height: 8px;
  border-radius: 999px;
  background: var(--accent);
}
.contact-locations__heading {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2vw, 1.625rem);
  font-weight: 600;
  color: var(--text);
}
.contact-locations__line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(12,31,58,0.10), transparent);
  min-width: 60px;
}
.contact-locations__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-3);
}
.location-card {
  background: #ffffff;
  border: 1px solid rgba(12,31,58,0.08);
  border-radius: 14px;
  padding: var(--sp-5);
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  transition: border-color 200ms ease, transform 200ms ease, box-shadow 200ms ease;
  position: relative;
  overflow: hidden;
}
.location-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 3px;
  height: 100%;
  background: var(--accent);
  opacity: 0.40;
}
.location-card--abroad::before { background: var(--indigo); opacity: 0.50; }
.location-card:hover {
  border-color: rgba(6,182,212,0.25);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px -16px rgba(6,182,212,0.30);
}
.location-card--abroad:hover { border-color: rgba(99,102,241,0.30); }
.location-card__head {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
}
.location-card__flag {
  width: 32px; height: 22px;
  border-radius: 4px;
  border: 1px solid rgba(12,31,58,0.10);
  flex-shrink: 0;
  overflow: hidden;
}
.location-card__flag svg { width: 100%; height: 100%; display: block; }
.location-card__type {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.3;
}
.location-card__address {
  font-size: 0.875rem;
  line-height: 1.5;
  color: var(--text-muted);
  flex: 1;
}
.location-card__address strong {
  color: var(--text);
  font-weight: 600;
  display: block;
  margin-bottom: 4px;
}
.location-card__map {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--accent);
  text-decoration: none;
  margin-top: auto;
  width: fit-content;
}
.location-card__map:hover { text-decoration: underline; text-underline-offset: 2px; }

/* Responsive */
@media (max-width: 1100px) {
  .contact__main { grid-template-columns: 1fr; }
  .contact-locations__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .contact-form__row { grid-template-columns: 1fr; }
  .contact-locations__grid { grid-template-columns: 1fr; }
  .contact-form { padding: var(--sp-5); }
}

/* ============================================================
   Madde 2 — Yasal Modal (KVKK · Gizlilik · Çerez · Kullanım)
   ============================================================ */
.legal-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: var(--sp-5);
}
.legal-modal.is-open { display: flex; }
.legal-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(5, 13, 24, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.legal-modal__content {
  position: relative;
  width: 100%;
  max-width: 880px;
  max-height: 88vh;
  background: linear-gradient(180deg, #0f2645 0%, #0c1f3a 100%);
  border: 1px solid rgba(103, 232, 249, 0.18);
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
}
.legal-modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--sp-5) var(--sp-6);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  flex-shrink: 0;
}
.legal-modal__title {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-on-dark);
  margin: 0;
  letter-spacing: -0.01em;
}
.legal-modal__close {
  background: transparent;
  border: 0;
  color: var(--text-on-dark-muted);
  cursor: pointer;
  padding: 8px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 200ms ease, color 200ms ease;
}
.legal-modal__close:hover {
  background: rgba(255,255,255,0.06);
  color: var(--text-on-dark);
}
.legal-modal__tabs {
  display: flex;
  gap: 4px;
  padding: var(--sp-3) var(--sp-6);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  flex-shrink: 0;
  overflow-x: auto;
  scrollbar-width: none;
}
.legal-modal__tabs::-webkit-scrollbar { display: none; }
.legal-modal__tab {
  background: transparent;
  border: 1px solid transparent;
  color: var(--text-on-dark-muted);
  font-family: inherit;
  font-size: 0.8125rem;
  font-weight: 500;
  padding: 7px 13px;
  border-radius: 8px;
  cursor: pointer;
  white-space: nowrap;
  transition: all 200ms ease;
}
.legal-modal__tab:hover {
  background: rgba(255,255,255,0.04);
  color: var(--text-on-dark);
}
.legal-modal__tab.is-active {
  background: rgba(6,182,212,0.12);
  color: var(--accent-soft);
  border-color: rgba(103,232,249,0.25);
}
.legal-modal__panels {
  flex: 1;
  overflow-y: auto;
  padding: var(--sp-5) var(--sp-6) var(--sp-6);
}
.legal-modal__panel { display: none; }
.legal-modal__panel.is-active { display: block; }
.legal-modal__notice {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-2);
  padding: var(--sp-3);
  margin-bottom: var(--sp-5);
  background: rgba(217,70,239,0.10);
  border: 1px solid rgba(217,70,239,0.30);
  border-radius: 10px;
  font-size: 0.8125rem;
  line-height: 1.5;
  color: rgba(255,255,255,0.85);
}
.legal-modal__notice svg { flex-shrink: 0; color: var(--magenta); margin-top: 2px; }
.legal-modal__notice strong { color: var(--magenta); }
.legal-content {
  color: rgba(255,255,255,0.88);
  font-size: 0.9375rem;
  line-height: 1.65;
}
.legal-content h2 {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 600;
  color: #fafbfb;
  margin: 0 0 var(--sp-3);
  letter-spacing: -0.01em;
}
.legal-content h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: #fafbfb;
  margin: var(--sp-5) 0 var(--sp-2);
}
.legal-content p { margin: 0 0 var(--sp-3); color: rgba(255,255,255,0.88); }
.legal-content ul, .legal-content ol {
  margin: 0 0 var(--sp-3);
  padding-left: var(--sp-5);
  color: rgba(255,255,255,0.88);
}
.legal-content li { margin-bottom: 6px; color: rgba(255,255,255,0.88); }
.legal-content strong { color: #fafbfb; font-weight: 600; }
.legal-content a {
  color: var(--accent-soft);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.legal-content a:hover { color: #fafbfb; }
.legal-content table {
  width: 100%;
  border-collapse: collapse;
  margin: var(--sp-3) 0 var(--sp-4);
  font-size: 0.875rem;
}
.legal-content th, .legal-content td {
  text-align: left;
  padding: 11px 14px;
  border: 1px solid rgba(255,255,255,0.10);
  vertical-align: top;
  color: rgba(255,255,255,0.88);
}
.legal-content th {
  background: rgba(6,182,212,0.10);
  font-weight: 600;
  color: #fafbfb;
  white-space: nowrap;
  width: 200px;
}
.legal-content td strong { color: #fafbfb; }
.legal-content em.todo {
  display: inline-block;
  padding: 1px 6px;
  background: rgba(217,70,239,0.10);
  border: 1px solid rgba(217,70,239,0.25);
  border-radius: 4px;
  font-style: normal;
  font-size: 0.75rem;
  color: var(--magenta);
  font-weight: 500;
}
.legal-content .meta {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.50);
  font-style: italic;
  margin-top: var(--sp-5);
  padding-top: var(--sp-3);
  border-top: 1px solid rgba(255,255,255,0.08);
}
body.legal-modal-open { overflow: hidden; }
@media (max-width: 640px) {
  .legal-modal { padding: 0; }
  .legal-modal__content {
    max-width: 100%;
    max-height: 100vh;
    height: 100vh;
    border-radius: 0;
  }
  .legal-modal__header,
  .legal-modal__panels { padding-left: var(--sp-4); padding-right: var(--sp-4); }
  .legal-modal__tabs { padding: var(--sp-2) var(--sp-4); }
  .legal-content table { font-size: 0.8125rem; }
  .legal-content th { width: auto; min-width: 120px; white-space: normal; }
  .legal-content th, .legal-content td { padding: 9px 10px; }
}

/* ============================================================
   Madde 1 — §08 Site Footer
   ============================================================ */

/* ============================================================
   Madde 20 — Newsletter signup band
   ============================================================ */
.newsletter {
  background: linear-gradient(135deg, #0c1f3a 0%, #1a3a6b 100%);
  color: var(--text-on-dark);
  padding: var(--sp-8) 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  position: relative;
  overflow: hidden;
}
.newsletter::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(6,182,212,0.12) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(167,139,250,0.08) 0%, transparent 55%);
  pointer-events: none;
}
.newsletter__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-6);
  align-items: center;
}
.newsletter__title {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.2vw, 1.9rem);
  font-weight: 700;
  margin: 0 0 0.5rem 0;
  letter-spacing: -0.01em;
}
.newsletter__desc {
  color: var(--text-on-dark-muted);
  font-size: var(--fs-md);
  line-height: 1.55;
  margin: 0;
}
.newsletter__form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.newsletter__field-group {
  display: flex;
  gap: 0.5rem;
}
.newsletter__field-group input[type="email"] {
  flex: 1;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: var(--radius-sm);
  padding: 0.85rem 1rem;
  color: var(--text-on-dark);
  font-family: inherit;
  font-size: var(--fs-md);
  transition: border-color var(--dur) var(--ease), background var(--dur) var(--ease);
}
.newsletter__field-group input[type="email"]::placeholder {
  color: var(--text-on-dark-muted);
  opacity: 0.65;
}
.newsletter__field-group input[type="email"]:focus-visible {
  outline: none;
  border-color: var(--accent-soft);
  background: rgba(255,255,255,0.1);
}
.newsletter__field-group input[type="email"].is-error {
  border-color: #ef4444;
}
.newsletter__submit {
  background: var(--accent-soft);
  color: #061727;
  border: 0;
  border-radius: var(--radius-sm);
  padding: 0.85rem 1.5rem;
  font-family: inherit;
  font-size: var(--fs-md);
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: background var(--dur) var(--ease), transform var(--dur) var(--ease);
  white-space: nowrap;
}
.newsletter__submit:hover:not(:disabled) {
  background: #07c4d9;
  transform: translateY(-1px);
}
.newsletter__submit:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}
.newsletter__consent {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  font-size: var(--fs-xs);
  color: var(--text-on-dark-muted);
  line-height: 1.5;
  cursor: pointer;
}
.newsletter__consent input[type="checkbox"] {
  margin-top: 0.2rem;
  flex-shrink: 0;
  accent-color: var(--accent-soft);
}
.newsletter__consent a {
  color: var(--accent-soft);
  text-decoration: underline;
  text-decoration-color: rgba(6,182,212,0.4);
}
.newsletter__consent a:hover {
  text-decoration-color: var(--accent-soft);
}
.newsletter__status {
  font-size: var(--fs-xs);
  min-height: 1.2em;
}
.newsletter__status.is-success {
  color: #4ade80;
}
.newsletter__status.is-error {
  color: #fca5a5;
}
@media (max-width: 900px) {
  .newsletter__inner { grid-template-columns: 1fr; }
}
@media (max-width: 540px) {
  .newsletter__field-group { flex-direction: column; }
  .newsletter__submit { width: 100%; justify-content: center; }
}

/* ============================================================
   Madde 1 — §08 Site Footer (continued)
   ============================================================ */
.site-footer {
  background: linear-gradient(180deg, #0a1a31 0%, #050d18 100%);
  color: var(--text-on-dark);
  padding: var(--sp-9) 0 0;
  position: relative;
  overflow: hidden;
}
.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(1200px, 90vw);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(6,182,212,0.20), transparent);
}
.site-footer__main {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: var(--sp-6);
  padding-bottom: var(--sp-8);
}

/* Brand column */
.site-footer__brand-logo {
  display: flex;
  align-items: center;
  height: 66px;
  margin-bottom: var(--sp-4);
}
.site-footer__brand-logo img,
.site-footer__brand-logo svg {
  height: 66px;
  width: auto;
  max-width: 220px;
  display: block;
}
@media (max-width: 640px) {
  .site-footer__brand-logo,
  .site-footer__brand-logo img,
  .site-footer__brand-logo svg {
    height: 50px;
    max-width: 170px;
  }
}
.site-footer__brand-tagline {
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--text-on-dark-muted);
  margin-bottom: var(--sp-5);
  max-width: 360px;
}
.site-footer__brand-social {
  display: flex;
  gap: var(--sp-2);
}
.site-footer__brand-social a {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--text-on-dark-muted);
  transition: all 200ms ease;
}
.site-footer__brand-social a:hover {
  background: rgba(6,182,212,0.10);
  border-color: rgba(6,182,212,0.30);
  color: var(--accent-soft);
  transform: translateY(-2px);
}

/* Columns */
.site-footer__col-title {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  color: var(--accent-soft);
  margin: 0 0 var(--sp-4);
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
}
.site-footer__col-title::before {
  content: "";
  width: 8px; height: 8px;
  border-radius: 999px;
  background: var(--accent);
}
.site-footer__col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}
.site-footer__col a {
  font-size: 0.875rem;
  color: var(--text-on-dark-muted);
  text-decoration: none;
  transition: color 200ms ease;
}
.site-footer__col a:hover {
  color: var(--accent-soft);
}

/* Contact mini-block in last column */
.site-footer__contact {
  margin-top: var(--sp-4);
  padding-top: var(--sp-3);
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.8125rem;
  color: var(--text-on-dark-muted);
}
.site-footer__contact a {
  color: var(--text-on-dark-muted);
  text-decoration: none;
  transition: color 200ms ease;
}
.site-footer__contact a:hover { color: var(--accent-soft); }
.site-footer__contact span.lbl {
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.40);
  display: inline-block;
  margin-right: 4px;
}

/* Bottom copyright bar */
.site-footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: var(--sp-4) 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--sp-4);
  flex-wrap: wrap;
  font-size: 0.75rem;
  color: var(--text-on-dark-muted);
}
.site-footer__legal {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.site-footer__legal-line {
  display: flex;
  gap: var(--sp-2);
  flex-wrap: wrap;
}
.site-footer__legal-line span.sep { opacity: 0.40; }
.site-footer__lang {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  padding: 7px 12px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  font-size: 0.75rem;
  color: var(--text-on-dark-muted);
}
.site-footer__lang svg { color: var(--accent-soft); }
.site-footer__lang button,
.site-footer__lang a,
.site-footer__lang span:not(.sep):not(.is-active) {
  background: transparent;
  border: 0;
  color: inherit;
  cursor: pointer;
  padding: 2px 6px;
  font-family: inherit;
  font-size: inherit;
  border-radius: 4px;
  text-decoration: none;
}
.site-footer__lang a:hover { color: var(--text-on-dark); }
.site-footer__lang .is-active {
  color: var(--accent-soft);
  font-weight: 600;
  cursor: default;
}
.site-footer__lang button:disabled {
  cursor: not-allowed;
  opacity: 0.45;
}
.site-footer__lang span.sep { opacity: 0.30; }

/* Responsive */
@media (max-width: 1100px) {
  .site-footer__main {
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-5) var(--sp-6);
  }
  .site-footer__brand { grid-column: 1 / -1; }
}
@media (max-width: 640px) {
  .site-footer__main { grid-template-columns: 1fr; gap: var(--sp-5); }
  .site-footer__bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--sp-3);
  }
}

/* ============================================================
   Madde 3 — Çerez Kabul Banner + Settings Modal
   ============================================================ */

/* Banner — bottom sticky */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 150;
  background: linear-gradient(180deg, #0f2645 0%, #0c1f3a 100%);
  border-top: 1px solid rgba(103,232,249,0.20);
  padding: var(--sp-5);
  transform: translateY(100%);
  transition: transform 350ms cubic-bezier(.4,.0,.2,1);
  box-shadow: 0 -20px 60px rgba(0,0,0,0.4);
  visibility: hidden;
}
.cookie-banner.is-visible {
  transform: translateY(0);
  visibility: visible;
}
.cookie-banner__inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: var(--sp-5);
  align-items: center;
}
.cookie-banner__content {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-3);
}
.cookie-banner__icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(6,182,212,0.10);
  border: 1px solid rgba(103,232,249,0.25);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-soft);
}
.cookie-banner__text { flex: 1; min-width: 0; }
.cookie-banner__title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-on-dark);
  margin: 0 0 4px;
}
.cookie-banner__msg {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.78);
  line-height: 1.5;
  margin: 0;
}
.cookie-banner__msg a {
  color: var(--accent-soft);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.cookie-banner__actions {
  display: flex;
  gap: var(--sp-2);
  flex-shrink: 0;
}

/* Cookie buttons (shared between banner and settings) */
.cookie-btn {
  font-family: inherit;
  font-size: 0.875rem;
  font-weight: 500;
  padding: 11px 18px;
  border-radius: 10px;
  cursor: pointer;
  transition: all 200ms ease;
  white-space: nowrap;
  border: 1px solid transparent;
}
.cookie-btn--minimal {
  background: transparent;
  color: var(--text-on-dark-muted);
  border-color: rgba(255,255,255,0.10);
}
.cookie-btn--minimal:hover {
  background: rgba(255,255,255,0.04);
  color: var(--text-on-dark);
  border-color: rgba(255,255,255,0.18);
}
.cookie-btn--secondary {
  background: transparent;
  color: var(--accent-soft);
  border-color: rgba(103,232,249,0.30);
}
.cookie-btn--secondary:hover {
  background: rgba(6,182,212,0.10);
  border-color: rgba(103,232,249,0.50);
}
.cookie-btn--primary {
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  border-color: var(--accent);
  box-shadow: 0 4px 14px rgba(6,182,212,0.30);
}
.cookie-btn--primary:hover {
  background: var(--accent-deep);
  transform: translateY(-1px);
  box-shadow: 0 8px 22px rgba(6,182,212,0.40);
}

/* Settings modal */
.cookie-settings {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: var(--sp-5);
}
.cookie-settings.is-open { display: flex; }
.cookie-settings__overlay {
  position: absolute;
  inset: 0;
  background: rgba(5, 13, 24, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.cookie-settings__content {
  position: relative;
  width: 100%;
  max-width: 640px;
  max-height: 88vh;
  background: linear-gradient(180deg, #0f2645 0%, #0c1f3a 100%);
  border: 1px solid rgba(103,232,249,0.18);
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
}
.cookie-settings__header {
  padding: var(--sp-5) var(--sp-6);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-shrink: 0;
}
.cookie-settings__title {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-on-dark);
  margin: 0;
}
.cookie-settings__close {
  background: transparent;
  border: 0;
  color: var(--text-on-dark-muted);
  cursor: pointer;
  padding: 8px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.cookie-settings__close:hover {
  background: rgba(255,255,255,0.06);
  color: var(--text-on-dark);
}
.cookie-settings__body {
  flex: 1;
  overflow-y: auto;
  padding: var(--sp-5) var(--sp-6);
}
.cookie-settings__intro {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.78);
  line-height: 1.6;
  margin: 0 0 var(--sp-5);
}
.cookie-settings__intro strong { color: var(--text-on-dark); }

/* Category card */
.cookie-cat {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
  padding: var(--sp-4);
  margin-bottom: var(--sp-3);
}
.cookie-cat__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: var(--sp-3);
  margin-bottom: 8px;
}
.cookie-cat__name {
  font-family: var(--font-display);
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text-on-dark);
  margin: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.cookie-cat__badge {
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.10em;
  padding: 3px 9px;
  background: rgba(6,182,212,0.10);
  border: 1px solid rgba(103,232,249,0.25);
  color: var(--accent-soft);
  border-radius: 999px;
}
.cookie-cat__desc {
  font-size: 0.8125rem;
  line-height: 1.55;
  color: rgba(255,255,255,0.65);
  margin: 0;
}

/* iOS-style toggle */
.toggle {
  position: relative;
  display: inline-flex;
  width: 44px;
  height: 24px;
  flex-shrink: 0;
}
.toggle input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.toggle__track {
  position: absolute;
  inset: 0;
  border-radius: 999px;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.10);
  cursor: pointer;
  transition: background 200ms ease, border-color 200ms ease;
}
.toggle__track::after {
  content: '';
  position: absolute;
  top: 2px;
  left: 2px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #fff;
  transition: transform 200ms cubic-bezier(.4,.0,.2,1);
}
.toggle input:checked + .toggle__track {
  background: var(--accent);
  border-color: var(--accent);
}
.toggle input:checked + .toggle__track::after {
  transform: translateX(20px);
}
.toggle input:disabled + .toggle__track {
  cursor: not-allowed;
  opacity: 0.7;
}
.toggle input:focus-visible + .toggle__track {
  box-shadow: 0 0 0 3px rgba(6,182,212,0.30);
}

.cookie-settings__footer {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: var(--sp-4) var(--sp-6);
  display: flex;
  justify-content: flex-end;
  gap: var(--sp-2);
  flex-wrap: wrap;
  flex-shrink: 0;
}

/* Footer cookie link */
.cookie-link {
  background: transparent;
  border: 0;
  color: var(--text-on-dark-muted);
  cursor: pointer;
  font-family: inherit;
  font-size: inherit;
  padding: 0;
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 200ms ease;
}
.cookie-link:hover { color: var(--accent-soft); }

body.cookie-settings-open { overflow: hidden; }

/* Responsive */
@media (max-width: 900px) {
  .cookie-banner__inner {
    grid-template-columns: 1fr;
    gap: var(--sp-3);
  }
  .cookie-banner__actions {
    flex-wrap: wrap;
    justify-content: stretch;
  }
  .cookie-banner__icon { width: 36px; height: 36px; }
}
@media (max-width: 640px) {
  .cookie-banner { padding: var(--sp-4); }
  .cookie-banner__actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }
  .cookie-btn--primary { grid-column: 1 / -1; order: -1; }
  .cookie-btn { width: 100%; padding: 11px 12px; font-size: 0.8125rem; }
  .cookie-settings { padding: 0; }
  .cookie-settings__content {
    max-width: 100%;
    max-height: 100vh;
    height: 100vh;
    border-radius: 0;
  }
  .cookie-settings__header,
  .cookie-settings__body,
  .cookie-settings__footer { padding-left: var(--sp-4); padding-right: var(--sp-4); }
  .cookie-settings__footer {
    flex-direction: column;
    align-items: stretch;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .cookie-banner,
  .legal-modal,
  .cookie-settings,
  .team-modal,
  .skip-to-main {
    transition: none !important;
  }
}

/* ============================================================
   Madde 8 — 404 Error Page
   ============================================================ */
.error-page {
  min-height: calc(100vh - 80px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--sp-9) var(--sp-5);
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(60% 50% at 50% 30%, rgba(6,182,212,0.06), transparent 70%),
    var(--bg);
}
.error-page::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(12,31,58,0.06) 1px, transparent 0);
  background-size: 32px 32px;
  opacity: 0.6;
  pointer-events: none;
}
.error-page__inner {
  position: relative;
  max-width: 720px;
  text-align: center;
}
.error-page__digits {
  font-family: var(--font-display);
  font-size: clamp(7rem, 22vw, 12rem);
  font-weight: 700;
  line-height: 0.9;
  letter-spacing: -0.04em;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-deep) 60%, #0c1f3a 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin: 0 0 var(--sp-3);
  position: relative;
  display: inline-block;
}
.error-page__digits::after {
  content: "";
  position: absolute;
  inset: -20% -10% -20% -10%;
  background: radial-gradient(circle, rgba(6,182,212,0.15), transparent 60%);
  z-index: -1;
  filter: blur(40px);
}
.error-page__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--accent-deep);
  background: rgba(6,182,212,0.08);
  border: 1px solid rgba(103,232,249,0.30);
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: var(--sp-4);
}
.error-page__eyebrow::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(6,182,212,0.20);
}
.error-page__title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  font-weight: 600;
  color: var(--text);
  margin: 0 0 var(--sp-3);
  letter-spacing: -0.02em;
}
.error-page__desc {
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text-muted);
  margin: 0 auto var(--sp-6);
  max-width: 520px;
}
.error-page__actions {
  display: flex;
  gap: var(--sp-2);
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: var(--sp-8);
}
.error-page__actions .btn {
  min-width: 180px;
}
.error-page__shortcuts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-3);
  max-width: 640px;
  margin: 0 auto;
}
.error-page__shortcut {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: var(--sp-4) var(--sp-3);
  text-decoration: none;
  color: var(--text);
  transition: all 200ms ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
}
.error-page__shortcut:hover {
  border-color: var(--accent);
  transform: translateY(-3px);
  box-shadow: 0 12px 24px -10px rgba(6,182,212,0.30);
}
.error-page__shortcut-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(6,182,212,0.08);
  color: var(--accent-deep);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.error-page__shortcut-label {
  font-size: 0.875rem;
  font-weight: 600;
}
@media (max-width: 640px) {
  .error-page { padding: var(--sp-7) var(--sp-4); }
  .error-page__shortcuts { grid-template-columns: repeat(2, 1fr); }
  .error-page__actions .btn { width: 100%; }
}

/* ============================================================
   Madde 10 — A11y: Skip-to-main link
   ============================================================ */
.skip-to-main {
  position: absolute;
  top: -100px;
  left: 0;
  z-index: 9999;
  background: var(--accent);
  color: #fff;
  padding: 12px 20px;
  border-radius: 0 0 10px 0;
  font-weight: 600;
  text-decoration: none;
  font-family: var(--font-display);
  transition: top 200ms ease;
}
.skip-to-main:focus,
.skip-to-main:focus-visible {
  top: 0;
  outline: 3px solid #fff;
  outline-offset: 2px;
}

/* Focus-visible standardı — keyboard focus için belirgin halo */
*:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
  border-radius: 4px;
}
/* Mouse click sonrası outline gösterme */
*:focus:not(:focus-visible) {
  outline: none;
}

/* App-store-badge focus state */
.app-store-badge:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 8px;
}

/* ============================================================
   Madde 7 — Turnstile widget
   ============================================================ */
.contact-form__turnstile {
  margin-top: var(--sp-3);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.contact-form__turnstile .cf-turnstile {
  min-height: 65px; /* Widget yüklenirken layout shift olmasın */
}
.contact-form__turnstile-note {
  font-size: 0.75rem;
  color: var(--text-faint);
  line-height: 1.4;
  margin: 0;
}
.contact-form__turnstile.is-error .cf-turnstile {
  outline: 2px solid #ef4444;
  outline-offset: 4px;
  border-radius: 4px;
}
@media (prefers-color-scheme: dark) {
  /* Turnstile auto-theme override if needed (managed widget zaten light kalır) */
}

/* ============================================================
   Madde 23 — Status sayfası
   ============================================================ */
.status-page {
  padding: var(--sp-9) 0;
  min-height: 70vh;
  background: linear-gradient(180deg, #ffffff 0%, #f6f9ff 100%);
}
.status-page__header {
  text-align: center;
  margin-bottom: var(--sp-8);
}
.status-page__eyebrow {
  display: inline-block;
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.16em;
  color: var(--text-muted);
  margin-bottom: var(--sp-2);
}
.status-page__title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  margin: 0 0 var(--sp-3) 0;
  letter-spacing: -0.02em;
  color: var(--text);
}
.status-page__subtitle {
  color: var(--text-muted);
  font-size: var(--fs-md);
  margin: 0 0 var(--sp-5) 0;
}
.status-page__overall {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 1.5rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: var(--fs-md);
  background: rgba(74,222,128,0.08);
  color: #16a34a;
  border: 1px solid rgba(74,222,128,0.2);
}
.status-overall--degraded {
  background: rgba(251,191,36,0.08);
  color: #b45309;
  border-color: rgba(251,191,36,0.25);
}
.status-overall--down {
  background: rgba(239,68,68,0.08);
  color: #b91c1c;
  border-color: rgba(239,68,68,0.25);
}

.status-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
  position: relative;
}
.status-dot--operational {
  background: #4ade80;
  box-shadow: 0 0 0 4px rgba(74,222,128,0.18);
}
.status-dot--operational::after {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: rgba(74,222,128,0.4);
  animation: status-pulse 2s ease-in-out infinite;
}
@keyframes status-pulse {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50% { opacity: 0; transform: scale(1.6); }
}
@media (prefers-reduced-motion: reduce) {
  .status-dot--operational::after { animation: none; }
}
.status-dot--degraded { background: #fbbf24; box-shadow: 0 0 0 4px rgba(251,191,36,0.18); }
.status-dot--down { background: #ef4444; box-shadow: 0 0 0 4px rgba(239,68,68,0.18); }
.status-dot--maintenance { background: #60a5fa; box-shadow: 0 0 0 4px rgba(96,165,250,0.18); }

.status-page__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: var(--sp-4);
  margin-bottom: var(--sp-8);
}
.status-card {
  background: #ffffff;
  border: 1px solid rgba(12,31,58,0.08);
  border-radius: 12px;
  padding: var(--sp-4);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.status-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(12,31,58,0.06);
}
.status-card__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.4rem;
}
.status-card__head h2 {
  margin: 0;
  font-size: var(--fs-lg);
  font-weight: 700;
  color: var(--text);
}
.status-card__desc {
  font-size: var(--fs-sm);
  color: var(--text-muted);
  margin: 0 0 var(--sp-3) 0;
  line-height: 1.5;
}
.status-card__metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  margin: 0;
  padding-top: var(--sp-3);
  border-top: 1px dashed rgba(12,31,58,0.08);
}
.status-card__metrics div { margin: 0; }
.status-card__metrics dt {
  font-size: 0.7rem;
  color: var(--text-faint);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.status-card__metrics dd {
  margin: 2px 0 0 0;
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--text);
  font-variant-numeric: tabular-nums;
}

.status-page__section-title {
  font-family: var(--font-display);
  font-size: var(--fs-xl);
  font-weight: 700;
  margin: 0 0 var(--sp-3) 0;
  color: var(--text);
}
.status-page__incidents,
.status-page__legend {
  background: #ffffff;
  border: 1px solid rgba(12,31,58,0.08);
  border-radius: 12px;
  padding: var(--sp-5);
  margin-bottom: var(--sp-5);
}
.status-page__empty {
  color: var(--text-muted);
  font-size: var(--fs-md);
  margin: 0;
  line-height: 1.6;
}
.status-legend {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.6rem;
}
.status-legend li {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: var(--fs-sm);
  color: var(--text);
}
.status-page__contact {
  text-align: center;
  color: var(--text-muted);
  font-size: var(--fs-sm);
  margin-top: var(--sp-6);
}
.status-page__contact a {
  color: var(--accent);
  text-decoration: underline;
  text-decoration-color: rgba(6,182,212,0.4);
}

/* ============================================================
   Madde 19 — Press kit sayfası
   ============================================================ */
.press-page {
  padding: var(--sp-9) 0;
  background: linear-gradient(180deg, #ffffff 0%, #f6f9ff 100%);
  min-height: 70vh;
}
.press-page__header { text-align: center; margin-bottom: var(--sp-8); }
.press-page__eyebrow {
  display: inline-block;
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.16em;
  color: var(--text-muted);
  margin-bottom: var(--sp-2);
}
.press-page__title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  margin: 0 0 var(--sp-3) 0;
  color: var(--text);
}
.press-page__subtitle {
  max-width: 720px;
  margin: 0 auto;
  color: var(--text-muted);
  font-size: var(--fs-md);
  line-height: 1.6;
}
.press-page__subtitle a, .press-page__contact a { color: var(--accent); text-decoration: underline; }

.press-section { margin-bottom: var(--sp-8); }
.press-section__title {
  font-family: var(--font-display);
  font-size: var(--fs-xl);
  font-weight: 700;
  margin: 0 0 var(--sp-3) 0;
  color: var(--text);
}
.press-section__desc { color: var(--text-muted); margin: 0 0 var(--sp-4) 0; line-height: 1.6; }

.press-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: var(--sp-3);
}
.press-info-card {
  background: #fff;
  border: 1px solid rgba(12,31,58,0.08);
  border-radius: 10px;
  padding: var(--sp-4);
}
.press-info-card__label {
  display: block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-faint);
  margin-bottom: 0.4rem;
}
.press-info-card__value { margin: 0; font-weight: 600; color: var(--text); }

.press-quote {
  background: linear-gradient(135deg, #0c1f3a 0%, #1a3a6b 100%);
  color: var(--text-on-dark);
  padding: var(--sp-6);
  border-radius: 14px;
  font-size: var(--fs-lg);
  line-height: 1.7;
  margin: 0;
  font-family: var(--font-display);
  font-weight: 500;
  font-style: normal;
  border-left: 4px solid var(--accent-soft);
}

.press-logo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: var(--sp-4);
}
.press-logo-card {
  background: #fff;
  border: 1px solid rgba(12,31,58,0.08);
  border-radius: 12px;
  overflow: hidden;
}
.press-logo-card__preview {
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--sp-4);
}
.press-logo-card__preview--light { background: #f6f9ff; }
.press-logo-card__preview--dark { background: #0c1f3a; }
.press-logo-card__preview img { max-width: 200px; max-height: 80px; width: auto; height: auto; }
.press-logo-card__info { padding: var(--sp-4); border-top: 1px solid rgba(12,31,58,0.06); }
.press-logo-card__info h3 { margin: 0 0 0.3rem 0; font-size: var(--fs-md); }
.press-logo-card__info p { margin: 0 0 var(--sp-3) 0; color: var(--text-muted); font-size: var(--fs-sm); }
.press-logo-card__download {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--accent);
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  font-size: var(--fs-sm);
  font-weight: 600;
  text-decoration: none;
  transition: background var(--dur) var(--ease);
}
.press-logo-card__download:hover { background: var(--accent-deep, #0891b2); }
.press-logo-card__download::after { content: "↓"; font-weight: 700; }

.press-color-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: var(--sp-3);
}
.press-color-card {
  background: #fff;
  border: 1px solid rgba(12,31,58,0.08);
  border-radius: 10px;
  overflow: hidden;
}
.press-color-card__swatch { height: 100px; }
.press-color-card__info { padding: var(--sp-3); display: flex; flex-direction: column; gap: 0.2rem; }
.press-color-card__info strong { font-size: var(--fs-md); color: var(--text); }
.press-color-card__info code { font-family: var(--font-mono, monospace); font-size: var(--fs-xs); color: var(--text-muted); font-variant-numeric: tabular-nums; }
.press-color-card__info span { font-size: var(--fs-xs); color: var(--text-faint); }

.press-people-list, .press-usage-rules {
  background: #fff;
  border: 1px solid rgba(12,31,58,0.08);
  border-radius: 10px;
  padding: var(--sp-5);
  margin: 0;
  list-style: none;
}
.press-people-list li, .press-usage-rules li {
  padding: 0.6rem 0;
  border-bottom: 1px dashed rgba(12,31,58,0.06);
  color: var(--text);
  line-height: 1.6;
}
.press-people-list li:last-child, .press-usage-rules li:last-child { border-bottom: 0; }
.press-usage-rules li { padding-left: 1.5rem; position: relative; }
.press-usage-rules li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}
.press-usage-rules li a, .press-page__contact a { color: var(--accent); }

.press-page__contact {
  text-align: center;
  font-size: var(--fs-md);
  color: var(--text-muted);
  margin-top: var(--sp-7);
}

/* ============================================================
   Madde 21 — Kariyer sayfası
   ============================================================ */
.careers-page {
  padding: var(--sp-9) 0;
  background: linear-gradient(180deg, #ffffff 0%, #f6f9ff 100%);
  min-height: 70vh;
}
.careers-page__header { text-align: center; margin-bottom: var(--sp-9); }
.careers-page__eyebrow {
  display: inline-block;
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.16em;
  color: var(--text-muted);
  margin-bottom: var(--sp-2);
}
.careers-page__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  margin: 0 0 var(--sp-3) 0;
  color: var(--text);
  letter-spacing: -0.02em;
}
.careers-page__subtitle {
  max-width: 720px;
  margin: 0 auto;
  color: var(--text-muted);
  font-size: var(--fs-lg);
  line-height: 1.6;
}

.careers-section__title {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.2vw, 1.9rem);
  font-weight: 700;
  margin: 0 0 var(--sp-4) 0;
  color: var(--text);
  text-align: center;
}
.careers-section__desc {
  text-align: center;
  color: var(--text-muted);
  margin: 0 auto var(--sp-5) auto;
  max-width: 680px;
  line-height: 1.6;
}

.careers-benefits, .careers-positions, .careers-process { margin-bottom: var(--sp-9); }

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: var(--sp-4);
}
.benefit-card {
  background: #fff;
  border: 1px solid rgba(12,31,58,0.08);
  border-radius: 14px;
  padding: var(--sp-5);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.benefit-card:hover { transform: translateY(-3px); box-shadow: 0 12px 30px rgba(12,31,58,0.07); }
.benefit-card svg {
  width: 36px;
  height: 36px;
  color: var(--accent);
  margin-bottom: var(--sp-3);
  display: block;
}
.benefit-card h3 {
  font-size: var(--fs-lg);
  font-weight: 700;
  margin: 0 0 0.5rem 0;
  color: var(--text);
}
.benefit-card p {
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
  font-size: var(--fs-sm);
}

.positions-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
  gap: var(--sp-4);
}
.position-card {
  background: #fff;
  border: 1px solid rgba(12,31,58,0.08);
  border-radius: 14px;
  padding: var(--sp-5);
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.position-card:hover {
  border-color: rgba(6,182,212,0.3);
  box-shadow: 0 10px 28px rgba(12,31,58,0.06);
}
.position-card--open {
  background: linear-gradient(135deg, #0c1f3a 0%, #1a3a6b 100%);
  color: var(--text-on-dark);
  border-color: transparent;
}
.position-card--open h3, .position-card--open p { color: var(--text-on-dark); }
.position-card--open .position-card__tag { background: rgba(255,255,255,0.12); color: var(--text-on-dark); }
.position-card__head { display: flex; justify-content: space-between; align-items: flex-start; gap: var(--sp-3); flex-wrap: wrap; }
.position-card__head h3 { margin: 0; font-size: var(--fs-lg); color: var(--text); font-weight: 700; }
.position-card__tag {
  background: rgba(6,182,212,0.08);
  color: var(--accent-deep, #0e7490);
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  font-size: var(--fs-xs);
  font-weight: 600;
  white-space: nowrap;
}
.position-card p { color: var(--text-muted); line-height: 1.6; margin: 0; font-size: var(--fs-sm); }
.position-card__skills { display: flex; gap: 0.4rem; flex-wrap: wrap; }
.position-card__skills span {
  background: rgba(12,31,58,0.05);
  color: var(--text);
  padding: 0.25rem 0.6rem;
  border-radius: 4px;
  font-size: var(--fs-xs);
  font-weight: 500;
}
.position-card--open .position-card__skills span { background: rgba(255,255,255,0.1); color: var(--text-on-dark); }
.position-card__apply {
  align-self: flex-start;
  margin-top: auto;
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  font-size: var(--fs-sm);
  border-bottom: 1px solid transparent;
  padding-bottom: 1px;
  transition: border-color var(--dur) var(--ease);
}
.position-card__apply:hover { border-bottom-color: var(--accent); }
.position-card--open .position-card__apply { color: var(--accent-soft); }
.position-card--open .position-card__apply:hover { border-bottom-color: var(--accent-soft); }

.process-steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: var(--sp-3);
  max-width: 720px;
  margin: 0 auto;
}
.process-steps li {
  display: flex;
  gap: var(--sp-3);
  background: #fff;
  border: 1px solid rgba(12,31,58,0.08);
  border-radius: 12px;
  padding: var(--sp-4);
  align-items: flex-start;
}
.process-steps__num {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-deep, #0e7490) 100%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-family: var(--font-display);
}
.process-steps h3 { margin: 0 0 0.3rem 0; font-size: var(--fs-md); color: var(--text); }
.process-steps p { margin: 0; color: var(--text-muted); line-height: 1.5; font-size: var(--fs-sm); }

.careers-page__contact {
  text-align: center;
  font-size: var(--fs-md);
  color: var(--text-muted);
  margin-top: var(--sp-7);
}
.careers-page__contact a { color: var(--accent); }

/* ============================================================
   Madde 22 — Blog/Insights sayfası
   ============================================================ */
.blog-page {
  padding: var(--sp-9) 0;
  background: linear-gradient(180deg, #ffffff 0%, #f6f9ff 100%);
  min-height: 70vh;
}
.blog-page__header { text-align: center; margin-bottom: var(--sp-8); }
.blog-page__eyebrow {
  display: inline-block;
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.16em;
  color: var(--text-muted);
  margin-bottom: var(--sp-2);
}
.blog-page__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  margin: 0 0 var(--sp-3) 0;
  color: var(--text);
  letter-spacing: -0.02em;
}
.blog-page__subtitle {
  max-width: 720px;
  margin: 0 auto;
  color: var(--text-muted);
  font-size: var(--fs-lg);
  line-height: 1.6;
}

.blog-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: var(--sp-6);
}
.blog-category {
  background: #fff;
  border: 1px solid rgba(12,31,58,0.08);
  color: var(--text-muted);
  padding: 0.5rem 1.1rem;
  border-radius: 999px;
  font-size: var(--fs-sm);
  font-family: inherit;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--dur) var(--ease);
}
.blog-category:hover { border-color: var(--accent); color: var(--text); }
.blog-category.is-active {
  background: var(--text);
  color: #fff;
  border-color: var(--text);
}

.blog-posts {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: var(--sp-4);
}
.blog-post-card {
  background: #fff;
  border: 1px solid rgba(12,31,58,0.08);
  border-radius: 14px;
  overflow: hidden;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.blog-post-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(12,31,58,0.07);
}
.blog-post-card__link {
  display: block;
  padding: var(--sp-5);
  text-decoration: none;
  color: inherit;
  height: 100%;
}
.blog-post-card__meta {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--fs-xs);
  color: var(--text-muted);
  margin-bottom: var(--sp-3);
  flex-wrap: wrap;
}
.blog-post-card__cat {
  background: rgba(6,182,212,0.1);
  color: var(--accent-deep, #0e7490);
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
  font-weight: 600;
}
.blog-post-card__title {
  font-family: var(--font-display);
  font-size: var(--fs-xl);
  font-weight: 700;
  line-height: 1.3;
  margin: 0 0 var(--sp-3) 0;
  color: var(--text);
  letter-spacing: -0.01em;
}
.blog-post-card__excerpt {
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0 0 var(--sp-3) 0;
  font-size: var(--fs-sm);
}
.blog-post-card__author {
  font-size: var(--fs-xs);
  color: var(--text-faint);
  font-weight: 500;
  display: block;
  padding-top: var(--sp-2);
  border-top: 1px dashed rgba(12,31,58,0.08);
}

.blog-empty-state {
  text-align: center;
  margin: var(--sp-9) auto var(--sp-5) auto;
  padding: var(--sp-6);
  max-width: 600px;
}
.blog-empty-state h2 {
  font-family: var(--font-display);
  font-size: var(--fs-lg);
  color: var(--text);
  margin: 0 0 var(--sp-2) 0;
}
.blog-empty-state p { color: var(--text-muted); margin: 0; line-height: 1.6; }
.blog-empty-state a { color: var(--accent); text-decoration: underline; }

/* — Single article view — */
.container--narrow { max-width: 760px; }

.blog-article { padding: var(--sp-8) 0; background: #ffffff; min-height: 70vh; }
.blog-breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: var(--fs-sm);
  color: var(--text-muted);
  margin-bottom: var(--sp-5);
  flex-wrap: wrap;
}
.blog-breadcrumb a { color: var(--text-muted); text-decoration: none; }
.blog-breadcrumb a:hover { color: var(--accent); text-decoration: underline; }
.blog-breadcrumb span:not([aria-hidden]) { color: var(--text); }

.blog-article__header {
  border-bottom: 1px solid rgba(12,31,58,0.08);
  padding-bottom: var(--sp-5);
  margin-bottom: var(--sp-6);
}
.blog-article__meta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2);
  align-items: center;
  font-size: var(--fs-xs);
  color: var(--text-muted);
  margin-bottom: var(--sp-3);
}
.blog-article__cat {
  background: rgba(6,182,212,0.1);
  color: var(--accent-deep, #0e7490);
  padding: 0.25rem 0.7rem;
  border-radius: 4px;
  font-weight: 600;
}
.blog-article__title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  margin: 0 0 var(--sp-3) 0;
  color: var(--text);
  letter-spacing: -0.02em;
  line-height: 1.2;
}
.blog-article__excerpt {
  color: var(--text-muted);
  font-size: var(--fs-lg);
  line-height: 1.6;
  margin: 0 0 var(--sp-4) 0;
}
.blog-article__author {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
}
.blog-article__author-info { display: flex; flex-direction: column; gap: 0.1rem; }
.blog-article__author-info strong { color: var(--text); font-size: var(--fs-md); }
.blog-article__author-info span { color: var(--text-muted); font-size: var(--fs-xs); }

.blog-article__body {
  font-size: 1.08rem;
  line-height: 1.75;
  color: var(--text);
}
.blog-article__body h2 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  margin: var(--sp-6) 0 var(--sp-3) 0;
  color: var(--text);
  letter-spacing: -0.01em;
}
.blog-article__body h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin: var(--sp-5) 0 var(--sp-2) 0;
  color: var(--text);
}
.blog-article__body p { margin: 0 0 var(--sp-3) 0; color: var(--text); }
.blog-article__body ul, .blog-article__body ol {
  margin: var(--sp-3) 0;
  padding-left: 1.5rem;
}
.blog-article__body li { margin-bottom: 0.5rem; }
.blog-article__body code {
  background: rgba(12,31,58,0.05);
  padding: 0.15rem 0.4rem;
  border-radius: 4px;
  font-family: ui-monospace, 'SF Mono', Menlo, Monaco, Consolas, monospace;
  font-size: 0.9em;
  color: var(--accent-deep, #0e7490);
}
.blog-article__body strong { color: var(--text); font-weight: 600; }
.blog-article__body em { color: var(--text); font-style: italic; }

.blog-article__footer {
  margin-top: var(--sp-7);
  padding-top: var(--sp-5);
  border-top: 1px solid rgba(12,31,58,0.08);
  text-align: center;
  color: var(--text-muted);
}
.blog-article__footer a { color: var(--accent); text-decoration: underline; }
