/* Hero Section Styles */
.hero {
	background: linear-gradient(180deg, #3282b8 0%, #1a1a2e 100%);
	/* Blue extending down to dark */
	color: white;
	min-height: calc(100vh - 100px);
	/* Fill the screen */
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 2rem var(--spacing-lg);
	text-align: center;
	position: relative;
	overflow: hidden;
	margin-top: 100px;
	/* Adjusted for new header height */
}

.hero::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
	opacity: 0.3;
}

.hero-content {
	max-width: 1200px;
	margin: 0 auto;
	position: relative;
	z-index: 1;
}

.hero h1 {
	font-size: var(--font-size-h1);
	margin-bottom: 1.5rem;
	font-weight: 700;
	line-height: 1.2;
	animation: fadeInUp 0.8s ease-out;
}

.hero h2 {
	font-size: var(--font-size-xlarge);
	font-weight: 300;
	margin-bottom: var(--spacing-lg);
	opacity: 0.95;
	animation: fadeInUp 1s ease-out;
}

.cta-button {
	background: var(--gold);
	color: var(--primary-color);
	padding: 1.2rem 3rem;
	border: none;
	border-radius: var(--radius-round);
	font-size: 1.1rem;
	font-weight: 600;
	cursor: pointer;
	transition: all var(--transition-normal);
	animation: fadeInUp 1.2s ease-out;
	text-decoration: none;
	display: inline-block;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.cta-button:hover {
	transform: translateY(-3px);
	box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.trust-badge {
	margin-top: var(--spacing-lg);
	font-size: var(--font-size-base);
	opacity: 0.9;
	animation: fadeInUp 1.4s ease-out;
	display: flex;
	justify-content: center;
	gap: var(--spacing-md);
	flex-wrap: wrap;
}

.badge-item {
	display: flex;
	align-items: center;
	gap: var(--spacing-xs);
}

.cta-section {
	background: linear-gradient(135deg, var(--accent-color) 0%, var(--highlight-color) 100%);
	color: white;
	padding: 5rem var(--spacing-lg);
	text-align: center;
	position: relative;
	overflow: hidden;
}

.cta-section::before {
	content: '';
	position: absolute;
	top: -50%;
	right: -10%;
	width: 500px;
	height: 500px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.05);
}

.cta-section h2 {
	font-size: var(--font-size-h2);
	margin-bottom: var(--spacing-sm);
	position: relative;
	z-index: 1;
}

.cta-section p {
	font-size: var(--font-size-large);
	margin-bottom: var(--spacing-md);
	opacity: 0.95;
	position: relative;
	z-index: 1;
}

.cta-section .cta-button {
	background: var(--gold);
	color: var(--primary-color);
}