/* ============================================
   CRAVIO — Design System
   ============================================ */

:root {
  /* Brand palette */
  --mist: #F5F5F3;
  --blush: #FAECE7;
  --stone: #B4B2A9;
  --stone-soft: #D8D7D0;
  --ink: #3D3D3A;
  --ink-soft: #5C5C58;
  --onyx: #111111;
  --signal: #D85A30;
  --signal-dim: #C04E27;

  /* Avatar palette */
  --rose: #C4436C;
  --harbor: #2D6AA0;
  --amethyst: #7C5EA8;
  --amber: #C8963D;
  --teal: #1F6F70;

  /* Semantic — light mode default */
  --bg: var(--mist);
  --bg-elev: #FFFFFF;
  --bg-panel: #EDEDEA;
  --text: var(--ink);
  --text-soft: var(--ink-soft);
  --text-mute: #8B8A82;
  --border: #E2E1DB;
  --border-strong: var(--stone);
  --accent: var(--signal);
  --accent-soft: var(--blush);

  /* Type */
  --font-display: 'Space Grotesk', 'Helvetica Neue', Arial, sans-serif;
  --font-body: 'Inter', 'Helvetica Neue', Arial, sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, monospace;

  /* Scale — editorial default */
  --fs-hero: clamp(56px, 9vw, 140px);
  --fs-h1: clamp(40px, 5vw, 72px);
  --fs-h2: clamp(28px, 3.2vw, 44px);
  --fs-h3: 22px;
  --fs-body: 16px;
  --fs-small: 13px;
  --fs-mono: 12px;

  /* Grid */
  --side-nav-w: 240px;
  --edge: clamp(20px, 4vw, 56px);
  --stack-lg: 160px;
  --stack-md: 96px;
  --stack-sm: 48px;

  /* Radius — minimal */
  --r-sm: 4px;
  --r-md: 8px;
  --r-lg: 14px;
}

[data-theme="dark"] {
  --bg: var(--onyx);
  --bg-elev: #1A1A19;
  --bg-panel: #232321;
  --text: var(--mist);
  --text-soft: #C8C7C0;
  --text-mute: #8B8A82;
  --border: #2C2C2A;
  --border-strong: #3D3D3A;
  --accent-soft: #2A1E1A;
}

[data-signal="bold"] {
  --accent: var(--signal);
}
[data-signal="minimal"] {
  --accent: var(--ink);
}

[data-scale="compact"] {
  --fs-hero: clamp(44px, 6vw, 88px);
  --fs-h1: clamp(32px, 3.8vw, 52px);
  --fs-h2: clamp(24px, 2.6vw, 34px);
  --fs-h3: 18px;
  --fs-body: 15px;
}

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

html, body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transition: background-color 0.25s ease, color 0.25s ease;
  /* iOS Safari'de horizontal scroll'u önlemek için overflow-x kısıtlaması.
     'clip' değeri (modern CSS) 'hidden' gibi çalışır AMA scroll containing block oluşturmaz →
     position:sticky çocuklar (sidebar) bozulmaz. 'hidden' fallback olarak altta kalır. */
  overflow-x: hidden;
  overflow-x: clip;
  max-width: 100vw;
}

body {
  min-height: 100vh;
  overflow-x: hidden;
  overflow-x: clip;
  position: relative;
}

/* Global overflow güvenlik ağı — hiçbir medya parent'ı aşmasın */
img, svg, video, iframe { max-width: 100%; height: auto; }
/* Avatar'ların sabit boyutu olduğu için bu istisnayı ekle */
.avatar img, .avatar svg, .avatar-image { max-width: none; height: 100%; }

::selection { background: var(--accent); color: var(--mist); }

/* ============================================
   TYPOGRAPHY
   ============================================ */

.display {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: -0.03em;
  text-wrap: balance;
}

.h1 { font-family: var(--font-display); font-weight: 600; font-size: var(--fs-h1); line-height: 1.05; letter-spacing: -0.025em; }
.h2 { font-family: var(--font-display); font-weight: 600; font-size: var(--fs-h2); line-height: 1.1; letter-spacing: -0.02em; }
.h3 { font-family: var(--font-display); font-weight: 600; font-size: var(--fs-h3); line-height: 1.25; letter-spacing: -0.01em; }

.body { font-size: var(--fs-body); line-height: 1.55; }
.body-lg { font-size: 18px; line-height: 1.55; }
.small { font-size: var(--fs-small); line-height: 1.5; color: var(--text-soft); }
.mono { font-family: var(--font-mono); font-size: var(--fs-mono); letter-spacing: 0.02em; text-transform: uppercase; color: var(--text-mute); }
.mono-lc { text-transform: none; letter-spacing: 0; }

.accent { color: var(--accent); }

a { color: inherit; text-decoration: none; }
a.link-underline {
  background-image: linear-gradient(currentColor, currentColor);
  background-size: 100% 1px;
  background-repeat: no-repeat;
  background-position: 0 100%;
  padding-bottom: 1px;
  transition: color 0.2s;
}
a.link-underline:hover { color: var(--accent); }

/* H1/hero içi isim linkleri — default text gibi durur, hover'da accent + alt çizgi */
a.h1-name-link {
  color: inherit;
  text-decoration: none;
  background-image: linear-gradient(var(--accent), var(--accent));
  background-size: 0% 2px;
  background-repeat: no-repeat;
  background-position: 0 calc(100% - 2px);
  transition: background-size 260ms cubic-bezier(0.4, 0, 0.2, 1), color 200ms ease;
}
a.h1-name-link:hover { color: var(--accent); background-size: 100% 2px; }

/* ============================================
   LAYOUT SHELL
   ============================================ */

.shell {
  display: grid;
  grid-template-columns: var(--side-nav-w) 1fr;
  min-height: 100vh;
}

.side {
  position: sticky;
  top: 0;
  height: 100vh;
  border-right: 1px solid var(--border);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  background: var(--bg);
  z-index: 40;
}

.side-logo {
  display: block;
  color: var(--text);
}
.side-logo svg { width: 100%; height: auto; max-height: 28px; display: block; }

.side-nav {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.side-nav a {
  padding: 8px 10px;
  border-radius: var(--r-sm);
  font-size: 14px;
  color: var(--text-soft);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background-color 0.15s, color 0.15s;
}
.side-nav a:hover { background: var(--bg-panel); color: var(--text); }
.side-nav a.active { color: var(--text); font-weight: 500; }
.side-nav a.active::before {
  content: "";
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent);
  margin-right: 8px;
  display: inline-block;
}
.side-nav a .idx {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--text-mute);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}


.side-status {
  margin-top: auto;
  border-top: 1px solid var(--border);
  padding-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.side-status .live-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--signal);
  display: inline-block;
  margin-right: 8px;
  animation: pulse 2.2s ease-in-out infinite;
  box-shadow: 0 0 0 0 rgba(216, 90, 48, 0.45);
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(216, 90, 48, 0.45); }
  50% { box-shadow: 0 0 0 6px rgba(216, 90, 48, 0); }
}

.main {
  min-width: 0;
  padding-right: 0;
}

.topbar {
  position: sticky;
  top: 0;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--edge);
  border-bottom: 1px solid var(--border);
  background: color-mix(in oklab, var(--bg) 85%, transparent);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 30;
}

.topbar-left { display: flex; align-items: center; font-family: var(--font-mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-mute); }
.breadcrumb-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.breadcrumb-item { display: inline-flex; align-items: center; }
.breadcrumb-item a {
  color: inherit;
  text-decoration: none;
  transition: color 160ms ease;
}
.breadcrumb-item a:hover { color: var(--text); text-decoration: underline; text-underline-offset: 3px; }
.breadcrumb-item.crumb-cur > span { color: var(--text); }
.breadcrumb-sep { color: var(--text-mute); opacity: 0.45; user-select: none; }
.topbar-right { display: flex; align-items: center; gap: 16px; font-family: var(--font-mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-mute); }
.topbar-right .clock { color: var(--text-soft); }

/* ============================================
   BUTTONS
   ============================================ */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  border-radius: var(--r-sm);
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.18s ease;
  white-space: nowrap;
  line-height: 1;
}
.btn-primary {
  background: var(--accent);
  color: var(--mist);
  border-color: var(--accent);
}
.btn-primary:hover { background: var(--signal-dim); border-color: var(--signal-dim); transform: translateY(-1px); }
[data-signal="minimal"] .btn-primary { background: var(--text); color: var(--bg); border-color: var(--text); }
[data-signal="minimal"] .btn-primary:hover { background: var(--signal); border-color: var(--signal); }

.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--border-strong);
}
.btn-ghost:hover { border-color: var(--text); }

.btn-sm {
  padding: 8px 14px;
  font-size: 13px;
}

