
:root {
  --black: #0a0a0c;
  --deep:  #0f0f12;
  --surface: #131318;
  --surface2: #1a1a22;
  --rim:  #1f1f2a;
  --rim2: #2a2a37;
  --rim3: #3a3a4a;
  --p300: #b5acf5;
  --p400: #9b8cf0;
  --p500: #7c6fce;
  --p600: #5a4ba0;
  --p700: #2a2350;
  --green: #3aa985;
  --amber: #c98a3d;
  --red:   #d44848;
  --t1: #f5f5f7;
  --t2: #a8a8b2;
  --t3: #5a5a65;
  --t4: #2a2a32;
  --ff:      'Geist', system-ui, sans-serif;
  --ff-mono: 'Geist Mono', ui-monospace, monospace;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

html, body {
  background: var(--black);
  color: var(--t1);
  font-family: var(--ff);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

::selection { background: var(--p600); color: var(--t1); }

a { color: inherit; text-decoration: none; }
ul { list-style: none; }

body::after {
  content: '';
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(ellipse 70% 50% at 20% 0%, rgba(124,111,206,0.10), transparent 60%),
    radial-gradient(ellipse 60% 40% at 80% 100%, rgba(91,72,160,0.08), transparent 60%);
}

body::before {
  content: '';
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.012;
  background-image:
    repeating-linear-gradient(0deg, rgba(255,255,255,0.5) 0 1px, transparent 1px 3px),
    repeating-linear-gradient(90deg, rgba(255,255,255,0.5) 0 1px, transparent 1px 3px);
}

/* ============================================================
   TOPBAR + DROPDOWN
   ============================================================ */
.topbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10,10,12,0.72);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  border-bottom: 1px solid var(--rim);
}
.topbar-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 16px 32px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--ff);
  font-weight: 600;
  font-size: 18px;
  letter-spacing: -0.02em;
  color: var(--t1);
}
.brand .mark {
  width: 26px;
  height: 26px;
  border-radius: 4px;
  background: linear-gradient(135deg, var(--p400), var(--p600));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-mono);
  font-size: 12px;
  font-weight: 700;
}

.topbar-nav {
  display: flex;
  gap: 28px;
  font-family: var(--ff-mono);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  justify-self: center;
}
.topbar-nav > a,
.topbar-nav > .nav-item {
  color: var(--t2);
  text-decoration: none;
  transition: color 0.2s ease;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 0;
}
.topbar-nav > a:hover,
.topbar-nav > .nav-item:hover > .nav-trigger {
  color: var(--t1);
}
.topbar-nav .nav-trigger {
  color: var(--t2);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: color 0.2s ease;
}
.topbar-nav .nav-trigger .caret {
  font-family: var(--ff);
  font-size: 9px;
  color: var(--t3);
  transition: transform 0.2s ease, color 0.2s ease;
}
.topbar-nav .nav-item:hover .nav-trigger .caret {
  color: var(--p400);
  transform: rotate(180deg);
}
.topbar-nav .nav-item.current > .nav-trigger {
  color: var(--p300);
}
.topbar-nav > a.current {
  color: var(--p300);
}

.nav-dropdown {
  position: absolute;
  top: calc(100% + 16px);
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  min-width: 320px;
  background: var(--surface);
  border: 1px solid var(--rim2);
  border-radius: 4px;
  padding: 12px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
  z-index: 200;
  box-shadow: 0 16px 48px rgba(0,0,0,0.4), 0 0 0 1px rgba(124,111,206,0.08);
}
.nav-dropdown::before {
  content: '';
  position: absolute;
  top: -16px; left: 0; right: 0;
  height: 16px;
}
.nav-dropdown::after {
  content: '';
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--p400), transparent);
}
.nav-item:hover .nav-dropdown,
.nav-item.open .nav-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.dropdown-item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 12px 14px;
  border-radius: 3px;
  text-decoration: none;
  transition: background 0.18s ease;
  color: var(--t1);
}
.dropdown-item:hover { background: var(--surface2); }
.dropdown-item.active { background: rgba(124,111,206,0.06); }
.dropdown-item .num {
  font-family: var(--ff-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--p300);
  background: rgba(124,111,206,0.06);
  border: 1px solid var(--p600);
  border-radius: 2px;
  padding: 3px 7px;
  min-width: 36px;
  text-align: center;
}
.dropdown-item .info { display: flex; flex-direction: column; gap: 2px; }
.dropdown-item .name {
  font-family: var(--ff);
  font-weight: 500;
  font-size: 13.5px;
  letter-spacing: -0.005em;
  color: var(--t1);
  text-transform: none;
}
.dropdown-item .desc {
  font-family: var(--ff);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  color: var(--t3);
  line-height: 1.3;
}
.dropdown-item .arrow {
  font-family: var(--ff);
  font-size: 14px;
  color: var(--t3);
  opacity: 0;
  transform: translateX(-4px);
  transition: opacity 0.2s ease, transform 0.2s ease, color 0.2s ease;
}
.dropdown-item:hover .arrow {
  opacity: 1;
  transform: translateX(0);
  color: var(--p300);
}
.dropdown-divider { height: 1px; background: var(--rim); margin: 6px 0; }
.dropdown-overview { margin-bottom: 2px; }
.dropdown-overview .num {
  background: rgba(124,111,206,0.12);
  border-color: var(--p400);
}

