/* =============================================
   HOMEPAGE — B1 Consulting SAS
   Fonts: Roboto Condensed (headlines) / Inter (body)
   Colors: #0A2342 / #1F77B4 / #FFBF00 / #FFFFFF
   ============================================= */


/* =============================================
   HOMEPAGE COLOR TOKENS
   ============================================= */

:root {
	--hp-primary:   #0A2342;
	--hp-secondary: #1F77B4;
	--hp-accent:    #FFBF00;
	--hp-light:     #FFFFFF;
	--hp-gray:      #F4F6F9;
	--hp-text:      #1a1a1a;
	--hp-text-muted:#4B5563;
	--hp-border:    #E5E7EB;

	--hp-section-pad: 5rem 0;
}


/* =============================================
   SECTION SHARED STYLES
   ============================================= */

.hp-section {
	padding: var(--hp-section-pad);
}

.hp-section-header {
	margin-bottom: 3.5rem;
}

.hp-section-header--center {
	text-align: center;
}

.hp-section-label {
	display: inline-block;
	font-family: 'Inter', system-ui, sans-serif;
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--hp-secondary);
	margin: 0 0 0.625rem;
}

.hp-section-label--light {
	color: var(--hp-accent);
}

.hp-section-headline {
	font-family: 'Roboto Condensed', system-ui, sans-serif;
	font-size: clamp(1.75rem, 3.5vw, 2.5rem);
	font-weight: 700;
	color: var(--hp-primary);
	margin: 0 0 1rem;
	line-height: 1.2;
}

.hp-section-sub {
	font-family: 'Inter', system-ui, sans-serif;
	font-size: 1.0625rem;
	color: var(--hp-text-muted);
	margin: 0;
	max-width: 640px;
}

.hp-section-header--center .hp-section-sub {
	margin: 0 auto;
}

/* Accent decorative underline */
.hp-accent-line {
	width: 56px;
	height: 4px;
	background-color: var(--hp-accent);
	border-radius: 2px;
	margin: 1rem auto 0;
}


/* =============================================
   BUTTONS
   ============================================= */

.btn-hp {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	font-family: 'Inter', system-ui, sans-serif;
	font-weight: 700;
	font-size: 0.9375rem;
	border-radius: 6px;
	text-decoration: none;
	cursor: pointer;
	transition: background-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
	border: 2px solid transparent;
	white-space: nowrap;
	padding: 0.75rem 1.5rem;
}

.btn-hp--primary {
	background-color: var(--hp-accent);
	color: var(--hp-primary);
	border-color: var(--hp-accent);
}

.btn-hp--primary:hover {
	background-color: #e6ab00;
	color: var(--hp-primary);
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(255, 191, 0, 0.35);
}

.btn-hp--primary:active {
	transform: translateY(0);
}

.btn-hp--ghost {
	background-color: transparent;
	color: var(--hp-secondary);
	border-color: var(--hp-secondary);
}

.btn-hp--ghost:hover {
	background-color: var(--hp-secondary);
	color: var(--hp-light);
}

.btn-hp--ghost-light {
	background-color: transparent;
	color: rgba(255,255,255,0.75);
	border-color: rgba(255,255,255,0.3);
}

.btn-hp--ghost-light:hover {
	background-color: rgba(255,255,255,0.1);
	color: #fff;
}

.btn-hp--full {
	width: 100%;
	justify-content: center;
}

.btn-hp--grow {
	flex: 1;
	justify-content: center;
}


/* =============================================
   STAR RATING
   ============================================= */

.hp-star-rating {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	flex-wrap: wrap;
}

.hp-stars {
	color: var(--hp-accent);
	font-size: 1.125rem;
	letter-spacing: 1px;
}

.hp-rating-score {
	font-family: 'Roboto Condensed', system-ui, sans-serif;
	font-size: 1.125rem;
	font-weight: 700;
	color: var(--hp-primary);
}

.hp-rating-count {
	font-family: 'Inter', system-ui, sans-serif;
	font-size: 0.8125rem;
	color: var(--hp-text-muted);
}

.hp-star-rating--dark .hp-rating-score {
	color: var(--hp-primary);
}

.hp-star-rating--light .hp-rating-score,
.hp-star-rating--light .hp-rating-count {
	color: rgba(255,255,255,0.85);
}


/* =============================================
   SOCIAL ICONS (homepage)
   ============================================= */

.hp-social-icons {
	display: flex;
	gap: 0.625rem;
}

.hp-social-icons .social-icon {
	width: 38px;
	height: 38px;
	border-radius: 6px;
	border-color: var(--hp-border);
	color: var(--hp-text-muted);
}

.hp-social-icons .social-icon:hover {
	background-color: var(--hp-secondary);
	border-color: var(--hp-secondary);
	color: #fff;
}

.hp-social-icons--light .social-icon {
	border-color: rgba(255,255,255,0.2);
	color: rgba(255,255,255,0.65);
}