.btn .arrow {
  display: inline-block;
  transition: transform 0.2s;
}
.btn:hover .arrow { transform: translateX(3px); }

/* ============================================
   SECTIONS
   ============================================ */

section {
  padding: var(--stack-md) var(--edge);
  border-bottom: 1px solid var(--border);
  position: relative;
}

.section-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.section-header .label-num {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-mute);
}

.section-label {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--text-mute);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
}
.section-label::before {
  content: "";
  width: 24px; height: 1px;
  background: var(--text-mute);
  display: inline-block;
}

/* ============================================
   HERO
   ============================================ */

.hero {
  padding-top: 64px;
  padding-bottom: var(--stack-md);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.hero-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-mute);
  margin-bottom: 40px;
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: var(--fs-hero);
  line-height: 0.95;
  letter-spacing: -0.035em;
  color: var(--text);
  text-wrap: balance;
  max-width: 14ch;
}
.hero-title .hire {
  font-style: normal;
  font-weight: 400;
  color: var(--accent);
}

.hero-sub {
  font-size: 19px;
  line-height: 1.5;
  color: var(--text-soft);
  max-width: 52ch;
  margin-top: 32px;
}

.hero-cta-row {
  display: flex;
  gap: 12px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.hero-bottom {
  margin-top: 72px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 0;
  border-top: 1px solid var(--border);
  padding-top: 32px;
}
.hero-stat {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-right: 24px;
}
.hero-stat + .hero-stat { border-left: 1px solid var(--border); padding-left: 24px; }
.hero-stat .num {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--text);
}
.hero-stat .num .unit { color: var(--accent); }
.hero-stat .lbl {
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-mute);
}

/* ============================================
   DASHBOARD PANEL (live log)
   ============================================ */

.dashboard {
  background: var(--bg-panel);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  overflow: hidden;
  font-family: var(--font-mono);
  font-size: 12px;
}
.dashboard-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
  background: var(--bg-elev);
}
.dashboard-head .title {
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 10px;
  color: var(--text-mute);
}
.dashboard-head .live {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--signal);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.dashboard-head .live::before {
  content: "";
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--signal);
  animation: pulse 2s infinite;
}

.log-rows { display: flex; flex-direction: column; }
.log-row {
  display: grid;
  grid-template-columns: 80px 90px 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 10px 16px;
  border-bottom: 1px solid var(--border);
  animation: rowIn 0.5s ease;
  font-size: 11.5px;
}
.log-row:last-child { border-bottom: none; }
.log-row .t { color: var(--text-mute); }
.log-row .who { color: var(--text); font-weight: 500; display: flex; align-items: center; gap: 6px; }
.log-row .who .swatch { width: 8px; height: 8px; border-radius: 50%; }
.log-row .msg { color: var(--text-soft); text-transform: none; letter-spacing: 0; font-family: var(--font-body); font-size: 13px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.log-row .dur { color: var(--text-mute); }
@keyframes rowIn {
  from { opacity: 0; transform: translateY(-6px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ============================================
   COMPARE TABLE
   ============================================ */

.compare {
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--bg-elev);
}
.compare-row {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1.1fr;
  border-bottom: 1px solid var(--border);
}
.compare-row:last-child { border-bottom: none; }
.compare-cell {
  padding: 20px 24px;
  font-size: 14px;
  color: var(--text-soft);
  border-right: 1px solid var(--border);
}
.compare-cell:last-child { border-right: none; }
.compare-row.head .compare-cell {
  font-family: var(--font-mono);
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--text-mute);
  padding: 14px 24px;
  background: var(--bg-panel);
}
.compare-row.head .compare-cell.cravio {
  color: var(--accent);
  font-weight: 500;
}
.compare-cell.cravio { color: var(--text); font-weight: 500; }
.compare-cell.label { color: var(--text); font-weight: 500; }

/* ============================================
   BIZI FARKLI KILAN (Section 07 — differentiation)
   ============================================ */
.diff-list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--border);
}
.diff-row {
  padding: 32px 0;
  border-bottom: 1px solid var(--border);
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 540ms cubic-bezier(0.4, 0, 0.2, 1),
    transform 640ms cubic-bezier(0.34, 1.2, 0.64, 1);
}
.diff-row.row-seen { opacity: 1; transform: translateY(0); }
.diff-content { display: flex; flex-direction: column; gap: 12px; max-width: 60ch; }
.diff-biz {
  display: flex;
  align-items: baseline;
  gap: 16px;
  flex-wrap: wrap;
}
/* Numaralı rozet — turuncu daire, beyaz rakam */
.diff-biz-label {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--mist);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  letter-spacing: 0;
}
.diff-biz-text {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(22px, 2.4vw, 30px);
  letter-spacing: -0.015em;
  line-height: 1.25;
  color: var(--text);
}
.diff-degil {
  font-size: 16px;
  color: var(--text-mute);
  line-height: 1.5;
  padding-left: 0;
  position: relative;
}
.diff-degil::before {
  content: "— ";
  color: var(--text-mute);
  opacity: 0.5;
}

@media (max-width: 640px) {
  .diff-row { padding: 24px 0; }
  .diff-biz-text { font-size: 20px; }
  .diff-degil { font-size: 14px; }
  .diff-biz-label { width: 28px; height: 28px; font-size: 14px; }
}

/* ============================================
   BÖLÜM 8 VAKALAR — mobile responsive
   ============================================ */
@media (max-width: 640px) {
  /* Logo şeridi: yatay scroll + kompakt */
  .logos-strip {
    gap: 28px;
    padding: 16px 0;
  }
  .logos-strip .mono { flex-basis: 100%; font-size: 10px; }
  .logos-strip .ph { font-size: 15px; }

  /* Case card — padding, quote ve meta tight */
  .case-grid { gap: 14px; }
  .case-card { padding: 22px 20px; gap: 16px; }
  .case-card .case-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  .case-card .case-logo { font-size: 14px; }
  .case-card .case-logo .mark { width: 22px; height: 22px; font-size: 11px; }
  .case-card .case-quote {
    font-size: 17px;
    line-height: 1.35;
  }
  /* Meta stats 3-kolon grid'i mobile'da tek kolon altına stacklemek yerine, 3 kolonda kalıp font küçülür (okunur ama kompakt) */
  .case-card .case-meta {
    gap: 10px;
    padding-top: 14px;
  }
  .case-card .case-meta .cell .num { font-size: 17px; }
  .case-card .case-meta .cell .lbl { font-size: 9px; letter-spacing: 0.06em; }
}

/* Çok dar phone (380px): stats'i 1 kolona indir */
@media (max-width: 380px) {
  .case-card .case-meta { grid-template-columns: 1fr; }
}

/* Bölüm 9 Pricing — insan sütunu yarı-transparan (Cravio öne çıksın) */
.pricing-head-human,
.pricing-cell-human { opacity: 0.5; transition: opacity 220ms ease; }
/* Hover'da hafifçe görünürlük artar — etkileşim olduğunda okunabilir */
.pricing-row:hover .pricing-cell-human { opacity: 0.75; }

/* ============================================
   AVATAR
   ============================================ */

.avatar {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--mist);
  letter-spacing: 0.02em;
  flex-shrink: 0;
}
.avatar.sz-64 { width: 64px; height: 64px; font-size: 22px; }
.avatar.sz-96 { width: 96px; height: 96px; font-size: 32px; }
.avatar.sz-128 { width: 128px; height: 128px; font-size: 42px; }
.avatar.sz-40 { width: 40px; height: 40px; font-size: 14px; }

.avatar.signal { background: var(--signal); }
.avatar.rose { background: var(--rose); }
.avatar.harbor { background: var(--harbor); }
.avatar.amethyst { background: var(--amethyst); }
.avatar.amber { background: var(--amber); }
.avatar.teal { background: var(--teal); }
.avatar.stone { background: var(--stone); }

.avatar .badge {
  position: absolute;
  bottom: 0;
  right: 0;
  background: var(--ink);
  color: var(--mist);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  border: 2px solid var(--bg);
}
.avatar.sz-40 .badge { width: 16px; height: 16px; font-size: 9px; border-width: 1.5px; }
.avatar.sz-64 .badge { width: 22px; height: 22px; font-size: 11px; }
.avatar.sz-96 .badge { width: 30px; height: 30px; font-size: 14px; }
.avatar.sz-128 .badge { width: 38px; height: 38px; font-size: 17px; }

/* ============================================
   ERA SHIFT (yeşil tik → Cravio rozeti)
   ============================================ */

.era-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: center;
}
.era-copy h2 { text-wrap: balance; }
.era-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 56px;
}
.era-side {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  will-change: opacity, filter, transform;
}

