.about {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	background: linear-gradient(180deg, #faebd7 0%, #f5f1e9 12%, #eef3ff 38%, #e4edff 68%, #d9e8ff 100%);
	overflow: hidden;
	padding: 5rem 1.5rem;
}

.about h2 {
  font-size: 4rem;
  font-weight: 400;
}

.about::after {
	content: "";
	position: absolute;
	inset: 12% 10%;
	border-radius: 40px;
	background: linear-gradient(135deg, rgba(15, 23, 42, 0.08), rgba(37, 99, 235, 0.08));
	filter: blur(40px);
	opacity: 0.6;
	z-index: 0;
}

.about-shell {
	position: relative;
	z-index: 1;
	width: min(1100px, 100%);
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.about-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	font-weight: 700;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	color: #0f172a;
	background: rgba(15, 23, 42, 0.08);
	padding: 0.4rem 0.75rem;
	border-radius: 999px;
	width: fit-content;
}

.about-grid {
	display: grid;
	grid-template-columns: 1.1fr 0.9fr;
	gap: 2.5rem;
	align-items: stretch;
}

.about-copy h2 {
	font-size: clamp(2.4rem, 3vw, 3.2rem);
	line-height: 1.1;
	margin-bottom: 1rem;
	color: #0f172a;
}

.about-body {
	color: #24334f;
	line-height: 1.7;
	margin-bottom: 1.25rem;
	max-width: 620px;
}

.about-pills {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	margin-bottom: 1.5rem;
}

.pill {
	background: #0f172a;
	color: #f8fafc;
	padding: 0.45rem 0.9rem;
	border-radius: 999px;
	font-size: 0.95rem;
	letter-spacing: 0.01em;
}

.about-ctas {
	display: flex;
	gap: 0.75rem;
	flex-wrap: wrap;
	margin-bottom: 1.75rem;
}

.btn-primary,
.btn-ghost {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	padding: 0.9rem 1.4rem;
	border-radius: 999px;
	font-weight: 600;
	text-decoration: none;
	transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn-primary {
	background: #0f172ae8;
	color: #fff;
	box-shadow: 0 12px 30px rgba(37, 99, 235, 0.25);
}

.btn-primary:hover { transform: translateY(-1px); }
.btn-primary:active { transform: translateY(0); }

.btn-ghost {
	color: #0f172a;
	background: rgba(15, 23, 42, 0.06);
	border: 1px solid rgba(15, 23, 42, 0.12);
}

.btn-ghost:hover { background: rgba(15, 23, 42, 0.1); }

.about-stats {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
	gap: 1rem;
}

.stat {
	background: #ffffffcc;
	border: 1px solid rgba(15, 23, 42, 0.08);
	border-radius: 14px;
	padding: 1rem 1.1rem;
	box-shadow: 0 12px 30px rgba(15, 23, 42, 0.06);
}

.stat-value {
	font-size: 1.6rem;
	font-weight: 700;
	color: #0f172a;
}

.stat-label {
	color: #475569;
	line-height: 1.5;
	margin-top: 0.35rem;
}

.about-panel {
	background: linear-gradient(145deg, #6f87be, #4f5769);
	color: #e5edff;
	border-radius: 20px;
	padding: 1.75rem;
	box-shadow: 0 20px 45px rgba(15, 23, 42, 0.4);
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
	border: 1px solid rgba(96, 165, 250, 0.2);
}

.badge {
	display: inline-flex;
	align-items: center;
	padding: 0.35rem 0.75rem;
	border-radius: 999px;
	font-weight: 700;
	letter-spacing: 0.04em;
	font-size: 0.8rem;
}

.badge-contrast { background: #e63b1d; color: #0f172a; }

.panel-title {
	font-size: 1.6rem;
	font-weight: 700;
	margin-top: 0.4rem;
}

.panel-sub {
	color: #cbd5e1;
	line-height: 1.6;
	margin-top: 0.35rem;
}

.panel-steps {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.step {
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 0.85rem;
	align-items: start;
	padding: 0.85rem 0.9rem;
	border-radius: 12px;
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(255, 255, 255, 0.06);
}

.step-icon {
	width: 40px;
	height: 40px;
	border-radius: 12px;
	background: rgba(96, 165, 250, 0.18);
	color: #e5edff;
	font-weight: 700;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	letter-spacing: 0.03em;
}

.step-title {
	font-weight: 700;
	color: #e5edff;
	margin-bottom: 0.2rem;
}

.step-body {
	color: #cbd5e1;
	line-height: 1.6;
}

@media (max-width: 768px) {
	.about { padding: 3.5rem 1rem; }
	.about { background: linear-gradient(180deg, #faebd7 0%, #f5f1e9 12%, #eef3ff 38%, #e4edff 68%, #d9e8ff 100%); }
	.about h2 { font-size: clamp(1.8rem, 6vw, 2.4rem); }
	.about-grid { grid-template-columns: 1fr; gap: 2rem; }
	.about-panel { order: -1; }
}
