/* =========================================================
   Tempo Matériaux — editorial-light.css
   Cream theme · Gambarino italic + Satoshi · Lenis-ready
   8-agent research synthesis (light tone, dot-density map, modal,
   editorial split hero, French B2B referans, RGPD form).
   ========================================================= */

:root {
  /* Beyaz baseline, mint sadece aksent */
  --bg:           #FFFFFF;   /* pure white */
  --bg-2:         #F4F8F7;   /* very light mint — accent sections only */
  --bg-3:         #ECF2F1;   /* deeper mint for map area */
  --surface:      #FFFFFF;
  --surface-2:    #FFFFFF;
  --paper:        #FFFFFF;

  --ink:          #1F1B16;   /* espresso charcoal */
  --ink-2:        #2E2823;
  --muted:        #5C5550;
  --muted-2:      #8A827B;
  --subtle:       #B0A89C;

  --line:         rgba(31,27,22,0.10);
  --line-strong:  rgba(31,27,22,0.18);

  /* Brand */
  --brand:        #3997A8;   /* Tempo light teal */
  --brand-deep:   #206973;
  --brand-darker: #143E45;
  --brand-soft:   rgba(32,105,115,0.10);

  /* Secondary accent — mat turuncu (Agent 1: B8451F) */
  --accent:       #B8451F;   /* terra-rust, cream'le uyumlu */
  --accent-bright:#FF935C;   /* hero spotlight için saklı */
  --accent-soft:  rgba(184,69,31,0.10);

  /* Easings (Agent 2) */
  --ease-out:     cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out-q:   cubic-bezier(0.16, 1, 0.3, 1);
  --ease-expo:    cubic-bezier(0.19, 1, 0.22, 1);
  --ease-spring:  cubic-bezier(0.34, 1.56, 0.64, 1);

  /* Fonts (Agent 6 + 7) */
  --f-display:    'Gambarino', 'Cabinet Grotesk', Georgia, serif;
  --f-italic:     'EB Garamond', 'Gambarino', Georgia, serif;
  --f-body:       'Satoshi', system-ui, -apple-system, sans-serif;
  --f-mono:       'Geist Mono', ui-monospace, monospace;

  --container:    1480px;
  --container-narrow: 960px;
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--f-body);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  position: relative;
}
body.is-lenis { overflow: hidden; }
body.is-lenis main { overflow: visible; }

img, svg, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color 220ms var(--ease-out); }
button { font: inherit; cursor: pointer; }
:focus-visible { outline: 2px solid var(--brand); outline-offset: 3px; border-radius: 4px; }

/* Subtle paper grain — softer for whiter bg */
body::before {
  content: '';
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 200;
  opacity: 0.022;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  mix-blend-mode: multiply;
}

/* ============== TYPOGRAPHY ============== */
h1, h2, h3, h4 {
  font-family: var(--f-display);
  font-weight: 400;
  margin: 0 0 24px;
  letter-spacing: -0.025em;
  line-height: 1;
  color: var(--ink);
  text-wrap: balance;
}
h1 {
  font-size: clamp(3.4rem, 8vw + 0.4rem, 8.5rem);
  letter-spacing: -0.038em;
  line-height: 0.92;
}
h2 { font-size: clamp(2.4rem, 4.5vw + 0.4rem, 5rem); letter-spacing: -0.028em; line-height: 0.98; }
h3 { font-size: clamp(1.5rem, 1.8vw + 0.4rem, 2.2rem); letter-spacing: -0.018em; font-weight: 500; font-family: var(--f-body); }
p  { color: var(--muted); max-width: 64ch; margin: 0 0 20px; line-height: 1.6; }
em.italic, .italic {
  font-family: var(--f-italic);
  font-style: italic;
  font-weight: 400;
  color: var(--brand-deep);
}

/* ============== LAYOUT ============== */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding-inline: clamp(20px, 4vw, 56px); }
.container--narrow { max-width: var(--container-narrow); }
.section { padding-block: clamp(96px, 14vw, 200px); position: relative; }

/* Eyebrow (Agent 6 + 7) */
.eyebrow {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brand-deep);
  margin: 0 0 24px;
  display: inline-flex; align-items: center; gap: 12px;
}
.eyebrow::before {
  content: '';
  width: 24px; height: 1px;
  background: currentColor;
  opacity: 0.6;
}

/* ============== TOP BAR (larger logo, entity switcher) ============== */
.topbar {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 50;
  height: 84px;
  background: rgba(255,255,255,0.86);
  backdrop-filter: saturate(160%) blur(20px);
  -webkit-backdrop-filter: saturate(160%) blur(20px);
  border-bottom: 1px solid var(--line);
  transition: background 320ms var(--ease-out), height 320ms var(--ease-out);
}
.topbar.is-scrolled {
  height: 68px;
  background: rgba(255,255,255,0.94);
}
.topbar__inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 100%; gap: 24px;
}
.topbar__brand {
  display: inline-flex; align-items: center; gap: 18px;
  color: var(--ink);
}
.topbar__brand img {
  height: 48px;       /* larger (was 28) */
  width: auto;
  transition: height 320ms var(--ease-out);
}
.topbar.is-scrolled .topbar__brand img { height: 36px; }
.topbar__brand-tag {
  display: inline-flex; flex-direction: column;
  font-family: var(--f-mono);
  font-size: 10px;
  color: var(--muted);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  line-height: 1.5;
  padding-left: 18px;
  border-left: 1px solid var(--line);
}
.topbar__brand-tag strong { color: var(--brand-deep); font-weight: 500; font-size: 11px; }
@media (max-width: 900px) { .topbar__brand-tag { display: none; } }

.topbar__nav { display: flex; gap: 32px; margin-left: auto; }
.topbar__nav a {
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-2);
  position: relative;
}
.topbar__nav a:hover { color: var(--ink); }
.topbar__nav a::after {
  content: '';
  position: absolute; left: 0; right: 0; bottom: -7px; height: 1px;
  background: var(--brand-deep);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 360ms var(--ease-out);
}
.topbar__nav a:hover::after { transform: scaleX(1); }

/* Entity switcher */
.topbar__entities {
  display: inline-flex; align-items: center;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 3px;
}
.topbar__entities button {
  padding: 7px 12px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--muted);
  background: transparent;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  transition: all 220ms var(--ease-out);
}
.topbar__entities button:hover { color: var(--ink); }
.topbar__entities button.is-active {
  background: var(--ink);
  color: var(--bg);
}
.topbar__entities button[disabled] {
  opacity: 0.42;
  cursor: not-allowed;
  position: relative;
}
.topbar__entities button[disabled]::after {
  content: '·';
  display: inline-block; margin-left: 4px; color: var(--accent);
}

.topbar__cta {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 8px 8px 16px;
  font-family: var(--f-body);
  font-size: 13px;
  font-weight: 500;
  color: var(--bg);
  background: var(--ink);
  border-radius: 999px;
  transition: transform 240ms var(--ease-out), background 240ms var(--ease-out);
  min-height: 40px;
}
.topbar__cta:hover { background: var(--brand-deep); color: var(--bg); transform: translateY(-1px); }
.topbar__cta .ic {
  display: grid; place-items: center;
  width: 24px; height: 24px;
  background: var(--bg);
  color: var(--ink);
  border-radius: 999px;
  font-size: 11px;
  transition: transform 320ms var(--ease-spring);
}
.topbar__cta:hover .ic { transform: translate(2px, -2px); background: var(--bg); color: var(--brand-deep); }

/* Mobile menu trigger (hamburger) — daha belirgin */
.topbar__burger {
  display: none;
  width: 46px; height: 46px;
  background: var(--ink);
  border: 0;
  border-radius: 12px;
  padding: 0;
  cursor: pointer;
  position: relative;
  flex-shrink: 0;
  z-index: 60;
}
.topbar__burger span {
  position: absolute;
  left: 12px; right: 12px;
  height: 2px;
  background: var(--bg);
  border-radius: 2px;
  transition: transform 320ms var(--ease-out), opacity 220ms var(--ease-out);
}
.topbar__burger span:nth-child(1) { top: 16px; }
.topbar__burger span:nth-child(2) { top: 50%; transform: translateY(-50%); }
.topbar__burger span:nth-child(3) { bottom: 16px; }
body.menu-open .topbar__burger { background: var(--accent); }
body.menu-open .topbar__burger span:nth-child(1) { top: 50%; transform: rotate(45deg); background: var(--bg); }
body.menu-open .topbar__burger span:nth-child(2) { opacity: 0; }
body.menu-open .topbar__burger span:nth-child(3) { bottom: 50%; transform: translateY(50%) rotate(-45deg); background: var(--bg); }

/* Mobile drawer */
.mobile-drawer {
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 49;
  padding: 100px 28px 40px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 320ms var(--ease-out);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}
