/* =========================================================
   Page-specific: Hakkımızda
   ========================================================= */

/* Breadcrumb */
.crumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
  margin-bottom: 28px;
}
.crumbs a { color: rgba(255,255,255,0.6); transition: color 0.18s; }
.crumbs a:hover { color: #fff; }
.crumbs .sep { color: rgba(255,255,255,0.3); }
.crumbs .here { color: #fff; }

/* About hero (compact, dark navy) */
.about-hero {
  position: relative;
  background:
    radial-gradient(1000px 500px at 100% 0%, var(--navy-3), transparent 60%),
    radial-gradient(800px 500px at 0% 100%, var(--navy-2), transparent 50%),
    linear-gradient(180deg, var(--navy) 0%, #0a1730 100%);
  color: #fff;
  overflow: hidden;
  padding: 56px 0 88px;
}
.about-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 56px 56px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, #000 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, #000 30%, transparent 80%);
}
.about-hero .container { position: relative; z-index: 2; }
.about-hero .hero-eyebrow { margin-bottom: 0; }
.about-hero h1 {
  font-size: clamp(36px, 5.2vw, 56px);
  font-weight: 800;
  line-height: 1.05;
  margin: 18px 0 18px;
  max-width: 900px;
  letter-spacing: -0.02em;
}
.about-hero h1 .accent {
  position: relative;
  color: #fff;
  white-space: nowrap;
}
.about-hero h1 .accent::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 4px;
  background: var(--red);
  border-radius: 2px;
}
.about-lead {
  font-size: 18px;
  line-height: 1.65;
  color: rgba(255,255,255,0.78);
  max-width: 720px;
}

/* Stats strip (overlapping the navy hero) */
.stats-wrap {
  position: relative;
  margin-top: -52px;
  z-index: 5;
}
.stats-card {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
}
.stat-cell {
  padding: 32px 28px 30px;
  border-right: 1px solid var(--border);
  position: relative;
}
.stat-cell:last-child { border-right: none; }
.stat-cell .stat-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--red);
  margin-bottom: 14px;
}
.stat-cell .stat-label .pip { width: 6px; height: 6px; border-radius: 999px; background: var(--red); }
.stat-cell .stat-num {
  font-size: 44px;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
  letter-spacing: -0.03em;
}
.stat-cell .stat-num .unit {
  font-size: 22px;
  color: var(--red);
  font-weight: 800;
  margin-left: 2px;
}
.stat-cell .stat-cap {
  font-size: 13.5px;
  color: var(--text-mid);
  margin-top: 8px;
  line-height: 1.45;
}
@media (max-width: 900px) {
  .stats-card { grid-template-columns: repeat(2, 1fr); }
  .stat-cell:nth-child(2) { border-right: none; }
  .stat-cell:nth-child(-n+2) { border-bottom: 1px solid var(--border); }
}
@media (max-width: 520px) {
  .stats-card { grid-template-columns: 1fr; }
  .stat-cell { border-right: none; border-bottom: 1px solid var(--border); }
  .stat-cell:last-child { border-bottom: none; }
}

/* Story section */
.story-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 64px;
  align-items: center;
}
.story-body p {
  font-size: 16.5px;
  line-height: 1.75;
  color: var(--text-mid);
  margin-bottom: 18px;
}
.story-body p:first-of-type::first-letter {
  font-size: 56px;
  font-weight: 800;
  color: var(--red);
  float: left;
  line-height: 0.9;
  margin: 6px 10px 0 0;
  font-family: var(--ff);
}
.story-meta {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.story-meta .badge { letter-spacing: 0.05em; }
.story-image {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(14,30,58,0.18);
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-3) 100%);
  display: flex;
  align-items: flex-end;
  color: rgba(255,255,255,0.85);
}
.story-image::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 70% 25%, rgba(230,0,18,0.22) 0%, transparent 55%),
    repeating-linear-gradient(135deg, rgba(255,255,255,0.04) 0 2px, transparent 2px 18px);
}
.story-image .plaza-tag {
  position: relative;
  z-index: 2;
  padding: 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.story-image .plaza-tag .lbl {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.6);
}
.story-image .plaza-tag .ttl {
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.01em;
}
.story-image .plaza-tag .sub {
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  margin-top: 2px;
}
@media (max-width: 900px) {
  .story-grid { grid-template-columns: 1fr; gap: 32px; }
  .story-image { order: -1; aspect-ratio: 16/10; }
}

/* Placeholder label inside story-image */
.story-image .ph-mark {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.35);
  white-space: nowrap;
  pointer-events: none;
}