.hp-social-icons--light .social-icon:hover {
	background-color: rgba(255,255,255,0.12);
	border-color: rgba(255,255,255,0.4);
	color: #fff;
}

.hp-social-row {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 1.5rem;
	flex-wrap: wrap;
	padding-top: 2.5rem;
	border-top: 1px solid var(--hp-border);
	margin-top: 3rem;
}


/* =============================================
   ALTERNATING IMAGE / TEXT ROWS
   ============================================= */

.hp-alt-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: center;
	margin-bottom: 5rem;
}

.hp-alt-row:last-of-type {
	margin-bottom: 0;
}

.hp-alt-row--reverse {
	direction: rtl;
}

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

.hp-alt-row__media img {
	width: 100%;
	height: auto;
	border-radius: 12px;
	object-fit: cover;
	box-shadow: 0 8px 32px rgba(10, 35, 66, 0.12);
}

.hp-alt-row__content {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.hp-alt-row__title {
	font-family: 'Roboto Condensed', system-ui, sans-serif;
	font-size: clamp(1.4rem, 2.5vw, 1.875rem);
	font-weight: 700;
	color: var(--hp-primary);
	margin: 0;
	line-height: 1.25;
}

.hp-alt-row__content p {
	font-family: 'Inter', system-ui, sans-serif;
	font-size: 1rem;
	color: var(--hp-text-muted);
	line-height: 1.7;
	margin: 0;
}


/* =============================================
   1. HERO SECTION
   ============================================= */

.hp-hero {
	background-color: var(--hp-light);
	padding: 4rem 0;
}

.hp-hero__grid {
	display: grid;
	grid-template-columns: 60fr 40fr;
	gap: 3.5rem;
	align-items: start;
}

/* Hero Media */
.hp-hero__media {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.hp-hero__main-wrap {
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 12px 40px rgba(10, 35, 66, 0.15);
}

.hp-hero__main-img {
	width: 100%;
	height: auto;
	display: block;
	transition: opacity 0.3s ease;
}

.hp-hero__thumbs {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 0.625rem;
}

.hp-thumb {
	padding: 0;
	border: 2px solid transparent;
	border-radius: 8px;
	overflow: hidden;
	cursor: pointer;
	background: none;
	transition: border-color 0.2s ease, transform 0.2s ease;
}

.hp-thumb img {
	width: 100%;
	height: auto;
	display: block;
	transition: transform 0.3s ease;
}

.hp-thumb:hover img {
	transform: scale(1.04);
}

.hp-thumb:hover,
.hp-thumb--active {
	border-color: var(--hp-accent);
}

/* Hero Content */
.hp-hero__content {
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
	padding-top: 0.5rem;
}

.hp-hero__headline {
	font-family: 'Roboto Condensed', system-ui, sans-serif;
	font-size: clamp(1.625rem, 2.75vw, 2.375rem);
	font-weight: 700;
	color: var(--hp-primary);
	line-height: 1.18;
	margin: 0;
}

.hp-hero__sub {
	font-family: 'Inter', system-ui, sans-serif;
	font-size: 1rem;
	color: var(--hp-text-muted);
	line-height: 1.7;
	margin: 0;
}

/* Price block */
.hp-hero__price-block {
	background-color: #EBF5FF;
	border-left: 3px solid var(--hp-secondary);
	border-radius: 6px;
	padding: 1rem 1.25rem;
}

.hp-price-badge {
	display: flex;
	align-items: baseline;
	gap: 0.625rem;
	flex-wrap: wrap;
	margin-bottom: 0.25rem;
}

.hp-price-label {
	font-family: 'Inter', system-ui, sans-serif;
	font-size: 0.9375rem;
	color: var(--hp-primary);
	font-weight: 500;
}

.hp-price-value {
	font-family: 'Roboto Condensed', system-ui, sans-serif;
	font-size: 1.375rem;
	font-weight: 700;
	color: var(--hp-secondary);
}

.hp-price-reassurance {
	font-family: 'Inter', system-ui, sans-serif;
	font-size: 0.8125rem;
	color: var(--hp-text-muted);
	margin: 0;
}

/* CTA row */
.hp-hero__ctas {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.hp-hero__ctas .btn-hp--ghost {
	align-self: flex-start;
	padding-left: 0;
	border-color: transparent;
	text-decoration: underline;
	text-decoration-color: var(--hp-secondary);
	text-underline-offset: 3px;
}

.hp-hero__ctas .btn-hp--ghost:hover {
	background-color: transparent;
	color: var(--hp-primary);
	text-decoration-color: var(--hp-primary);
}

/* Trust badges */
.hp-trust-badges {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
}

.hp-badge {
	display: inline-flex;
	align-items: center;
	gap: 0.375rem;
	font-family: 'Inter', system-ui, sans-serif;
	font-size: 0.8125rem;
	font-weight: 600;
	color: var(--hp-primary);
	background-color: rgba(255,191,0,0.12);
	border: 1px solid rgba(255,191,0,0.3);
	border-radius: 4px;
	padding: 0.3125rem 0.625rem;
}

.hp-badge svg {
	color: var(--hp-accent);
	flex-shrink: 0;
}

.hp-hero__copy {
	font-family: 'Inter', system-ui, sans-serif;
	font-size: 0.9rem;
	color: var(--hp-text-muted);
	line-height: 1.7;
	margin: 0;
	border-top: 1px solid var(--hp-border);
	padding-top: 1.25rem;
}


/* =============================================
   1. HERO — VIDEO BACKGROUND
   ============================================= */

.hp-hero-video {
	position: relative;
	min-height: 88vh;
	display: flex;
	align-items: center;
	overflow: hidden;
}

/* Video / fallback image */
.hp-hero-video__bg {
	position: absolute;
	inset: 0;
	z-index: 0;
	background: #0A2342; /* fondo mientras el video carga — evita flash blanco */
}

.hp-hero-video__vid {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.hp-hero-video__vid--img {
	display: block;
}

/* Dark gradient overlay */
.hp-hero-video__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(
		105deg,
		rgba(10, 35, 66, 0.88) 0%,
		rgba(10, 35, 66, 0.70) 55%,
		rgba(10, 35, 66, 0.35) 100%
	);
}

/* Content sits above overlay */
.hp-hero-video__content {
	position: relative;
	z-index: 1;
	width: 100%;
	padding: 7rem 0 5rem;
}

/* Headline */
.hp-hero-video__headline {
	font-family: 'Roboto Condensed', system-ui, sans-serif;
	font-size: clamp(2.25rem, 5.5vw, 4.25rem);
	font-weight: 700;
	color: #ffffff;
	line-height: 1.1;
	margin: 0 0 1.25rem;
	max-width: 820px;
	letter-spacing: -0.01em;
}

/* Highlighted word */
.hp-hero-video__highlight {
	color: var(--hp-secondary);
}

/* Subheadline */
.hp-hero-video__sub {
	font-family: 'Inter', system-ui, sans-serif;
	font-size: clamp(1rem, 1.5vw, 1.1875rem);
	color: rgba(255, 255, 255, 0.82);
	line-height: 1.65;
	max-width: 600px;
	margin: 0 0 2.5rem;
}

/* CTA buttons row */
.hp-hero-video__ctas {
	display: flex;
	gap: 1rem;
	flex-wrap: wrap;
}

.hp-hero-video__btn {
	display: inline-flex;
	align-items: center;
	gap: 0.625rem;
	padding: 0.875rem 1.625rem;
	font-family: 'Inter', system-ui, sans-serif;
	font-size: 1rem;
	font-weight: 700;
	border-radius: 8px;
	text-decoration: none;
	cursor: pointer;
	transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
	white-space: nowrap;
}

/* Primary: dark navy, yellow icon accent */
.hp-hero-video__btn--primary {
	background-color: var(--hp-primary);
	color: #ffffff;
	border: 2px solid rgba(255, 255, 255, 0.2);
}

.hp-hero-video__btn--primary svg {
	color: var(--hp-accent);
}

.hp-hero-video__btn--primary:hover {
	background-color: #0d2d54;
	color: #fff;
	transform: translateY(-2px);
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

/* Secondary: white background, dark text */
.hp-hero-video__btn--secondary {
	background-color: #ffffff;
	color: var(--hp-primary);
	border: 2px solid #ffffff;
}

.hp-hero-video__btn--secondary svg {
	color: var(--hp-secondary);
}

.hp-hero-video__btn--secondary:hover {
	background-color: #f0f4ff;
	color: var(--hp-primary);
	transform: translateY(-2px);
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

/* Mobile */
@media (max-width: 768px) {
	.hp-hero-video {
		min-height: 75vh;
	}

	.hp-hero-video__content {
		padding: 5rem 0 4rem;
	}

	.hp-hero-video__ctas {
		flex-direction: column;
		align-items: flex-start;
	}

	.hp-hero-video__btn {
		width: 100%;
		justify-content: center;
	}
}


/* =============================================
   2. TRANSFORMATION SECTION
   ============================================= */

.hp-transform {
	background-color: var(--hp-primary);
}

.hp-transform .hp-section-headline {
	color: var(--hp-light);
}

.hp-transform .hp-section-label {
	color: var(--hp-accent);
}

.hp-transform__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2.5rem;
	margin-top: 3.5rem;
}

.hp-step {
	background-color: rgba(255,255,255,0.05);
	border: 1px solid rgba(255,255,255,0.1);
	border-radius: 12px;
	padding: 2.25rem 1.75rem;
	position: relative;
	transition: background-color 0.2s ease, transform 0.2s ease;
}

.hp-step:hover {
	background-color: rgba(255,255,255,0.09);
	transform: translateY(-4px);
}

.hp-step__icon-wrap {
	display: flex;
	align-items: center;
	gap: 1rem;
	margin-bottom: 1.25rem;
	color: var(--hp-accent);
}

.hp-step__number {
	font-family: 'Roboto Condensed', system-ui, sans-serif;
	font-size: 2.5rem;
	font-weight: 700;
	color: rgba(255,191,0,0.2);
	line-height: 1;
	margin-left: auto;
}

.hp-step__title {
	font-family: 'Roboto Condensed', system-ui, sans-serif;
	font-size: 1.3125rem;
	font-weight: 700;
	color: var(--hp-light);
	margin: 0 0 0.875rem;
	line-height: 1.25;
}

.hp-step__desc {
	font-family: 'Inter', system-ui, sans-serif;
	font-size: 0.9375rem;
	color: rgba(255,255,255,0.7);
	line-height: 1.7;
	margin: 0;
}


/* =============================================
   3. BENEFITS SECTION
   ============================================= */

.hp-benefits {
	background-color: var(--hp-gray);
}

.hp-benefits .hp-alt-row {
	padding: 3rem 2.5rem;
	background-color: var(--hp-light);
	border-radius: 14px;
	box-shadow: 0 2px 12px rgba(10,35,66,0.06);
}


/* =============================================
   3. SERVICES SECTION — Cards
   ============================================= */

.hp-services {
	background-color: var(--hp-light);
	padding-bottom: 4rem;
}

.hp-services__headline {
	font-family: 'Roboto Condensed', system-ui, sans-serif;
	font-size: clamp(2rem, 4vw, 3rem);
	font-weight: 700;
	color: var(--hp-primary);
	margin: 0 0 1rem;
	line-height: 1.15;
}

.hp-services__sub {
	font-family: 'Inter', system-ui, sans-serif;
	font-size: 1rem;
	color: var(--hp-text-muted);
	line-height: 1.7;
	max-width: 860px;
	margin: 0 0 3.5rem;
}

/* 4-column grid — stretch makes all cards equal height */
.hp-services__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 2rem;
	align-items: stretch;
}

/* ── Single card — full height of grid cell ── */
.hp-svc-card {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-decoration: none;
	position: relative;
	padding-top: 52px;
	height: 100%;
	transition: transform 0.25s ease;
}

.hp-svc-card:hover {
	transform: translateY(-6px);
}

.hp-svc-card:hover .hp-svc-card__box {
	box-shadow: 0 12px 36px rgba(10, 35, 66, 0.16);
}

/* Icon ring */
.hp-svc-card__icon-ring {
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 96px;
	height: 96px;
	border-radius: 50%;
	border: 3.5px solid var(--hp-accent);
	background-color: #fff;
	box-shadow: 0 4px 16px rgba(10, 35, 66, 0.1);
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 2;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.hp-svc-card:hover .hp-svc-card__icon-ring {
	border-color: var(--hp-secondary);
	box-shadow: 0 6px 20px rgba(31, 119, 180, 0.2);
}

.hp-svc-card__icon-ring img {
	width: 60px;
	height: 60px;
	object-fit: contain;
}

/* White card box — flex:1 fills the available card height */
.hp-svc-card__box {
	width: 100%;
	flex: 1;
	background-color: #fff;
	border-radius: 18px;
	box-shadow: 0 4px 20px rgba(10, 35, 66, 0.08);
	overflow: hidden;
	display: flex;
	flex-direction: column;
	transition: box-shadow 0.25s ease;
	border: 1px solid rgba(10, 35, 66, 0.06);
}

/* Description text — grows to push wave to bottom */
.hp-svc-card__desc {
	font-family: 'Inter', system-ui, sans-serif;
	font-size: 0.9rem;
	color: var(--hp-text-muted);
	line-height: 1.65;
	padding: 4rem 1.25rem 1.25rem;
	margin: 0;
	flex: 1;
}

/* CSS wave footer — brand colors, no image needed */
.hp-svc-card__wave {
	line-height: 0;
	margin-top: auto;
}

.hp-svc-card__wave svg {
	width: 100%;
	display: block;
	height: 90px;
}

/* Service name below the card */
.hp-svc-card__name {
	font-family: 'Roboto Condensed', system-ui, sans-serif;
	font-size: 1.0625rem;
	font-weight: 700;
	color: var(--hp-primary);
	text-align: center;
	margin: 1rem 0 0;
	line-height: 1.3;
	padding: 0 0.5rem;
	flex-shrink: 0;
}


/* =============================================
   4. FEATURES SECTION
   ============================================= */

.hp-features {
	background-color: var(--hp-light);
}

.hp-feature-tag {
	display: inline-block;
	font-family: 'Inter', system-ui, sans-serif;
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--hp-secondary);
	background-color: #EBF5FF;
	border-radius: 4px;
	padding: 0.25rem 0.625rem;
}


/* =============================================
   5. WHAT'S INCLUDED SECTION
   ============================================= */

.hp-included {
	background-color: var(--hp-gray);
}

.hp-included__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: center;
}

.hp-included__media img,
.hp-included__media svg {
	width: 100%;
	height: auto;
	border-radius: 12px;
	box-shadow: 0 12px 40px rgba(10,35,66,0.12);
	object-fit: cover;
}

/* Checklist */
.hp-checklist {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	list-style: none;
	margin: 1.5rem 0 0;
	padding: 0;
}

.hp-checklist__item {
	display: flex;
	align-items: flex-start;
	gap: 0.875rem;
	font-family: 'Inter', system-ui, sans-serif;
	font-size: 1rem;
	color: var(--hp-text);
	line-height: 1.55;
}

.hp-check-icon {
	flex-shrink: 0;
	width: 26px;
	height: 26px;
	border-radius: 50%;
	background-color: var(--hp-accent);
	color: var(--hp-primary);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 1px;
}


/* =============================================
   6. SOCIAL PROOF SECTION
   ============================================= */

.hp-proof {
	background-color: var(--hp-light);
	overflow: hidden;
}

/* Carousel base */
.hp-carousel {
	position: relative;
	display: flex;
	align-items: center;
	gap: 1rem;
}

.hp-carousel__viewport {
	flex: 1;
	overflow: hidden;
	border-radius: 12px;
}

.hp-carousel__track {
	display: flex;
	gap: 1.5rem;
	transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
	will-change: transform;
}

/* Arrow buttons */
.hp-carousel__arrow {
	flex-shrink: 0;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	border: 2px solid var(--hp-border);
	background-color: var(--hp-light);
	color: var(--hp-primary);
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.hp-carousel__arrow:hover {
	background-color: var(--hp-primary);
	border-color: var(--hp-primary);
	color: var(--hp-light);
}

/* Text testimonial cards */
.hp-testimonial-card {
	min-width: calc(100% - 0px);
	flex: 0 0 100%;
	background-color: var(--hp-gray);
	border-radius: 12px;
	padding: 2rem 2.25rem;
	border: 1px solid var(--hp-border);
}

.hp-testimonial__stars {
	color: var(--hp-accent);
	font-size: 1.125rem;
	letter-spacing: 1px;
	display: block;
	margin-bottom: 1rem;
}

.hp-testimonial__quote {
	font-family: 'Inter', system-ui, sans-serif;
	font-size: 1.0625rem;
	color: var(--hp-text);
	line-height: 1.75;
	font-style: italic;
	margin: 0 0 1.5rem;
}

.hp-testimonial__author {
	display: flex;
	align-items: center;
	gap: 0.875rem;
}

.hp-testimonial__avatar {
	width: 42px;
	height: 42px;
	border-radius: 50%;
	background-color: var(--hp-primary);
	color: var(--hp-light);
	font-family: 'Roboto Condensed', system-ui, sans-serif;
	font-weight: 700;
	font-size: 0.9375rem;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.hp-testimonial__author strong {
	display: block;
	font-family: 'Inter', system-ui, sans-serif;
	font-size: 0.9375rem;
	color: var(--hp-primary);
}

.hp-testimonial__author span {
	display: block;
	font-family: 'Inter', system-ui, sans-serif;
	font-size: 0.8125rem;
	color: var(--hp-text-muted);
	margin-top: 0.125rem;
}

/* Video cards */
.hp-video-card {
	min-width: calc(25% - 1.125rem);
	flex: 0 0 calc(25% - 1.125rem);
}

.hp-video-card__thumb {
	position: relative;
	border-radius: 10px;
	overflow: hidden;
	aspect-ratio: 16/9;
	cursor: pointer;
}

.hp-video-card__thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.3s ease;
}

.hp-video-card__thumb:hover img {
	transform: scale(1.04);
}

.hp-play-btn {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	background: none;
	border: none;
	cursor: pointer;
}

.hp-play-btn::before {
	content: '';
	position: absolute;
	inset: 0;
	background-color: rgba(10, 35, 66, 0.45);
	transition: background-color 0.2s ease;
}

.hp-video-card__thumb:hover .hp-play-btn::before {
	background-color: rgba(10, 35, 66, 0.6);
}

.hp-play-btn svg {
	position: relative;
	z-index: 1;
	width: 52px;
	height: 52px;
	color: var(--hp-light);
	filter: drop-shadow(0 2px 8px rgba(0,0,0,0.4));
}

.hp-video-card__caption {
	font-family: 'Inter', system-ui, sans-serif;
	font-size: 0.875rem;
	color: var(--hp-text-muted);
	margin: 0.625rem 0 0;
	text-align: center;
}


/* =============================================
   CLIENT LOGO BAND — infinite scroll
   ============================================= */

.hp-logos-band {
	padding: 2rem 0 1rem;
}

.hp-logos-band__label {
	display: block;
	text-align: center;
	margin: 0 0 1.5rem;
}

/* Clipping viewport */
.hp-logos-track-wrap {
	overflow: hidden;
	position: relative;
	/* Fade edges */
	mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
	-webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}

/* The scrolling track — 5 logos × 2 sets */
.hp-logos-track {
	display: flex;
	align-items: center;
	gap: 3.5rem;
	width: max-content;
	/* 5 logos × 1.5s each = 7.5s total */
	animation: logoScroll 7.5s linear infinite;
}

.hp-logos-track:hover {
	animation-play-state: paused;
}

@keyframes logoScroll {
	0%   { transform: translateX(0); }
	100% { transform: translateX(-50%); }
}

.hp-logo-item {
	display: flex;
	align-items: center;
	flex-shrink: 0;
}

.hp-logo-item img {
	height: 44px;
	width: auto;
	display: block;
	filter: grayscale(100%) opacity(0.55);
	transition: filter 0.25s ease;
}

.hp-logo-item--lg img {
	height: 88px;
}

.hp-logo-item:hover img {
	filter: grayscale(0%) opacity(1);
}


/* =============================================
   7. COMPARISON TABLE SECTION
   ============================================= */

.hp-comparison {
	background-color: var(--hp-gray);
}

.hp-comparison__grid {
	display: grid;
	grid-template-columns: 1fr 1.5fr;
	gap: 4rem;
	align-items: start;
}

.hp-comparison__media img {
	width: 100%;
	height: auto;
	border-radius: 12px;
	object-fit: cover;
	box-shadow: 0 8px 32px rgba(10,35,66,0.12);
}

.hp-comp-table {
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 2px 20px rgba(10,35,66,0.1);
	background-color: var(--hp-light);
}

.hp-comp-table__head {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr 1fr;
	background-color: var(--hp-primary);
	padding: 1rem 1.25rem;
	gap: 0.5rem;
}

.hp-comp-th {
	font-family: 'Roboto Condensed', system-ui, sans-serif;
	font-size: 0.8125rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	color: rgba(255,255,255,0.7);
	text-align: center;
}

.hp-comp-th--feature {
	text-align: left;
	color: rgba(255,255,255,0.9);
}

.hp-comp-th--us {
	color: var(--hp-accent);
}

.hp-comp-row {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr 1fr;
	padding: 1rem 1.25rem;
	gap: 0.5rem;
	border-bottom: 1px solid var(--hp-border);
	align-items: center;
	transition: background-color 0.15s ease;
}

.hp-comp-row:last-of-type {
	border-bottom: none;
}

.hp-comp-row:hover {
	background-color: #f8fbff;
}

.hp-comp-td {
	font-family: 'Inter', system-ui, sans-serif;
	font-size: 0.9rem;
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center;
}

.hp-comp-td--feature {
	text-align: left;
	justify-content: flex-start;
	color: var(--hp-text);
	font-size: 0.9rem;
	line-height: 1.45;
}

.hp-comp-td--us {
	background-color: rgba(255,191,0,0.1);
	border-radius: 4px;
}

.hp-icon-win {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 28px;
	border-radius: 50%;
	background-color: var(--hp-accent);
	color: var(--hp-primary);
	font-size: 0.9rem;
	font-weight: 800;
}

.hp-icon-lose {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 28px;
	border-radius: 50%;
	background-color: #FEE2E2;
	color: #DC2626;
	font-size: 0.9rem;
	font-weight: 800;
}

.hp-comp-table__cta {
	padding: 1.5rem 1.25rem;
	background-color: var(--hp-gray);
	display: flex;
	justify-content: center;
}


/* =============================================
   8. FAQ SECTION
   ============================================= */

.hp-faq {
	background-color: var(--hp-gray);
}

.hp-faq__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: start;
}

/* ── FAQ Tab navigation ── */
.hp-faq-tabs__nav {
	display: flex;
	gap: 0.5rem;
	margin-bottom: 2rem;
	flex-wrap: wrap;
}

.hp-faq-tab {
	padding: 0.625rem 1.375rem;
	font-family: 'Inter', system-ui, sans-serif;
	font-size: 0.9rem;
	font-weight: 600;
	color: var(--hp-text-muted);
	background: transparent;
	border: 2px solid var(--hp-border);
	border-radius: 9999px;
	cursor: pointer;
	transition: all 0.2s ease;
	white-space: nowrap;
}

.hp-faq-tab:hover {
	color: var(--hp-primary);
	border-color: var(--hp-primary);
}

.hp-faq-tab--active {
	color: var(--hp-light);
	background-color: var(--hp-primary);
	border-color: var(--hp-primary);
}

/* ── FAQ Tab panels ── */
.hp-faq-panel {
	display: none;
}

.hp-faq-panel--active {
	display: block;
}


/* Accordion */
.hp-accordion {
	display: flex;
	flex-direction: column;
	gap: 0;
}

.hp-accordion__item {
	border-bottom: 1px solid var(--hp-border);
}

.hp-accordion__trigger {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	padding: 1rem 0;
	background: none;
	border: none;
	cursor: pointer;
	text-align: left;
	font-family: 'Inter', system-ui, sans-serif;
	font-size: 0.9375rem;
	font-weight: 600;
	color: var(--hp-primary);
	transition: color 0.2s ease;
}

.hp-accordion__trigger:hover {
	color: var(--hp-secondary);
}

.hp-accordion__icon {
	flex-shrink: 0;
	color: var(--hp-secondary);
	transition: transform 0.3s ease;
}

.hp-accordion__trigger[aria-expanded="true"] .hp-accordion__icon {
	transform: rotate(180deg);
}

.hp-accordion__panel {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.35s ease, padding 0.3s ease;
	padding: 0;
}

.hp-accordion__panel.is-open {
	max-height: 600px;
	padding-bottom: 1.25rem;
}

.hp-accordion__panel p {
	font-family: 'Inter', system-ui, sans-serif;
	font-size: 0.9375rem;
	color: var(--hp-text-muted);
	line-height: 1.75;
	margin: 0;
}

/* FAQ media panels */
.hp-faq-media-panel {
	display: none;
}

.hp-faq-media-panel--active {
	display: block;
}

.hp-faq-media-panel__img {
	width: 100%;
	height: 460px;
	object-fit: cover;
	border-radius: 16px;
	box-shadow: 0 8px 32px rgba(10, 35, 66, 0.14);
	display: block;
}


/* =============================================
   9. FINAL CTA / FORM SECTION
   ============================================= */

.hp-final {
	background-color: var(--hp-primary);
	padding: 5rem 0;
}

.hp-final__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 5rem;
	align-items: center;
}

.hp-final__headline {
	font-family: 'Roboto Condensed', system-ui, sans-serif;
	font-size: clamp(1.75rem, 3vw, 2.625rem);
	font-weight: 700;
	color: var(--hp-light);
	line-height: 1.18;
	margin: 1rem 0;
}

.hp-final__sub {
	font-family: 'Inter', system-ui, sans-serif;
	font-size: 1.0625rem;
	color: rgba(255,255,255,0.75);
	line-height: 1.7;
	margin: 0 0 1.25rem;
}

.hp-final__sub--2 {
	margin-bottom: 2rem;
}

.hp-final__social {
	margin-top: 2rem;
	display: flex;
	align-items: center;
	gap: 1rem;
	flex-wrap: wrap;
}

.hp-final__social-label {
	font-family: 'Inter', system-ui, sans-serif;
	font-size: 0.875rem;
	color: rgba(255,255,255,0.55);
	margin: 0;
}


/* =============================================
   MULTI-STEP FORM
   ============================================= */

.hp-form-card {
	background-color: var(--hp-light);
	border-radius: 16px;
	padding: 2.5rem;
	box-shadow: 0 20px 60px rgba(0,0,0,0.25);
}

.hp-form-header {
	margin-bottom: 1.75rem;
}

.hp-form-header h3 {
	font-family: 'Roboto Condensed', system-ui, sans-serif;
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--hp-primary);
	margin: 0 0 0.375rem;
}