body.menu-open .mobile-drawer { opacity: 1; pointer-events: all; }
.mobile-drawer__nav {
  display: flex; flex-direction: column;
  gap: 4px;
  margin-bottom: 32px;
}
.mobile-drawer__nav a {
  font-family: var(--f-display);
  font-size: clamp(2rem, 5vw, 2.8rem);
  font-weight: 400;
  color: var(--ink);
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  letter-spacing: -0.025em;
  display: flex; align-items: center; justify-content: space-between;
}
.mobile-drawer__nav a::after { content: '→'; color: var(--muted-2); font-size: 0.6em; }
.mobile-drawer__entities {
  display: flex; gap: 6px; flex-wrap: wrap;
  margin-bottom: 24px;
  padding: 14px;
  background: var(--bg-2);
  border-radius: 999px;
  align-self: flex-start;
}
.mobile-drawer__entities button {
  padding: 8px 14px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--muted);
  background: transparent;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  min-height: 36px;
}
.mobile-drawer__entities button.is-active {
  background: var(--ink);
  color: var(--bg);
}
.mobile-drawer__entities button[disabled] { opacity: 0.4; }
.mobile-drawer__cta {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 18px 28px;
  background: var(--ink);
  color: var(--bg);
  border-radius: 999px;
  font-weight: 500;
  align-self: flex-start;
}

/* Responsive topbar */
@media (max-width: 1100px) { .topbar__nav { display: none; } }
@media (max-width: 880px) {
  .topbar__entities { display: none; }
  .topbar__cta { display: none; }
  .topbar__burger { display: inline-block; }
}
@media (min-width: 881px) { .mobile-drawer { display: none; } }
body.menu-open { overflow: hidden; }

/* ============== HERO — Editorial Split 58/42 (Agent 7) ============== */
.hero {
  min-height: 100dvh;
  padding: 140px 0 80px;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  display: flex;
  align-items: center;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(ellipse 80% 50% at 20% 30%, rgba(57,151,168,0.08) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 90% 80%, rgba(184,69,31,0.06) 0%, transparent 60%);
}
.hero__grid-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(31,27,22,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(31,27,22,0.04) 1px, transparent 1px);
  background-size: 88px 88px;
  mask-image: radial-gradient(ellipse 60% 50% at 50% 40%, #000 0%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 60% 50% at 50% 40%, #000 0%, transparent 100%);
  opacity: 0.55;
}

.hero__inner {
  display: grid;
  grid-template-columns: 58fr 42fr;
  gap: clamp(40px, 5vw, 96px);
  align-items: center;
}
@media (max-width: 1000px) { .hero__inner { grid-template-columns: 1fr; } }

.hero__copy { max-width: 760px; }

.hero__brand-line {
  display: flex; align-items: center; gap: 16px;
  margin-bottom: 12px;
  opacity: 0;
  transform: translateY(12px);
  animation: heroIn 900ms var(--ease-out-q) 200ms forwards;
}
.hero__brand-line img { height: 40px; width: auto; }
.hero__brand-line .divider { width: 1px; height: 28px; background: var(--line-strong); }
.hero__brand-line .who {
  font-family: var(--f-mono);
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  line-height: 1.6;
}
.hero__brand-line .who strong { color: var(--brand-deep); font-weight: 500; }

.hero__eyebrow {
  opacity: 0;
  animation: heroIn 800ms var(--ease-out-q) 320ms forwards;
}

.hero h1 {
  font-family: var(--f-display);
  font-size: clamp(3.6rem, 8.5vw + 0.2rem, 8.6rem);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 0.93;
  color: var(--ink);
  margin-bottom: 32px;
}
.hero h1 .line {
  display: block;
  opacity: 0;
  transform: translateY(36px);
  animation: heroIn 1100ms var(--ease-out-q) forwards;
}
.hero h1 .line:nth-child(1) { animation-delay: 420ms; }
.hero h1 .line:nth-child(2) { animation-delay: 540ms; }
.hero h1 .line:nth-child(3) { animation-delay: 660ms; }
.hero h1 .italic {
  font-family: var(--f-italic);
  font-style: italic;
  color: var(--brand-deep);
  font-weight: 400;
}

.hero__lead {
  font-size: clamp(1.05rem, 0.6vw + 0.9rem, 1.25rem);
  color: var(--muted);
  max-width: 54ch;
  line-height: 1.55;
  margin-bottom: 36px;
  opacity: 0;
  transform: translateY(12px);
  animation: heroIn 900ms var(--ease-out-q) 820ms forwards;
}

.hero__cta {
  display: flex; gap: 14px; flex-wrap: wrap;
  opacity: 0;
  transform: translateY(12px);
  animation: heroIn 900ms var(--ease-out-q) 980ms forwards;
}

.hero__trust {
  margin-top: 32px;
  font-family: var(--f-mono);
  font-size: 11px;
  color: var(--muted-2);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0;
  animation: heroIn 900ms var(--ease-out-q) 1140ms forwards;
}
.hero__trust strong { color: var(--ink); font-weight: 500; }

@keyframes heroIn { to { opacity: 1; transform: none; } }

/* Hero visual (right column) */
.hero__visual {
  position: relative;
  aspect-ratio: 4/5;
  background: var(--bg-3);
  border-radius: 6px;
  overflow: hidden;
  isolation: isolate;
  opacity: 0;
  transform: scale(1.04);
  animation: heroVisualIn 1200ms var(--ease-out-q) 600ms forwards;
}
@keyframes heroVisualIn { to { opacity: 1; transform: scale(1); } }
.hero__visual::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(31,27,22,0.08));
  pointer-events: none;
}
.hero__visual-art {
  position: absolute; inset: 0;
  display: grid; place-items: center;
}
.hero__visual-art svg { width: 70%; height: 70%; }
.hero__visual-label {
  position: absolute;
  bottom: 24px; left: 24px;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
  opacity: 0.6;
}
.hero__visual-stamp {
  position: absolute;
  top: 24px; right: 24px;
  font-family: var(--f-italic);
  font-style: italic;
  font-size: 14px;
  color: var(--accent);
  letter-spacing: -0.01em;
}

/* Scroll hint */
.hero__scroll {
  position: absolute;
  bottom: 28px; left: 50%;
  transform: translateX(-50%);
  font-family: var(--f-mono);
  font-size: 10px;
  color: var(--muted-2);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  opacity: 0;
  animation: heroIn 800ms var(--ease-out-q) 1400ms forwards;
}
.hero__scroll::after {
  content: '';
  width: 1px; height: 32px;
  background: linear-gradient(180deg, currentColor, transparent);
  animation: scrollBob 2.4s ease-in-out infinite;
}
@keyframes scrollBob {
  0%, 100% { transform: scaleY(1); transform-origin: top; }
  50% { transform: scaleY(0.5); transform-origin: top; }
}

/* ============== BUTTONS ============== */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 8px 16px 24px;
  font-family: var(--f-body);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: -0.01em;
  border-radius: 999px;
  border: 1px solid transparent;
  background: transparent;
  color: var(--ink);
  transition: transform 360ms var(--ease-out), background 240ms var(--ease-out), color 240ms var(--ease-out), border-color 240ms var(--ease-out), box-shadow 320ms var(--ease-out);
  text-decoration: none;
  cursor: pointer;
}
.btn__ic {
  display: grid; place-items: center;
  width: 32px; height: 32px;
  margin-left: 6px;
  border-radius: 999px;
  background: rgba(31,27,22,0.08);
  color: inherit;
  font-size: 13px;
  transition: transform 360ms var(--ease-spring), background 240ms var(--ease-out);
}
.btn:hover .btn__ic { transform: translate(3px, -3px); }
.btn:active { transform: scale(0.98); }

.btn--primary {
  background: var(--ink);
  color: var(--bg);
  border-color: var(--ink);
}
.btn--primary:hover { background: var(--brand-darker); border-color: var(--brand-darker); }
.btn--primary .btn__ic { background: var(--bg); color: var(--ink); }

.btn--brand {
  background: var(--brand-deep);
  color: var(--bg);
  border-color: var(--brand-deep);
}
.btn--brand:hover { background: var(--brand-darker); }
.btn--brand .btn__ic { background: var(--bg); color: var(--brand-deep); }

.btn--accent {
  background: var(--accent);
  color: var(--bg);
  border-color: var(--accent);
}
.btn--accent:hover { background: oklch(40% 0.14 40); }
.btn--accent .btn__ic { background: var(--bg); color: var(--accent); }

.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line-strong);
}
.btn--ghost:hover { background: rgba(31,27,22,0.04); border-color: var(--ink); }

