/* ── Hakkımızda Page Styles ──────────────────────────── */

:root {
  --ink: #071936;
  --orange: #e07b2a;
}

.about-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 12px;
}

.about-label.light { color: #f0a55a; }

/* ── Kim Biz? Intro ──────────────────────────────────── */
.about-intro {
  background: #fff;
  padding: 90px 20px;
}

.about-intro-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 80px;
}

.about-intro-text {
  flex: 1;
}

.about-intro-img {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-intro-img img {
  width: 100%;
  max-width: 620px;
  height: auto;
  border-radius: 20px;
  object-fit: cover;
}

.about-intro-text h2 {
  font-size: clamp(28px, 3vw, 42px);
  color: var(--ink);
  line-height: 1.15;
  margin: 0 0 24px;
  font-weight: 800;
  text-transform: none;
}

.about-intro-text p {
  font-size: 16px;
  color: #4a6a86;
  line-height: 1.75;
  margin: 0 0 18px;
}

.about-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--orange);
  color: #fff;
  padding: 13px 26px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  margin-top: 10px;
  transition: opacity 180ms ease;
}

.about-cta-btn:hover { opacity: 0.85; }

.about-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.about-stat {
  background: #f4f7fc;
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  border: 1px solid #e4edf5;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.about-stat:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(2,18,42,0.08);
}

.about-stat-num {
  display: block;
  font-size: 40px;
  font-weight: 900;
  color: var(--ink);
  line-height: 1;
  margin-bottom: 8px;
}

.about-stat-num { color: var(--orange); }

.about-stat-label {
  display: block;
  font-size: 13px;
  color: #6a8aaa;
  font-weight: 600;
}

/* ── GepX'in Gücü ────────────────────────────────────── */
.about-power {
  background: linear-gradient(135deg, #021226 0%, #052756 100%);
  padding: 90px 20px;
}

.about-power-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.about-section-head {
  text-align: center;
  margin-bottom: 56px;
}

.about-section-head h2 {
  font-size: clamp(24px, 3vw, 38px);
  color: #fff;
  font-weight: 800;
  margin: 0 0 14px;
  text-transform: none;
  line-height: 1.2;
}

.about-section-head p {
  color: #a8c0db;
  font-size: 16px;
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.65;
}

.about-power-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.about-power-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 36px 28px;
  transition: background 220ms ease, transform 220ms ease;
}

.about-power-card:hover {
  background: rgba(255,255,255,0.09);
  transform: translateY(-4px);
}

.about-power-icon {
  width: 52px;
  height: 52px;
  background: rgba(224,123,42,0.15);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.about-power-icon svg {
  width: 26px;
  height: 26px;
  stroke: var(--orange);
}

.about-power-card h3 {
  font-size: 17px;
  color: #fff;
  font-weight: 700;
  margin: 0 0 12px;
  text-transform: none;
}

.about-power-card p {
  font-size: 14px;
  color: #a8c0db;
  line-height: 1.65;
  margin: 0;
}

/* ── Misyon & Vizyon ─────────────────────────────────── */
.about-mv {
  background: #f4f7fc;
  padding: 90px 20px;
}

.about-mv-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.about-mv-card {
  background: #fff;
  border-radius: 20px;
  padding: 44px 40px;
  border: 1px solid #e4edf5;
  box-shadow: 0 4px 24px rgba(2,18,42,0.05);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.about-mv-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(2,18,42,0.1);
}

.about-mv-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #021226, #052756);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.about-mv-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--orange);
}

.about-mv-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 12px;
}

.about-mv-card h3 {
  font-size: 17px;
  color: var(--ink);
  font-weight: 800;
  margin: 0 0 18px;
  line-height: 1.4;
  text-transform: none;
}

.about-mv-card p {
  font-size: 14px;
  color: #5a7a96;
  line-height: 1.75;
  margin: 0;
}

/* ── Ekosistem ───────────────────────────────────────── */
.about-ecosystem {
  background: #fff;
  padding: 90px 20px;
}

.about-ecosystem-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.about-ecosystem .about-section-head h2 { color: var(--ink); }
.about-ecosystem .about-section-head p { color: #5a7a96; }

.about-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px 60px;
  margin-top: 48px;
}

.about-logos img {
  max-height: 52px;
  max-width: 140px;
  object-fit: contain;
  filter: grayscale(1) opacity(0.6);
  transition: filter 220ms ease;
}