/* INITIAL — "Dün" tam renginde görünüyor; status badge React state ile (available → busy → presenting → away) döner, away'de kalır */
/* Badge cycle ~1260ms'de tamamlanır (available + 3 transition × 420ms), sonra phase 2: dim + arrow + "Bugün" slide */
.era-before {
  opacity: 1;
  filter: none;
  transition:
    opacity 700ms cubic-bezier(0.4, 0, 0.2, 1) 1800ms,
    filter 700ms cubic-bezier(0.4, 0, 0.2, 1) 1800ms;
}
.era-arrow {
  font-family: var(--font-mono);
  font-size: 36px;
  color: var(--text-mute);
  line-height: 1;
  letter-spacing: 0.02em;
  padding: 0 4px;
  opacity: 0;
  transform: translateX(-8px);
  transition:
    opacity 500ms ease 2500ms,
    transform 500ms cubic-bezier(0.4, 0, 0.2, 1) 2500ms;
}
.era-after {
  opacity: 0;
  transform: translateX(40px) scale(0.88);
  transition:
    opacity 650ms cubic-bezier(0.4, 0, 0.2, 1) 2700ms,
    transform 750ms cubic-bezier(0.4, 0, 0.2, 1) 2700ms;
}
/* Status badge (Dün tarafındaki Avatar içindeki badge) yumuşak geçiş */
.era-before .badge-img {
  transition: opacity 200ms ease;
}
/* Dijital çalışan tarafında C rozeti avatardan sonra pop-in yapar */
/* era-after slide 2700ms'de başlar + 650ms opacity sürer → ~3350ms'de avatar tam görünür */
/* Badge 3500ms'de spring-back ease ile scale(0.4) → scale(1) pops in */
.era-after .badge {
  opacity: 0;
  transform: scale(0.4);
  transition:
    opacity 400ms ease 3500ms,
    transform 520ms cubic-bezier(0.34, 1.56, 0.64, 1) 3500ms;
}

/* ACTIVE (section viewport'a girince) — Dün dimlenir, arrow + Bugün belirir */
.era-shift.is-active .era-before {
  opacity: 0.5;
  filter: grayscale(0.4) saturate(0.7);
}
.era-shift.is-active .era-arrow {
  opacity: 1;
  transform: translateX(0);
}
.era-shift.is-active .era-after {
  opacity: 1;
  transform: translateX(0) scale(1.05);
}
.era-shift.is-active .era-after .badge {
  opacity: 1;
  transform: scale(1);
}

.era-before:hover { opacity: 0.75; filter: grayscale(0.15) saturate(0.9); }

@media (prefers-reduced-motion: reduce) {
  .era-before, .era-arrow, .era-after, .era-after .badge { transition: none; }
  .era-after .badge { opacity: 1; transform: none; }
}
.era-cap {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.era-cap-label {
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-mute);
}
.era-cap-sub {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-soft);
}

/* ============================================
   WORKFORCE (team cards)
   ============================================ */

.workforce-grid {
  display: flex;
  overflow-x: auto;
  overflow-y: hidden;
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  background: var(--bg-elev);
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: var(--border-strong) transparent;
  -webkit-overflow-scrolling: touch;
}
.workforce-grid::-webkit-scrollbar { height: 6px; }
.workforce-grid::-webkit-scrollbar-track { background: transparent; }
.workforce-grid::-webkit-scrollbar-thumb { background: var(--border-strong); border-radius: 6px; }
.wf-card {
  flex: 0 0 25%;
  min-width: 0;
  padding: 32px 28px 28px;
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  transition: background-color 0.2s;
  color: inherit;
  text-decoration: none;
  cursor: pointer;
  scroll-snap-align: start;
}
.wf-card:last-child { border-right: none; }
.wf-card:hover { background: var(--bg-panel); }
.wf-card::after {
  content: '→';
  position: absolute;
  right: 24px;
  bottom: 24px;
  font-family: var(--font-mono);
  font-size: 16px;
  color: var(--text-mute);
  opacity: 0;
  transform: translateX(-4px);
  transition: opacity 180ms ease, transform 180ms ease, color 180ms ease;
}
.wf-card:hover::after { opacity: 1; transform: translateX(0); color: var(--text); }
.wf-card:focus-visible { outline: 2px solid var(--accent); outline-offset: -2px; }

/* Kart trait listesi + fade-in animasyon */
.wf-card .wf-traits {
  list-style: none;
  padding: 18px 0 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-top: 1px solid var(--border);
}
.wf-card .wf-traits li {
  display: flex;
  align-items: baseline;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.4;
  color: var(--text);
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 520ms ease, transform 520ms cubic-bezier(0.4, 0, 0.2, 1);
}
.wf-card .wf-traits li:nth-child(1) { transition-delay: 80ms; }
.wf-card .wf-traits li:nth-child(2) { transition-delay: 220ms; }
.wf-card .wf-traits li:nth-child(3) { transition-delay: 360ms; }
.wf-card .wf-traits li:nth-child(4) { transition-delay: 500ms; }
.wf-card.is-visible .wf-traits li {
  opacity: 1;
  transform: translateY(0);
}
.wf-card .wf-trait-dash {
  flex: 0 0 14px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.05em;
}
@media (prefers-reduced-motion: reduce) {
  .wf-card .wf-traits li { transition: none; opacity: 1; transform: none; }
}

/* Dark-section modifier — Ink zeminli bölümler için (Vakalar vb.) */
.section-dark {
  background: var(--ink);
  color: var(--mist);
}
.section-dark .section-label { color: var(--stone); }
.section-dark .logos-strip .ph { color: var(--stone); }
.section-dark .logos-strip .mono { color: var(--stone); }
.section-dark .case-card {
  background: var(--mist);
  color: var(--ink);
  border-color: transparent;
}
.section-dark .case-card:hover { border-color: var(--accent); }

/* Signal-section modifier — tam turuncu zemin (kapanış CTA vb.) */
.section-signal {
  background: var(--accent);
  color: var(--mist);
}
.section-signal .section-label { color: var(--mist); opacity: 0.85; }
.section-signal .h2,
.section-signal .display { color: var(--mist); }
.section-signal p { color: var(--mist); opacity: 0.9; }
.section-signal .btn-primary {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--mist);
}
.section-signal .btn-primary:hover {
  background: var(--onyx);
  border-color: var(--onyx);
  transform: translateY(-1px);
}
.wf-card .wf-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.wf-card .wf-id {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--text-mute);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.wf-card .wf-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 22px;
  letter-spacing: -0.01em;
  line-height: 1.1;
}
.wf-card .wf-name .crv { font-weight: 400; color: var(--text-soft); }
.wf-card .wf-role {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-mute);
}
.wf-card .wf-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
}
.wf-card .wf-status::before {
  content: "";
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent);
  animation: pulse 2s infinite;
}
.wf-card .wf-stats {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: auto;
  border-top: 1px solid var(--border);
  padding-top: 14px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-mute);
}
.wf-card .wf-stats .row { display: flex; justify-content: space-between; }
.wf-card .wf-stats .row strong { color: var(--text); font-weight: 500; }

/* ============================================
   PROCESS TIMELINE
   ============================================ */

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--border);
}
.process-grid .process-step {
  opacity: 0;
  transform: translateX(-40px);
  transition:
    opacity 620ms cubic-bezier(0.4, 0, 0.2, 1),
    transform 620ms cubic-bezier(0.4, 0, 0.2, 1);
}
.process-grid .process-step:nth-child(1) { transition-delay: 100ms; }
.process-grid .process-step:nth-child(2) { transition-delay: 280ms; }
.process-grid .process-step:nth-child(3) { transition-delay: 460ms; }
.process-grid .process-step:nth-child(4) { transition-delay: 640ms; }
.process-grid.is-visible .process-step {
  opacity: 1;
  transform: translateX(0);
}
@media (prefers-reduced-motion: reduce) {
  .process-grid .process-step { transition: none; opacity: 1; transform: none; }
}
.process-step {
  padding: 32px 24px 24px 0;
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
}
.process-step:last-child { border-right: none; }
.process-step::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  width: 32px;
  height: 2px;
  background: var(--accent);
}
.process-step:not(:first-child) { padding-left: 24px; }
.process-step .num {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-mute);
}
.process-step .title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 22px;
  letter-spacing: -0.01em;
  line-height: 1.15;
}
.process-step .dur {
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
}
.process-step .desc {
  font-size: 14px;
  line-height: 1.55;
  color: var(--text-soft);
}

/* ============================================
   CASE CARDS
   ============================================ */