/* Underline link CTA (Agent 7: secondary CTA) */
.btn--link {
  padding: 0; border: 0; background: transparent;
  color: var(--ink);
  font-family: var(--f-body);
  font-weight: 500;
  font-size: 15px;
  text-decoration: none;
  position: relative;
  display: inline-flex; align-items: center; gap: 8px;
}
.btn--link::after {
  content: '';
  position: absolute; left: 0; right: 0; bottom: -4px; height: 1px;
  background: currentColor;
  transform-origin: left;
  transition: transform 360ms var(--ease-out);
}
.btn--link:hover::after { transform: scaleX(0.7); }

/* ============== COUNTER STRIP ============== */
.counters {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg);
}
.counters__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 700px) { .counters__inner { grid-template-columns: repeat(2, 1fr); } }
.counter {
  padding: 48px 36px;
  position: relative;
  border-right: 1px solid var(--line);
}
.counter:last-child { border-right: none; }
@media (max-width: 700px) {
  .counter:nth-child(2n) { border-right: none; }
  .counter:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
}
.counter::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--brand-deep);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 900ms var(--ease-out);
}
.counter.in::before { transform: scaleX(1); }
.counter .num {
  font-family: var(--f-display);
  font-size: clamp(2.6rem, 4.6vw, 4.6rem);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--ink);
  display: flex; align-items: baseline; gap: 4px;
}
.counter .num .suffix { color: var(--accent); font-size: 0.5em; font-weight: 500; }
.counter .label {
  margin-top: 16px;
  font-family: var(--f-mono);
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* ============== MARQUEE ============== */
.marquee {
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 36px 0;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee__track {
  display: flex; gap: 64px;
  animation: marquee 36s linear infinite;
  white-space: nowrap; width: max-content;
}
.marquee span {
  font-family: var(--f-italic);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.6rem, 3vw, 2.6rem);
  letter-spacing: -0.02em;
  color: var(--ink-2);
  display: inline-flex; align-items: center; gap: 64px;
}
.marquee span::after {
  content: '·';
  color: var(--brand-deep);
  font-style: normal;
  font-size: 0.7em;
}
@keyframes marquee { to { transform: translateX(-50%); } }

/* ============== MAP — 3D Globe (full-bleed, centered) ============== */
.map-section {
  padding-block: clamp(120px, 14vw, 200px) clamp(80px, 8vw, 120px);
  background: var(--bg);
  position: relative;
  overflow: hidden;
}

/* Coverage stripe — map alt info */
.coverage {
  margin-top: clamp(40px, 6vw, 80px);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 4vw, 56px);
  padding: clamp(28px, 4vw, 48px);
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 12px;
}
@media (max-width: 900px) { .coverage { grid-template-columns: 1fr; } }
.coverage__col { display: flex; flex-direction: column; gap: 14px; }
.coverage__label {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}
.coverage__row { display: flex; flex-wrap: wrap; gap: 6px; }
.coverage__chip {
  display: inline-flex; align-items: center;
  padding: 6px 10px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  border-radius: 6px;
  transition: transform 220ms var(--ease-out);
}
.coverage__chip:hover { transform: translateY(-1px); }
.coverage__chip--active {
  background: var(--brand-deep);
  color: var(--bg);
}
.coverage__chip--soon {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
  opacity: 0.85;
}
.coverage__count {
  font-family: var(--f-mono);
  font-size: 11px;
  color: var(--muted-2);
  letter-spacing: 0.06em;
  margin-top: 6px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}
.map-section__head {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: end;
  margin-bottom: 64px;
}
.map-section__head h2 { margin: 0; max-width: 18ch; }
.map-section__head .meta {
  font-family: var(--f-mono);
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.10em;
  line-height: 1.8;
  text-transform: uppercase;
  text-align: right;
}
.map-section__head .meta strong { color: var(--brand-deep); font-weight: 500; }
@media (max-width: 700px) {
  .map-section__head { grid-template-columns: 1fr; }
  .map-section__head .meta { text-align: left; }
}

/* Full-bleed globe container — scroll-friendly height (sayfa scroll'u engellemez) */
.globe-wrap {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  height: clamp(560px, 72vh, 820px);
  background: var(--bg-2);
  overflow: hidden;
  isolation: isolate;
  cursor: grab;
  user-select: none;
  -webkit-user-select: none;
  /* touch-action: pan-y → dikey scroll çalışır, drag için pointermove'u yine yakalıyoruz */
  touch-action: pan-y;
}
.globe-wrap:active { cursor: grabbing; }
.globe-wrap svg { width: 100%; height: 100%; display: block; }

/* Globe dots */
.globe-land {
  fill: var(--muted-2);
  fill-opacity: 0.20;
  transition: fill-opacity 280ms var(--ease-out);
}
.globe-land.is-active {
  fill: var(--brand-deep);
  fill-opacity: 0.92;
}
.globe-land.is-current {
  fill: var(--brand);
  fill-opacity: 1;
}
.globe-land.is-soon {
  fill: var(--muted);
  fill-opacity: 0.55;
}

/* Sphere outline + halo */
.globe-sphere {
  fill: var(--bg-2);
  stroke: var(--line-strong);
  stroke-width: 1;
}
.globe-halo {
  fill: none;
  stroke: rgba(32,105,115,0.16);
  stroke-width: 1.5;
}
.globe-graticule {
  fill: none;
  stroke: rgba(31,27,22,0.04);
  stroke-width: 0.5;
}
.globe-border {
  fill: none;
  stroke: rgba(31,27,22,0.15);
  stroke-width: 0.5;
  pointer-events: none;
  vector-effect: non-scaling-stroke;
}
.globe-hit {
  fill: transparent;
  stroke: transparent;
  stroke-width: 0;
  cursor: default;
  pointer-events: all;
  transition: fill 220ms var(--ease-out), stroke 220ms var(--ease-out), stroke-width 220ms var(--ease-out);
}
.globe-hit.is-active { cursor: pointer; }
.globe-hit.is-active:hover {
  fill: rgba(32,105,115,0.14);
  stroke: var(--brand-deep);
  stroke-width: 1.2;
}
.globe-hit.is-soon:hover {
  fill: rgba(184,69,31,0.10);
  stroke: var(--accent);
  stroke-width: 1;
  cursor: help;
}
.globe-hit:not(.is-active):not(.is-soon):hover {
  fill: rgba(31,27,22,0.04);
  stroke: rgba(31,27,22,0.4);
  stroke-width: 0.8;
}

/* Country labels (only active markets, only when projecting front-side) */
.globe-label {
  font-family: var(--f-mono);
  font-size: 9px;
  font-weight: 500;
  fill: var(--brand-darker);
  text-anchor: middle;
  pointer-events: none;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  paint-order: stroke;
  stroke: var(--bg);
  stroke-width: 3px;
  stroke-linejoin: round;
}
.globe-label.is-current { font-size: 11px; fill: var(--brand-deep); }
.globe-label-soon {
  font-family: var(--f-mono);
  font-size: 7px;
  fill: var(--accent);
  text-anchor: middle;
  pointer-events: none;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  paint-order: stroke;
  stroke: var(--bg);
  stroke-width: 3px;
  stroke-linejoin: round;
}

/* Site markers */
.globe-marker { pointer-events: all; cursor: pointer; }
.globe-marker-dot {
  fill: var(--accent);
  stroke: var(--bg);
  stroke-width: 1.6;
}
.globe-marker-pulse {
  fill: var(--accent);
  opacity: 0.5;
  pointer-events: none;
  animation: markerPulse 2.6s ease-out infinite;
}
.globe-marker-ring {
  fill: none;
  stroke: var(--accent);
  stroke-width: 0.8;
  opacity: 0.40;
  pointer-events: none;
  pointer-events: none;
}

/* Overlay UI on globe */
.globe-ui {
  position: absolute;
  top: 28px; left: 36px;
  z-index: 3;
  pointer-events: none;
}
.globe-ui .label {
  font-family: var(--f-mono);
  font-size: 10px;
  color: var(--muted);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.globe-ui .live {
  font-family: var(--f-mono);
  font-size: 11px;
  color: var(--accent);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 6px;
}
.globe-ui .live::before {
  content: '';
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--accent);
  animation: liveDot 1.8s ease-in-out infinite;
}

.globe-hint {
  position: absolute;
  bottom: 28px; left: 50%;
  transform: translateX(-50%);
  font-family: var(--f-mono);
  font-size: 10px;
  color: var(--muted-2);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  pointer-events: none;
  z-index: 3;
  display: inline-flex; align-items: center; gap: 10px;
}

/* Zoom controls — right side, vertical stack */
.globe-controls {
  position: absolute;
  right: 28px;
  top: 50%;
  transform: translateY(-50%);
  display: flex; flex-direction: column;
  gap: 8px;
  z-index: 4;
}
.globe-controls button {
  width: 44px; height: 44px;
  display: grid; place-items: center;
  background: var(--surface);
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 18px;
  font-weight: 500;
  cursor: pointer;
  transition: all 240ms var(--ease-out);
  box-shadow: 0 8px 20px -8px rgba(31,27,22,0.12);
}
.globe-controls button:hover {
  background: var(--ink);
  color: var(--bg);
  border-color: var(--ink);
  transform: translateY(-1px);
}
.globe-controls button:active { transform: scale(0.96); }
.globe-controls button[id="globe-zoom-reset"] { font-size: 14px; }
.globe-hint::before, .globe-hint::after {
  content: '';
  display: inline-block;
  width: 24px; height: 1px;
  background: currentColor;
  opacity: 0.4;
}

