/* ==========================================================================
   FAME CRYPT — Sayfa düzenleri (alt sayfalar)
   ========================================================================== */

/* Alt sayfa hero (Kurumsal, Ürünler, Projeler, Akademi, İletişim) */
.page-hero {
  position: relative;
  padding-top: calc(76px + clamp(3rem, 2rem + 4vw, 6rem));
  padding-bottom: clamp(2.5rem, 1.5rem + 3vw, 4.5rem);
  overflow: hidden;
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-line), transparent);
}

.page-hero__inner { max-width: 760px; }

.page-hero h1 {
  font-family: var(--font-display);
  font-size: var(--text-h1);
  font-weight: 800;
  line-height: 1.08;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  margin-bottom: 1.2rem;
}

.page-hero__lead {
  color: var(--text-dim);
  font-size: clamp(1rem, 0.95rem + 0.4vw, 1.18rem);
  max-width: 60ch;
}

/* İçerik bandı (iki paragraf vb.) */
.prose-band {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
}

.prose-band p { color: var(--text-dim); }

@media (max-width: 760px) {
  .prose-band { grid-template-columns: 1fr; gap: 1.4rem; }
}

/* Ürün detay sayfası */
.product-detail-hero {
  padding-top: calc(76px + clamp(3rem, 2rem + 4vw, 6rem));
}

.product-detail-hero .eyebrow { margin-bottom: 1.2rem; }

.product-detail__layout {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: clamp(2rem, 1rem + 4vw, 4rem);
  align-items: start;
}

.product-detail__title {
  font-family: var(--font-display);
  font-size: var(--text-h1);
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1.05;
  margin-bottom: 1.4rem;
}

.product-detail__text {
  color: var(--text-dim);
  font-size: var(--text-base);
  margin-bottom: 1.2rem;
}

.product-detail__text strong { color: var(--white); }

.feature-list {
  display: grid;
  gap: 0.9rem;
  margin: 2rem 0;
}

.feature-list li {
  position: relative;
  padding-left: 2rem;
  color: var(--text);
}

.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 10px;
  height: 10px;
  border-radius: 3px;
  background: var(--gold);
  box-shadow: 0 0 0 4px var(--gold-soft);
}

.product-aside {
  position: sticky;
  top: 100px;
  display: grid;
  gap: 1.2rem;
  padding: 2rem;
  border: 1px solid var(--gold-line);
  border-radius: var(--radius-lg);
  background: linear-gradient(160deg, var(--gold-soft), rgba(255, 255, 255, 0.01));
}

.product-aside h3 {
  font-family: var(--font-display);
  font-size: var(--text-h3);
  color: var(--white);
}

.product-aside dl { display: grid; gap: 1rem; }
.product-aside dt {
  font-family: var(--font-display);
  font-size: 0.68rem;
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  color: var(--gold);
}
.product-aside dd { color: var(--text-dim); font-size: var(--text-sm); }

@media (max-width: 820px) {
  .product-detail__layout { grid-template-columns: 1fr; }
  .product-aside { position: static; }
}

/* Süreç adımları (3'lü) */
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}

.process-step {
  padding: 1.8rem 1.6rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  transition: transform var(--dur) var(--ease), border-color var(--dur) var(--ease);
}

.process-step:hover { transform: translateY(-6px); border-color: var(--gold-line); }

.process-step__num {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--gold);
  margin-bottom: 0.8rem;
}

.process-step h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.process-step p { color: var(--text-dim); font-size: var(--text-sm); }

@media (max-width: 760px) {
  .process-grid { grid-template-columns: 1fr; }
}

/* Alt CTA bandı */
.cta-band {
  text-align: center;
  padding: clamp(3rem, 2rem + 4vw, 5rem) clamp(1.5rem, 1rem + 3vw, 4rem);
  border: 1px solid var(--gold-line);
  border-radius: var(--radius-lg);
  background: radial-gradient(120% 120% at 50% 0%, var(--gold-soft), rgba(255, 255, 255, 0.01));
}

.cta-band h2 {
  font-family: var(--font-display);
  font-size: var(--text-h2);
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 1rem;
  max-width: 20ch;
  margin-inline: auto;
}

.cta-band p { color: var(--text-dim); max-width: 56ch; margin: 0 auto 1.8rem; }

/* Geri-dön linki (ürün detayı) */
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-size: 0.72rem;
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 1.5rem;
  transition: color var(--dur) var(--ease);
}

.back-link:hover { color: var(--gold); }
