/* ── Founder Section ──────────────────────────────────────── */

.founder-inner {
	display: grid;
	grid-template-columns: 1fr 1.4fr;
	gap: 64px;
	align-items: center;
}

/* ── Portrait ────────────────────────────────────────────── */

.founder-portrait {
	position: relative;
	width: calc(100% - 20px);
}

.founder-portrait img {
	width: 100%;
	aspect-ratio: 3 / 4;
	object-fit: cover;
	border-radius: 12px;
	display: block;
	object-position: 30% 100%;
}

.founder-badge {
	position: absolute;
	bottom: -20px;
	right: -20px;
	background: var(--ink, #0C1F3F);
	color: #fff;
	border-radius: 12px;
	padding: 16px 22px;
	text-align: center;
	line-height: 1.2;
	display: flex;
	flex-direction: column;
	gap: 2px;
}

.founder-badge-number {
	font-size: 28px;
	font-weight: 800;
	letter-spacing: -0.5px;
}

.founder-badge-label {
	font-size: 12px;
	color: rgba(255, 255, 255, 0.6);
}

/* ── Quote Content ───────────────────────────────────────── */

.founder-quote {
	margin: 0 0 32px;
	padding: 0;
	border: 0;
	font-family: 'DM Sans', sans-serif;
}

.founder-quote p {
	font-size: 24px;
	font-weight: 700;
	color: var(--ink, #0C1F3F);
	line-height: 1.5;
	margin: 0 0 20px;
}

.founder-quote p:last-child {
	margin-bottom: 0;
}

.founder-author {
	margin-bottom: 2px;
	font-size: 14px;
	color: var(--ink, #0C1F3F);
}

.founder-author-title {
	font-weight: 400;
	color: var(--gray-500, #6b7280);
}

.founder-rating {
	font-size: 13px;
	color: var(--gray-500, #6b7280);
	margin-bottom: 24px;
}

/* ── Trust Badges ────────────────────────────────────────── */

.founder-trust {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

.founder-trust-badge {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	padding: 10px 16px;
	background: var(--gray-100);
	border: none;
	border-radius: 10px;
	font-size: 13px;
	font-weight: 600;
	color: var(--ink, #0C1F3F);
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.founder-trust-badge:hover {
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.founder-trust-icon {
	width: 20px;
	height: 20px;
	flex-shrink: 0;
	display: inline-flex;
}

.founder-trust-icon svg path {
	stroke: var(--green);
}

/* ── Responsive ──────────────────────────────────────────── */

@media (max-width: 768px) {
	.founder-inner {
		grid-template-columns: 1fr;
		gap: 32px;
	}

	.founder-portrait {
		max-width: 450px;
		width: calc(100% - 8px);
	}

	.founder-quote p {
		font-size: 17px;
	}

	.founder-badge {
		bottom: -16px;
		right: -8px;
	}
}