.globe-legend {
  position: absolute;
  bottom: 28px; right: 36px;
  display: flex; gap: 16px; flex-wrap: wrap;
  font-family: var(--f-mono);
  font-size: 10px;
  color: var(--muted);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  z-index: 3;
  pointer-events: none;
}
.globe-legend .d { display: inline-block; width: 8px; height: 8px; border-radius: 50%; margin-right: 6px; vertical-align: -1px; }
.globe-legend .d--active   { background: var(--brand-deep); }
.globe-legend .d--inactive { background: var(--muted-2); opacity: 0.45; }
.globe-legend .d--site     { background: var(--accent); }

.globe-tip {
  position: absolute;
  pointer-events: none;
  padding: 12px 16px;
  background: var(--ink);
  color: var(--bg);
  border-radius: 8px;
  font-family: var(--f-mono);
  font-size: 12px;
  white-space: nowrap;
  opacity: 0;
  transform: translate(-50%, calc(-100% - 14px));
  transition: opacity 220ms var(--ease-out);
  z-index: 4;
  box-shadow: 0 20px 40px -16px rgba(31,27,22,0.3);
}
.globe-tip.is-visible { opacity: 1; }
.globe-tip strong { color: var(--brand); font-weight: 500; }
.globe-tip .meta {
  display: block;
  color: var(--subtle);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-top: 4px;
}

.dotmap__svg { width: 100%; height: 100%; display: block; }

.dotmap__dot {
  fill: var(--muted-2);
  fill-opacity: 0.18;
  transition: fill 280ms var(--ease-out), fill-opacity 280ms var(--ease-out);
}
.dotmap__dot.is-active {
  fill: var(--brand-deep);
  fill-opacity: 0.85;
}

.dotmap__hit {
  fill: transparent;
  cursor: pointer;
  pointer-events: all;
  transition: fill 300ms var(--ease-out);
}
.dotmap__hit:hover { fill: rgba(32,105,115,0.08); }
.dotmap__hit:focus-visible { fill: rgba(32,105,115,0.14); outline: none; }

/* Site markers */
.dotmap__marker { pointer-events: all; cursor: pointer; }
.dotmap__marker-dot {
  fill: var(--accent);
  stroke: var(--bg);
  stroke-width: 1.5;
}
.dotmap__marker-pulse {
  fill: var(--accent);
  opacity: 0.5;
  animation: markerPulse 2.6s ease-out infinite;
  pointer-events: none;
}
@keyframes markerPulse {
  0% { r: 4; opacity: 0.45; }
  100% { r: 18; opacity: 0; }
}
.dotmap__marker-ring {
  fill: none;
  stroke: var(--accent);
  stroke-width: 0.8;
  opacity: 0.45;
  pointer-events: none;
}
.dotmap__marker:hover .dotmap__marker-dot { fill: oklch(40% 0.14 40); }