.topbar-cta {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: var(--p600);
  border: 1px solid var(--p500);
  border-radius: 3px;
  font-family: var(--ff-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--t1);
  text-decoration: none;
  transition: all 0.2s ease;
}
.topbar-cta:hover {
  background: var(--p500);
  border-color: var(--p400);
  transform: translateY(-1px);
}
.topbar-cta .arrow { font-family: var(--ff); font-size: 13px; transition: transform 0.2s ease; }
.topbar-cta:hover .arrow { transform: translateX(2px); }

/* ============================================================
   BREADCRUMB · sayfa altı
   ============================================================ */
.crumb {
  max-width: 1280px;
  margin: 0 auto;
  padding: 18px 32px 0;
  position: relative;
  z-index: 2;
  font-family: var(--ff-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--t3);
  display: flex;
  align-items: center;
  gap: 10px;
}
.crumb a {
  color: var(--t3);
  transition: color 0.2s ease;
}
.crumb a:hover { color: var(--t1); }
.crumb .sep { color: var(--rim3); }
.crumb .current { color: var(--p300); }

/* ============================================================
   ORTAK SAYFA WRAPPER
   ============================================================ */
.page-wrap {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ============================================================
   FOOTER · 4 kolon
   ============================================================ */


/* ============================================================
   MEGA FOOTER · 5 KOLON
   ============================================================ */
.footer {
  background: linear-gradient(180deg, var(--deep) 0%, var(--black) 100%);
  border-top: 1px solid var(--rim);
  padding: 56px 48px 24px;
  position: relative;
  z-index: 2;
  margin-top: 40px;
}
.footer::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  width: 30%;
  max-width: 400px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--p400), transparent);
}
.footer-inner { max-width: 1440px; margin: 0 auto; }

