/* Front page — single hero, tool grid, trust strip, CTA band (no carousel) */

/* Single hero */
.hero-banner.hero-single {
	position: relative;
	width: 100%;
	min-height: 320px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, var(--bps-neutral-800) 0%, var(--bps-neutral-900) 100%);
	margin-bottom: 0;
	overflow: hidden;
}
.hero-banner .hero-bg-image {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}
.hero-banner .hero-overlay {
	position: absolute;
	inset: 0;
	background: rgba(0,0,0,0.45);
	pointer-events: none;
}
.hero-banner .hero-content {
	position: relative;
	z-index: 2;
	text-align: center;
	padding: var(--bps-space-12) var(--bps-space-4);
	color: #fff;
	max-width: var(--bps-container-max);
	margin: 0 auto;
}
.hero-headline {
	margin: 0 0 var(--bps-space-3);
	font-size: var(--bps-font-size-2xl);
	line-height: var(--bps-line-height-tight);
	font-weight: 700;
	color: #fff;
}
.hero-subline {
	margin: 0 0 var(--bps-space-8);
	font-size: var(--bps-font-size-lg);
	line-height: var(--bps-line-height-normal);
	color: rgba(255,255,255,0.95);
}
.hero-cta-wrapper {
	display: flex;
	flex-wrap: wrap;
	gap: var(--bps-space-4);
	justify-content: center;
	align-items: center;
}
.hero-cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 48px;
	padding: var(--bps-space-3) var(--bps-space-6);
	font-weight: 600;
	text-decoration: none;
	border-radius: var(--bps-radius-md);
	box-shadow: var(--bps-shadow-lg);
	transition: background var(--bps-transition), transform var(--bps-transition), border-color var(--bps-transition);
}
.hero-cta:hover,
.hero-cta:focus-visible {
	transform: translateY(-2px);
	outline: 2px solid #fff;
	outline-offset: 2px;
}
.hero-cta--secondary {
	background: transparent;
	color: #fff;
	border: 2px solid #fff;
}
.hero-cta--secondary:hover,
.hero-cta--secondary:focus-visible {
	background: rgba(255,255,255,0.15);
}

@media (min-width: 768px) {
	.hero-banner.hero-single { min-height: 420px; }
	.hero-headline { font-size: var(--bps-font-size-3xl); }
	.hero-subline { font-size: var(--bps-font-size-xl); }
}
@media (min-width: 992px) {
	.hero-banner.hero-single { min-height: 480px; }
}

/* Tool grid — 4 equal cards */
.tools-section {
	padding: var(--bps-space-12) var(--bps-space-4);
	background: var(--bps-bg-alt);
}
.tool-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: var(--bps-space-6);
	max-width: 1200px;
	margin: 0 auto;
}
.tool-card {
	display: flex;
	flex-direction: column;
	text-decoration: none;
	color: inherit;
	background: var(--bps-bg);
	border-radius: var(--bps-radius-xl);
	overflow: hidden;
	box-shadow: var(--bps-shadow-card);
	transition: box-shadow var(--bps-transition), transform var(--bps-transition);
	min-height: 44px;
}
.tool-card:hover {
	box-shadow: var(--bps-shadow-card-hover);
	transform: translateY(-4px);
}
.tool-card:focus-visible {
	outline: 2px solid var(--bps-primary);
	outline-offset: 2px;
}
@media (prefers-reduced-motion: reduce) {
	.tool-card { transition: none; }
	.tool-card:hover { transform: none; }
}
.tool-card-image {
	width: 100%;
	aspect-ratio: 16 / 10;
	background: var(--bps-neutral-200);
	background-size: cover;
	background-position: center;
}
.tool-card-content {
	padding: var(--bps-space-5);
	flex: 1;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}
.tool-card-content h3 {
	margin: 0 0 var(--bps-space-2);
	font-size: var(--bps-font-size-lg);
	color: var(--bps-primary);
}
.tool-card-cta {
	display: inline-flex;
	align-items: center;
	gap: var(--bps-space-2);
	font-size: var(--bps-font-size-sm);
	font-weight: 600;
	color: var(--bps-primary);
}

@media (min-width: 768px) {
	.tool-grid {
		grid-template-columns: repeat(4, 1fr);
		gap: var(--bps-space-8);
	}
}