/* Country labels — all visible Europe countries (Agent feedback) */
.dotmap__label {
  font-family: var(--f-mono);
  font-size: 8.5px;
  font-weight: 500;
  fill: var(--muted-2);
  fill-opacity: 0.5;
  text-anchor: middle;
  pointer-events: none;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.dotmap__label.is-active {
  fill: var(--brand-darker);
  fill-opacity: 1;
  font-size: 11px;
  letter-spacing: 0.16em;
}
.dotmap__label.is-soon {
  fill: var(--muted);
  fill-opacity: 0.75;
  font-size: 9px;
}
.dotmap__label-soon {
  font-family: var(--f-mono);
  font-size: 7px;
  fill: var(--accent);
  text-anchor: middle;
  pointer-events: none;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  fill-opacity: 0.7;
}

/* Map overlay */
.dotmap__overlay {
  position: absolute;
  top: 24px; left: 28px;
  z-index: 2;
  pointer-events: none;
}
.dotmap__overlay .label {
  font-family: var(--f-mono);
  font-size: 10px;
  color: var(--muted);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.dotmap__overlay .live {
  font-family: var(--f-mono);
  font-size: 11px;
  color: var(--accent);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 6px;
}
.dotmap__overlay .live::before {
  content: '';
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--accent);
  animation: liveDot 1.8s ease-in-out infinite;
}
@keyframes liveDot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

/* Tooltip */
.dotmap__tip {
  position: absolute;
  pointer-events: none;
  padding: 12px 16px;
  background: var(--ink);
  color: var(--bg);
  border-radius: 8px;
  font-family: var(--f-mono);
  font-size: 12px;
  white-space: nowrap;
  opacity: 0;
  transform: translate(-50%, calc(-100% - 14px));
  transition: opacity 220ms var(--ease-out);
  z-index: 4;
  box-shadow: 0 20px 40px -16px rgba(31,27,22,0.3);
}
.dotmap__tip.is-visible { opacity: 1; }
.dotmap__tip strong { color: var(--brand); font-weight: 500; }
.dotmap__tip .meta {
  display: block;
  color: var(--subtle);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-top: 4px;
}

.dotmap__legend {
  position: absolute;
  bottom: 20px; left: 28px;
  display: flex; gap: 18px; flex-wrap: wrap;
  font-family: var(--f-mono);
  font-size: 10px;
  color: var(--muted);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  z-index: 2;
  pointer-events: none;
}
.dotmap__legend .d { display: inline-block; width: 8px; height: 8px; border-radius: 50%; margin-right: 6px; vertical-align: -1px; }
.dotmap__legend .d--active   { background: var(--brand-deep); }
.dotmap__legend .d--inactive { background: var(--muted-2); opacity: 0.4; }
.dotmap__legend .d--site     { background: var(--accent); }

/* ============== MODAL (Agent 8) ============== */
.modal-backdrop {
  position: fixed; inset: 0;
  background: rgba(20,18,15,0.55);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 80;
  opacity: 0;
  pointer-events: none;
  transition: opacity 320ms var(--ease-out);
}
.modal-backdrop.is-open { opacity: 1; pointer-events: all; }

.modal {
  position: fixed;
  top: 50%; left: 50%;
  transform: translate(-50%, calc(-50% + 18px)) scale(0.94);
  width: min(94vw, 1080px);
  max-height: 86vh;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 14px;
  z-index: 90;
  display: flex; flex-direction: column;
  opacity: 0;
  pointer-events: none;
  transition: opacity 380ms var(--ease-out), transform 460ms var(--ease-out-q);
  overflow: hidden;
  box-shadow: 0 60px 120px -30px rgba(40,30,20,0.4);
}
.modal.is-open {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
  pointer-events: all;
}
.modal__head {
  display: flex; align-items: center; gap: 22px;
  padding: 32px 36px;
  border-bottom: 1px solid var(--line);
  position: relative;
  background: var(--bg-2);
}
.modal__flag {
  width: 56px; height: 40px;
  border-radius: 4px;
  background-size: cover; background-position: center;
  box-shadow: 0 0 0 1px var(--line-strong);
  flex-shrink: 0;
}
.modal__country-name {
  font-family: var(--f-display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 400;
  letter-spacing: -0.025em;
  margin: 0;
  line-height: 1;
}
.modal__country-meta {
  font-family: var(--f-mono);
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.08em;
  margin-top: 6px;
  text-transform: uppercase;
}
.modal__country-meta strong { color: var(--brand-deep); font-weight: 500; }
.modal__entity-tag {
  margin-left: auto;
  margin-right: 56px;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.10em;
  color: var(--muted);
  text-transform: uppercase;
  text-align: right;
}
.modal__entity-tag strong { display: block; color: var(--ink); margin-top: 2px; font-size: 12px; }
.modal__close {
  position: absolute;
  top: 28px; right: 32px;
  width: 36px; height: 36px;
  display: grid; place-items: center;
  border-radius: 999px;
  background: var(--surface);
  color: var(--ink);
  border: 1px solid var(--line-strong);
  cursor: pointer;
  transition: all 240ms var(--ease-out);
}
.modal__close:hover { background: var(--accent); color: var(--bg); border-color: var(--accent); transform: rotate(90deg); }
.modal__body { padding: 32px 36px; overflow-y: auto; }
.modal__sites {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 14px;
}
.modal__site {
  display: flex; flex-direction: column; gap: 16px;
  padding: 22px;
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: 8px;
  text-decoration: none;
  color: var(--ink);
  transition: transform 360ms var(--ease-out), border-color 280ms var(--ease-out), background 280ms var(--ease-out), box-shadow 280ms var(--ease-out);
  opacity: 0;
  transform: translateY(8px);
}
.modal.is-open .modal__site {
  animation: modalStagger 600ms var(--ease-out-q) forwards;
}
@keyframes modalStagger { to { opacity: 1; transform: none; } }
.modal__site:hover {
  transform: translateY(-3px);
  border-color: var(--brand-deep);
  box-shadow: 0 16px 32px -16px rgba(31,27,22,0.18);
}
.modal__site-logo {
  height: 56px;
  display: grid; place-items: center;
}
.modal__site-logo img { max-height: 100%; max-width: 100%; object-fit: contain; }
.modal__site-bottom { display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.modal__site-host {
  font-family: var(--f-mono);
  font-size: 12px;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.modal__site-badge {
  font-family: var(--f-mono);
  font-size: 9px;
  padding: 3px 8px;
  border-radius: 999px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
}
.modal__site-badge.shop  { color: var(--brand-deep); background: var(--brand-soft); }
.modal__site-badge.devis { color: var(--accent); background: var(--accent-soft); }
.modal__site-arrow {
  font-size: 13px;
  color: var(--muted-2);
  transition: transform 360ms var(--ease-spring), color 240ms var(--ease-out);
}
.modal__site:hover .modal__site-arrow { color: var(--brand-deep); transform: translate(2px, -2px); }
.modal__empty {
  padding: 60px 24px;
  text-align: center;
  color: var(--muted);
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  border: 1px dashed var(--line);
  border-radius: 6px;
}

/* ============== PRODUCT SECTIONS ============== */
.product-section { padding-block: clamp(120px, 14vw, 200px); }
.product-section--alt { background: var(--bg-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.sites-section { background: var(--bg-2); }

.product-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 6vw, 96px);
  align-items: center;
}
@media (max-width: 900px) { .product-row { grid-template-columns: 1fr; } }
.product-row--reverse > :first-child { order: 2; }
@media (max-width: 900px) { .product-row--reverse > :first-child { order: 0; } }

.product-copy .pe {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand-deep);
  margin-bottom: 24px;
  display: inline-flex; align-items: center; gap: 12px;
}
.product-row--accent .product-copy .pe { color: var(--accent); }
.product-copy .pe .pill {
  padding: 4px 10px;
  background: var(--brand-soft);
  border-radius: 999px;
  font-size: 10px;
}
.product-row--accent .pe .pill { background: var(--accent-soft); color: var(--accent); }

.product-copy h2 {
  font-size: clamp(2.4rem, 4.4vw + 0.2rem, 4.8rem);
  letter-spacing: -0.035em;
  line-height: 0.97;
  margin-bottom: 32px;
}
.product-copy h2 em.italic { font-family: var(--f-italic); font-style: italic; color: var(--brand-deep); font-weight: 400; }
.product-row--accent h2 em.italic { color: var(--accent); }

.product-copy p { max-width: 54ch; font-size: 1.06rem; color: var(--muted); }

.product-copy .features {
  list-style: none; padding: 0; margin: 32px 0 40px;
  display: grid; gap: 0;
}
.product-copy .features li {
  display: flex; gap: 18px;
  padding: 16px 0;
  border-top: 1px solid var(--line);
  font-size: 0.98rem;
  color: var(--ink-2);
}
.product-copy .features li:last-child { border-bottom: 1px solid var(--line); }
.product-copy .features li small {
  font-family: var(--f-mono);
  font-size: 10px;
  color: var(--muted-2);
  letter-spacing: 0.12em;
  flex: 0 0 40px;
}

/* Product visual */
.product-visual {
  aspect-ratio: 4/5;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.product-visual--trappe {
  background:
    radial-gradient(ellipse at 30% 30%, rgba(57,151,168,0.10) 0%, transparent 60%),
    var(--surface);
}
.product-visual--trappe svg {
  position: absolute;
  inset: 10%;
  width: 80%; height: 80%;
}
.product-visual--listel {
  background:
    radial-gradient(ellipse at 70% 30%, rgba(184,69,31,0.10) 0%, transparent 60%),
    var(--surface);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 8px;
  padding: 16% 12% 0;
}

/* Listel — Interactive profile selector */
.profile-selector {
  aspect-ratio: 4/5;
  background:
    radial-gradient(ellipse at 30% 30%, rgba(184,69,31,0.07) 0%, transparent 60%),
    linear-gradient(135deg, #FFFFFF 0%, #F4EFE3 100%);
  border: 1px solid var(--line);
  border-radius: 8px;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  display: flex; flex-direction: column;
}
.profile-selector__tabs {
  display: flex;
  padding: 18px 18px 0;
  gap: 6px;
  flex-wrap: wrap;
}
.profile-selector__tab {
  padding: 8px 14px;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--muted);
  background: rgba(31,27,22,0.04);
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  transition: all 280ms var(--ease-out);
}
.profile-selector__tab:hover { color: var(--ink); background: rgba(31,27,22,0.08); }
.profile-selector__tab.is-active {
  color: var(--bg);
  background: var(--accent);
  border-color: var(--accent);
}
.profile-selector__stage {
  position: relative;
  flex: 1;
  margin: 12px 18px;
  display: grid; place-items: center;
}
.profile-selector__view {
  position: absolute;
  inset: 0;
  display: grid; place-items: center;
  opacity: 0;
  transform: scale(0.92) translateY(20px);
  filter: blur(8px);
  transition: opacity 480ms var(--ease-out-q), transform 600ms var(--ease-out-q), filter 480ms var(--ease-out-q);
  pointer-events: none;
}
.profile-selector__view.is-active {
  opacity: 1;
  transform: none;
  filter: blur(0);
  pointer-events: auto;
}
.profile-selector__view svg,
.profile-selector__view img {
  width: 100%; height: 100%;
  object-fit: contain;
  image-rendering: -webkit-optimize-contrast;
}
.profile-selector__ref {
  position: absolute;
  top: 12px; right: 16px;
  font-family: var(--f-mono);
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brand-deep);
  opacity: 0.7;
}
.profile-selector__bottom {
  padding: 14px 22px 18px;
  display: flex; justify-content: space-between; align-items: flex-end;
  gap: 14px;
  border-top: 1px solid var(--line);
  background: rgba(255,255,255,0.6);
}
.profile-selector__caption {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--ink);
  letter-spacing: -0.015em;
}
.profile-selector__spec {
  font-family: var(--f-mono);
  font-size: 10px;
  color: var(--muted);
  letter-spacing: 0.10em;
  text-transform: uppercase;
  text-align: right;
  line-height: 1.7;
}
.profile-selector__spec strong { color: var(--brand-deep); font-weight: 500; }
.product-visual--listel .bar {
  flex: 1;
  background: linear-gradient(180deg, var(--accent-bright) 0%, var(--accent) 100%);
  border-radius: 4px 4px 0 0;
  border: 1px solid oklch(48% 0.12 40);
  border-bottom: none;
}
.product-visual--listel .bar:nth-child(1) { height: 48%; }
.product-visual--listel .bar:nth-child(2) { height: 78%; }
.product-visual--listel .bar:nth-child(3) { height: 92%; }
.product-visual--listel .bar:nth-child(4) { height: 68%; }
.product-visual--listel .bar:nth-child(5) { height: 56%; }
.product-visual--listel .bar:nth-child(6) { height: 84%; }
.product-visual--listel .bar:nth-child(7) { height: 40%; }
.product-visual__label {
  position: absolute;
  bottom: 16px; left: 20px;
  font-family: var(--f-mono);
  font-size: 10px;
  color: var(--muted);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.product-visual__stamp {
  position: absolute;
  top: 16px; right: 20px;
  font-family: var(--f-italic);
  font-style: italic;
  font-size: 14px;
  color: var(--brand-deep);
}

/* ============== MANIFESTO ============== */
.manifesto {
  background: var(--bg);
  padding-block: clamp(140px, 16vw, 220px);
  text-align: left;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.manifesto__quote {
  font-family: var(--f-italic);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(2.4rem, 5vw, 5rem);
  letter-spacing: -0.025em;
  line-height: 1.08;
  max-width: 26ch;
  margin: 0 auto;
  color: var(--ink);
}
.manifesto__quote .accent { color: var(--brand-deep); font-style: italic; }
.manifesto__source {
  margin-top: 56px;
  text-align: center;
  font-family: var(--f-mono);
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

/* ============== ENTITIES ============== */
.entities {
  display: grid;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  margin-top: 56px;
}
.entity {
  display: grid;
  grid-template-columns: 48px 220px 1fr 240px 100px;
  gap: 32px;
  padding: 28px 32px;
  align-items: center;
  border-bottom: 1px solid var(--line);
  transition: background 240ms var(--ease-out);
  position: relative;
}
.entity:last-child { border-bottom: none; }
.entity:hover { background: var(--bg-2); }
.entity.is-current { background: var(--bg-2); }
.entity.is-current::before {
  content: '';
  position: absolute;
  top: 0; bottom: 0; left: 0;
  width: 3px;
  background: var(--brand-deep);
}
.entity__flag {
  width: 40px; height: 28px;
  border-radius: 3px;
  background-size: cover; background-position: center;
  box-shadow: 0 0 0 1px var(--line-strong);
}
.entity__logo img { height: 32px; width: auto; max-width: 200px; }
.entity__name {
  font-family: var(--f-display);
  font-size: 1.15rem;
  font-weight: 400;
  letter-spacing: -0.015em;
  color: var(--ink);
}
.entity__forme {
  font-family: var(--f-mono);
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.06em;
  margin-top: 6px;
}
.entity__legal {
  font-family: var(--f-mono);
  font-size: 11px;
  color: var(--ink-2);
  letter-spacing: 0.04em;
  line-height: 1.7;
}
.entity__legal strong { color: var(--brand-deep); font-weight: 500; display: block; margin-bottom: 2px; }
.entity__stats {
  display: flex; gap: 28px;
  font-family: var(--f-mono);
  font-size: 10px;
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.entity__stats div { display: flex; flex-direction: column; gap: 4px; }
.entity__stats strong {
  font-family: var(--f-display);
  font-size: 1.4rem;
  color: var(--ink);
  letter-spacing: -0.02em;
  font-weight: 400;
  text-transform: none;
}
.entity__ribbon {
  font-family: var(--f-mono);
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  padding: 3px 8px;
  background: var(--accent-soft);
  border-radius: 4px;
  display: inline-block;
  margin-left: 10px;
}
@media (max-width: 1100px) {
  .entity {
    grid-template-columns: 40px 1fr;
    gap: 14px 20px;
  }
  .entity__logo, .entity__legal, .entity__stats { grid-column: 1 / -1; }
}

/* ============== SITES GRID ============== */
.sites-section {
  padding-block: clamp(120px, 14vw, 200px);
  background: var(--bg-2);
  border-top: 1px solid var(--line);
}
.sites-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
@media (max-width: 1100px) { .sites-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 720px)  { .sites-grid { grid-template-columns: repeat(2, 1fr); } }

.site-card {
  position: relative;
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px 22px 18px;
  text-decoration: none;
  color: var(--ink);
  display: flex; flex-direction: column; gap: 18px;
  min-height: 200px;
  transition: transform 420ms var(--ease-out), border-color 280ms var(--ease-out), box-shadow 280ms var(--ease-out);
}
.site-card:hover {
  transform: translateY(-4px);
  border-color: var(--brand-deep);
  box-shadow: 0 18px 36px -16px rgba(31,27,22,0.16);
}
.site-card__logo {
  height: 60px;
  display: grid; place-items: center;
  padding: 6px 12px;
}
.site-card__logo img { max-height: 100%; max-width: 100%; object-fit: contain; }
.site-card__bottom {
  margin-top: auto;
  display: flex; align-items: center; gap: 10px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}
.site-card__flag {
  width: 22px; height: 16px;
  border-radius: 2px;
  background-size: cover; background-position: center;
  box-shadow: 0 0 0 1px var(--line-strong);
  flex-shrink: 0;
}
.site-card__host {
  flex: 1;
  font-family: var(--f-mono);
  font-size: 12px;
  color: var(--ink-2);
  letter-spacing: -0.01em;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.site-card__badge {
  font-family: var(--f-mono);
  font-size: 9px;
  padding: 2px 7px;
  border-radius: 999px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
}
.site-card__badge.shop  { color: var(--brand-deep); background: var(--brand-soft); }
.site-card__badge.devis { color: var(--accent); background: var(--accent-soft); }
.site-card__arrow {
  position: absolute;
  top: 14px; right: 14px;
  width: 24px; height: 24px;
  display: grid; place-items: center;
  border-radius: 999px;
  background: var(--bg-2);
  color: var(--muted);
  font-size: 11px;
  transition: transform 380ms var(--ease-spring), background 240ms var(--ease-out), color 240ms var(--ease-out);
}
.site-card:hover .site-card__arrow {
  background: var(--brand-deep);
  color: var(--bg);
  transform: translate(2px, -2px);
}

/* ============== CONTACT ============== */
.contact-section {
  padding-block: clamp(120px, 14vw, 200px);
  background: var(--bg);
  position: relative;
  border-top: 1px solid var(--line);
}
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: clamp(48px, 6vw, 96px);
  align-items: start;
  margin-top: 56px;
}
@media (max-width: 900px) { .contact-layout { grid-template-columns: 1fr; } }

.contact-info h2 { max-width: 14ch; }
.contact-info .lead {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 44ch;
  margin-bottom: 40px;
}
.contact-info__entity {
  padding: 24px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin-bottom: 28px;
}
.contact-info__entity-tag {
  font-family: var(--f-mono);
  font-size: 10px;
  color: var(--brand-deep);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 10px;
  display: block;
}
.contact-info__entity-name {
  font-family: var(--f-display);
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: -0.022em;
  margin-bottom: 8px;
}
.contact-info__entity-meta {
  font-family: var(--f-mono);
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.04em;
  line-height: 1.8;
}
.contact-info__channels { display: grid; gap: 12px; }
.contact-info__channel {
  display: flex; align-items: center; gap: 16px;
  padding: 16px 20px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  transition: border-color 240ms var(--ease-out), background 240ms var(--ease-out);
}
.contact-info__channel:hover { border-color: var(--brand-deep); background: var(--surface-2); }
.contact-info__channel-label {
  font-family: var(--f-mono);
  font-size: 10px;
  color: var(--muted);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  width: 80px;
  flex-shrink: 0;
}
.contact-info__channel-value {
  font-family: var(--f-mono);
  font-size: 13px;
  color: var(--ink);
  letter-spacing: -0.01em;
}

/* Form */
.contact-form {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 40px;
}
@media (max-width: 600px) { .contact-form { padding: 28px 24px; } }
.contact-form__title {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand-deep);
  margin-bottom: 24px;
  display: flex; align-items: center; gap: 12px;
}
.contact-form__title::before { content: ''; width: 24px; height: 1px; background: currentColor; opacity: 0.6; }

.field { margin-bottom: 20px; position: relative; }
.field label {
  display: block;
  font-family: var(--f-mono);
  font-size: 10px;
  color: var(--muted);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.field label .req { color: var(--accent); margin-left: 4px; }
.field label .opt { color: var(--muted-2); margin-left: 4px; font-size: 9px; }
.field input,
.field select,
.field textarea {
  width: 100%;
  font-family: var(--f-body);
  font-size: 15px;
  color: var(--ink);
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 14px 16px;
  transition: border-color 220ms var(--ease-out), background 220ms var(--ease-out);
  -webkit-appearance: none;
  appearance: none;
}
.field input::placeholder, .field textarea::placeholder { color: var(--subtle); }
.field input:hover, .field select:hover, .field textarea:hover { border-color: var(--line-strong); }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--brand-deep);
  box-shadow: 0 0 0 3px rgba(32,105,115,0.10);
}
.field textarea { min-height: 130px; resize: vertical; line-height: 1.5; }
.field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1.5l5 5 5-5' fill='none' stroke='%235C5550' stroke-width='1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 540px) { .field-row { grid-template-columns: 1fr; } }

.contact-form__consent {
  display: flex; gap: 12px; align-items: flex-start;
  margin: 24px 0 24px;
  font-family: var(--f-mono);
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.02em;
  line-height: 1.6;
}
.contact-form__consent input {
  width: 16px; height: 16px;
  margin-top: 2px;
  accent-color: var(--brand-deep);
  flex-shrink: 0;
}
.contact-form__consent a { color: var(--brand-deep); text-decoration: underline; }
.contact-form__rgpd {
  font-family: var(--f-mono);
  font-size: 10px;
  color: var(--muted-2);
  line-height: 1.6;
  margin-bottom: 24px;
  letter-spacing: 0.02em;
}
.contact-form__rgpd a { color: var(--brand-deep); text-decoration: underline; }
.contact-form__submit {
  width: 100%;
  display: flex; align-items: center; justify-content: center; gap: 12px;
  padding: 18px 28px;
  font-family: var(--f-body);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: -0.01em;
  background: var(--ink);
  color: var(--bg);
  border: 1px solid var(--ink);
  border-radius: 999px;
  cursor: pointer;
  transition: transform 320ms var(--ease-out), background 240ms var(--ease-out), box-shadow 320ms var(--ease-out);
}
.contact-form__submit:hover {
  background: var(--brand-darker);
  border-color: var(--brand-darker);
  transform: translateY(-2px);
  box-shadow: 0 14px 36px -10px rgba(31,27,22,0.3);
}
.contact-form__submit:active { transform: translateY(0); }
.contact-form__submit .arrow {
  display: grid; place-items: center;
  width: 28px; height: 28px;
  border-radius: 999px;
  background: var(--bg);
  color: var(--ink);
  font-size: 13px;
  transition: transform 380ms var(--ease-spring);
}
.contact-form__submit:hover .arrow { transform: translate(3px, -3px); background: var(--bg); color: var(--brand-deep); }

.contact-form__success {
  display: none;
  padding: 24px;
  margin-top: 16px;
  background: oklch(96% 0.05 145);
  border: 1px solid oklch(75% 0.08 145);
  border-radius: 6px;
  color: oklch(28% 0.08 145);
  font-family: var(--f-mono);
  font-size: 13px;
  letter-spacing: 0.02em;
}
.contact-form__success.is-shown { display: block; }

.contact-form__error {
  display: none;
  padding: 24px;
  margin-top: 16px;
  background: oklch(96% 0.05 25);
  border: 1px solid oklch(70% 0.15 25);
  border-radius: 6px;
  color: oklch(35% 0.18 25);
  font-family: var(--f-mono);
  font-size: 13px;
  letter-spacing: 0.02em;
}
.contact-form__error.is-shown { display: block; }

/* ============== FOOTER — Editorial light-on-dark ============== */
.footer {
  background: var(--ink);
  color: var(--bg);
  padding: 120px 0 36px;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

/* Subtle hairline pattern overlay */
.footer::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse 60% 40% at 30% 10%, rgba(57,151,168,0.06) 0%, transparent 60%),
    radial-gradient(ellipse 50% 30% at 80% 90%, rgba(184,69,31,0.04) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}

/* Hero footer block — manifesto-style brand statement */
.footer__hero {
  position: relative;
  z-index: 2;
  margin-bottom: 96px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(244,239,231,0.10);
}
@media (max-width: 800px) {
  .footer__hero { grid-template-columns: 1fr; }
}
.footer__hero-text {
  font-family: var(--f-italic);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(2rem, 4vw + 0.2rem, 4rem);
  letter-spacing: -0.025em;
  line-height: 1.05;
  color: rgba(244,239,231,0.92);
  max-width: 20ch;
  margin: 0;
}
.footer__hero-text em {
  font-family: var(--f-display);
  font-style: normal;
  font-weight: 400;
  color: var(--brand);
}
.footer__hero-cta {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 18px 8px 18px 26px;
  background: var(--bg);
  color: var(--ink);
  border-radius: 999px;
  font-family: var(--f-body);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.01em;
  transition: transform 320ms var(--ease-out), background 240ms var(--ease-out);
  white-space: nowrap;
}
.footer__hero-cta:hover {
  background: var(--brand);
  color: var(--bg);
  transform: translateY(-2px);
}
.footer__hero-cta .ic {
  display: grid; place-items: center;
  width: 32px; height: 32px;
  background: var(--ink);
  color: var(--bg);
  border-radius: 999px;
  font-size: 13px;
  transition: transform 360ms var(--ease-spring), background 240ms var(--ease-out);
}
.footer__hero-cta:hover .ic { background: var(--bg); color: var(--brand); transform: translate(3px, -3px); }

/* Main grid */
.footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 56px;
  margin-bottom: 80px;
  position: relative; z-index: 2;
}
@media (max-width: 900px) { .footer__grid { grid-template-columns: 1fr 1fr; gap: 40px; } }
@media (max-width: 560px) { .footer__grid { grid-template-columns: 1fr; } }

.footer__col h3,
.footer__col h4 {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(244,239,231,0.4);
  margin: 0 0 20px;
  font-weight: 400;
}
.footer__col img.tempo-logo {
  height: 36px;
  width: auto;
  margin-bottom: 20px;
  filter: brightness(0) invert(1);
  opacity: 0.95;
}
.footer__col ul {
  list-style: none; padding: 0; margin: 0;
  display: grid; gap: 12px;
}
.footer__col a {
  color: rgba(244,239,231,0.80);
  font-size: 13px;
  font-family: var(--f-body);
  letter-spacing: -0.005em;
  transition: color 240ms var(--ease-out), padding-left 320ms var(--ease-out);
  display: inline-block;
}
.footer__col a:hover { color: var(--brand); padding-left: 4px; }
.footer__col p {
  font-size: 12px;
  color: rgba(244,239,231,0.50);
  margin: 0 0 8px;
  font-family: var(--f-mono);
  letter-spacing: 0.04em;
  line-height: 1.7;
}

.footer__sites {
  max-height: 230px;
  overflow-y: auto;
  padding-right: 12px;
  scrollbar-width: thin;
  scrollbar-color: rgba(244,239,231,0.18) transparent;
}
.footer__sites::-webkit-scrollbar { width: 4px; }
.footer__sites::-webkit-scrollbar-track { background: transparent; }
.footer__sites::-webkit-scrollbar-thumb { background: rgba(244,239,231,0.18); border-radius: 999px; }
.footer__sites a {
  font-family: var(--f-mono);
  font-size: 12px;
}

/* Legal row */
.footer__legal {
  display: flex; justify-content: space-between; align-items: center;
  gap: 24px; flex-wrap: wrap;
  padding-top: 32px;
  border-top: 1px solid rgba(244,239,231,0.10);
  position: relative; z-index: 2;
}
.footer__legal-left {
  font-family: var(--f-mono);
  font-size: 11px;
  color: rgba(244,239,231,0.45);
  letter-spacing: 0.04em;
}
.footer__legal-left strong { color: rgba(244,239,231,0.65); font-weight: 500; }

/* Version badge */
.footer__version {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  margin-right: 10px;
  background: rgba(244,239,231,0.06);
  border: 1px solid rgba(244,239,231,0.10);
  border-radius: 999px;
  color: rgba(244,239,231,0.5);
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
}

/* Websy Agency credit (right side) */
.footer__by {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 10px 18px;
  background: rgba(244,239,231,0.04);
  border: 1px solid rgba(244,239,231,0.10);
  border-radius: 999px;
  color: rgba(244,239,231,0.6);
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: all 280ms var(--ease-out);
  text-decoration: none;
}
.footer__by:hover {
  background: rgba(244,239,231,0.08);
  border-color: rgba(244,239,231,0.20);
  color: var(--bg);
  transform: translateY(-1px);
}
.footer__by .websy-logo {
  height: 22px;
  width: auto;
  flex-shrink: 0;
  opacity: 0.95;
  transition: opacity 240ms var(--ease-out);
}
.footer__by:hover .websy-logo { opacity: 1; }
.footer__by .arrow {
  font-size: 12px;
  color: rgba(244,239,231,0.45);
  transition: transform 360ms var(--ease-spring), color 240ms var(--ease-out);
}
.footer__by:hover .arrow { color: var(--bg); transform: translate(2px, -2px); }

/* Wordmark — subtle */
.footer__wordmark {
  position: absolute;
  bottom: 24px; left: 50%;
  transform: translateX(-50%);
  font-family: var(--f-italic);
  font-style: italic;
  font-size: clamp(5rem, 18vw, 18rem);
  font-weight: 400;
  color: transparent;
  -webkit-text-stroke: 1px rgba(244,239,231,0.06);
  pointer-events: none;
  line-height: 1; white-space: nowrap;
  letter-spacing: -0.04em;
  z-index: 1;
}

/* ============== REVEAL — JS-driven with CSS failsafe ============== */
@keyframes revealFallback {
  to { opacity: 1; transform: none; filter: blur(0); }
}
.reveal {
  opacity: 0;
  transform: translateY(28px);
  filter: blur(4px);
  transition: opacity 900ms var(--ease-out-q), transform 900ms var(--ease-out-q), filter 700ms var(--ease-out-q);
  will-change: transform, opacity;
  /* Failsafe: JS error or IO not firing → still show content after 1.4s */
  animation: revealFallback 800ms var(--ease-out-q) 1.4s forwards;
}
.reveal.in {
  opacity: 1; transform: none; filter: blur(0);
  animation: none;   /* JS triggered, skip CSS fallback */
}
.reveal[data-d="1"] { transition-delay: 80ms; }
.reveal[data-d="2"] { transition-delay: 180ms; }
.reveal[data-d="3"] { transition-delay: 280ms; }
.reveal[data-d="4"] { transition-delay: 380ms; }

/* No-JS state — show everything */
.no-js .reveal { opacity: 1; transform: none; filter: blur(0); animation: none; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
  .reveal { opacity: 1; transform: none; filter: none; }
  .hero__brand-line, .hero__eyebrow, .hero h1 .line, .hero__lead, .hero__cta, .hero__trust, .hero__visual, .hero__scroll { animation: none; opacity: 1; transform: none; }
}

::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--line-strong); border-radius: 999px; border: 2px solid var(--bg); }

