/**
 * Business Video Marketing landing page
 */

.bv-page {
	overflow-x: clip;
}

/* ── Hero ─────────────────────────────────────────────────── */

.bv-hero {
	position: relative;
	min-height: clamp(560px, 72vh, 780px);
	display: flex;
	align-items: flex-end;
	overflow: hidden;
}

.bv-hero__bg {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center 35%;
	background-color: var(--color-navy);
}

.bv-hero__overlay {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(90deg, rgba(6, 21, 36, 0.92) 0%, rgba(6, 21, 36, 0.68) 42%, rgba(6, 21, 36, 0.2) 100%),
		linear-gradient(to top, rgba(6, 21, 36, 0.72) 0%, transparent 50%);
}

.bv-hero__body {
	position: relative;
	z-index: 1;
	padding: clamp(5rem, 12vw, 7rem) 0 clamp(3rem, 7vw, 4.5rem);
	max-width: 42rem;
}

.bv-hero__eyebrow {
	color: var(--color-teal-light, var(--color-teal));
	margin-bottom: 0.75rem;
}

.bv-hero__heading {
	font-family: var(--font-display, var(--font-heading));
	font-size: clamp(2rem, 4.8vw, 3.15rem);
	font-weight: 600;
	line-height: 1.15;
	color: var(--color-white);
	margin: 0 0 1rem;
}

.bv-hero__sub {
	font-size: clamp(1.05rem, 2vw, 1.2rem);
	line-height: 1.55;
	color: rgba(255, 255, 255, 0.88);
	margin: 0 0 1.75rem;
	max-width: 38rem;
}

.bv-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.85rem;
}

/* ── Services ─────────────────────────────────────────────── */

.bv-services__grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1.25rem;
	margin-top: 2rem;
}

.bv-service-card {
	background: var(--color-white);
	border: 1px solid rgba(0, 90, 135, 0.12);
	border-radius: 1rem;
	padding: 1.5rem 1.4rem;
	box-shadow: 0 8px 24px rgba(0, 40, 70, 0.05);
}

.bv-service-card__title {
	font-family: var(--font-display, var(--font-heading));
	font-size: 1.35rem;
	font-weight: 600;
	color: var(--color-navy);
	margin: 0 0 0.55rem;
}

.bv-service-card__desc {
	margin: 0;
	color: var(--color-muted, #5a6575);
	line-height: 1.5;
}

.bv-service-card__link {
	display: inline-block;
	margin-top: 0.85rem;
	font-weight: 600;
	color: var(--color-teal);
	text-decoration: none;
}

.bv-service-card__link:hover {
	text-decoration: underline;
}

/* ── Proof ────────────────────────────────────────────────── */

.bv-proof {
	background: var(--color-sand, #f7f5f1);
}

.bv-proof__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.85rem;
	justify-content: center;
	margin: 1.5rem 0 2rem;
}

.bv-proof__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1rem;
}

.bv-proof__card {
	display: flex;
	flex-direction: column;
	text-decoration: none;
	color: inherit;
	border-radius: 0.75rem;
	overflow: hidden;
	background: var(--color-white);
	border: 1px solid rgba(0, 90, 135, 0.1);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.bv-proof__card:hover {
	transform: translateY(-2px);
	box-shadow: 0 10px 28px rgba(0, 40, 70, 0.1);
}

.bv-proof__card-img {
	display: block;
	aspect-ratio: 4 / 3;
	background-size: cover;
	background-position: center;
	background-color: var(--color-navy);
}

.bv-proof__card-title {
	padding: 0.85rem 1rem;
	font-weight: 600;
	font-size: 0.95rem;
	color: var(--color-navy);
}

/* ── Plans teaser ─────────────────────────────────────────── */

.bv-plans-teaser {
	background: linear-gradient(145deg, var(--color-navy) 0%, #0a2540 100%);
	color: var(--color-white);
	padding-block: clamp(3rem, 7vw, 4.5rem);
}

.bv-plans-teaser .section-heading,
.bv-plans-teaser__inner {
	/* keep spacing via section padding */
}

.bv-plans-teaser__inner {
	display: grid;
	grid-template-columns: 1.4fr 1fr;
	gap: 2rem;
	align-items: center;
}

.bv-plans-teaser__copy .eyebrow {
	color: var(--color-teal);
	margin-bottom: 0.5rem;
}

.bv-plans-teaser__copy h2 {
	font-family: var(--font-display, var(--font-heading));
	font-size: clamp(1.75rem, 3.2vw, 2.4rem);
	font-weight: 600;
	margin: 0 0 0.75rem;
	color: var(--color-white);
}

.bv-plans-teaser__copy p {
	margin: 0;
	font-size: 1.05rem;
	line-height: 1.55;
	color: rgba(255, 255, 255, 0.88);
	max-width: 36rem;
}

.bv-plans-teaser__actions {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
	align-items: stretch;
}

.bv-plans-teaser__actions .btn {
	justify-content: center;
	text-align: center;
}

/* ── Final CTA ────────────────────────────────────────────── */

.bv-cta {
	position: relative;
	padding: clamp(3.5rem, 8vw, 5.5rem) 0;
	background: var(--color-navy-dark, #061524);
	color: var(--color-white);
	text-align: center;
}

.bv-cta__overlay {
	position: absolute;
	inset: 0;
	background: radial-gradient(ellipse 55% 50% at 50% 0%, rgba(32, 169, 224, 0.18), transparent 60%);
	pointer-events: none;
}

.bv-cta__body {
	position: relative;
	z-index: 1;
	max-width: 38rem;
}

.bv-cta__heading {
	font-family: var(--font-display, var(--font-heading));
	font-size: clamp(1.75rem, 3.5vw, 2.5rem);
	font-weight: 600;
	margin: 0 0 0.85rem;
	color: var(--color-white);
}

.bv-cta__sub {
	margin: 0 auto 1.75rem;
	font-size: 1.1rem;
	line-height: 1.5;
	color: rgba(255, 255, 255, 0.88);
}

/* ── Responsive ───────────────────────────────────────────── */

@media (max-width: 960px) {
	.bv-services__grid {
		grid-template-columns: 1fr;
	}

	.bv-proof__grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.bv-plans-teaser__inner {
		grid-template-columns: 1fr;
		text-align: center;
	}

	.bv-plans-teaser__copy p {
		margin-inline: auto;
	}

	.bv-plans-teaser__actions {
		flex-direction: row;
		flex-wrap: wrap;
		justify-content: center;
	}
}

@media (max-width: 560px) {
	.bv-proof__grid {
		grid-template-columns: 1fr;
	}

	.bv-plans-teaser__actions {
		flex-direction: column;
	}
}