.case-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.case-card {
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 28px;
  background: var(--bg-elev);
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: transform 0.2s ease, border-color 0.2s;
  cursor: pointer;
}
.case-card:hover { transform: translateY(-2px); border-color: var(--text); }
.case-card .case-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.case-card .case-logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: -0.01em;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.case-card .case-logo .mark {
  width: 24px; height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--text);
  border-radius: 4px;
  font-size: 12px;
}
.case-card .case-quote {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 22px;
  line-height: 1.25;
  letter-spacing: -0.015em;
  text-wrap: pretty;
}
.case-card .case-meta {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  border-top: 1px solid var(--border);
  padding-top: 16px;
  gap: 12px;
}
.case-card .case-meta .cell .num {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 22px;
  letter-spacing: -0.01em;
}
.case-card .case-meta .cell .num .unit { color: var(--accent); }
.case-card .case-meta .cell .lbl {
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-mute);
  margin-top: 2px;
}

/* ============================================
   LOGO STRIP
   ============================================ */

.logos-strip {
  display: flex;
  align-items: center;
  gap: 48px;
  padding: 24px 0;
  flex-wrap: wrap;
  opacity: 0.7;
}
.logos-strip .ph {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 20px;
  letter-spacing: -0.01em;
  color: var(--text-soft);
}

/* ============================================
   PRICING
   ============================================ */

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--bg-elev);
}
.price-col {
  padding: 36px 32px;
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.price-col:last-child { border-right: none; }
.price-col.highlight { background: var(--bg-panel); }
.price-col .ptype {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
}
.price-col .pamount {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 44px;
  letter-spacing: -0.02em;
  line-height: 1;
}
.price-col .pamount .cur { font-size: 22px; color: var(--text-mute); vertical-align: super; margin-right: 4px; }
.price-col .pamount .period { font-size: 16px; color: var(--text-mute); font-weight: 400; margin-left: 6px; }
.price-col .pdesc { color: var(--text-soft); font-size: 14px; }
.price-col ul { list-style: none; display: flex; flex-direction: column; gap: 8px; margin-top: 8px; }
.price-col ul li {
  font-size: 14px;
  padding-left: 20px;
  position: relative;
  color: var(--text-soft);
}
.price-col ul li::before {
  content: "";
  position: absolute;
  left: 0; top: 10px;
  width: 10px; height: 1px;
  background: var(--accent);
}

/* ============================================
   TWEAKS PANEL
   ============================================ */

.tweaks-panel {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 300px;
  background: var(--bg-elev);
  border: 1px solid var(--border-strong);
  border-radius: var(--r-md);
  box-shadow: 0 24px 48px rgba(0,0,0,0.18);
  padding: 20px;
  z-index: 100;
  font-family: var(--font-body);
  display: none;
  flex-direction: column;
  gap: 18px;
}
.tweaks-panel.open { display: flex; }
.tweaks-panel h4 {
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-mute);
  font-weight: 500;
  margin-bottom: 2px;
}
.tweaks-panel .tweak-row { display: flex; flex-direction: column; gap: 8px; }
.tweaks-panel .tweak-row > label {
  font-size: 13px;
  color: var(--text);
  font-weight: 500;
}
.tweaks-panel .seg {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 1fr;
  border: 1px solid var(--border-strong);
  border-radius: var(--r-sm);
  overflow: hidden;
}
.tweaks-panel .seg button {
  background: transparent;
  border: none;
  padding: 7px 10px;
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--text-soft);
  cursor: pointer;
  border-right: 1px solid var(--border-strong);
  transition: background-color 0.15s;
}
.tweaks-panel .seg button:last-child { border-right: none; }
.tweaks-panel .seg button.active { background: var(--text); color: var(--bg); }
.tweaks-panel .seg button:not(.active):hover { background: var(--bg-panel); }

.tweak-toggle {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: var(--text);
  color: var(--bg);
  border: none;
  border-radius: var(--r-sm);
  padding: 12px 16px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  z-index: 99;
  display: none;
  box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}
.tweak-toggle.available { display: inline-flex; }
.tweak-toggle.hidden-when-open { display: none; }

/* ============================================
   MODAL (Calendly-style)
   ============================================ */

.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(17,17,17,0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.modal-backdrop.open { display: flex; }
.modal {
  background: var(--bg);
  color: var(--text);
  border-radius: var(--r-md);
  max-width: 880px;
  width: 100%;
  max-height: 92vh;
  overflow: hidden;
  display: grid;
  grid-template-columns: 320px 1fr;
  border: 1px solid var(--border);
  animation: modalIn 0.25s ease;
}
@keyframes modalIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes reportFade {
  from { opacity: 0; transform: translateY(10px); filter: blur(4px); }
  to { opacity: 1; transform: translateY(0); filter: blur(0); }
}
.modal .modal-left {
  padding: 32px 28px;
  border-right: 1px solid var(--border);
  background: var(--bg-panel);
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.modal .modal-right {
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  overflow-y: auto;
}
.modal .mclose {
  position: absolute;
  top: 16px; right: 16px;
  background: transparent;
  border: 1px solid var(--border-strong);
  width: 32px; height: 32px;
  border-radius: 50%;
  cursor: pointer;
  color: var(--text);
  font-size: 14px;
}
.modal .mclose:hover { background: var(--bg-panel); }

.cal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-mute);
}
.cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}
.cal-grid .dow {
  text-align: center;
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--text-mute);
  text-transform: uppercase;
  padding-bottom: 8px;
}
.cal-grid .day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: var(--r-sm);
  cursor: pointer;
  font-size: 14px;
  color: var(--text);
  transition: all 0.15s;
}
.cal-grid .day.disabled { color: var(--text-mute); cursor: not-allowed; opacity: 0.5; }
.cal-grid .day.avail:hover { border-color: var(--text); }
.cal-grid .day.avail.selected { background: var(--text); color: var(--bg); }
.cal-grid .day.today::after {
  content: "";
  width: 4px; height: 4px; border-radius: 50%;
  background: var(--accent);
  position: absolute;
  margin-top: 24px;
}
.cal-grid .day { position: relative; }

.slots {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 8px;
}
.slots button {
  padding: 10px 12px;
  border: 1px solid var(--border-strong);
  background: transparent;
  color: var(--text);
  border-radius: var(--r-sm);
  font-family: var(--font-mono);
  font-size: 12px;
  cursor: pointer;
  transition: all 0.15s;
}
.slots button:hover { border-color: var(--text); }
.slots button.selected { background: var(--accent); color: var(--mist); border-color: var(--accent); }

.modal-form { display: flex; flex-direction: column; gap: 14px; }
.modal-form label { font-size: 12px; font-family: var(--font-mono); text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-mute); }
.modal-form input, .modal-form textarea {
  background: transparent;
  border: 1px solid var(--border-strong);
  border-radius: var(--r-sm);
  padding: 10px 12px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text);
  width: 100%;
}
.modal-form input:focus, .modal-form textarea:focus {
  outline: none;
  border-color: var(--text);
}
.modal-form .field { display: flex; flex-direction: column; gap: 6px; }

.confirm-state { padding: 40px 28px; text-align: center; }
.confirm-state .check {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--mist);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  font-size: 20px;
}

/* ============================================
   FOOTER
   ============================================ */

footer.footer {
  padding: 80px var(--edge) 48px;
  border-bottom: none;
  background: var(--accent);
  color: var(--mist);
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  align-items: start;
}
footer .foot-brand { display: flex; flex-direction: column; align-items: flex-start; gap: 20px; max-width: 380px; }
footer .foot-brand .logo {
  display: inline-flex;
  align-items: center;
  height: 40px;
  max-width: 180px;
  color: var(--mist);
  overflow: hidden;
}
footer .foot-brand .logo > span { display: inline-flex; align-items: center; height: 100%; }
footer .foot-brand .logo svg,
footer .foot-brand .logo img {
  height: 100%;
  max-height: 40px;
  width: auto;
  max-width: 100%;
  display: block;
}
footer .foot-brand p { font-size: 14px; line-height: 1.6; color: var(--mist); opacity: 0.9; margin: 0; }
footer .foot-brand .foot-cta {
  margin-top: 4px;
  background: var(--ink);
  border-color: var(--ink);
  color: var(--mist);
}
footer .foot-brand .foot-cta:hover { background: var(--onyx); border-color: var(--onyx); }
footer .foot-col { display: flex; flex-direction: column; }
footer h5 { font-family: var(--font-mono); font-size: 10px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--mist); opacity: 0.7; font-weight: 500; margin: 0 0 16px; }
footer ul { list-style: none; display: flex; flex-direction: column; gap: 10px; padding: 0; margin: 0; }
footer ul li { line-height: 1.4; }
footer ul li a,
footer ul li .foot-meta { font-size: 14px; color: var(--mist); opacity: 0.85; transition: opacity 180ms ease, color 180ms ease; }
footer ul li a:hover { color: var(--mist); opacity: 1; }
footer ul li .foot-meta { cursor: default; }

