/* =============================================
   PARTNER PAGE – Premium Styles
   ============================================= */

/* --- Hero variant --- */

/* --- Two-column alternating sections --- */
.partner-alt-section {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 64px;
	align-items: center;
}

.partner-alt-reverse {
	direction: rtl;
}

.partner-alt-reverse>* {
	direction: ltr;
}

.partner-alt-copy {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.partner-alt-copy .h2 {
	font-size: 38px;
}

.partner-alt-text {
	margin: 0;
	font-size: 16px;
	line-height: 1.7;
	color: var(--ink);
	opacity: .88;
}

.partner-alt-btn {
	align-self: flex-start;
	margin-top: 8px;
}

/* --- Checklist --- */
.partner-checklist {
	list-style: none;
	margin: 8px 0 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.partner-checklist li {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 16px;
	font-weight: 600;
	color: var(--ink);
}

.partner-checklist li svg {
	width: 20px;
	height: 20px;
	flex: none;
	color: var(--magenta);
}

/* --- Media / Image column --- */
.partner-alt-media {
	position: relative;
}

.partner-alt-media img {
	display: block;
	width: 100%;
	height: auto;
	object-fit: cover;
	border-radius: 12px;
	box-shadow: 0 20px 25px -5px rgba(0, 0, 0, .1), 0 8px 10px -6px rgba(0, 0, 0, .1);
}

.partner-img-placeholder {
	min-height: 300px;
	background: linear-gradient(155deg, #f3eef1 0%, #eee7ea 100%);
	box-shadow: inset 0 0 0 1px var(--pinkline);
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--pink);
}

.partner-img-placeholder svg {
	width: 48px;
	height: 48px;
}

/* --- Stat badge on image --- */
.partner-stat-badge {
	position: absolute;
	left: -24px;
	bottom: -32px;
	background: var(--magenta);
	color: #fff;
	border-radius: 16px;
	padding: 28px 32px;
	text-align: left;
	white-space: nowrap;
	box-shadow: 0 16px 30px rgba(229, 6, 135, .35);
}

.partner-stat-badge .num {
	font-size: 44px;
	font-weight: 700;
	line-height: 1;
}

.partner-stat-badge .lbl {
	font-size: 14px;
	font-weight: 600;
	letter-spacing: .03em;
	margin-top: 8px;
}

/* --- Media logos strip --- */
.partner-media-section .partner-logos-strip {
	margin-top: 40px;
	display: flex;
	justify-content: center;
	gap: 40px;
	align-items: center;
	flex-wrap: wrap;
	opacity: .5;
}

.partner-logo-item {
	font-size: 24px;
	font-weight: 700;
	color: var(--maroon);
}

/* --- Benefits section (dark) --- */
.partner-benefits-section {
	background: var(--ink);
	position: relative;
	overflow: hidden;
}

.partner-benefits-section::before {
	content: '';
	position: absolute;
	top: -50%;
	right: -20%;
	width: 600px;
	height: 600px;
	background: radial-gradient(circle, rgba(229, 6, 135, .08) 0%, transparent 70%);
	pointer-events: none;
}

.partner-benefits-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}

.partner-benefit-card {
	background: rgba(37, 35, 35, .6);
	border-radius: 20px;
	padding: 32px 28px;
	box-shadow: inset 0 0 0 1px #1b1a1a;
	backdrop-filter: blur(19px);
	transition: background .25s cubic-bezier(0.16, 1, 0.3, 1), transform .25s cubic-bezier(0.16, 1, 0.3, 1);
}

.partner-benefit-card:hover {
	background: #353435;
}

.partner-benefit-icon {
	width: 48px;
	height: 48px;
	border-radius: 12px;
	background: rgba(229, 6, 135, 0.1);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 20px;
	transition: background .25s ease;
}

.partner-benefit-card:hover .partner-benefit-icon {
	background: rgba(229, 6, 135, 0.2);
}

.partner-benefit-icon svg {
	width: 24px;
	height: 24px;
	color: var(--pink);
}

.partner-benefit-card h3 {
	margin: 0 0 10px;
	font-size: 18px;
	font-weight: 700;
	color: #fff;
}

.partner-benefit-card p {
	margin: 0;
	font-size: 14.5px;
	line-height: 1.65;
	color: rgba(255, 255, 255, .75);
}

/* --- Proof stats row --- */

.partner-proof-stat .num {
	font-size: 28px;
	font-weight: 800;
	color: var(--magenta);
	line-height: 1;
}

.partner-proof-stat .lbl {
	font-size: 13px;
	font-weight: 600;
	color: var(--ink);
	opacity: .7;
	margin-top: 4px;
}

/* --- CTA Section --- */
.partner-cta-section {
	padding: 0;
}

.partner-cta-banner {
	background: var(--maroon);
	border-radius: 20px;
	padding: 56px 48px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 32px;
	position: relative;
	overflow: hidden;
}

.partner-cta-banner .tex {
	position: absolute;
	inset: 0;
	background:
		radial-gradient(ellipse at 20% 50%, rgba(229, 6, 135, .2) 0%, transparent 50%),
		radial-gradient(ellipse at 80% 50%, rgba(255, 255, 255, .05) 0%, transparent 50%);
	pointer-events: none;
}

.partner-cta-banner .ctxt {
	position: relative;
	z-index: 1;
}

.partner-cta-banner .ctxt h3 {
	margin: 0 0 12px;
	font-size: 28px;
	font-weight: 800;
	color: #fff;
}

.partner-cta-banner .ctxt p {
	margin: 0;
	font-size: 16px;
	color: rgba(255, 255, 255, .8);
	max-width: 550px;
	line-height: 1.6;
}

.partner-cta-banner .cta-actions {
	position: relative;
	z-index: 1;
	display: flex;
	gap: 12px;
	flex-shrink: 0;
}

/* --- Reveal animations --- */
.reveal-item {
	opacity: 1;
	transform: translateY(32px);
	transition: opacity .6s cubic-bezier(0.16, 1, 0.3, 1), transform .6s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-item.revealed {
	opacity: 1;
	transform: translateY(0);
}

/* stagger delay set via inline style */

/* --- Responsive --- */
@media (max-width: 1024px) {
	.partner-alt-section {
		grid-template-columns: 1fr;
		gap: 48px;
	}

	.partner-alt-reverse {
		direction: ltr;
	}

	.partner-alt-media img {
		aspect-ratio: 4 / 3;
	}

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

	.partner-cta-banner {
		flex-direction: column;
		text-align: center;
		padding: 40px 32px;
	}

	.partner-cta-banner .ctxt p {
		margin: 0 auto;
	}

	.partner-cta-banner .cta-actions {
		justify-content: center;
	}
}

@media (max-width: 640px) {

	.partner-alt-copy .h2 {
		font-size: 28px;
	}

	.partner-benefits-grid {
		grid-template-columns: 1fr;
	}

	.partner-proof-stats {
		flex-direction: column;
		gap: 16px;
	}

	.partner-stat-badge {
		left: 12px;
		bottom: -20px;
		padding: 16px 20px;
	}

	.partner-stat-badge .num {
		font-size: 32px;
	}

	.partner-logo-item {
		font-size: 18px;
	}

	.partner-media-section .partner-logos-strip {
		gap: 24px;
	}

	.partner-alt-text {
		font-size: 15px;
	}
}