/* ============== MOBILE OPTIMIZATIONS ============== */
@media (max-width: 768px) {
  /* Performans: ağır filtreleri kaldır */
  .reveal { filter: none; transform: translateY(16px); transition-duration: 600ms; }
  body::before { opacity: 0.012; }

  /* Topbar mobile compact */
  .topbar { height: 68px; padding: 0; }
  .topbar.is-scrolled { height: 60px; }
  .topbar__inner { gap: 12px; padding-inline: 16px; }
  .topbar__brand { gap: 12px; flex: 1; min-width: 0; }
  .topbar__brand img { height: 40px; }
  .topbar.is-scrolled .topbar__brand img { height: 32px; }

  /* Entity rows mobile — readable, no narrow-column word breaks */
  .entity {
    grid-template-columns: 36px 1fr !important;
    gap: 10px 14px !important;
    padding: 22px 18px !important;
  }
  .entity__flag { width: 32px; height: 22px; }
  .entity__logo { grid-column: 1 / -1; margin-top: 4px; }
  .entity__logo img { height: 28px; max-width: 160px; }
  .entity > div:nth-child(3) {
    /* Name + forme group */
    min-width: 0;
  }
  .entity__name { font-size: 1.05rem; font-weight: 500; line-height: 1.15; word-break: keep-all; }
  .entity__forme {
    font-size: 10.5px;
    letter-spacing: 0.02em;
    line-height: 1.5;
    word-spacing: -0.05em;
    white-space: normal;
    margin-top: 4px;
  }
  .entity__legal {
    grid-column: 1 / -1;
    font-size: 10.5px;
    letter-spacing: 0.02em;
    line-height: 1.7;
    word-break: break-word;
  }
  .entity__stats {
    grid-column: 1 / -1;
    gap: 24px;
    padding-top: 12px;
    border-top: 1px solid var(--line);
    margin-top: 4px;
  }
  .entity__stats strong { font-size: 1.2rem; }
  .entity.is-current::before { width: 2px; }

  /* Site cards mobile — logo overflow fix */
  .site-card { min-height: 160px; padding: 16px 14px 12px; overflow: hidden; }
  .site-card__logo {
    height: 52px;
    padding: 4px 6px;
    overflow: hidden;
  }
  .site-card__logo img {
    max-width: 100%; max-height: 100%;
    width: 100%; height: 100%;
    object-fit: contain;
    object-position: center;
  }
  .site-card__bottom { gap: 6px; padding-top: 10px; flex-wrap: wrap; }
  .site-card__host {
    flex: 1 1 100%;
    font-size: 11px;
    order: 2;
  }
  .site-card__flag { width: 18px; height: 13px; order: 1; }
  .site-card__badge { order: 3; font-size: 8.5px; padding: 1px 6px; }

  /* Inputs: 16px font (iOS zoom prevention) */
  .field input, .field select, .field textarea { font-size: 16px; }

  /* Touch targets ≥44px */
  .btn { min-height: 48px; padding: 14px 8px 14px 22px; }
  .topbar__cta { min-height: 44px; }
  .profile-selector__tab { padding: 10px 14px; min-height: 40px; }
  .coverage__chip { padding: 8px 12px; min-height: 32px; }

  /* Tipografi mobilde okunaklı */
  body { font-size: 16px; }
  .container { padding-inline: 20px; }
  .section { padding-block: clamp(72px, 12vw, 110px); }

  /* Inputs: 16px font (iOS zoom prevention) */
  .field input, .field select, .field textarea { font-size: 16px; }

  /* Touch targets ≥44px */
  .btn { min-height: 48px; padding: 14px 8px 14px 22px; }
  .topbar__cta { min-height: 44px; }
  .profile-selector__tab { padding: 10px 14px; min-height: 40px; }
  .coverage__chip { padding: 8px 12px; min-height: 32px; }

  /* Tipografi mobilde okunaklı */
  body { font-size: 16px; }
  .container { padding-inline: 20px; }
  .section { padding-block: clamp(72px, 12vw, 110px); }

  /* Hero compact */
  .hero { padding-top: 100px; min-height: auto; padding-bottom: 56px; }
  .hero h1 { font-size: clamp(2.6rem, 9vw, 4.4rem); }
  .hero__lead { margin-top: 20px; margin-bottom: 24px; font-size: 1rem; }
  .hero__cta { margin-top: 24px; }
  .hero__trust { margin-top: 24px; font-size: 10px; }
  .hero__visual { display: none; }   /* mobile: visual'ı gizle, hero compact olsun */
  .hero__scroll { display: none; }

  /* Counter strip — 2 satır */
  .counter { padding: 32px 20px; }
  .counter .num { font-size: clamp(2rem, 8vw, 3rem); }

  /* Globe mobilde daha küçük */
  .globe-wrap { height: clamp(440px, 60vh, 600px); }
  .globe-controls { right: 16px; }
  .globe-controls button { width: 38px; height: 38px; }
  .globe-ui { top: 16px; left: 18px; }
  .globe-legend { bottom: 16px; right: 16px; left: auto; font-size: 9px; gap: 10px; }
  .globe-legend span { display: block; }
  .globe-hint { display: none; }
  .globe-label, .globe-label-soon { font-size: 8px; }

  /* Map section padding küçült */
  .map-section { padding-block: clamp(72px, 10vw, 110px) clamp(48px, 6vw, 72px); }

  /* Coverage tek kolon */
  .coverage { padding: 24px; gap: 28px; }

  /* Product visual aspect adjust */
  .product-visual { aspect-ratio: 1/1; }

  /* Profile selector */
  .profile-selector { aspect-ratio: 1/1.05; }
  .profile-selector__tabs { padding: 12px 12px 0; }

  /* Sites grid 2 col tight */
  .sites-grid { gap: 8px; }
  .site-card { min-height: 170px; padding: 18px 16px 14px; }
  .site-card__logo { height: 48px; }

  /* Entity rows: stacked + readable */
  .entity { padding: 24px 20px; gap: 12px; }
  .entity__name { font-size: 1.05rem; }
  .entity__legal { font-size: 10.5px; }

  /* Contact form */
  .contact-form { padding: 24px 18px; }
  .contact-form__submit { font-size: 14px; padding: 16px 22px; }

  /* Footer */
  .footer { padding: 64px 0 24px; }
  .footer__hero { margin-bottom: 56px; padding-bottom: 36px; gap: 28px; }
  .footer__hero-text { font-size: clamp(1.6rem, 6vw, 2.4rem); }
  .footer__hero-cta { padding: 14px 8px 14px 22px; font-size: 14px; }
  .footer__grid { margin-bottom: 40px; gap: 32px; }
  .footer__wordmark { font-size: clamp(4rem, 18vw, 8rem); }

  /* Modal full-screen on mobile */
  .modal { width: 94vw; max-height: 88vh; border-radius: 12px; }
  .modal__head { padding: 18px 18px; gap: 14px; }
  .modal__flag { width: 44px; height: 32px; }
  .modal__entity-tag { display: none; }
  .modal__country-name { font-size: 1.4rem; }
  .modal__country-meta { font-size: 10px; margin-top: 4px; }
  .modal__close { top: 16px; right: 16px; width: 36px; height: 36px; }
  .modal__body { padding: 18px; }
  .modal__sites { grid-template-columns: 1fr; gap: 10px; }
  .modal__site {
    padding: 14px;
    gap: 10px;
    overflow: hidden;
    flex-direction: row;
    align-items: center;
  }
  .modal__site-logo {
    height: 52px; width: 88px;
    flex-shrink: 0;
    overflow: hidden;
    padding: 4px;
    background: var(--bg-2);
    border-radius: 6px;
  }
  .modal__site-logo img {
    width: 100%; height: 100%;
    max-width: 100%; max-height: 100%;
    object-fit: contain;
    object-position: center;
  }
  .modal__site-bottom {
    flex: 1; min-width: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }
  .modal__site-bottom > div {
    width: 100%;
    min-width: 0;
    display: flex; flex-direction: column;
    gap: 4px;
  }
  .modal__site-host {
    font-size: 12px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%;
  }
  .modal__site-badge { font-size: 8.5px; padding: 2px 7px; }
  .modal__site-arrow {
    align-self: center;
    margin-left: auto;
    flex-shrink: 0;
  }

  /* Manifesto */
  .manifesto { padding-block: 96px; }
  .manifesto__quote { font-size: clamp(1.8rem, 6vw, 2.8rem); }
  .manifesto__source { margin-top: 32px; font-size: 10px; }
}

@media (max-width: 480px) {
  /* Topbar even more compact */
  .topbar { height: 64px; }
  .topbar__brand img { height: 36px; }
  .topbar.is-scrolled { height: 56px; }
  .topbar.is-scrolled .topbar__brand img { height: 30px; }

  .hero { padding-top: 84px; }
}