.footer-newsletter {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 32px;
  padding: 28px 32px;
  background: var(--surface);
  border: 1px solid var(--rim2);
  border-radius: 4px;
  margin-bottom: 48px;
  position: relative;
  overflow: hidden;
}
.footer-newsletter::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--p400), transparent);
}
.fn-left h3 {
  font-family: var(--ff);
  font-weight: 600;
  font-size: 20px;
  letter-spacing: -0.02em;
  color: var(--t1);
  margin-bottom: 8px;
  line-height: 1.2;
}
.fn-left h3 .accent { color: var(--p300); }
.fn-left p {
  font-family: var(--ff);
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--t2);
  margin: 0;
  max-width: 480px;
}
.fn-left p strong { color: var(--t1); font-weight: 500; }
.fn-left .badge-row { display: flex; gap: 12px; margin-top: 12px; flex-wrap: wrap; }
.fn-left .badge-row .pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  background: var(--deep);
  border: 1px solid var(--rim2);
  border-radius: 2px;
  font-family: var(--ff-mono);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--t3);
}
.fn-left .badge-row .pill .dot { width: 5px; height: 5px; border-radius: 50%; background: var(--green); }
.fn-form { display: flex; flex-direction: column; gap: 8px; justify-content: center; }
.fn-form .field { display: flex; gap: 6px; }
.fn-form input {
  flex: 1;
  padding: 12px 14px;
  background: var(--deep);
  border: 1px solid var(--rim2);
  border-radius: 3px;
  font-family: var(--ff);
  font-size: 13.5px;
  color: var(--t1);
  outline: none;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.fn-form input::placeholder { color: var(--t3); }
.fn-form input:focus {
  border-color: var(--p500);
  background: var(--surface2);
  box-shadow: 0 0 0 3px rgba(124,111,206,0.08);
}
.fn-form button {
  padding: 12px 18px;
  background: linear-gradient(135deg, var(--p500), var(--p600));
  border: 1px solid var(--p400);
  border-radius: 3px;
  font-family: var(--ff);
  font-weight: 600;
  font-size: 12.5px;
  color: var(--t1);
  cursor: pointer;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.fn-form button:hover {
  background: linear-gradient(135deg, var(--p400), var(--p500));
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(124,111,206,0.25);
}
.fn-form button .arrow { font-size: 14px; transition: transform 0.2s ease; }
.fn-form button:hover .arrow { transform: translateX(2px); }
.fn-form .note {
  font-family: var(--ff-mono);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--t3);
}
.fn-form .note .hi { color: var(--p300); }

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand { display: flex; flex-direction: column; gap: 18px; }
.footer-logo {
  font-family: var(--ff);
  font-weight: 600;
  font-size: 22px;
  letter-spacing: -0.02em;
  color: var(--t1);
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-logo .mark {
  width: 28px;
  height: 28px;
  border-radius: 4px;
  background: linear-gradient(135deg, var(--p400), var(--p600));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-mono);
  font-size: 13px;
  font-weight: 700;
  color: var(--t1);
}
.footer-tag {
  font-family: var(--ff);
  font-size: 13px;
  line-height: 1.55;
  color: var(--t2);
}
.footer-tag strong { color: var(--t1); font-weight: 500; }
.footer-address {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding-top: 14px;
  border-top: 1px dashed var(--rim2);
}
.footer-info-block {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.footer-info-block .label {
  font-family: var(--ff-mono);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--p300);
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-info-block .label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--rim);
  max-width: 24px;
}
.footer-info-block .line {
  font-family: var(--ff);
  font-size: 12.5px;
  font-weight: 400;
  letter-spacing: -0.005em;
  color: var(--t2);
  line-height: 1.5;
}
.footer-info-block .line strong {
  color: var(--t1);
  font-weight: 500;
}
.footer-info-block .line a {
  color: var(--t1);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}
.footer-info-block .line a:hover {
  color: var(--p300);
}
.footer-info-block .line.mono {
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--t2);
}
.wa-line {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  margin-top: 4px;
  background: rgba(37, 211, 102, 0.08);
  border: 1px solid rgba(37, 211, 102, 0.35);
  border-radius: 3px;
  text-decoration: none;
  font-family: var(--ff);
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: -0.005em;
  color: var(--t1);
  transition: all 0.2s ease;
  width: fit-content;
}
.wa-line:hover {
  background: rgba(37, 211, 102, 0.14);
  border-color: rgba(37, 211, 102, 0.55);
  transform: translateY(-1px);
}
.wa-line .wa-icon {
  width: 16px;
  height: 16px;
  color: #25D366;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.wa-line .wa-icon svg { width: 16px; height: 16px; }
.wa-line .wa-arrow {
  font-family: var(--ff);
  font-size: 12px;
  color: var(--t3);
  margin-left: 2px;
  transition: transform 0.2s ease, color 0.2s ease;
}
.wa-line:hover .wa-arrow {
  color: #25D366;
  transform: translate(2px, -2px);
}

.footer-social-strip { display: flex; gap: 8px; margin-top: 6px; }
.footer-social-strip a {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--rim2);
  border-radius: 3px;
  color: var(--t2);
  text-decoration: none;
  transition: all 0.2s ease;
  background: var(--surface);
}
.footer-social-strip a:hover {
  border-color: var(--p400);
  color: var(--p300);
  background: rgba(124,111,206,0.08);
  transform: translateY(-1px);
}
.footer-social-strip a svg { width: 16px; height: 16px; }

.footer-col h4 {
  font-family: var(--ff-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--p300);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-col h4::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--rim);
  max-width: 28px;
}
.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0;
  padding: 0;
}
.footer-col li { list-style: none; }
.footer-col a {
  font-family: var(--ff);
  font-size: 13px;
  font-weight: 400;
  color: var(--t2);
  text-decoration: none;
  letter-spacing: -0.005em;
  transition: color 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.footer-col a::before {
  content: '';
  width: 0;
  height: 1px;
  background: var(--p400);
  transition: width 0.2s ease;
}
.footer-col a:hover { color: var(--t1); }
.footer-col a:hover::before { width: 12px; }

.footer-contact ul { gap: 14px; }
.footer-contact li { display: flex; flex-direction: column; gap: 2px; }
.footer-contact .role {
  font-family: var(--ff-mono);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--t3);
}
.footer-contact a {
  font-family: var(--ff);
  font-size: 13px;
  font-weight: 500;
  color: var(--t1);
}
.footer-contact a::before { display: none; }
.footer-contact a:hover { color: var(--p300); }

