/* ==========================================================================
   Our Customers Page — Figma Node 435:505
   ========================================================================== */

/* ------ Hero ------ */
.customers-hero {
	position: relative;
	min-height: 420px;
	display: flex;
	align-items: center;
	overflow: hidden;
	padding: 128px 0 80px;
}

.customers-hero__bg {
	position: absolute;
	inset: 0;
	background-color: #003143;
	background-image: url('/wp-content/themes/cypro-theme/assets/images/hero-bg-pattern.png');
	background-size: cover;
	background-position: center;
}

.customers-hero__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(0,49,67,0.94) 0%, rgba(0,49,67,0.80) 50%, #fff 100%);
}

.customers-hero .container {
	position: relative;
	z-index: 1;
}

.customers-hero__content {
	text-align: center;
	max-width: 760px;
	margin: 0 auto;
	padding: 0 24px;
}

.customers-hero__eyebrow {
	font-family: var(--font-body);
	font-weight: 700;
	font-size: 13px;
	letter-spacing: 1.3px;
	color: var(--color-accent);
	text-transform: uppercase;
	margin-bottom: 16px;
}

.customers-hero__title {
	font-family: var(--font-heading);
	font-weight: 800;
	font-size: 56px;
	line-height: 1.1;
	color: #fff;
	margin-bottom: 16px;
}

.customers-hero__subtitle {
	font-family: var(--font-body);
	font-size: 18px;
	line-height: 1.8;
	color: rgba(255,255,255,0.5);
}

/* ------ Logos Bar ------ */
.customers-logos-bar {
	background: #fff;
	padding: 64px 0 32px;
}

.customers-logos-bar .container {
	display: flex;
	flex-direction: column;
	gap: 40px;
}

.customers-logos-bar__label {
	font-family: var(--font-body);
	font-weight: 600;
	font-size: 12px;
	letter-spacing: 1.2px;
	color: var(--color-neutral-dark);
	text-transform: uppercase;
	text-align: center;
}

.customers-logos-bar__logos {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	gap: 40px 60px;
}

.customers-logo-text {
	font-family: var(--font-body);
	font-weight: 800;
	font-size: 24px;
	color: var(--color-neutral-dark);
	opacity: 0.7;
	letter-spacing: 0.5px;
	transition: opacity 250ms ease;
}

.customers-logo-text:hover {
	opacity: 1;
}

/* ------ Testimonials ------ */
.customers-testimonials {
	background: var(--color-surface-2);
	padding: 96px 0;
}

.customers-testimonials__title {
	font-family: var(--font-heading);
	font-weight: 800;
	font-size: 40px;
	color: var(--color-primary);
	text-align: center;
	margin-bottom: 56px;
}

.customers-testimonials__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 32px;
}

/* Testimonial Card */
.testimonial-card {
	background: #fff;
	border-radius: 24px;
	padding: 32px;
	box-shadow: 0 2px 12px rgba(0,49,67,0.06);
	display: flex;
	flex-direction: column;
	gap: 0;
}

.testimonial-card__quote-icon {
	margin-bottom: 24px;
}

.testimonial-card__quote {
	font-family: var(--font-body);
	font-size: 15px;
	line-height: 1.7;
	color: #1a3a4a;
	margin-bottom: 0;
	flex: 1;
}

.testimonial-card__author-row {
	display: flex;
	align-items: center;
	gap: 16px;
	padding-top: 16px;
	margin-top: 16px;
	border-top: 1px solid var(--color-surface-medium-1);
}

.testimonial-card__avatar {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	object-fit: cover;
	flex-shrink: 0;
}

.testimonial-card__avatar-placeholder {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background: var(--color-surface-4);
	flex-shrink: 0;
}

.testimonial-card__author-name {
	font-family: var(--font-body);
	font-weight: 600;
	font-size: 15px;
	color: var(--color-primary);
	margin-bottom: 2px;
}

.testimonial-card__author-title {
	font-family: var(--font-body);
	font-size: 13px;
	color: var(--color-primary-light-3);
}

.testimonial-card__stats {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 12px;
	margin-top: 16px;
}

.testimonial-card__stat {
	background: var(--color-surface-4);
	border-radius: 14px;
	padding: 12px;
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.testimonial-card__stat-value {
	font-family: var(--font-body);
	font-weight: 800;
	font-size: 20px;
	line-height: 1;
	color: var(--color-primary);
}

.testimonial-card__stat-label {
	font-family: var(--font-body);
	font-size: 11px;
	line-height: 1.4;
	color: var(--color-primary-light-3);
}

/* ------ CTA Section ------ */
.customers-cta {
	background: #fff;
	padding: 80px 0;
	text-align: center;
}

.customers-cta__title {
	font-family: var(--font-heading);
	font-weight: 800;
	font-size: 40px;
	color: var(--color-primary);
	margin-bottom: 16px;
}

.customers-cta__subtitle {
	font-family: var(--font-body);
	font-size: 17px;
	color: var(--color-primary-light-3);
	margin-bottom: 40px;
}

/* ------ Responsive ------ */
@media (max-width: 1023px) {
	.customers-testimonials__grid {
		grid-template-columns: repeat(2, 1fr);
	}
	.customers-hero__title {
		font-size: 42px;
	}
}

@media (max-width: 767px) {
	.customers-testimonials__grid {
		grid-template-columns: 1fr;
	}
	.customers-hero__title {
		font-size: 36px;
	}
	.customers-testimonials__title,
	.customers-cta__title {
		font-size: 30px;
	}
	.customers-logos-bar__logos {
		gap: 24px 32px;
	}
	.customers-logo-text {
		font-size: 18px;
	}
}
