/* =============================================================
   İçerik sayfaları: kurumsal, ihracat, iletişim, sözleşmeler
   ============================================================= */

/* Sayfa üst görseli */
.page-hero {
  position: relative;
  background: var(--brand-darker);
  color: #fff;
  overflow: hidden;
}
.page-hero__media { position: absolute; inset: 0; }
.page-hero__media img { width: 100%; height: 100%; object-fit: cover; }
.page-hero__scrim { position: absolute; inset: 0; background: rgba(11, 33, 22, 0.66); }
.page-hero__inner {
  position: relative;
  z-index: 2;
  padding: var(--sp-11) 0;
  max-width: 720px;
}
.page-hero__eyebrow {
  display: inline-block;
  font-size: var(--fs-12);
  font-weight: var(--fw-semibold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding-bottom: var(--sp-3);
  margin-bottom: var(--sp-4);
  border-bottom: 1px solid rgba(255,255,255,0.32);
}
.page-hero__title { color: #fff; margin-bottom: var(--sp-4); }
.page-hero__desc { color: rgba(255,255,255,0.82); font-size: var(--fs-16); line-height: 1.7; }

/* Özellik kartları */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--sp-5);
}
.feature-card {
  border: 1px solid var(--line);
  background: var(--surface);
  padding: var(--sp-6);
}
.feature-card__icon {
  width: 40px; height: 40px;
  display: grid; place-items: center;
  color: var(--brand);
  background: var(--brand-tint);
  border: 1px solid var(--brand-tint-2);
  margin-bottom: var(--sp-5);
  border-radius: 2px;
}
.feature-card__icon svg { width: 20px; height: 20px; }
.feature-card__title { font-size: var(--fs-16); font-weight: var(--fw-semibold); margin-bottom: var(--sp-2); }
.feature-card__text { font-size: var(--fs-14); color: var(--ink-3); line-height: 1.65; }

/* Numaralı liste (süreç) */
.process { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: var(--sp-6); }
.process__step { padding-top: var(--sp-5); border-top: 2px solid var(--brand); }
.process__num {
  font-size: var(--fs-13);
  font-weight: var(--fw-bold);
  color: var(--brand);
  letter-spacing: 0.08em;
  margin-bottom: var(--sp-3);
}
.process__title { font-size: var(--fs-16); font-weight: var(--fw-semibold); margin-bottom: var(--sp-2); }
.process__text { font-size: var(--fs-14); color: var(--ink-3); line-height: 1.65; }

/* İletişim */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: var(--sp-9);
  align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: var(--sp-6); }
.contact-info__item { display: flex; gap: var(--sp-4); }
.contact-info__icon {
  width: 38px; height: 38px;
  flex-shrink: 0;
  display: grid; place-items: center;
  border: 1px solid var(--line);
  background: var(--surface-2);
  color: var(--brand);
  border-radius: 2px;
}
.contact-info__icon svg { width: 18px; height: 18px; }
.contact-info__label {
  font-size: var(--fs-12);
  font-weight: var(--fw-semibold);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-4);
  margin-bottom: var(--sp-1);
}
.contact-info__value { font-size: var(--fs-15); line-height: 1.55; }
.contact-info__value a:hover { color: var(--brand); }

.map-frame {
  border: 1px solid var(--line);
  overflow: hidden;
  height: 380px;
}
.map-frame iframe { width: 100%; height: 100%; border: none; display: block; filter: grayscale(0.25); }

/* Sözleşme sayfaları */
.doc-layout {
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  gap: var(--sp-9);
  align-items: start;
}
.doc-nav {
  position: sticky;
  top: calc(var(--headmain-h) + var(--headnav-h) + var(--sp-5));
  border: 1px solid var(--line);
  padding: var(--sp-4);
}
.doc-nav__title {
  font-size: var(--fs-11);
  font-weight: var(--fw-semibold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-4);
  padding: 0 var(--sp-3) var(--sp-3);
}
.doc-nav__link {
  display: block;
  padding: var(--sp-3);
  font-size: var(--fs-14);
  color: var(--ink-2);
  border-radius: 2px;
  line-height: 1.4;
}
.doc-nav__link:hover { background: var(--surface-2); color: var(--ink); }
.doc-nav__link.is-active { background: var(--brand-tint); color: var(--brand); font-weight: var(--fw-semibold); }

.doc-body { max-width: 780px; }
.doc-body__updated {
  font-size: var(--fs-13);
  color: var(--ink-3);
  padding-bottom: var(--sp-5);
  margin-bottom: var(--sp-6);
  border-bottom: 1px solid var(--line);
}

/* Hata sayfaları */
.error-page { text-align: center; padding: var(--sp-11) 0; }
.error-page__code {
  font-size: var(--fs-48);
  font-weight: var(--fw-bold);
  color: var(--brand);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: var(--sp-4);
}
.error-page__title { margin-bottom: var(--sp-3); }
.error-page__desc { color: var(--ink-3); margin-bottom: var(--sp-7); }