.foot-social { display: flex; gap: 10px; margin-top: 18px; }
.foot-social a {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  border: 1px solid rgba(245, 245, 243, 0.35);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--mist);
  opacity: 0.85;
  transition: opacity 180ms ease, border-color 180ms ease, background 180ms ease;
}
.foot-social a:hover { opacity: 1; border-color: var(--mist); background: rgba(245, 245, 243, 0.08); }

.foot-bar {
  display: flex;
  justify-content: space-between;
  padding: 20px var(--edge);
  border-top: 1px solid rgba(245, 245, 243, 0.2);
  background: var(--accent);
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--mist);
  opacity: 0.85;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ============================================
   BLOG
   ============================================ */

.blog-list { display: flex; flex-direction: column; }
.blog-item {
  display: grid;
  grid-template-columns: 140px 1fr auto;
  gap: 32px;
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
  align-items: start;
  cursor: pointer;
  transition: padding 0.2s, background-color 0.2s;
}
.blog-item:hover { padding-left: 16px; padding-right: 16px; background: var(--bg-panel); }
.blog-item .date { font-family: var(--font-mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-mute); }
.blog-item .title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 24px;
  letter-spacing: -0.015em;
  line-height: 1.2;
}
.blog-item .excerpt {
  color: var(--text-soft);
  font-size: 14px;
  margin-top: 6px;
  max-width: 60ch;
}
.blog-item .cat {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0;
  color: var(--accent);
  padding: 3px 9px;
  border: 1px solid var(--accent);
  border-radius: 100px;
  align-self: start;
  white-space: nowrap;
}

/* ============================================
   TEAM PAGE
   ============================================ */

.team-page .team-head {
  padding: 64px var(--edge) 40px;
  border-bottom: 1px solid var(--border);
}

/* Clickable 2-col cards on team index */
.team-cards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid var(--border);
}
.team-card {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 40px var(--edge);
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg);
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  position: relative;
  transition: background 200ms ease, transform 200ms ease;
  min-height: 360px;
}
.team-card:nth-child(2n) { border-right: none; }
.team-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 2px solid transparent;
  pointer-events: none;
  transition: border-color 200ms ease;
}
.team-card:hover { background: var(--bg-elev); }
.team-card:hover::after { border-color: var(--accent); }
.team-card:hover .team-card-cta { color: var(--accent); }
.team-card:hover .team-card-cta .arrow { transform: translateX(6px); }

.team-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.team-card-id {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
  font-size: 10px;
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-mute);
}
.team-card-body { flex: 1; }
.team-card-role {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 8px;
}
.team-card-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(30px, 3.2vw, 40px);
  letter-spacing: -0.02em;
  line-height: 1.05;
}
.team-card-name .crv {
  font-weight: 400;
  color: var(--text-soft);
  font-size: 0.55em;
  display: block;
  margin-top: 4px;
}
.team-card-bio {
  margin-top: 16px;
  font-size: 14.5px;
  color: var(--text-soft);
  line-height: 1.55;
  text-wrap: pretty;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.team-card-foot {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  gap: 24px;
}
.team-card-metrics {
  display: flex;
  gap: 28px;
}
.mini-metric .n {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 22px;
  letter-spacing: -0.01em;
  line-height: 1;
}
.mini-metric .l {
  margin-top: 4px;
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-mute);
}
.team-card-cta {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: color 200ms ease;
}
.team-card-cta .arrow { transition: transform 200ms ease; }

/* Employee detail */
.emp-hero-grid {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 56px;
  align-items: start;
}
.emp-hero-portrait {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.emp-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 20px;
}
.emp-list li {
  display: flex;
  align-items: baseline;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  font-size: 16px;
  color: var(--text);
  line-height: 1.5;
}

/* Performance block */
.emp-perf-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 32px;
}
.emp-perf-live {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent);
}
.emp-perf-live .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2s infinite;
}
.emp-perf-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: stretch;
}
.emp-perf-cell {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 8px 28px;
}
.emp-perf-cell:first-child { padding-left: 0; }
.emp-perf-cell:last-child { padding-right: 0; }
.emp-perf-cell + .emp-perf-cell { border-left: 1px solid var(--border); }
.emp-perf-cell .n {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(28px, 3.2vw, 40px);
  letter-spacing: -0.02em;
  line-height: 1;
  color: var(--text);
}
.emp-perf-cell .l {
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-mute);
  line-height: 1.4;
}

/* Sector opportunity grid (Helen — Erişim alanı) */
.sector-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.sector-card {
  position: relative;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px 20px 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: var(--bg);
}
.sector-dot {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 0 rgba(216, 90, 48, 0.45);
  animation: pulse 2s ease-in-out infinite;
}
/* Canlı data hissi için kartlar arası hafif stagger — senkronlu yerine dalgalı pulse */
.sector-card:nth-child(1) .sector-dot { animation-delay: 0s; }
.sector-card:nth-child(2) .sector-dot { animation-delay: 0.25s; }
.sector-card:nth-child(3) .sector-dot { animation-delay: 0.5s; }
.sector-card:nth-child(4) .sector-dot { animation-delay: 0.75s; }
.sector-card:nth-child(5) .sector-dot { animation-delay: 1s; }
.sector-card:nth-child(6) .sector-dot { animation-delay: 1.25s; }
.sector-card:nth-child(7) .sector-dot { animation-delay: 1.5s; }
.sector-card:nth-child(8) .sector-dot { animation-delay: 1.75s; }
@media (max-width: 960px) {
  .sector-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .sector-grid { grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: reduce) {
  .sector-dot { animation: none; }
}

/* Tag pill (Kanallar & Entegrasyonlar) */
.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.tag {
  font-family: var(--font-mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text);
  padding: 8px 14px;
  border: 1px solid var(--border-strong);
  border-radius: 100px;
  background: var(--bg-panel);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  line-height: 1.4;
  transition: border-color 180ms ease, background 180ms ease, color 180ms ease;
}
.tag:hover {
  border-color: var(--accent);
  background: var(--accent-soft);
  color: var(--accent);
}
.tag-with-icon { padding-left: 8px; }
.tag-icon {
  width: 18px;
  height: 18px;
  object-fit: contain;
  flex-shrink: 0;
  display: block;
}
.tag-break { flex-basis: 100%; height: 0; }

/* Case card — override / reuse with p spec */
.case-card {
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 28px;
  background: var(--bg);
  transition: border-color 200ms ease;
}
.case-card:hover { border-color: var(--text); transform: none; }
.case-card .case-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.case-card .case-icons {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.case-card .case-icon {
  width: 28px;
  height: 28px;
  object-fit: contain;
  flex-shrink: 0;
  display: block;
  opacity: 0.9;
}

/* Languages */
.lang-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 12px;
  margin-top: 8px;
}
.lang-chip {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  background: var(--bg);
  transition: border-color 200ms ease, background 200ms ease;
}
.lang-chip:hover {
  border-color: var(--accent);
  background: var(--accent-soft);
}
.lang-chip .flag {
  font-size: 28px;
  line-height: 1;
}
.lang-chip .name {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: -0.005em;
}

/* ============================================
   FAQ (Çalışan detay sayfası — Sık Sorulan Sorular)
   ============================================ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 900px;
}
.faq-item {
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--bg);
  overflow: hidden;
  transition: border-color 200ms ease, background 200ms ease;
}
.faq-item.is-open {
  border-color: var(--border-strong);
  background: var(--bg-panel);
}
.faq-question {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 24px;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 17px;
  letter-spacing: -0.01em;
  line-height: 1.35;
  color: var(--text);
  transition: color 180ms ease;
}
.faq-question:hover { color: var(--accent); }
.faq-q-text { flex: 1; }
/* + / × ikonu — CSS-only plus-to-close morph */
.faq-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.faq-icon-bar {
  position: absolute;
  background: var(--text-soft);
  border-radius: 2px;
  transition: transform 260ms cubic-bezier(0.4, 0, 0.2, 1), background 180ms ease;
}
.faq-icon-bar-h { width: 14px; height: 2px; }
.faq-icon-bar-v { width: 2px; height: 14px; }
.faq-item.is-open .faq-icon-bar { background: var(--accent); }
.faq-item.is-open .faq-icon-bar-v { transform: rotate(90deg) scaleX(0); }
/* Cevap alanı — grid-template-rows trick ile max-height hesaplamasına gerek kalmadan smooth animasyon */
.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 320ms cubic-bezier(0.4, 0, 0.2, 1);
}
.faq-item.is-open .faq-answer { grid-template-rows: 1fr; }
.faq-answer-inner {
  overflow: hidden;
  padding: 0 24px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-soft);
  transition: padding 260ms cubic-bezier(0.4, 0, 0.2, 1);
}
.faq-item.is-open .faq-answer-inner { padding: 0 24px 20px; }