/* Uyum · rozet listesi (tıklanabilir kartlar) */
.footer-compliance ul { gap: 10px; }
.footer-compliance li {
  list-style: none;
  padding: 0;
  background: transparent;
  border: none;
  border-radius: 0;
}
.footer-compliance li a {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 12px 12px 10px;
  background: var(--surface);
  border: 1px solid var(--rim);
  border-radius: 3px;
  text-decoration: none;
  color: inherit;
  height: 100%;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}
.footer-compliance li a::before { display: none; }
.footer-compliance li a:hover {
  border-color: var(--p500);
  background: var(--surface2);
  transform: translateY(-2px);
}
.footer-compliance .badge {
  font-family: var(--ff-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--p300);
  transition: color 0.2s ease;
}
.footer-compliance li a:hover .badge { color: var(--p200); }
.footer-compliance .note {
  font-family: var(--ff-mono);
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.06em;
  line-height: 1.4;
  color: var(--t3);
}
.footer-compliance .ext {
  font-family: var(--ff-mono);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--t2);
  margin-top: 4px;
  padding-top: 6px;
  border-top: 1px dashed var(--rim2);
  transition: color 0.2s ease;
}
.footer-compliance li a:hover .ext { color: var(--p300); }

.footer-base {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid var(--rim);
  font-family: var(--ff-mono);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--t3);
}
.footer-base .copy {
  text-align: left;
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.footer-base .copy .domain { color: var(--t2); }
.footer-base .copy .sep { color: var(--rim3); }
.footer-base .edition {
  text-align: center;
  padding: 6px 14px;
  border: 1px solid var(--p600);
  border-radius: 2px;
  background: rgba(124,111,206,0.06);
  color: var(--p300);
  letter-spacing: 0.16em;
  justify-self: center;
}
.footer-base .legal {
  text-align: right;
  display: flex;
  gap: 18px;
  justify-content: flex-end;
  flex-wrap: wrap;
}
.footer-base .legal a {
  color: var(--t3);
  text-decoration: none;
  transition: color 0.2s ease;
}
.footer-base .legal a:hover { color: var(--t1); }

@media (max-width: 1200px) {
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; }
  .footer-col.footer-compliance { grid-column: 2 / -1; }
}
@media (max-width: 1100px) {
  .footer-newsletter { grid-template-columns: 1fr; gap: 20px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-col.footer-compliance { grid-column: 1 / -1; }
}
@media (max-width: 768px) {
  .footer { padding: 48px 24px 24px; }
  .footer-newsletter { padding: 22px 20px; }
  .fn-form .field { flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-base { grid-template-columns: 1fr; text-align: center; gap: 14px; }
  .footer-base .copy,
  .footer-base .legal { text-align: center; justify-content: center; }
}



/* ============================================================
   AŞAMA SAYFA CSS
   ============================================================ */

/* HERO */
.stage-hero {
  padding: 40px 0 24px;
}
.stage-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--ff-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--p300);
  padding: 6px 12px;
  border: 1px solid var(--p600);
  border-radius: 2px;
  background: rgba(124,111,206,0.06);
  margin-bottom: 24px;
}
.stage-kicker.stage-amber { color: var(--amber); border-color: rgba(201,138,61,0.5); background: rgba(201,138,61,0.06); }
.stage-kicker.stage-green { color: var(--green); border-color: rgba(58,169,133,0.5); background: rgba(58,169,133,0.06); }

.stage-kicker .badge {
  font-weight: 700;
  letter-spacing: 0.04em;
}
.stage-hero h1 {
  font-family: var(--ff);
  font-weight: 600;
  font-size: clamp(40px, 6vw, 64px);
  line-height: 1.02;
  letter-spacing: -0.04em;
  color: var(--t1);
  margin-bottom: 24px;
  max-width: 920px;
}
.stage-hero h1 .accent { color: var(--p300); }
.stage-hero h1 .accent-amber { color: var(--amber); }
.stage-hero h1 .accent-green { color: var(--green); }
.stage-hero p.lead {
  font-family: var(--ff);
  font-size: clamp(15px, 1.6vw, 17px);
  line-height: 1.6;
  color: var(--t2);
  max-width: 800px;
}
.stage-hero p.lead strong { color: var(--t1); font-weight: 500; }
.stage-hero p.lead .anchor {
  font-family: var(--ff-mono);
  font-size: 0.86em;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--p300);
  padding: 2px 8px;
  border: 1px solid var(--p600);
  border-radius: 2px;
  background: rgba(124,111,206,0.06);
  display: inline-block;
  vertical-align: middle;
}

