/* ── Hero Section ─────────────────────────────────────────── */

.hero-section {
	background: var(--ink, #0C1F3F);
	color: #fff;
}

/* ── Layout ──────────────────────────────────────────────── */

.hero-inner {
	display: grid;
	grid-template-columns: 1.2fr 1fr;
	gap: 64px;
	align-items: center;
}

/* ── Left Column ─────────────────────────────────────────── */

.hero-content {
	display: flex;
	flex-direction: column;
	gap: 0;
}

/* Eyebrow */
.hero-eyebrow {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: #fff;
	margin-bottom: 20px;
}

.hero-eyebrow-dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--crimson, #B91C1C);
	flex-shrink: 0;
	animation: dotPulse 2.5s ease-in-out infinite;
}

@keyframes dotPulse {
	0%, 100% { box-shadow: 0 0 0 0 rgba(185, 28, 28, 0.4); }
	50% { box-shadow: 0 0 0 6px rgba(185, 28, 28, 0); }
}

.hero-eyebrow-dash {
	color: var(--crimson, #B91C1C);
}

/* Heading */
.hero-heading {
	font-size: 54px;
	font-weight: 700;
	line-height: 1.06;
	letter-spacing: -1.5px;
	margin: 0 0 20px;
	color: #fff;
}

/* Description */
.hero-description {
	font-size: 16px;
	line-height: 1.7;
	color: rgba(255, 255, 255, 0.7);
	margin: 0 0 32px;
	max-width: 480px;
}

.hero-description-highlight {
	display: block;
	color: #fff;
	font-weight: 600;
}

/* ── Buttons ─────────────────────────────────────────────── */

.hero-buttons {
	display: flex;
	align-items: center;
	gap: 24px;
	margin-bottom: 40px;
}

/* btn-primary and btn-secondary base styles are in general.css */

.hero-arrow {
	transition: transform 0.2s ease;
}

.hero-btn-secondary:hover .hero-arrow {
	transform: translateX(3px);
}

/* ── Trust Bar ───────────────────────────────────────────── */

.hero-trust {
	display: flex;
	align-items: center;
	gap: 24px;
	font-size: 14px;
	color: rgba(255, 255, 255, 0.55);
	border-top: 1px solid rgba(255, 255, 255, 0.12);
	padding-top: 24px;
}

.hero-stars {
	display: flex;
	gap: 3px;
	color: #FBBF24;
}

.hero-trust-group {
	display: flex;
	align-items: center;
	gap: 6px;
}

.hero-trust-rating {
	font-weight: 600;
	color: #fff;
}

.hero-trust-dot {
	color: rgba(255, 255, 255, 0.35);
}

.hero-trust-review {
	color: rgba(255, 255, 255, 0.55);
}

.hero-trust-divider {
	width: 1px;
	height: 18px;
	background: rgba(255, 255, 255, 0.2);
}

.hero-trust-stat {
	font-weight: 500;
	color: rgba(255, 255, 255, 0.55);
}

.hero-trust-stat .hero-trust-stat-number {
	font-weight: 600;
	color: #fff;
}

/* ── Right Column: Before / After ────────────────────────── */

.hero-media {
	display: flex;
	justify-content: center;
	align-items: center;
}

.hero-single-image {
	width: 100%;
	max-width: 540px;
	border-radius: 16px;
	display: block;
	object-fit: cover;
}

.hero-media .before-after-images {
	width: 85%;
	aspect-ratio: 1 / 1;
	border-radius: 16px;
}

/* ── Responsive ──────────────────────────────────────────── */

@media (max-width: 900px) {
	.hero-inner {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.hero-content {
		text-align: left;
	}

	.hero-media .before-after-images {
		width: 75%;
	}
}

@media (max-width: 560px) {
	.hero-content {
		text-align: center;
		align-items: center;
	}

	.hero-eyebrow {
		justify-content: center;
	}

	.hero-heading {
		font-size: 34px;
		letter-spacing: -0.8px;
	}

	.hero-description {
		max-width: none;
	}

	.hero-media .before-after-images {
		width: 100%;
	}

	.hero-buttons {
		flex-direction: column;
		align-items: center;
		gap: 16px;
	}

	.hero-trust {
		flex-wrap: wrap;
		justify-content: center;
		gap: 8px;
	}

	.hero-trust-divider {
		display: none;
	}
}

/* ── Hero: format paa enkeltbillede ───────────────────────── */
/* object-fit virker foerst, naar billedet har en fast hoejde. */
/* Derfor styres formatet med aspect-ratio pr. valg i Bricks.  */

.hero-single-image:not(.hero-ratio-auto) {
  height: auto;
  object-fit: cover;
  object-position: center center;
}

.hero-single-image.hero-ratio-square    { aspect-ratio: 1 / 1; }
.hero-single-image.hero-ratio-landscape { aspect-ratio: 4 / 3; }
.hero-single-image.hero-ratio-wide      { aspect-ratio: 16 / 9; }
.hero-single-image.hero-ratio-portrait  { aspect-ratio: 3 / 4; }
.hero-single-image.hero-ratio-tall      { aspect-ratio: 4 / 5; }

.hero-single-image.hero-ratio-auto {
  aspect-ratio: auto;
  height: auto;
  object-fit: contain;
}