/* Mobil düzen */
@media (max-width: 640px) {
  .faq-question { padding: 16px 18px; font-size: 15px; gap: 14px; }
  .faq-answer-inner { padding: 0 18px; font-size: 14px; }
  .faq-item.is-open .faq-answer-inner { padding: 0 18px 16px; }
}

.team-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
.team-cv {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 28px;
  padding: 40px var(--edge);
  border-bottom: 1px solid var(--border);
  border-right: 1px solid var(--border);
  align-items: start;
}
.team-cv:nth-child(2n) { border-right: none; }
.team-cv .cv-portrait { display: flex; flex-direction: column; align-items: flex-start; gap: 14px; }
.team-cv .cv-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 28px;
  letter-spacing: -0.015em;
  line-height: 1.05;
}
.team-cv .cv-name .crv { font-weight: 400; color: var(--text-soft); font-size: 20px; display: block; margin-top: 2px; }
.team-cv .cv-role {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-mute);
  margin-bottom: 6px;
}
.team-cv .cv-section { margin-top: 18px; }
.team-cv .cv-section h5 {
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-mute);
  font-weight: 500;
  margin-bottom: 8px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
}
.team-cv .cv-section ul { list-style: none; display: flex; flex-direction: column; gap: 4px; }
.team-cv .cv-section ul li { font-size: 13px; color: var(--text-soft); }
.team-cv .cv-section ul li::before { content: "— "; color: var(--text-mute); }
.team-cv .cv-section .tags { display: flex; flex-wrap: wrap; gap: 6px; }
.team-cv .cv-section .tag {
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-soft);
  padding: 4px 10px;
  border: 1px solid var(--border-strong);
  border-radius: 100px;
}
.team-cv .cv-section .metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.team-cv .cv-section .metrics .cell .n {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 24px;
  letter-spacing: -0.01em;
}
.team-cv .cv-section .metrics .cell .l {
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-mute);
}

/* ============================================
   ARTICLE PAGE
   ============================================ */

.article {
  max-width: 760px;
  margin: 0 auto;
  padding: 64px var(--edge) 96px;
}
.article .art-meta {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-mute);
  margin-bottom: 20px;
}
.article h1 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(36px, 4.5vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.article .art-lead {
  font-size: 20px;
  line-height: 1.5;
  color: var(--text-soft);
  margin-bottom: 48px;
}
.article h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 28px;
  letter-spacing: -0.015em;
  margin: 48px 0 16px;
}
.article p { font-size: 17px; line-height: 1.7; color: var(--text); margin-bottom: 20px; }
.article blockquote {
  border-left: 2px solid var(--accent);
  background: var(--accent-soft);
  padding: 18px 24px;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 20px;
  line-height: 1.4;
  letter-spacing: -0.01em;
  margin: 32px 0;
}
.article ul { padding-left: 20px; margin-bottom: 20px; }
.article ul li { font-size: 17px; line-height: 1.7; margin-bottom: 6px; }
.article p.art-signoff {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  font-size: 17px;
  color: var(--text-soft);
  line-height: 1.6;
}
.article p.art-signoff strong { color: var(--text); font-weight: 500; }
.article p a, .article li a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  background-image: linear-gradient(var(--accent), var(--accent));
  background-size: 100% 1px;
  background-repeat: no-repeat;
  background-position: 0 100%;
  transition: background-size 180ms ease, color 180ms ease;
}
.article p a:hover, .article li a:hover {
  background-size: 100% 2px;
  color: var(--signal-dim);
}
a.art-byline { color: inherit; text-decoration: none; transition: color 180ms ease; }
a.art-byline > div > div:first-child { transition: color 180ms ease; }
a.art-byline:hover > div > div:first-child { color: var(--accent); }

/* ============================================
   RESPONSIVE
   ============================================ */

/* ============================================
   MOBILE NAV (hamburger + drawer)
   ============================================ */
.topbar-logo {
  display: none;
  align-items: center;
  height: 28px;            /* sabit yükseklik — Logo component'ın height:100% img/svg'si bu değere oturacak */
  color: var(--text);
  text-decoration: none;
  flex-shrink: 0;
}
.topbar-logo > span { display: inline-flex; height: 100%; }
.topbar-logo img,
.topbar-logo svg { height: 100%; width: auto; display: block; }
.mobile-menu-btn {
  display: none;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 8px;
  width: 44px;
  height: 44px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
  padding: 0;
  cursor: pointer;
  transition: border-color 160ms ease;
  flex-shrink: 0;
}
.mobile-menu-btn:hover { border-color: var(--text); }
.mobile-menu-btn span {
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 180ms ease, opacity 180ms ease;
}
.mobile-drawer {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  justify-content: flex-end;
}
.mobile-drawer-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 15, 14, 0.6);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  animation: drawerFade 220ms ease;
}
.mobile-drawer-panel {
  position: relative;
  width: min(360px, 88vw);
  height: 100%;
  background: var(--bg);
  border-left: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  padding: 24px;
  animation: drawerSlide 280ms cubic-bezier(0.2, 0.8, 0.2, 1);
  overflow-y: auto;
}
@keyframes drawerFade { from { opacity: 0 } to { opacity: 1 } }
@keyframes drawerSlide { from { transform: translateX(100%) } to { transform: translateX(0) } }
.mobile-drawer-head {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-bottom: 24px;
}
.mobile-drawer-close {
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 22px;
  line-height: 1;
  color: var(--text);
  cursor: pointer;
  transition: border-color 160ms ease;
}
.mobile-drawer-close:hover { border-color: var(--text); }
.mobile-drawer-nav {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-bottom: 32px;
}
.mobile-drawer-nav a {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 4px;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  color: var(--text);
  text-decoration: none;
  border-bottom: 1px solid var(--border);
  transition: color 180ms ease, background 180ms ease;
  min-height: 56px;
}
.mobile-drawer-nav a .idx {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-mute);
  letter-spacing: 0.12em;
}
.mobile-drawer-nav a.active { color: var(--accent); }
.mobile-drawer-nav a:active { background: var(--bg-panel); }
.mobile-drawer-cta { margin-top: auto; padding-top: 24px; }
.mobile-drawer-cta .btn { width: 100%; justify-content: center; padding: 16px 20px; font-size: 15px; }
.mobile-drawer-status {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-mute);
  display: flex;
  align-items: center;
  gap: 8px;
}

/* ============================================
   RESPONSIVE — Tablet & below (960px)
   ============================================ */