.hp-form-header p {
	font-family: 'Inter', system-ui, sans-serif;
	font-size: 0.9rem;
	color: var(--hp-text-muted);
	margin: 0;
}

/* Progress bar */
.hp-form-progress {
	height: 5px;
	background-color: var(--hp-border);
	border-radius: 3px;
	overflow: hidden;
	margin-bottom: 0.5rem;
}

.hp-form-progress__bar {
	height: 100%;
	background-color: var(--hp-accent);
	border-radius: 3px;
	transition: width 0.4s ease;
	width: 50%;
}

.hp-form-step-label {
	font-family: 'Inter', system-ui, sans-serif;
	font-size: 0.8125rem;
	color: var(--hp-text-muted);
	margin: 0 0 1.5rem;
}

/* Form fields */
.hp-form-field {
	margin-bottom: 1.25rem;
}

.hp-form-label {
	display: block;
	font-family: 'Inter', system-ui, sans-serif;
	font-size: 0.9rem;
	font-weight: 600;
	color: var(--hp-primary);
	margin-bottom: 0.5rem;
}

.hp-form-label span {
	color: var(--hp-secondary);
}

.hp-form-input {
	width: 100%;
	padding: 0.75rem 1rem;
	font-family: 'Inter', system-ui, sans-serif;
	font-size: 0.9375rem;
	color: var(--hp-text);
	background-color: #F9FAFB;
	border: 1.5px solid var(--hp-border);
	border-radius: 8px;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
	outline: none;
	appearance: none;
	-webkit-appearance: none;
}

