/* =========================================================
   Hakkımızda sayfası — Figma tasarımına göre
   ========================================================= */

.page-about {
	background: var(--color-bg);
	padding-top: 72px;
	padding-bottom: 0;
}

.container--narrow {
	max-width: 1080px;
	margin-inline: auto;
	padding-inline: var(--container-pad);
}

/* ---------- HERO ---------- */
.about-hero {
	text-align: center;
	margin-bottom: 56px;
}

.about-hero__eyebrow {
	display: inline-block;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.32em;
	color: #2f5da8;
	text-transform: uppercase;
	margin-bottom: 18px;
}

.about-hero__title {
	font-family: var(--font-heading);
	font-size: clamp(34px, 5vw, 52px);
	font-weight: 500;
	line-height: 1.15;
	color: var(--color-heading);
	margin-bottom: 18px;
}

.about-hero__subtitle {
	font-size: 16px;
	line-height: 1.7;
	color: #111;
	max-width: 620px;
	margin-inline: auto;
}

/* ---------- MİSYON / VİZYON ---------- */
.about-mv {
	display: grid;
	grid-template-columns: 360px 1fr;
	gap: 48px;
	align-items: start;
	margin-bottom: 20px;
}

.about-mv__media {
	position: sticky;
	top: 100px;
	aspect-ratio: 3 / 4;
	border-radius: 16px;
	overflow: hidden;
	background: var(--color-section);
	display: grid;
	place-items: center;
}

.about-mv__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.about-mv__ph {
	font-family: var(--font-heading);
	font-size: 20px;
	letter-spacing: 0.1em;
	color: var(--color-muted);
}

.about-mv__eyebrow {
	display: block;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.28em;
	color: #2f5da8;
	text-transform: uppercase;
	margin-bottom: 14px;
}

.about-mv__title {
	font-family: var(--font-heading);
	font-size: clamp(26px, 3.4vw, 34px);
	font-weight: 500;
	color: var(--color-heading);
	margin: 34px 0 16px;
}

.about-mv__title:first-of-type {
	margin-top: 0;
}

.about-mv__body {
	font-size: 15px;
	line-height: 1.8;
	color: #111;
}

.about-mv__body p {
	margin-bottom: 14px;
}

.about-mv__body ul {
	list-style: none;
	margin: 0 0 14px;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.about-mv__body li {
	position: relative;
	padding-left: 26px;
}

.about-mv__body li::before {
	content: "";
	position: absolute;
	left: 4px;
	top: 9px;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--color-gold);
}

/* ---------- İSTATİSTİKLER ---------- */
.about-stats {
	border-top: 1px solid var(--color-border);
	border-bottom: 1px solid var(--color-border);
	margin-block: 24px 64px;
	padding-block: 48px;
}

.about-stats__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
	text-align: center;
}

.about-stat {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.about-stat__value {
	font-family: var(--font-heading);
	font-size: clamp(34px, 4.5vw, 48px);
	font-weight: 500;
	color: var(--color-navy);
	line-height: 1;
}

.about-stat__label {
	font-size: 14px;
	color: var(--color-muted);
}

/* ---------- ÖDÜLLER ---------- */
.about-awards {
	background: var(--color-navy);
	color: #fff;
	border-radius: 22px;
	padding: 64px 40px;
	text-align: center;
	margin-bottom: 64px;
}

.about-awards__eyebrow {
	display: inline-block;
	font-size: 11.5px;
	font-weight: 600;
	letter-spacing: 0.3em;
	color: #fff;
	text-transform: uppercase;
	margin-bottom: 14px;
}

.about-awards__title {
	font-family: var(--font-heading);
	font-size: clamp(26px, 3.5vw, 36px);
	font-weight: 500;
	margin-bottom: 40px;
}

.about-awards__grid {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	gap: 18px;
}

.about-award {
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 14px;
	padding: 26px 14px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 14px;
	transition: background 0.2s ease, border-color 0.2s ease;
}

.about-award:hover {
	background: rgba(255, 255, 255, 0.07);
	border-color: rgba(255, 255, 255, 0.22);
}

.about-award__icon {
	width: 54px;
	height: 54px;
	border-radius: 50%;
	display: grid;
	place-items: center;
	background: rgba(255, 255, 255, 0.08);
	color: #fff;
	overflow: hidden;
}

.about-award__icon--img {
	background: #fff;
}

.about-award__icon img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	padding: 8px;
	display: block;
}

.about-award__icon svg {
	width: 28px;
	height: 28px;
}

.about-award__name {
	font-size: 12.5px;
	line-height: 1.4;
	color: #fff;
}

/* ---------- CTA ---------- */
.about-cta {
	background: var(--color-navy);
	color: #fff;
	padding: 72px 0;
}

.about-cta__eyebrow {
	display: inline-block;
	font-size: 11.5px;
	font-weight: 600;
	letter-spacing: 0.3em;
	color: #fff;
	text-transform: uppercase;
	margin-bottom: 16px;
}

.about-cta__title {
	font-family: var(--font-heading);
	font-size: clamp(26px, 3.5vw, 36px);
	font-weight: 500;
	margin-bottom: 12px;
}

.about-cta__text {
	font-size: 15px;
	color: #fff;
	max-width: 520px;
	margin: 0 auto 28px;
	line-height: 1.6;
}

.about-cta__actions {
	display: flex;
	gap: 14px;
	justify-content: center;
	flex-wrap: wrap;
}

.about-cta__btn {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	font-size: 15px;
	font-weight: 600;
	padding: 13px 26px;
	border-radius: 10px;
	transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

.about-cta__btn--wa {
	background: #fff;
	color: var(--color-navy);
}

.about-cta__btn--wa:hover {
	background: #eef1f6;
	transform: translateY(-1px);
}

.about-cta__btn--phone {
	background: transparent;
	color: #fff;
	border: 1px solid rgba(255, 255, 255, 0.35);
}

.about-cta__btn--phone:hover {
	border-color: #fff;
	transform: translateY(-1px);
}

/* ---------- DUYARLI ---------- */
@media (max-width: 860px) {
	.about-mv {
		grid-template-columns: 1fr;
		gap: 28px;
	}

	.about-mv__media {
		position: static;
		max-width: 320px;
		margin-inline: auto;
	}

	.about-awards__grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

@media (max-width: 600px) {
	.about-stats__grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 32px 16px;
	}

	.about-awards {
		padding: 44px 20px;
	}

	.about-awards__grid {
		grid-template-columns: repeat(2, 1fr);
	}
}