@media (max-width: 960px) {
  .shell { grid-template-columns: 1fr; }
  .side { display: none; }
  .topbar { justify-content: space-between; }
  .topbar-logo { display: inline-flex; }
  .topbar-left { display: none; }
  .topbar-cta { display: none; }
  .clock { display: none; }
  .mobile-menu-btn { display: inline-flex; }
  .hero-bottom { grid-template-columns: 1fr 1fr; }
  .hero-stat + .hero-stat { border-left: none; padding-left: 0; }
  .workforce-grid { /* flex-scroll pattern persists on mobile */ }
  .wf-card { flex-basis: 50%; border-top: none; }
  .era-grid { grid-template-columns: 1fr; gap: 40px; justify-items: center; }
  /* Era visual: transform:scale yerine gerçek avatar boyutunu küçült (layout width gerçekten daralır) */
  .era-visual {
    gap: 24px;
    justify-content: center;
    transform: none;
    width: 100%;
    max-width: 100%;
    flex-wrap: nowrap;
  }
  /* Avatar inline style'ını override et — layout boyutu gerçekten değişsin */
  .era-visual .avatar {
    width: 120px !important;
    height: 120px !important;
    font-size: 32px !important;
  }
  /* Badge boyutu avatar boyutuyla orantılı kalsın */
  .era-visual .avatar .badge {
    width: 38px !important;
    height: 38px !important;
    font-size: 18px !important;
  }
  .era-visual .avatar .badge-img {
    width: 38px !important;
    height: 38px !important;
  }
  .era-arrow { font-size: 28px !important; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .compare-row { grid-template-columns: 1fr 1fr; }
  .compare-cell:nth-child(n+3) { border-top: 1px solid var(--border); }
  .case-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .team-cv { grid-template-columns: 1fr; }
  .team-cards-grid { grid-template-columns: 1fr; }
  .team-card { border-right: none; }
  .emp-hero-grid { grid-template-columns: 1fr; gap: 24px; }
  /* Performans block — 2x2 grid + satır arası yatay ayraç, padding temizliği */
  .emp-perf { padding: 40px var(--edge) !important; }
  .emp-perf-head { margin-bottom: 24px; }
  .emp-perf-grid {
    grid-template-columns: 1fr 1fr;
    row-gap: 0;
    column-gap: 0;
  }
  .emp-perf-cell {
    padding: 18px 14px;
    border-left: none !important;
  }
  /* Kolon içi dikey ayraçlar: tek (sol kolon) → sağ border, çift (sağ kolon) → border yok */
  .emp-perf-cell:nth-child(odd) {
    padding-left: 0;
    border-right: 1px solid var(--border);
  }
  .emp-perf-cell:nth-child(even) { padding-right: 0; }
  /* Satır arası yatay ayraç: 3. ve 4. hücreye border-top */
  .emp-perf-cell:nth-child(n+3) { border-top: 1px solid var(--border); }
  .emp-perf-cell .n { font-size: 28px; }
  .emp-perf-cell .l { font-size: 9px; }
  footer.footer { grid-template-columns: 1fr 1fr; gap: 40px 32px; padding-top: 64px; }
  footer .foot-brand { grid-column: 1 / -1; max-width: 480px; }
  .foot-bar { flex-direction: column; gap: 6px; align-items: flex-start; }
  .modal { grid-template-columns: 1fr; }
  .blog-item { grid-template-columns: 1fr; gap: 6px; }
}

/* ============================================
   RESPONSIVE — Phone (640px)
   ============================================ */
@media (max-width: 640px) {
  /* Canlı aktivite log-row: zaman ve süre kolonları mobil'de gizlenir (dar ekranda alan kazanır) */
  .log-row { grid-template-columns: 90px 1fr; }
  .log-row .t,
  .log-row .dur { display: none; }

  /* Bölüm 7 Konumlandırma — tablo yerine her özellik bir kart olur
     Header satırı gizlenir; rakip adları her cell'in önüne ::before ile eklenir */
  .compare { background: transparent; border: none; border-radius: 0; overflow: visible; }
  .compare-row.head { display: none; }
  .compare-row {
    display: block !important;
    border: 1px solid var(--border);
    border-radius: 14px;
    margin-bottom: 14px;
    padding: 18px 18px 8px;
    background: var(--bg-panel);
  }
  .compare-row:last-child { margin-bottom: 0; }
  .compare-cell {
    padding: 10px 0 !important;
    border-right: none !important;
    border-top: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    gap: 14px;
    font-size: 14px;
  }
  .compare-cell.label {
    border-top: none;
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent) !important;
    padding-bottom: 12px !important;
    padding-top: 0 !important;
    display: block;
  }
  /* Her rakip hücresinin önüne rakip adını etiket olarak ekle */
  .compare-row .compare-cell:nth-child(2)::before { content: "Ajans"; color: var(--text-mute); font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; flex-shrink: 0; }
  .compare-row .compare-cell:nth-child(3)::before { content: "SaaS"; color: var(--text-mute); font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; flex-shrink: 0; }
  .compare-row .compare-cell.cravio::before { content: "Cravio"; color: var(--accent); font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; font-weight: 500; flex-shrink: 0; }
  .compare-cell.cravio { background: rgba(216, 90, 48, 0.06); margin: 0 -18px; padding-left: 18px !important; padding-right: 18px !important; border-radius: 0 0 13px 13px; font-weight: 500; }

  /* Bölüm 9 Karşılaştırma (Pricing) — mobile kart layout'u */
  .pricing-table { border: none !important; border-radius: 0 !important; background: transparent !important; overflow: visible !important; }
  .pricing-head { display: none !important; }
  /* Mobile'da da insan cell opaklığı korunur */
  .pricing-cell-human { opacity: 0.55; }
  .pricing-row {
    display: block !important;
    grid-template-columns: none !important;
    border: 1px solid var(--border) !important;
    border-radius: 14px !important;
    margin-bottom: 14px;
    padding: 18px 18px 4px !important;
    background: var(--bg-panel) !important;
  }
  .pricing-row:last-child { margin-bottom: 0; }
  /* Kriter hücresi → kart başlığı */
  .pricing-cell-label {
    padding: 0 0 14px 0 !important;
    border-bottom: 1px solid var(--border);
    margin-bottom: 14px;
    font-family: var(--font-mono) !important;
    font-size: 11px !important;
    letter-spacing: 0.12em !important;
    text-transform: uppercase !important;
    color: var(--accent) !important;
    font-weight: 500 !important;
  }
  /* İnsan ve Cravio hücreleri — label + değer + note */
  .pricing-cell-human, .pricing-cell-crv {
    padding: 10px 0 !important;
    border-left: none !important;
  }
  .pricing-cell-human { border-bottom: 1px solid var(--border); }
  /* Her değer hücresinin üstüne rakip etiketi ::before ile eklenir */
  .pricing-cell-human::before,
  .pricing-cell-crv::before {
    display: block;
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-mute);
    margin-bottom: 4px;
  }
  .pricing-cell-human::before { content: "İnsan çalışan"; }
  .pricing-cell-crv::before { content: "Cravio dijital çalışan"; color: var(--accent); }
  /* Değer font-size'ını mobilde biraz küçült */
  .pricing-cell-human > div:first-child,
  .pricing-cell-crv > div:first-child {
    font-size: 18px !important;
  }
  /* Cravio hücresi kart altında soft accent arka plan */
  .pricing-cell-crv {
    background: rgba(216, 90, 48, 0.06) !important;
    margin: 0 -18px -4px -18px;
    padding: 14px 18px !important;
    border-radius: 0 0 13px 13px;
  }

  /* Çalışan detay sayfası — Sonraki adım section stack, button full-width */
  .emp-nextstep { grid-template-columns: 1fr !important; gap: 28px !important; align-items: stretch !important; }
  .emp-nextstep-cta { width: 100%; justify-content: center; padding: 16px 24px !important; font-size: 15px; }

  /* Dijital ekip sayfası — "Yeni rol" alt section mobile stack */
  .newrole-grid { grid-template-columns: 1fr !important; gap: 36px !important; }
  .newrole-cta { width: 100%; justify-content: center; }
  .newrole-cards { grid-template-columns: 1fr 1fr !important; gap: 12px !important; }
  .newrole-card { padding: 14px !important; gap: 12px !important; }
  .newrole-avatar { width: 42px !important; height: 42px !important; font-size: 14px !important; }

  /* Çalışan detay sayfası — Özellikleri / Raporlama / Entegrasyonlar bloğu stack */
  .emp-skills-grid { grid-template-columns: 1fr !important; gap: 36px !important; }
  .emp-list li { gap: 10px; font-size: 15px; }

  /* Çalışan detay sayfası — Vakalar bölümü: 2 col → 1 col, kart padding azaltıldı */
  .emp-cases-grid { grid-template-columns: 1fr !important; gap: 14px !important; }
  .emp-cases-grid .case-card { padding: 22px 20px; gap: 14px; }
  .emp-cases-grid .case-card > div[style*="font-size: 22px"] { font-size: 19px !important; }

  /* Çalışan detay sayfası — Diller 2x3 grid (2 kolon, 3 satır), sabit 2li ilerler */
  .lang-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .lang-chip { padding: 14px 14px; gap: 10px; }
  .lang-chip .flag { font-size: 22px; }
  .lang-chip .name { font-size: 14px; }

  /* Blog sayfası — Bülten section tamamen vertikal stack, her şey full-width */
  .blog-newsletter {
    grid-template-columns: 1fr !important;
    gap: 28px !important;
    align-items: stretch !important;
  }
  .blog-newsletter-side {
    align-items: stretch !important;
    width: 100%;
    gap: 20px !important;
  }
  /* Email + kaydol butonu alt alta, full-width */
  .blog-newsletter-form {
    flex-direction: column !important;
    gap: 10px !important;
    width: 100%;
    align-items: stretch !important;
  }
  .blog-newsletter-form input {
    min-width: 0 !important;
    width: 100% !important;
    box-sizing: border-box;
    padding: 14px 16px !important;
    font-size: 16px !important; /* iOS auto-zoom engelleme */
  }
  .blog-newsletter-form .btn {
    width: 100%;
    justify-content: center;
    padding: 14px 20px !important;
  }
  /* Eco avatar butonun sol tarafında — yan yana kalır, buton text wrap eder */
  .blog-newsletter-eco {
    flex-direction: row !important;
    align-items: center !important;
    align-self: stretch !important;
    gap: 12px !important;
    padding-top: 12px;
    border-top: 1px solid var(--border);
    width: 100%;
  }
  .blog-newsletter-eco .avatar { flex-shrink: 0; }
  .blog-newsletter-eco .btn {
    flex: 1 1 auto;
    min-width: 0;
    justify-content: flex-start;
    text-align: left;
    font-size: 13px;
    line-height: 1.35;
    padding: 12px 16px !important;
    white-space: normal !important;
    height: auto !important;
    min-height: 48px;
  }

  /* Blog item üst meta (Yazılar label + sayı) mobilde 2 satıra sarkabilsin */
  .blog-list { margin-top: 8px; }
  .blog-item { padding: 22px 0 !important; gap: 10px !important; }
  .blog-item:hover { padding-left: 0 !important; padding-right: 0 !important; }
  .blog-item .title { font-size: 20px !important; }
  .blog-item .cat { align-self: flex-start; }

  /* Manifest 3. bölüm: dış grid tek kolona düşer (önce başlık+metin, sonra 01/02/03 features) */
  .manifest-grid { grid-template-columns: 1fr !important; gap: 48px !important; }
  /* Her feature: kart şeklinde, scroll ile açılan reveal animasyonu (process-step ile aynı pattern) */
  .manifest-row {
    grid-template-columns: 1fr !important;
    gap: 8px !important;
    padding: 20px 18px !important;
    margin-bottom: 14px;
    background: var(--bg-panel);
    border: 1px solid var(--border) !important;
    border-bottom: 1px solid var(--border) !important;
    border-radius: 14px;
    /* İlk durum: aşağıda, hafif küçük, görünmez */
    opacity: 0;
    transform: translateY(26px) scale(0.96);
    transition:
      opacity 520ms cubic-bezier(0.4, 0, 0.2, 1),
      transform 620ms cubic-bezier(0.34, 1.2, 0.64, 1);
  }
  .manifest-row:last-child { margin-bottom: 0; }
  .manifest-row.row-seen { opacity: 1; transform: translateY(0) scale(1); }

  /* Bölüm 6 Metodoloji: her aşama mobile'da kart şeklinde — scroll ile sırayla açılır */
  /* Kart stili — desktop'taki `.process-grid .process-step` selector'ını override edecek specificity */
  .process-grid .process-step {
    border-right: none;
    border-bottom: none;
    padding: 20px 18px;
    margin-bottom: 14px;
    background: var(--bg-panel);
    border: 1px solid var(--border);
    border-radius: 14px;
    transition:
      opacity 520ms cubic-bezier(0.4, 0, 0.2, 1),
      transform 620ms cubic-bezier(0.34, 1.2, 0.64, 1);
    transition-delay: 0s !important;
  }
  .process-grid .process-step:not(:first-child) { padding-left: 18px; }
  .process-grid .process-step:last-child { margin-bottom: 0; }
  /* Gizli/görünür state — `.process-grid.is-visible .process-step` (desktop fallback) kuralını ezmek için aynı specificity + daha sonra geldiği için bu kazanır */
  .process-grid.is-visible .process-step { opacity: 0; transform: translateY(26px) scale(0.96); }
  .process-grid .process-step.step-seen,
  .process-grid.is-visible .process-step.step-seen { opacity: 1; transform: translateY(0) scale(1); }
  /* Observer hiç çalışmasa bile (parent not-is-visible), ilk durum yine gizli olsun */
  .process-grid:not(.is-visible) .process-step:not(.step-seen) { opacity: 0; transform: translateY(26px) scale(0.96); }
  /* Turuncu aksan bar kart modunda sol üstte iç accent olarak konumlansın */
  .process-step::before { width: 32px; top: 0; left: 18px; height: 3px; border-radius: 0 0 3px 3px; }
  .process-step .title { font-size: 20px; }

  /* Bölüm 5 Raporlar: 3 telefon yan yana sığmıyor → sadece aktif olan gösterilir, diğerleri gizli */
  .reports-stage { padding: 48px 16px 40px !important; }
  .phone-grid { grid-template-columns: 1fr !important; max-width: 280px !important; gap: 0 !important; }
  .phone-item[data-active="false"] { display: none !important; }
  .phone-item[data-active="true"] {
    transform: none !important;
    opacity: 1 !important;
    filter: none !important;
  }
  /* Üst köşedeki "HAFTALIK ÖZET · CRV-01/03" yazısı mobilde taşıyor, küçült */
  .reports-stage > div[style*="position: absolute"] {
    font-size: 9px !important;
    top: 12px !important;
    right: 12px !important;
    letter-spacing: 0.08em !important;
  }

  /* Modal: iOS-safe full-screen sheet with scroll */
  .modal-backdrop { padding: 0; }
  .modal {
    max-width: 100%;
    max-height: 100vh;
    max-height: 100dvh;
    height: 100vh;
    height: 100dvh;
    border-radius: 0;
    border: none;
    overflow-y: auto;
  }
  /* iOS: font-size<16 tapped input → auto-zoom. Prevent it. */
  .modal-form input, .modal-form textarea, .modal-form select { font-size: 16px; }
  input, textarea, select { font-size: 16px; }
  :root { --edge: 20px; }
  .topbar { padding: 14px var(--edge); }
  .hero { padding: 60px var(--edge) 40px; }
  /* Hero stats mobilde 2x2 grid, ortalı */
  .hero-bottom {
    grid-template-columns: 1fr 1fr;
    gap: 24px 16px;
    justify-items: center;
    text-align: center;
  }
  .hero-stat { padding: 0; align-items: center; }
  .hero-stat + .hero-stat { border-left: none; padding-left: 0; }
  /* 3. stat'a üst border (satır ayracı görsel ritim) */
  .hero-stat:nth-child(3), .hero-stat:nth-child(4) {
    padding-top: 20px;
    border-top: 1px solid var(--border);
    width: 100%;
  }
  .hero-sub { font-size: 16px; }
  .hero-cta-row { flex-direction: column; align-items: stretch; }
  .hero-cta-row .btn { width: 100%; justify-content: center; }
  section { padding-left: var(--edge); padding-right: var(--edge); }
  h1.display, .display { font-size: clamp(32px, 9vw, 48px) !important; }
  .h1 { font-size: clamp(28px, 8vw, 40px); }
  .h2 { font-size: clamp(24px, 7vw, 34px); }
  .h3 { font-size: clamp(20px, 5.5vw, 26px); }
  .section-header { flex-direction: column; align-items: flex-start; gap: 12px; }
  .process-grid { grid-template-columns: 1fr; }
  /* .compare-row ve .emp-perf mobile stillerini yukarıdaki kart restrukture bloğu yönetir */
  .wf-card { flex-basis: 85%; scroll-snap-align: start; }
  footer.footer { grid-template-columns: 1fr; gap: 32px; padding-top: 48px; padding-bottom: 48px; }
  footer .foot-brand { grid-column: 1; }
  /* Era avatar'ı 640px'te biraz daha küçült (gerçek boyut, layout daralır) */
  .era-visual { gap: 16px; }
  .era-visual .avatar { width: 100px !important; height: 100px !important; font-size: 28px !important; }
  .era-visual .avatar .badge { width: 32px !important; height: 32px !important; font-size: 15px !important; }
  .era-visual .avatar .badge-img { width: 32px !important; height: 32px !important; }
  .btn { min-height: 44px; }
  a, button { min-height: auto; } /* reset above */
  .btn.btn-sm { min-height: 40px; }
  .faq-trigger { padding: 18px 18px !important; gap: 12px !important; }
  .faq-trigger > span:nth-child(2) { font-size: 16px !important; }
  .faq-item .faq-trigger + div[role="region"] { padding-left: 18px !important; padding-right: 18px !important; }
}

