/* ==========================================================================
   HAKKIMDA SAYFASI
   Tema paletini (main.css) kullanir; portfolio.css / services.css ile ayni
   token isimlendirmesini surdurur.
   ========================================================================== */

:root {
	--ab-accent: #1851f1;
	--ab-ink: #222;
	--ab-muted: rgba(34, 34, 34, .6);
	--ab-cream: #f9f5ea;
	--ab-line: rgba(34, 34, 34, .1);
}

/* --- Giris paragrafi --------------------------------------------------- */

.ab-lead {
	font-size: calc(16px + .45vw);
	line-height: 1.6;
	font-weight: 300;
	margin: 0 0 .7em;
}

.ab-lead strong {
	font-weight: 600;
}

.ab-sub {
	font-size: calc(14px + .15vw);
	line-height: 1.7;
	opacity: .82;
	margin: 0;
}

/* --- Rakamlar ---------------------------------------------------------- */

.ab-stats {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
	gap: 1px;
	margin: calc(20px + 1.5vw) 0;
	padding: 0;
	list-style: none;
	background: var(--ab-line);
	border: 0;
}

.ab-stat {
	background: var(--ab-cream);
	padding: 24px 18px;
	text-align: center;
}

.ab-stat-num {
	display: block;
	font-family: 'Anton', 'Jost*', sans-serif;
	font-size: calc(28px + 1.2vw);
	line-height: 1;
	color: var(--ab-accent);
	letter-spacing: .01em;
}

.ab-stat-label {
	display: block;
	margin-top: 8px;
	font-size: 13px;
	letter-spacing: .06em;
	text-transform: uppercase;
	color: var(--ab-muted);
}

/* --- Sektor etiketleri ------------------------------------------------- */

.ab-sectors {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 8px;
	margin: 0 0 calc(20px + 1.5vw);
	padding: 0;
	list-style: none;
}

.ab-sectors li {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 13.5px;
	font-weight: 500;
	color: var(--ab-ink);
	background: var(--ab-cream);
	border: 0;
	border-radius: 999px;
	padding: 9px 18px;
}

.ab-sectors i {
	font-size: 16px;
	color: var(--ab-accent);
	line-height: 1;
}

.ab-sectors i:before {
	margin: 0;
	width: auto;
}

/* --- Calisma adimlari -------------------------------------------------- */

.ab-steps {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: calc(14px + 1vw);
	margin: 0;
	padding: 0;
	list-style: none;
	counter-reset: ab-step;
}

.ab-step {
	position: relative;
	display: flex;
	flex-direction: column;
	gap: 8px;
	padding: 26px 24px 24px;
	background: var(--ab-cream);
	border: 0;
	counter-increment: ab-step;
}

.ab-step:before {
	content: counter(ab-step, decimal-leading-zero);
	font-family: 'Anton', 'Jost*', sans-serif;
	font-size: 26px;
	line-height: 1;
	color: var(--ab-accent);
	opacity: .32;
}

.ab-step-icon {
	position: absolute;
	top: 20px;
	right: 20px;
	width: 34px;
	height: 34px;
	opacity: .28;
}

.ab-step-title {
	font-family: 'Jost*', sans-serif;
	font-size: 17px;
	font-weight: 600;
	line-height: 1.3;
	color: var(--ab-ink);
	margin: 0;
}

.ab-step-desc {
	font-size: 14px;
	line-height: 1.6;
	color: var(--ab-muted);
	margin: 0;
}

/* --- Kucuk ekran ------------------------------------------------------- */

@media (max-width: 480px) {
	.ab-steps {
		grid-template-columns: 1fr;
	}

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