.hp-form-input:focus {
	border-color: var(--hp-secondary);
	box-shadow: 0 0 0 3px rgba(31,119,180,0.12);
	background-color: #fff;
}

.hp-form-input.has-error {
	border-color: #DC2626;
}

.hp-form-textarea {
	resize: vertical;
	min-height: 90px;
}

.hp-form-select {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%234B5563' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 1rem center;
	padding-right: 2.5rem;
	cursor: pointer;
}

.hp-form-error {
	display: block;
	font-family: 'Inter', system-ui, sans-serif;
	font-size: 0.8125rem;
	color: #DC2626;
	margin-top: 0.375rem;
	min-height: 1.2em;
}

/* Form steps visibility */
.hp-form-step {
	display: block;
}

.hp-form-step--hidden {
	display: none;
}

/* Form actions row */
.hp-form-actions {
	display: flex;
	gap: 0.75rem;
	margin-top: 0.25rem;
}

.hp-form-privacy {
	display: flex;
	align-items: center;
	gap: 0.375rem;
	font-family: 'Inter', system-ui, sans-serif;
	font-size: 0.8rem;
	color: var(--hp-text-muted);
	margin: 1rem 0 0;
}

.hp-form-privacy svg {
	flex-shrink: 0;
	color: var(--hp-secondary);
}