/* ============================================
   Kilitli kartlar — detay sayfası henüz hazır değil
   ============================================ */
.wf-card.is-locked,
.team-card.is-locked {
  cursor: default;
  pointer-events: none;
  opacity: 0.62;
}
.wf-card.is-locked .wf-status,
.team-card.is-locked .team-card-cta {
  color: var(--text-mute);
}

/* ============================================
   FAQ — hover state
   ============================================ */
.faq-item { transition: background 200ms, border-color 200ms, transform 200ms; }
.faq-item:not(.is-open):hover { border-color: var(--border-strong); }
.faq-item:not(.is-open):hover .faq-trigger { background: var(--bg-panel); }
.faq-trigger:focus-visible { outline: 2px solid var(--accent); outline-offset: -2px; border-radius: var(--r-md); }

/* ============================================
   RESPONSIVE — Very small phone (380px)
   ============================================ */
@media (max-width: 380px) {
  :root { --edge: 16px; }
  .hero { padding-top: 48px; }
  h1.display, .display { font-size: 32px !important; }
  .era-visual { gap: 12px; }
  .era-visual .avatar { width: 84px !important; height: 84px !important; font-size: 24px !important; }
  .era-visual .avatar .badge { width: 28px !important; height: 28px !important; font-size: 13px !important; }
  .era-visual .avatar .badge-img { width: 28px !important; height: 28px !important; }
  .era-arrow { font-size: 22px !important; }
}
