/* ============================================================
   DESIGN TOKENS · ANASAYFA İLE BİREBİR
   ============================================================ */
:root {
  /* renk · zemin */
  --black: #0a0a0c;
  --deep:  #0f0f12;
  --surface: #131318;
  --surface2: #1a1a22;

  /* renk · kenar/rim */
  --rim:  #1f1f2a;
  --rim2: #2a2a37;
  --rim3: #3a3a4a;

  /* renk · mor (marka) */
  --p300: #b5acf5;
  --p400: #9b8cf0;
  --p500: #7c6fce;
  --p600: #5a4ba0;
  --p700: #2a2350;

  /* renk · vurgu */
  --green: #3aa985;
  --amber: #c98a3d;
  --red:   #d44848;

  /* renk · text */
  --t1: #f5f5f7;
  --t2: #a8a8b2;
  --t3: #5a5a65;
  --t4: #2a2a32;

  /* tipografi */
  --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; }
button { font: inherit; cursor: pointer; }
ul { list-style: none; }
input, select, textarea {
  font-family: var(--ff);
  font-size: 14px;
  background: transparent;
  color: var(--t1);
  border: none;
  outline: none;
}

/* aurora gradient · marka atmosferi */
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%);
}

/* grain dokusu */
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);
}

/* ============================================================
   ÜST BANT · BREADCRUMB
   ============================================================ */
.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;
}

/* logo */
.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;
}
.brand .sub {
  font-family: var(--ff-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--t3);
  padding-left: 12px;
  border-left: 1px solid var(--rim2);
  margin-left: 4px;
}

/* breadcrumb */
.breadcrumb {
  font-family: var(--ff-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--t3);
  display: flex;
  align-items: center;
  gap: 10px;
  justify-self: center;
}
.breadcrumb a {
  color: var(--t3);
  transition: color 0.2s ease;
}
.breadcrumb a:hover { color: var(--t1); }
.breadcrumb .current { color: var(--p300); }
.breadcrumb .sep { color: var(--rim3); }

/* anasayfaya dönüş */
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--ff-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--t2);
  padding: 8px 14px;
  border: 1px solid var(--rim2);
  border-radius: 3px;
  background: var(--surface);
  transition: all 0.2s ease;
}
.back-link:hover {
  color: var(--t1);
  border-color: var(--rim3);
  background: var(--surface2);
}
.back-link .arrow {
  font-family: var(--ff);
  font-size: 13px;
  transition: transform 0.2s ease;
}
.back-link:hover .arrow { transform: translateX(-3px); }

/* ============================================================
   KAHRAMAN BÖLÜM
   ============================================================ */
.hero {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  padding: 56px 32px 24px;
}

.hero-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;
}
.hero-kicker .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--p300);
  animation: pulse-soft 2s ease-in-out infinite;
}
@keyframes pulse-soft {
  0%, 100% { opacity: 0.4; transform: scale(0.9); }
  50% { opacity: 1; transform: scale(1.2); }
}

.hero h1 {
  font-family: var(--ff);
  font-weight: 600;
  font-size: clamp(36px, 5.5vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.035em;
  color: var(--t1);
  margin-bottom: 20px;
  max-width: 900px;
}
.hero h1 .accent { color: var(--p300); }

.hero-lead {
  font-family: var(--ff);
  font-size: clamp(15px, 1.5vw, 17px);
  line-height: 1.55;
  color: var(--t2);
  max-width: 720px;
  letter-spacing: -0.005em;
}
.hero-lead strong { color: var(--t1); font-weight: 500; }
.hero-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;
}

/* ============================================================
   İKİ KOLON · SOL FORM / SAĞ TAKVİM
   ============================================================ */
.split {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  padding: 32px 32px 48px;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 24px;
}

