/*
 * Hero Banner (Premium Redesign)
 * ----------------------------------------------------------------------- */

.hero {
	position: relative;
	padding-block: var(--space-2xl);
	background: linear-gradient(180deg, var(--color-bg) 0%, #EEF6F5 100%);
	overflow: hidden;
	isolation: isolate;
}

.hero__blob {
	position: absolute;
	border-radius: 50%;
	filter: blur(60px);
	pointer-events: none;
	z-index: -1;
}

.hero__blob--1 {
	top: -15%;
	right: -8%;
	width: 520px;
	height: 520px;
	background: radial-gradient(circle, rgba(var(--color-secondary-rgb), 0.25), transparent 70%);
}

.hero__blob--2 {
	bottom: -20%;
	left: -10%;
	width: 420px;
	height: 420px;
	background: radial-gradient(circle, rgba(var(--color-accent-rgb), 0.18), transparent 70%);
}

.hero__grid {
	display: grid;
	grid-template-columns: 1.05fr 0.95fr;
	gap: var(--space-xl);
	align-items: center;
	position: relative;
	z-index: 1;
}

.hero__eyebrow {
	background: var(--color-white);
	padding: 0.4rem 0.9rem;
	border-radius: var(--radius-full);
	box-shadow: var(--shadow-sm);
}

.hero__title {
	font-size: var(--fs-h1);
	letter-spacing: -0.02em;
	margin-bottom: var(--space-sm);
	background: linear-gradient(100deg, var(--color-dark) 55%, var(--color-primary) 100%);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

.hero__subtitle {
	font-size: 1.1rem;
	max-width: 540px;
	margin-bottom: var(--space-md);
}

.hero__actions {
	display: flex;
	gap: var(--space-sm);
	flex-wrap: wrap;
	margin-bottom: var(--space-lg);
}

.hero__cta-primary {
	box-shadow: 0 12px 32px rgba(var(--color-primary-rgb), 0.35);
}

.hero__trust-badges {
	display: flex;
	gap: var(--space-md);
	flex-wrap: wrap;
}

.hero__badge {
	display: flex;
	align-items: center;
	gap: 0.65rem;
	background: var(--color-white);
	padding: 0.65rem 1rem;
	border-radius: var(--radius-md);
	box-shadow: var(--shadow-sm);
	transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.hero__badge:hover {
	transform: translateY(-3px);
	box-shadow: var(--shadow-md);
}

.hero__badge-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: var(--gradient-soft);
	color: var(--color-primary);
	flex-shrink: 0;
}

.hero__badge strong {
	display: block;
	font-family: var(--font-heading);
	font-size: 1.05rem;
	font-weight: var(--fw-bold);
	color: var(--color-dark);
	line-height: 1.2;
}

.hero__badge span {
	font-size: 0.78rem;
	color: var(--color-gray);
}

/* ---- Media / Image Frame ---- */

.hero__media {
	position: relative;
	padding: 0 var(--space-md) var(--space-md) 0;
}

.hero__image-frame {
	position: relative;
	border-radius: var(--radius-lg);
	overflow: hidden;
	box-shadow: var(--shadow-lg);
}

.hero__image-frame::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(200deg, rgba(15, 118, 110, 0.25) 0%, transparent 45%);
	pointer-events: none;
}

.hero__image {
	width: 100%;
	aspect-ratio: 8 / 7;
	object-fit: cover;
	display: block;
}

.hero__floating-card {
	position: absolute;
	display: flex;
	align-items: center;
	gap: 0.75rem;
	padding: var(--space-sm) var(--space-md);
	max-width: 250px;
	animation: a1pro-float 5s ease-in-out infinite;
}

.hero__floating-card--top {
	top: var(--space-md);
	right: 0;
	animation-delay: 0s;
}

.hero__floating-card--bottom {
	bottom: 0;
	left: -1rem;
	animation-delay: 1.5s;
}

.hero__floating-card strong {
	display: block;
	font-size: 0.9rem;
}

.hero__floating-card span {
	font-size: 0.78rem;
	color: var(--color-gray);
}

.hero__floating-avatars {
	display: flex;
}

.hero__floating-avatars span {
	width: 30px;
	height: 30px;
	border-radius: 50%;
	background: var(--gradient-primary);
	border: 2px solid var(--color-white);
	margin-left: -10px;
}

.hero__floating-avatars span:first-child {
	margin-left: 0;
}

@keyframes a1pro-float {
	0%, 100% { transform: translateY(0); }
	50% { transform: translateY(-10px); }
}

@media (prefers-reduced-motion: reduce) {
	.hero__floating-card { animation: none; }
}

/* ---- Scroll Hint ---- */

.hero__scroll-hint {
	display: flex;
	justify-content: center;
	margin-top: var(--space-lg);
	position: relative;
	z-index: 1;
}

.hero__scroll-hint span {
	width: 26px;
	height: 42px;
	border: 2px solid rgba(var(--color-primary-rgb), 0.4);
	border-radius: var(--radius-full);
	position: relative;
	display: block;
}

.hero__scroll-hint span::before {
	content: '';
	position: absolute;
	top: 6px;
	left: 50%;
	width: 4px;
	height: 8px;
	background: var(--color-primary);
	border-radius: var(--radius-full);
	transform: translateX(-50%);
	animation: a1pro-scroll-dot 1.8s ease-in-out infinite;
}

@keyframes a1pro-scroll-dot {
	0% { opacity: 1; top: 6px; }
	60% { opacity: 0; top: 20px; }
	100% { opacity: 0; top: 6px; }
}

@media (max-width: 768px) {
	.hero__scroll-hint { display: none; }
}

/* ---- Responsive ---- */

@media (max-width: 992px) {
	.hero__grid {
		grid-template-columns: 1fr;
		text-align: center;
	}

	.hero__subtitle,
	.hero__eyebrow { margin-inline: auto; }
	.hero__actions,
	.hero__trust-badges { justify-content: center; }
	.hero__media { padding: var(--space-lg) 0 var(--space-md); }
	.hero__floating-card--bottom { left: 0; }
}

@media (max-width: 560px) {
	.hero { padding-block: var(--space-xl); }
	.hero__badge { flex: 1 1 100%; }
	.hero__floating-card { max-width: 200px; padding: 0.6rem 0.8rem; }
	.hero__floating-card strong { font-size: 0.8rem; }
	.hero__floating-card span { font-size: 0.7rem; }
}

@media (max-width: 380px) {
	.hero__floating-card--top { top: 0.5rem; right: -0.5rem; }
	.hero__floating-card--bottom { bottom: -0.5rem; }
}