/* ANATOMİ ŞERİDİ · 6 sütun */
.stage-anatomy {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1px;
  background: var(--rim);
  border: 1px solid var(--rim);
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 56px;
}
.stage-anatomy .cell {
  padding: 16px 18px;
  background: var(--deep);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.stage-anatomy .lbl {
  font-family: var(--ff-mono);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--t3);
}
.stage-anatomy .val {
  font-family: var(--ff);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: -0.01em;
  color: var(--t1);
}
.stage-anatomy .val .hi { color: var(--p300); }
.stage-anatomy .sub {
  font-family: var(--ff-mono);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: var(--t3);
}

/* BÖLÜM BAŞLIĞI · ortak */
.section-block {
  margin-bottom: 40px;
}
.section-block-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 1px dashed var(--rim2);
  flex-wrap: wrap;
}
.section-block-head .num {
  font-family: var(--ff-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--t3);
}
.section-block-head h2 {
  font-family: var(--ff);
  font-weight: 600;
  font-size: clamp(22px, 2.8vw, 28px);
  letter-spacing: -0.025em;
  color: var(--t1);
  flex: 1;
}
.section-block-head h2 .accent { color: var(--p300); }
.section-block-head .meta {
  font-family: var(--ff-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--p300);
}

/* SÜREÇ ADIMLARı · vertical timeline */
.process-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}
.process-list::before {
  content: '';
  position: absolute;
  top: 24px; bottom: 24px;
  left: 18px;
  width: 1px;
  background: linear-gradient(180deg, var(--rim2) 0%, var(--p500) 50%, var(--rim2) 100%);
}
.process-row {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 20px;
  padding: 14px 0;
  align-items: flex-start;
}
.process-row .step-id {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--surface);
  border: 1.5px solid var(--p500);
  color: var(--p300);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-mono);
  font-size: 11px;
  font-weight: 700;
  position: relative;
  z-index: 1;
}
.process-row .step-info { padding-top: 4px; display: flex; flex-direction: column; gap: 6px; }
.process-row .step-name {
  font-family: var(--ff);
  font-weight: 500;
  font-size: 15px;
  color: var(--t1);
  letter-spacing: -0.005em;
}
.process-row .step-desc {
  font-family: var(--ff);
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--t2);
}
.process-row .step-desc strong { color: var(--t1); font-weight: 500; }

/* ÇIKTILAR · 3-sütun grid */
.deliverables-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.deliverable-card {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 12px;
  align-items: flex-start;
  padding: 18px 20px;
  background: var(--surface);
  border: 1px solid var(--rim);
  border-radius: 4px;
}
.deliverable-card .icon {
  width: 24px;
  height: 24px;
  border-radius: 3px;
  background: rgba(58,169,133,0.08);
  border: 1px solid var(--green);
  color: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-mono);
  font-size: 13px;
  font-weight: 600;
}
.deliverable-card .body { display: flex; flex-direction: column; gap: 4px; }
.deliverable-card .label {
  font-family: var(--ff);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: -0.005em;
  color: var(--t1);
}
.deliverable-card .note {
  font-family: var(--ff);
  font-size: 12.5px;
  line-height: 1.5;
  color: var(--t2);
}
.deliverable-card .note strong { color: var(--t1); font-weight: 500; }

/* KİMLER İÇİN · 3-sütun */
.who-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.who-card {
  padding: 22px 22px;
  background: var(--surface);
  border: 1px solid var(--rim);
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
}
.who-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 40px;
  height: 1px;
  background: var(--p400);
}
.who-card .role {
  font-family: var(--ff);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -0.01em;
  color: var(--t1);
}
.who-card .desc {
  font-family: var(--ff);
  font-size: 13px;
  line-height: 1.55;
  color: var(--t2);
}
.who-card .desc strong { color: var(--t1); font-weight: 500; }