/* Success state */
.hp-form-success {
	text-align: center;
	padding: 2rem 0;
}

.hp-form-success__icon {
	width: 64px;
	height: 64px;
	border-radius: 50%;
	background-color: var(--hp-accent);
	color: var(--hp-primary);
	font-size: 1.75rem;
	font-weight: 900;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 1.25rem;
}

.hp-form-success h4 {
	font-family: 'Roboto Condensed', system-ui, sans-serif;
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--hp-primary);
	margin: 0 0 0.75rem;
}

.hp-form-success p {
	font-family: 'Inter', system-ui, sans-serif;
	font-size: 0.9375rem;
	color: var(--hp-text-muted);
	line-height: 1.7;
	margin: 0;
}


/* =============================================
   RESPONSIVE — TABLET (≤ 1024px)
   ============================================= */

@media (max-width: 1024px) {

	.hp-hero__grid {
		grid-template-columns: 1fr;
	}

	.hp-hero__media {
		max-width: 720px;
	}

	.hp-transform__grid {
		grid-template-columns: 1fr;
	}

	.hp-comparison__grid {
		grid-template-columns: 1fr;
	}

	.hp-comparison__media {
		max-height: 350px;
		overflow: hidden;
		border-radius: 12px;
	}

	.hp-comparison__media img {
		width: 100%;
		height: 350px;
		object-fit: cover;
	}

	.hp-final__grid {
		grid-template-columns: 1fr;
		gap: 3rem;
	}
}