/* Values grid */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.value {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: all 0.22s var(--ease);
  position: relative;
  overflow: hidden;
}
.value::after {
  content: '';
  position: absolute;
  inset: auto 0 0 0;
  height: 3px;
  background: linear-gradient(90deg, var(--red), var(--red-700));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.28s var(--ease);
}
.value:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.value:hover::after { transform: scaleX(1); }
.value-ico {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: rgba(230,0,18,0.08);
  color: var(--red);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.value h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
  line-height: 1.3;
}
.value p {
  color: var(--text-mid);
  font-size: 14.5px;
  line-height: 1.65;
}
.value .v-note {
  margin-top: 16px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.value .v-note::before {
  content: '';
  width: 18px;
  height: 1px;
  background: var(--red);
}
@media (max-width: 1023px) { .values-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .values-grid { grid-template-columns: 1fr; } }

/* Mission & Vision */
.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.mv-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 44px 40px 40px;
  position: relative;
  overflow: hidden;
  transition: all 0.22s var(--ease);
}
.mv-card:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.18);
  transform: translateY(-3px);
}
.mv-card::before {
  content: '';
  position: absolute;
  left: 0; top: 40px;
  width: 4px; height: 56px;
  background: var(--red);
  border-radius: 0 2px 2px 0;
}
.mv-card .mv-eyebrow {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #ff6776;
  margin-bottom: 14px;
}
.mv-card h3 {
  font-size: clamp(24px, 2.6vw, 30px);
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
}
.mv-card p {
  color: rgba(255,255,255,0.75);
  font-size: 16px;
  line-height: 1.7;
}
.mv-card p + p { margin-top: 12px; }
@media (max-width: 900px) {
  .mv-grid { grid-template-columns: 1fr; }
  .mv-card { padding: 36px 28px; }
}

/* Team */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.team-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 22px 28px;
  text-align: center;
  transition: all 0.22s var(--ease);
}
.team-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: transparent;
}
.team-avatar {
  width: 96px;
  height: 96px;
  border-radius: 999px;
  background: var(--navy);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 30px;
  letter-spacing: -0.02em;
  margin: 0 auto 18px;
  position: relative;
}
.team-avatar::after {
  content: '';
  position: absolute;
  bottom: 4px;
  right: 4px;
  width: 18px; height: 18px;
  background: var(--red);
  border: 3px solid #fff;
  border-radius: 999px;
}
.team-card.alt .team-avatar { background: var(--red); }
.team-card.alt .team-avatar::after { background: var(--navy); }
.team-name {
  font-weight: 700;
  font-size: 16px;
  color: var(--text);
  margin-bottom: 4px;
}
.team-role {
  font-size: 13px;
  color: var(--text-mid);
  margin-bottom: 14px;
}
.team-social {
  display: flex;
  justify-content: center;
  gap: 6px;
}
.team-social a {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: var(--surface-1);
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.18s;
}
.team-social a:hover { background: var(--red); color: #fff; }
@media (max-width: 1023px) { .team-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .team-grid { grid-template-columns: 1fr; } }

/* Xchange section */
.xchange-section {
  background:
    radial-gradient(1000px 500px at 100% 0%, var(--navy-3), transparent 60%),
    linear-gradient(180deg, var(--navy) 0%, #0a1730 100%);
  color: #fff;
  padding: 80px 0;
}
.xchange-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.xchange-body .eyebrow-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.16);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 11.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.9);
  margin-bottom: 20px;
}
.xchange-body h2 {
  font-size: clamp(28px, 3.6vw, 38px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}
.xchange-body p {
  font-size: 16.5px;
  line-height: 1.75;
  color: rgba(255,255,255,0.78);
}
.xchange-badge {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
}
.xchange-badge .xb-logo {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.xchange-badge .xb-logo span { color: var(--red); }
.xchange-badge p {
  color: rgba(255,255,255,0.7);
  font-size: 14.5px;
  line-height: 1.65;
}
@media (max-width: 900px) {
  .xchange-inner { grid-template-columns: 1fr; gap: 32px; }
}

/* Plaza CTA banner (red) */
.plaza-cta {
  background:
    radial-gradient(800px 400px at 100% 0%, rgba(255,255,255,0.18), transparent 60%),
    linear-gradient(135deg, var(--red) 0%, #a8000e 100%);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 56px 56px;
  display: grid;
  grid-template-columns: 1.4fr auto;
  gap: 40px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.plaza-cta::before {
  content: '';
  position: absolute;
  top: -80px; left: -80px;
  width: 280px; height: 280px;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 999px;
}
.plaza-cta::after {
  content: '';
  position: absolute;
  bottom: -120px; left: 80px;
  width: 240px; height: 240px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 999px;
}
.plaza-cta .pc-text { position: relative; z-index: 2; }
.plaza-cta .pc-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.18);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}
.plaza-cta .pc-eyebrow .pip { width: 6px; height: 6px; border-radius: 999px; background: #fff; }
.plaza-cta h2 {
  font-size: clamp(30px, 4vw, 44px);
  font-weight: 800;
  line-height: 1.05;
  margin-bottom: 14px;
}
.plaza-cta p {
  font-size: 16.5px;
  opacity: 0.92;
  max-width: 540px;
  margin-bottom: 24px;
  line-height: 1.6;
}
.plaza-cta .pc-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.plaza-cta .pc-side {
  position: relative;
  z-index: 2;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: var(--radius);
  padding: 22px 24px;
  backdrop-filter: blur(6px);
  min-width: 280px;
}
.plaza-cta .pc-side .pcs-row {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.18);
  font-size: 13.5px;
}
.plaza-cta .pc-side .pcs-row:last-child { border-bottom: none; }
.plaza-cta .pc-side .pcs-row svg { flex-shrink: 0; margin-top: 2px; opacity: 0.85; }
.plaza-cta .pc-side .pcs-row strong { display: block; font-weight: 700; font-size: 12.5px; opacity: 0.75; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 2px; }
@media (max-width: 900px) {
  .plaza-cta { padding: 40px 28px; grid-template-columns: 1fr; }
  .plaza-cta .pc-side { min-width: 0; }
}