/* Trust strip */
.trust-strip {
	background: var(--bps-neutral-800);
	color: #fff;
	padding: var(--bps-space-4) var(--bps-space-4);
}
.trust-strip-inner {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: var(--bps-space-4);
	max-width: 1200px;
	margin: 0 auto;
	font-size: var(--bps-font-size-sm);
}
.trust-item {
	display: inline-flex;
	align-items: center;
	min-height: 44px;
}
.trust-item a {
	color: #fff;
	text-decoration: none;
}
.trust-item a:hover,
.trust-item a:focus-visible {
	text-decoration: underline;
	outline: 2px solid #fff;
	outline-offset: 2px;
}
.trust-item:not(:last-child)::after {
	content: "•";
	margin-left: var(--bps-space-4);
	color: rgba(255,255,255,0.6);
}
.trust-directions {
	border-color: #fff;
	color: #fff;
}
.trust-directions:hover {
	background: rgba(255,255,255,0.15);
	color: #fff;
}
@media (max-width: 599px) {
	.trust-strip-inner {
		flex-direction: column;
		align-items: center;
		gap: var(--bps-space-3);
	}
	.trust-item::after {
		display: none;
	}
}

/* CTA band */
.cta-band {
	background: var(--bps-primary);
	color: #fff;
	padding: var(--bps-space-8) var(--bps-space-4);
}
.cta-band-inner {
	max-width: var(--bps-container-max);
	margin: 0 auto;
	text-align: center;
}
.cta-band-text {
	margin: 0;
	font-size: var(--bps-font-size-lg);
	line-height: var(--bps-line-height-relaxed);
}
.cta-band-link {
	color: #fff;
	text-decoration: underline;
	font-weight: 600;
	display: inline-flex;
	align-items: center;
	min-height: 44px;
	padding: var(--bps-space-2) 0;
}
.cta-band-link:hover,
.cta-band-link:focus-visible {
	color: #fff;
	outline: 2px solid #fff;
	outline-offset: 2px;
}

/* Alternating blocks — two-column layout */
#alternatingBlocks.alternating-blocks { margin: 0; padding: 0; }
.alternatingBlockRow {
	padding: var(--bps-space-16) var(--bps-space-4);
	position: relative;
}
.alternatingBlockRow:nth-child(odd) {
	background: var(--bps-bg);
}
.alternatingBlockRow:nth-child(even) {
	background: var(--bps-neutral-100);
}
.alternatingBlockRow:nth-last-child(1) {
	background: var(--bps-neutral-900);
	color: #fff;
}
.alternatingBlockRow:nth-last-child(1) .alternatingBlockTitle { color: #fff; }
.alternatingBlockRow:nth-last-child(1) .btn--primary {
	background: var(--bps-primary);
	color: #fff;
	border-color: var(--bps-primary);
}

.alternatingBlock {
	display: flex;
	flex-direction: column;
	gap: var(--bps-space-8);
	max-width: var(--bps-container-max);
	margin: 0 auto;
}
@media (min-width: 992px) {
	.alternatingBlock {
		flex-direction: row;
		align-items: center;
		gap: var(--bps-space-12);
	}
	.alternatingBlockRow--reverse .alternatingBlock { flex-direction: row-reverse; }
	.alternatingBlockRow--overlap-left .alternatingBlockImage {
		margin-left: calc(-1 * var(--bps-card-overlap, 2rem));
		box-shadow: var(--bps-shadow-card);
		border-radius: var(--bps-radius-lg);
		overflow: hidden;
	}
	.alternatingBlockRow--overlap-right .alternatingBlockImage {
		margin-right: calc(-1 * var(--bps-card-overlap, 2rem));
		box-shadow: var(--bps-shadow-card);
		border-radius: var(--bps-radius-lg);
		overflow: hidden;
	}
}

.alternatingBlockText {
	text-align: center;
}
@media (min-width: 992px) {
	.alternatingBlockText {
		flex: 0 1 45%;
		text-align: left;
	}
}
.alternatingBlockTitle {
	color: var(--bps-primary);
	margin-bottom: var(--bps-space-2);
}
.alternatingBlockExcerpt {
	line-height: var(--bps-line-height-relaxed);
	margin-bottom: var(--bps-space-4);
}
.alternatingBlockImage img {
	width: 100%;
	height: auto;
	display: block;
}
@media (min-width: 992px) {
	.alternatingBlockImage { flex: 0 1 50%; }
}

.alternatingBlockText .btn {
	min-height: 44px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}