/* ── SOL KOLON · FORM ── */
.panel {
  background: var(--surface);
  border: 1px solid var(--rim);
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.panel-head {
  padding: 20px 24px;
  border-bottom: 1px solid var(--rim);
  background: var(--deep);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}
.panel-head .title {
  font-family: var(--ff);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: -0.01em;
  color: var(--t1);
  display: flex;
  align-items: center;
  gap: 10px;
}
.panel-head .title .num {
  font-family: var(--ff-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--p300);
  padding: 3px 8px;
  border: 1px solid var(--p600);
  border-radius: 2px;
  background: rgba(124,111,206,0.06);
}
.panel-head .meta {
  font-family: var(--ff-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--t3);
}

/* form */
.form {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.field label {
  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: 6px;
}
.field label .required {
  color: var(--p400);
  font-weight: 600;
}

.field input {
  padding: 12px 14px;
  border: 1px solid var(--rim2);
  border-radius: 3px;
  background: var(--deep);
  color: var(--t1);
  font-size: 14px;
  letter-spacing: -0.005em;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.field input::placeholder { color: var(--t3); font-weight: 400; }
.field input:focus {
  border-color: var(--p500);
  background: var(--surface);
  box-shadow: 0 0 0 3px rgba(124,111,206,0.08);
}
.field input:hover:not(:focus) {
  border-color: var(--rim3);
}

/* NDA pulu · form altı */
.nda-strip {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: center;
  padding: 14px 16px;
  background: var(--deep);
  border: 1px solid var(--rim);
  border-left: 2px solid var(--p400);
  border-radius: 3px;
  margin-top: 4px;
}
.nda-strip .icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(124,111,206,0.08);
  border: 1px solid var(--p500);
  color: var(--p300);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-mono);
  font-size: 14px;
  font-weight: 600;
}
.nda-strip .text {
  font-family: var(--ff);
  font-size: 12.5px;
  line-height: 1.45;
  color: var(--t2);
}
.nda-strip .text strong { color: var(--t1); font-weight: 500; }

/* submit butonu */
.submit-row {
  margin-top: 8px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 24px;
  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);
  cursor: pointer;
  transition: all 0.2s ease;
  position: relative;
  overflow: hidden;
}
.btn-primary::before {
  content: '';
  position: absolute;
  top: -1px; left: -1px; right: -1px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--p300), transparent);
}
.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); }

.submit-note {
  font-family: var(--ff-mono);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--t3);
  text-align: center;
}
.submit-note .hi { color: var(--p300); }

/* form başarı durumu */
.form-success {
  display: none;
  padding: 48px 24px;
  text-align: center;
}
.form-success.show { display: block; }
.form-success .check {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(58,169,133,0.1);
  border: 2px solid var(--green);
  color: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 600;
  margin: 0 auto 20px;
}
.form-success h3 {
  font-family: var(--ff);
  font-weight: 600;
  font-size: 22px;
  letter-spacing: -0.015em;
  color: var(--t1);
  margin-bottom: 10px;
}
.form-success p {
  font-family: var(--ff);
  font-size: 14px;
  line-height: 1.6;
  color: var(--t2);
  max-width: 360px;
  margin: 0 auto;
}
.form-success p strong { color: var(--t1); }

/* ── SAĞ KOLON · TAKVİM ── */

.calendar {
  padding: 20px 24px 24px;
}

.cal-month {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}
.cal-month .name {
  font-family: var(--ff);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -0.005em;
  color: var(--t1);
}
.cal-month .nav {
  display: flex;
  gap: 6px;
}
.cal-month .nav button {
  width: 28px;
  height: 28px;
  border: 1px solid var(--rim2);
  border-radius: 3px;
  background: var(--deep);
  color: var(--t2);
  font-family: var(--ff);
  font-size: 14px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}
.cal-month .nav button:hover:not(:disabled) {
  border-color: var(--rim3);
  color: var(--t1);
  background: var(--surface);
}
.cal-month .nav button:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

/* 7 günlük grid */
.cal-week {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 6px;
  margin-bottom: 20px;
}
.cal-day {
  padding: 10px 4px;
  background: var(--deep);
  border: 1px solid var(--rim);
  border-radius: 3px;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s ease;
  position: relative;
}
.cal-day:hover:not(.disabled):not(.selected) {
  border-color: var(--rim3);
  background: var(--surface);
}
.cal-day.disabled {
  opacity: 0.35;
  cursor: not-allowed;
  background: transparent;
}
.cal-day.selected {
  border-color: var(--p400);
  background: rgba(124,111,206,0.12);
  box-shadow: 0 0 0 2px rgba(124,111,206,0.18);
}
.cal-day .dow {
  display: block;
  font-family: var(--ff-mono);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--t3);
  margin-bottom: 4px;
}
.cal-day .date {
  display: block;
  font-family: var(--ff);
  font-weight: 600;
  font-size: 17px;
  letter-spacing: -0.02em;
  color: var(--t1);
  line-height: 1;
}
.cal-day.disabled .date { color: var(--t3); }
.cal-day.selected .date { color: var(--p300); }
.cal-day .slot-count {
  display: block;
  font-family: var(--ff-mono);
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green);
  margin-top: 4px;
}
.cal-day.disabled .slot-count { display: none; }
.cal-day.full .slot-count { color: var(--t3); }

/* saat slotları */
.cal-slots-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
  padding-top: 8px;
  border-top: 1px dashed var(--rim2);
}
.cal-slots-head .label {
  font-family: var(--ff-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--t3);
}
.cal-slots-head .selected-date {
  font-family: var(--ff);
  font-weight: 500;
  font-size: 13px;
  color: var(--t1);
}
.cal-slots-head .selected-date.empty { color: var(--t3); font-weight: 400; }