.about-logos img:last-child {
  max-height: 36px;
  max-width: 110px;
}

.about-logos img:hover { filter: grayscale(0) opacity(1); }

/* ── Final CTA ───────────────────────────────────────── */
.about-final-cta {
  background: linear-gradient(135deg, #021226 0%, #052756 100%);
  padding: 90px 20px;
  text-align: center;
}

.about-final-cta-inner {
  max-width: 680px;
  margin: 0 auto;
}

.about-final-cta h2 {
  font-size: clamp(24px, 3vw, 38px);
  color: #fff;
  font-weight: 800;
  margin: 0 0 16px;
  text-transform: none;
  line-height: 1.2;
}

.about-final-cta p {
  color: #a8c0db;
  font-size: 16px;
  margin: 0 0 36px;
  line-height: 1.65;
}

.about-final-cta-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--orange);
  color: #fff;
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  transition: opacity 180ms ease;
}

.btn-primary:hover { opacity: 0.85; }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.1);
  color: #fff;
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.2);
  transition: background 180ms ease;
}

.btn-secondary:hover { background: rgba(255,255,255,0.18); }

/* ── Nasıl Ev Sahibi? Steps ──────────────────────────── */
.about-steps {
  background: linear-gradient(160deg, #021226 0%, #062e60 60%, #021a38 100%);
  padding: 90px 20px;
}

.about-steps-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.about-steps .about-section-head h2 { color: #fff; }
.about-steps .about-section-head p  { color: #a8c0db; }

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 52px;
}

.step-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 20px;
  padding: 36px 28px 32px;
  position: relative;
  overflow: hidden;
  transition: background 220ms ease, transform 220ms ease, border-color 220ms ease;
}

/* watermark step number */
.step-card::before {
  content: attr(data-step);
  position: absolute;
  top: 8px;
  right: 18px;
  font-size: 96px;
  font-weight: 900;
  color: rgba(255,255,255,0.04);
  line-height: 1;
  pointer-events: none;
  letter-spacing: -4px;
}

.step-card:hover {
  background: rgba(255,255,255,0.085);
  transform: translateY(-5px);
  border-color: rgba(224,123,42,0.28);
}

/* accented last card */
.step-card--accent {
  background: rgba(224,123,42,0.09);
  border-color: rgba(224,123,42,0.32);
}
.step-card--accent:hover {
  background: rgba(224,123,42,0.15);
  border-color: rgba(224,123,42,0.55);
}
.step-card--accent::before { color: rgba(224,123,42,0.07); }

.step-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}

.step-num {
  width: 38px;
  height: 38px;
  background: var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 16px;
  color: #fff;
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(224,123,42,0.45);
}

.step-icon svg {
  width: 28px;
  height: 28px;
  stroke: rgba(255,255,255,0.45);
}

.step-card h3 {
  font-size: 16px;
  color: #fff;
  font-weight: 800;
  margin: 0 0 9px;
  text-transform: none;
  line-height: 1.35;
}

.step-sub {
  font-size: 13px;
  color: #f0a55a;
  font-style: italic;
  margin: 0 0 18px;
  line-height: 1.55;
}

.step-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.step-card ul li {
  font-size: 13px;
  color: #a8c0db;
  padding: 4px 0 4px 20px;
  position: relative;
  line-height: 1.5;
}

.step-card ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 7px;
  height: 7px;
  border: 1.5px solid var(--orange);
  border-radius: 50%;
}

.step-cta-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 24px;
  background: var(--orange);
  color: #fff;
  padding: 12px 22px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  transition: opacity 180ms ease;
}
.step-cta-link:hover { opacity: 0.85; }
.step-cta-link svg { width: 16px; height: 16px; }

/* ── Responsive ──────────────────────────────────────── */
@media (max-width: 960px) {
  .about-intro-inner { grid-template-columns: 1fr; gap: 48px; }
  .about-power-grid { grid-template-columns: repeat(2, 1fr); }
  .about-mv-inner { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .about-intro, .about-power, .about-mv, .about-ecosystem,
  .about-steps, .about-final-cta { padding: 60px 20px; }
  .about-power-grid { grid-template-columns: 1fr; }
  .about-stats-grid { grid-template-columns: 1fr 1fr; }
  .about-mv-card { padding: 30px 24px; }
  .steps-grid { grid-template-columns: 1fr; }
}