/* =============================================
   RESPONSIVE — MOBILE (≤ 768px)
   ============================================= */

@media (max-width: 768px) {

	:root {
		--hp-section-pad: 3.5rem 0;
	}

	/* Services grid → 2 cols on mobile */
	.hp-services__grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 3rem 1.25rem;
	}

	.hp-alt-row,
	.hp-alt-row--reverse {
		grid-template-columns: 1fr;
		direction: ltr;
		gap: 2rem;
		padding: 2rem 1.5rem;
	}

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

	.hp-included__grid {
		grid-template-columns: 1fr;
		gap: 2.5rem;
	}

	.hp-faq__grid {
		grid-template-columns: 1fr;
		gap: 2.5rem;
	}

	.hp-faq__media {
		order: -1;
	}

	.hp-faq-media-panel__img {
		height: 260px;
	}

	.hp-comp-table__head,
	.hp-comp-row {
		grid-template-columns: 1.5fr 0.7fr 0.7fr 0.7fr;
		font-size: 0.8rem;
	}

	.hp-hero__thumbs {
		grid-template-columns: repeat(4, 1fr);
	}

	.hp-social-row {
		flex-direction: column;
		align-items: center;
		text-align: center;
	}

	.hp-video-card {
		min-width: calc(80% - 1.125rem);
		flex: 0 0 calc(80% - 1.125rem);
	}

	.hp-form-card {
		padding: 1.75rem 1.25rem;
	}

	.hp-form-actions {
		flex-direction: column;
	}

	.hp-btn-hp--grow {
		width: 100%;
	}
}


/* =============================================
   RESPONSIVE — SMALL MOBILE (≤ 480px)
   ============================================= */

@media (max-width: 480px) {

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

	.hp-comp-table__head {
		display: none;
	}

	.hp-comp-row {
		grid-template-columns: 1fr 1fr 1fr;
	}

	.hp-comp-td--feature {
		display: none;
	}

}