.cal-slots {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.cal-slot {
  padding: 10px 12px;
  background: var(--deep);
  border: 1px solid var(--rim2);
  border-radius: 3px;
  font-family: var(--ff-mono);
  font-size: 12px;
  font-weight: 500;
  color: var(--t2);
  text-align: center;
  cursor: pointer;
  transition: all 0.2s ease;
}
.cal-slot:hover:not(.taken):not(.selected) {
  border-color: var(--p500);
  color: var(--t1);
  background: var(--surface);
}
.cal-slot.taken {
  opacity: 0.3;
  cursor: not-allowed;
  text-decoration: line-through;
}
.cal-slot.selected {
  background: var(--p600);
  border-color: var(--p400);
  color: var(--t1);
  box-shadow: 0 0 0 2px rgba(124,111,206,0.18);
}
.cal-slot.empty-state {
  grid-column: 1 / -1;
  cursor: default;
  color: var(--t3);
  border-style: dashed;
  text-align: center;
  padding: 24px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 10px;
}
.cal-slot.empty-state:hover { border-color: var(--rim2); background: var(--deep); }

/* takvim alt notu */
.cal-foot {
  margin-top: 20px;
  padding: 12px 16px;
  background: var(--deep);
  border: 1px dashed var(--rim2);
  border-radius: 3px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: center;
}
.cal-foot .tz {
  font-family: var(--ff-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--p300);
  padding: 4px 8px;
  border: 1px solid var(--p600);
  border-radius: 2px;
  background: rgba(124,111,206,0.06);
}
.cal-foot .note {
  font-family: var(--ff);
  font-size: 11.5px;
  line-height: 1.45;
  color: var(--t3);
}

/* ============================================================
   BEKLENTİ ŞERİDİ · 4 ADIM
   ============================================================ */
.expectations {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  padding: 24px 32px;
}

.expectations-head {
  text-align: center;
  margin-bottom: 28px;
}
.expectations-head .label {
  font-family: var(--ff-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--p300);
  margin-bottom: 12px;
}
.expectations-head h2 {
  font-family: var(--ff);
  font-weight: 600;
  font-size: clamp(24px, 3vw, 32px);
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: var(--t1);
}
.expectations-head h2 .accent { color: var(--p300); }

.expect-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.expect-card {
  position: relative;
  padding: 22px 20px;
  background: var(--surface);
  border: 1px solid var(--rim);
  border-radius: 4px;
}
.expect-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 32px;
  height: 1px;
  background: var(--p400);
}
.expect-card .num {
  font-family: var(--ff-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
  color: var(--p300);
  margin-bottom: 10px;
}
.expect-card .when {
  font-family: var(--ff-mono);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--t3);
  margin-bottom: 6px;
}
.expect-card .name {
  font-family: var(--ff);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -0.01em;
  color: var(--t1);
  margin-bottom: 8px;
  line-height: 1.25;
}
.expect-card .desc {
  font-family: var(--ff);
  font-size: 12.5px;
  line-height: 1.55;
  color: var(--t2);
}
.expect-card .desc strong { color: var(--t1); font-weight: 500; }

/* ============================================================
   MİKRO-VAKA ŞERİDİ
   ============================================================ */
.cases {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  padding: 32px 32px;
}

.cases-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.cases-head h3 {
  font-family: var(--ff);
  font-weight: 600;
  font-size: 20px;
  letter-spacing: -0.015em;
  color: var(--t1);
}
.cases-head h3 .hi { color: var(--p300); }
.cases-head .meta {
  font-family: var(--ff-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--t3);
}

.cases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.case-card {
  padding: 24px 22px;
  background: var(--surface);
  border: 1px solid var(--rim);
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: all 0.3s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.case-card:hover {
  background: var(--surface2);
  border-color: var(--rim2);
  transform: translateY(-2px);
}
.case-card .head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.case-card .sector {
  font-family: var(--ff-mono);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--p300);
  padding: 3px 8px;
  border: 1px solid var(--p600);
  border-radius: 2px;
  background: rgba(124,111,206,0.06);
}
.case-card .stage {
  font-family: var(--ff-mono);
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--t3);
}
.case-card .role {
  font-family: var(--ff);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: -0.005em;
  color: var(--t1);
}
.case-card .quote {
  font-family: var(--ff);
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--t2);
  border-left: 2px solid var(--p500);
  padding-left: 14px;
  font-style: normal;
}
.case-card .quote strong { color: var(--t1); font-weight: 500; }
.case-card .outcome {
  font-family: var(--ff-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--green);
  padding-top: 12px;
  border-top: 1px dashed var(--rim2);
  display: flex;
  align-items: center;
  gap: 8px;
}
.case-card .outcome .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
}

/* ============================================================
   SSS · SIK SORULAN
   ============================================================ */