/* CTA BLOK */
.stage-cta {
  margin-top: 40px;
  padding: 32px 32px;
  background: linear-gradient(135deg, var(--surface) 0%, rgba(42,35,77,0.45) 100%);
  border: 1px solid var(--p500);
  border-radius: 4px;
  display: grid;
  grid-template-columns: 1.5fr auto;
  gap: 32px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.stage-cta::before {
  content: '';
  position: absolute;
  top: -1px; left: -1px; right: -1px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--p300), transparent);
}
.stage-cta-left h3 {
  font-family: var(--ff);
  font-weight: 600;
  font-size: clamp(22px, 2.4vw, 28px);
  letter-spacing: -0.025em;
  color: var(--t1);
  margin-bottom: 10px;
  line-height: 1.2;
}
.stage-cta-left h3 .accent { color: var(--p300); }
.stage-cta-left p {
  font-family: var(--ff);
  font-size: 14px;
  line-height: 1.55;
  color: var(--t2);
  max-width: 540px;
}
.stage-cta-left p strong { color: var(--t1); font-weight: 500; }
.stage-cta-right {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-end;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  background: linear-gradient(135deg, var(--p500), var(--p600));
  border: 1px solid var(--p400);
  border-radius: 3px;
  font-family: var(--ff);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: -0.005em;
  color: var(--t1);
  text-decoration: none;
  transition: all 0.2s ease;
}
.btn-primary:hover {
  background: linear-gradient(135deg, var(--p400), var(--p500));
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(124,111,206,0.25);
}
.btn-primary .arrow { font-size: 16px; transition: transform 0.2s ease; }
.btn-primary:hover .arrow { transform: translateX(3px); }
.stage-cta-note {
  font-family: var(--ff-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--t3);
}
.stage-cta-note .hi { color: var(--p300); }

/* === KAPANIŞ MANİFESTO BÖLÜMÜ === */
.stage-closing {
  margin-top: 40px;
  padding: 56px 36px;
  position: relative;
  text-align: center;
}
.stage-closing::before {
  content: '';
  display: block;
  width: 1px;
  height: 36px;
  margin: 0 auto 24px;
  background: linear-gradient(180deg, transparent, var(--p400), transparent);
}
.stage-closing .label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--ff-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--p300);
  margin-bottom: 24px;
}
.stage-closing .label::before,
.stage-closing .label::after {
  content: '';
  width: 20px;
  height: 1px;
  background: var(--p500);
}
.stage-closing h3 {
  font-family: var(--ff);
  font-weight: 600;
  font-size: clamp(28px, 4.5vw, 44px);
  line-height: 1.08;
  letter-spacing: -0.035em;
  color: var(--t1);
  margin-bottom: 16px;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}
.stage-closing h3 .accent { color: var(--p300); }
.stage-closing .note {
  font-family: var(--ff);
  font-size: 14.5px;
  font-weight: 400;
  line-height: 1.55;
  color: var(--t2);
  max-width: 600px;
  margin: 0 auto 4px;
}
.stage-closing .note strong { color: var(--t1); font-weight: 500; }

/* ALT NAV · önceki / sonraki */
.stage-nav {
  margin-top: 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  padding-top: 24px;
  border-top: 1px solid var(--rim);
}
.stage-nav-link {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 20px 22px;
  background: var(--surface);
  border: 1px solid var(--rim);
  border-radius: 4px;
  text-decoration: none;
  color: inherit;
  transition: all 0.25s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.stage-nav-link:hover {
  background: var(--surface2);
  border-color: var(--rim2);
  transform: translateY(-2px);
}
.stage-nav-link.prev { text-align: left; }
.stage-nav-link.next { text-align: right; grid-column: 2; }
.stage-nav-link .dir {
  font-family: var(--ff-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--p400);
  display: flex;
  align-items: center;
  gap: 6px;
}
.stage-nav-link.next .dir { justify-content: flex-end; }
.stage-nav-link .name {
  font-family: var(--ff);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: -0.01em;
  color: var(--t1);
}

@media (max-width: 1100px) {
  .stage-anatomy { grid-template-columns: repeat(3, 1fr); }
  .deliverables-grid { grid-template-columns: repeat(2, 1fr); }
  .who-grid { grid-template-columns: 1fr; }
  .stage-cta { grid-template-columns: 1fr; }
  .stage-cta-right { align-items: flex-start; }
}
@media (max-width: 768px) {
  .stage-anatomy { grid-template-columns: 1fr 1fr; }
  .deliverables-grid { grid-template-columns: 1fr; }
  .stage-nav { grid-template-columns: 1fr; }
  .stage-nav-link.next { grid-column: 1; text-align: left; }
  .stage-nav-link.next .dir { justify-content: flex-start; }
}