.faq {
  position: relative;
  z-index: 2;
  max-width: 920px;
  margin: 0 auto;
  padding: 32px 32px;
}

.faq-head {
  text-align: center;
  margin-bottom: 28px;
}
.faq-head .label {
  font-family: var(--ff-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--p300);
  margin-bottom: 12px;
}
.faq-head h3 {
  font-family: var(--ff);
  font-weight: 600;
  font-size: clamp(22px, 2.6vw, 28px);
  letter-spacing: -0.02em;
  color: var(--t1);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
  background: var(--rim);
  border: 1px solid var(--rim);
  border-radius: 4px;
  overflow: hidden;
}
.faq-item {
  background: var(--surface);
  transition: background 0.2s ease;
}
.faq-item:hover { background: var(--surface2); }
.faq-item summary {
  padding: 18px 22px;
  cursor: pointer;
  font-family: var(--ff);
  font-weight: 500;
  font-size: 14.5px;
  letter-spacing: -0.005em;
  color: var(--t1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-family: var(--ff);
  font-weight: 400;
  font-size: 20px;
  color: var(--p400);
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item .body {
  padding: 0 22px 20px;
  font-family: var(--ff);
  font-size: 13.5px;
  line-height: 1.65;
  color: var(--t2);
  max-width: 760px;
}
.faq-item .body strong { color: var(--t1); font-weight: 500; }

/* ============================================================
   KAPANIŞ
   ============================================================ */
.closing {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  padding: 56px 32px;
  text-align: center;
}
.closing::before {
  content: '';
  display: block;
  width: 1px;
  height: 40px;
  background: linear-gradient(180deg, transparent, var(--p400), transparent);
  margin: 0 auto 28px;
}
.closing .label {
  font-family: var(--ff-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--p300);
  margin-bottom: 18px;
}
.closing h3 {
  font-family: var(--ff);
  font-weight: 600;
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--t1);
  margin-bottom: 24px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.closing h3 .accent { color: var(--p300); }
.closing-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  border: 1px solid var(--rim2);
  border-radius: 3px;
  background: var(--surface);
  font-family: var(--ff-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--t2);
  transition: all 0.2s ease;
}
.closing-link:hover {
  color: var(--t1);
  border-color: var(--rim3);
  background: var(--surface2);
}
.closing-link .arrow { transition: transform 0.2s ease; }
.closing-link:hover .arrow { transform: translateX(-3px); }

/* ============================================================
   FOOTER MİNİ
   ============================================================ */
.footer-mini {
  position: relative;
  z-index: 2;
  border-top: 1px solid var(--rim);
  background: var(--deep);
  padding: 28px 32px;
}
.footer-mini-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 24px;
  align-items: center;
  font-family: var(--ff-mono);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--t3);
}
.footer-mini-inner .copy { text-align: left; }
.footer-mini-inner .badges {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
.footer-mini-inner .badges span {
  padding: 4px 10px;
  border: 1px solid var(--rim2);
  border-radius: 2px;
  background: var(--surface);
  color: var(--t2);
}
.footer-mini-inner .legal {
  display: flex;
  gap: 16px;
  justify-content: flex-end;
}
.footer-mini-inner .legal a {
  color: var(--t3);
  transition: color 0.2s ease;
}
.footer-mini-inner .legal a:hover { color: var(--t1); }

/* ============================================================
   SCROLL REVEAL · 2026 STİLİ
   ============================================================ */
@supports (animation-timeline: view()) {
  @media (prefers-reduced-motion: no-preference) {
    .split,
    .expectations,
    .cases,
    .faq,
    .closing,
    .footer-mini {
      animation: section-reveal linear both;
      animation-timeline: view();
      animation-range: entry 0% entry 40%;
    }
    @keyframes section-reveal {
      from { opacity: 0; transform: translateY(20px); }
      to   { opacity: 1; transform: translateY(0); }
    }
  }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .split { grid-template-columns: 1fr; }
  .expect-grid { grid-template-columns: repeat(2, 1fr); }
  .cases-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .topbar-inner { grid-template-columns: auto auto; gap: 12px; padding: 14px 20px; }
  .breadcrumb { display: none; }
  .brand .sub { display: none; }
  .hero, .split, .expectations, .cases, .faq, .closing { padding-left: 20px; padding-right: 20px; }
  .field-row { grid-template-columns: 1fr; }
  .expect-grid { grid-template-columns: 1fr; }
  .cal-slots { grid-template-columns: repeat(2, 1fr); }
  .cal-day { padding: 8px 2px; }
  .cal-day .date { font-size: 15px; }
  .footer-mini-inner { grid-template-columns: 1fr; text-align: center; gap: 14px; }
  .footer-mini-inner .copy,
  .footer-mini-inner .legal { text-align: center; justify-content: center; }
}

