/* ========================================
   VARIABLES & ROOT STYLES
   ======================================== */

:root {
	/* Color Palette - Modern Slate/Indigo Theme */
	--primary-blue: #6366f1; /* Indigo 500 */
	--secondary-blue: #4f46e5; /* Indigo 600 */
	--light-blue: #e0e7ff; /* Indigo 100 */
	--warm-coral: #10b981; /* Emerald 500 - Accent */
	--light-coral: #6ee7b7; /* Emerald 300 */
	--cream: #f8fafc; /* Slate 50 */
	--text-dark: #0f172a; /* Slate 900 */
	--text-light: #64748b; /* Slate 500 */
	--text-muted: #94a3b8; /* Slate 400 */
	--white: #ffffff;
	--shadow-light: rgba(99, 102, 241, 0.1);
	--shadow-medium: rgba(99, 102, 241, 0.15);

	/* Typography */
	--font-handwriting: "Caveat", cursive;
	--font-body: "Inter", sans-serif;

	/* Spacing */
	--spacing-xs: 0.5rem;
	--spacing-sm: 1rem;
	--spacing-md: 1.5rem;
	--spacing-lg: 2rem;
	--spacing-xl: 3rem;
	--spacing-2xl: 4rem;

	/* Breakpoints */
	--mobile: 640px;
	--tablet: 1024px;
}

/* ========================================
   GLOBAL STYLES
   ======================================== */

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
	overflow-x: hidden;
}

body {
	font-family: var(--font-body);
	color: var(--text-dark);
	background-color: var(--cream);
	line-height: 1.6;
	overflow-x: hidden;
}

.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 var(--spacing-lg);
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
	font-weight: 700;
	color: var(--text-dark);
	margin-bottom: var(--spacing-md);
	line-height: 1.2;
}

h1 {
	font-size: 3rem;
}

h2 {
	font-size: 2.5rem;
	margin-bottom: var(--spacing-xl);
}

h3 {
	font-size: 1.5rem;
}

p {
	color: var(--text-light);
	margin-bottom: var(--spacing-md);
}

a {
	color: var(--primary-blue);
	text-decoration: none;
	transition: color 0.3s ease;
}

a:hover {
	color: var(--secondary-blue);
}

/* Buttons */
.cta-button {
	padding: 1rem 2rem;
	border: none;
	border-radius: 8px;
	font-size: 1rem;
	font-weight: 600;
	font-family: var(--font-body);
	cursor: pointer;
	transition: all 0.3s ease;
	display: inline-block;
}

.cta-button.primary {
	background: linear-gradient(
		135deg,
		var(--primary-blue) 0%,
		var(--secondary-blue) 100%
	);
	color: var(--white);
}

.cta-button.primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 10px 25px rgba(99, 102, 241, 0.3);
}

.cta-button.primary.large {
	padding: 1.25rem 3rem;
	font-size: 1.1rem;
}

.cta-button.full-width {
	width: 100%;
}

/* ========================================
   NAVIGATION / HEADER
   ======================================== */

.header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 1000;
	background: rgba(255, 255, 255, 0.7);
	backdrop-filter: blur(20px) saturate(180%);
	-webkit-backdrop-filter: blur(20px)
		saturate(180%);
	border-bottom: 1px solid
		rgba(255, 255, 255, 0.3);
	transition: all 0.4s
		cubic-bezier(0.4, 0, 0.2, 1);
}

.header.scrolled {
	background: rgba(255, 255, 255, 0.9);
	box-shadow: 0 4px 30px rgba(0, 0, 0, 0.03);
	border-bottom-color: rgba(99, 102, 241, 0.1);
}

.navbar {
	width: 100%;
}

.nav-container {
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 2rem;
	height: 80px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 2rem;
	transition: height 0.3s ease;
}

.header.scrolled .nav-container {
	height: 64px;
}

/* Logo */
.logo-link {
	display: flex;
	align-items: center;
	text-decoration: none;
	gap: 0.75rem;
	z-index: 10;
}

.logo {
	display: flex;
	align-items: center;
	gap: 0.75rem;
}

.logo-icon {
	width: 36px;
	height: 36px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(
		135deg,
		var(--primary-blue) 0%,
		var(--secondary-blue) 100%
	);
	border-radius: 10px;
	color: white;
	transition: transform 0.3s
		cubic-bezier(0.34, 1.56, 0.64, 1);
	box-shadow: 0 4px 12px rgba(99, 102, 241, 0.2);
}

.logo-link:hover .logo-icon {
	transform: rotate(-10deg) scale(1.05);
}

.logo-text {
	font-size: 1.5rem;
	font-weight: 800;
	color: var(--text-dark);
	letter-spacing: -0.03em;
	background: linear-gradient(
		135deg,
		var(--text-dark) 0%,
		var(--primary-blue) 100%
	);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

/* Desktop Navigation */
.nav-center {
	display: flex;
	align-items: center;
	justify-content: center;
	flex: 1;
}

.nav-list {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	list-style: none;
	margin: 0;
	padding: 0.5rem;
	background: rgba(99, 102, 241, 0.04);
	border-radius: 100px;
	border: 1px solid rgba(99, 102, 241, 0.05);
}

.nav-link {
	display: block;
	padding: 0.5rem 1.25rem;
	color: var(--text-light);
	font-size: 0.9375rem;
	font-weight: 500;
	text-decoration: none;
	border-radius: 100px;
	transition: all 0.3s ease;
}

.nav-link:hover {
	color: var(--primary-blue);
	background: rgba(255, 255, 255, 0.8);
	box-shadow: 0 2px 8px rgba(99, 102, 241, 0.08);
}

/* Right Actions */
.nav-actions {
	display: flex;
	align-items: center;
	gap: 1rem;
}

.nav-link-secondary {
	color: var(--text-dark);
	font-size: 0.9375rem;
	font-weight: 600;
	text-decoration: none;
	padding: 0.5rem 1rem;
	transition: color 0.3s ease;
}

.nav-link-secondary:hover {
	color: var(--primary-blue);
}

.nav-cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	background: var(--text-dark);
	color: white;
	border: none;
	padding: 0.75rem 1.5rem;
	border-radius: 100px;
	font-size: 0.9375rem;
	font-weight: 600;
	font-family: var(--font-body);
	cursor: pointer;
	transition: all 0.3s
		cubic-bezier(0.34, 1.56, 0.64, 1);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.nav-cta:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
	background: black;
}

.nav-cta svg {
	transition: transform 0.3s ease;
}

.nav-cta:hover svg {
	transform: translateX(3px);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
	display: none;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	width: 40px;
	height: 40px;
	background: transparent;
	border: none;
	cursor: pointer;
	padding: 0;
	gap: 6px;
	z-index: 1001;
}

.menu-bar {
	width: 24px;
	height: 2px;
	background: var(--text-dark);
	border-radius: 2px;
	transition: all 0.3s
		cubic-bezier(0.34, 1.56, 0.64, 1);
	transform-origin: center;
}

.mobile-menu-toggle.active
	.menu-bar:nth-child(1) {
	transform: translateY(4px) rotate(45deg);
}

.mobile-menu-toggle.active
	.menu-bar:nth-child(2) {
	transform: translateY(-4px) rotate(-45deg);
}

/* Mobile Menu */
.mobile-menu {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	height: 100dvh;
	background: rgba(255, 255, 255, 0.98);
	backdrop-filter: blur(20px);
	z-index: 999;
	transform: translateX(100%);
	transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	display: flex;
	flex-direction: column;
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
}

.mobile-menu.active {
	transform: translateX(0);
}

.mobile-menu-content {
	flex: 1;
	display: flex;
	flex-direction: column;
	padding: 6rem 2rem 2rem;
	padding-bottom: calc(2rem + env(safe-area-inset-bottom));
	max-width: 600px;
	margin: 0 auto;
	width: 100%;
	min-height: min-content;
}

.mobile-menu-header {
	margin-bottom: 2rem;
	padding-bottom: 1rem;
	border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.mobile-menu-title {
	font-size: 0.875rem;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: var(--text-light);
	font-weight: 600;
}

.mobile-menu-links {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.mobile-nav-link {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 1rem;
	font-size: 1.25rem;
	font-weight: 600;
	color: var(--text-dark);
	text-decoration: none;
	border-radius: 12px;
	transition: all 0.2s ease;
}

.mobile-nav-link:hover {
	background: rgba(99, 102, 241, 0.05);
	color: var(--primary-blue);
	padding-left: 1.5rem;
}

.mobile-nav-link svg {
	opacity: 0;
	transform: translateX(-10px);
	transition: all 0.2s ease;
}

.mobile-nav-link:hover svg {
	opacity: 1;
	transform: translateX(0);
}

.mobile-menu-footer {
	margin-top: 2rem; /* Changed from auto to fixed margin */
	padding-top: 1rem;
	display: flex;
	flex-direction: column;
	gap: 1rem;
	border-top: 1px solid rgba(0, 0, 0, 0.05); /* Added separator */
}

.mobile-nav-link.secondary {
	text-align: center;
	justify-content: center;
	font-size: 1rem;
	color: var(--text-light);
}

/* Responsive */
@media (max-width: 1024px) {
	.nav-center {
		display: none;
	}

	.nav-actions {
		display: none;
	}

	.mobile-menu-toggle {
		display: flex;
	}
}

/* ========================================
   NAVIGATION RESPONSIVE STYLES
   ======================================== */

@media (max-width: 1024px) {
	.nav-container {
		padding: 0 1.5rem;
	}

	.nav-center {
		gap: 0.25rem;
	}

	.nav-link {
		font-size: 0.875rem;
		padding: 0.5rem 0.75rem;
	}

	.nav-cta {
		padding: 0.6875rem 1.25rem;
		font-size: 0.875rem;
	}

	.nav-link-secondary {
		padding: 0.5rem 0.875rem;
		font-size: 0.875rem;
	}
}

@media (max-width: 768px) {
	.nav-container {
		height: 64px;
		padding: 0 1.25rem;
	}

	.logo-icon {
		width: 36px;
		height: 36px;
	}

	.logo-text {
		font-size: 1.375rem;
	}

	.nav-center,
	.nav-actions {
		display: none;
	}

	.mobile-menu-toggle {
		display: flex;
	}
}

@media (max-width: 480px) {
	.nav-container {
		height: 60px;
		padding: 0 1rem;
	}

	.logo-text {
		font-size: 1.25rem;
	}
}

/* ========================================
   HERO SECTION
   ======================================== */

.hero {
	position: relative;
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	background: linear-gradient(
		180deg,
		#ffffff 0%,
		#f8fcfd 100%
	);
	padding-top: 80px; /* Account for fixed header height */
}

.hero-background {
	position: absolute;
	inset: 0;
	z-index: 0;
	overflow: hidden;
}

.hero-grid-pattern {
	position: absolute;
	inset: 0;
	background-image: linear-gradient(
			rgba(99, 102, 241, 0.03) 1px,
			transparent 1px
		),
		linear-gradient(
			90deg,
			rgba(99, 102, 241, 0.03) 1px,
			transparent 1px
		);
	background-size: 60px 60px;
	mask-image: radial-gradient(
		ellipse 80% 60% at 50% 40%,
		black 40%,
		transparent 100%
	);
}

.hero-gradient-orb {
	position: absolute;
	border-radius: 50%;
	filter: blur(80px);
	opacity: 0.15;
	animation: float 20s ease-in-out infinite;
}

.hero-gradient-orb-1 {
	width: 500px;
	height: 500px;
	background: linear-gradient(
		135deg,
		var(--primary-blue),
		var(--secondary-blue)
	);
	top: -100px;
	right: -100px;
	animation-delay: 0s;
}

.hero-gradient-orb-2 {
	width: 400px;
	height: 400px;
	background: linear-gradient(
		135deg,
		var(--warm-coral),
		var(--light-coral)
	);
	bottom: -100px;
	left: -100px;
	animation-delay: 5s;
}

@keyframes float {
	0%,
	100% {
		transform: translate(0, 0) scale(1);
	}
	33% {
		transform: translate(30px, -30px) scale(1.05);
	}
	66% {
		transform: translate(-20px, 20px) scale(0.95);
	}
}

.hero-container {
	position: relative;
	z-index: 10;
	max-width: 1280px;
	width: 100%;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: center;
	padding: 2rem 2rem 4rem;
	margin: 0 auto;
}

.hero-content {
	display: flex;
	flex-direction: column;
	gap: 2rem;
	animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-badge {
	display: inline-flex;
	align-items: center;
	gap: 0.75rem;
	width: fit-content;
	background: rgba(255, 255, 255, 0.8);
	backdrop-filter: blur(12px);
	border: 1px solid rgba(99, 102, 241, 0.2);
	color: var(--text-dark);
	padding: 0.5rem 1rem;
	border-radius: 100px;
	font-size: 0.9rem;
	font-weight: 600;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.badge-icon {
	font-size: 1.1rem;
}

.hero-headline {
	font-size: 4rem;
	line-height: 1.1;
	font-weight: 800;
	color: var(--text-dark);
	letter-spacing: -0.02em;
	margin: 0;
}

.hero-headline-gradient {
	background: linear-gradient(
		135deg,
		var(--primary-blue) 0%,
		var(--secondary-blue) 100%
	);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.hero-subheadline {
	font-size: 1.25rem;
	line-height: 1.6;
	color: var(--text-light);
	max-width: 540px;
	margin: 0;
}

.hero-cta-group {
	display: flex;
	gap: 1rem;
	align-items: center;
	flex-wrap: wrap;
}

.cta-arrow,
.play-icon {
	margin-left: 0.5rem;
	transition: transform 0.3s ease;
}

.cta-button.primary.large:hover .cta-arrow {
	transform: translateX(4px);
}

.cta-button.secondary-outline {
	background: transparent;
	color: var(--text-dark);
	border: 1px solid rgba(99, 102, 241, 0.3);
	padding: 1rem 1.5rem;
	font-weight: 600;
	transition: all 0.3s ease;
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	border-radius: 12px;
}

.cta-button.secondary-outline:hover {
	border-color: var(--primary-blue);
	background: rgba(99, 102, 241, 0.05);
	transform: translateY(-2px);
}

/* Trust Bar */
.hero-trust-bar {
	display: flex;
	align-items: center;
	gap: 1.5rem;
	margin-top: 1rem;
}

.trust-avatars {
	display: flex;
	align-items: center;
}

.trust-avatar {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	border: 3px solid var(--white);
	margin-left: -12px;
	object-fit: cover;
}

.trust-avatar:first-child {
	margin-left: 0;
}

.trust-avatar-more {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: var(--light-blue);
	border: 3px solid var(--white);
	margin-left: -12px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 0.75rem;
	font-weight: 700;
	color: var(--primary-blue);
}

.trust-text-wrapper {
	display: flex;
	flex-direction: column;
	gap: 0.25rem;
}

.trust-stars {
	color: #fbbf24;
	font-size: 1rem;
	letter-spacing: 2px;
}

.trust-label {
	font-size: 0.875rem;
	color: var(--text-light);
	font-weight: 500;
}

/* Hero Visual */
.hero-visual {
	position: relative;
	animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero-image-container {
	position: relative;
	border-radius: 24px;
	box-shadow: 0 20px 80px -20px rgba(0, 0, 0, 0.15);
}

.hero-main-image {
	width: 100%;
	height: auto;
	border-radius: 24px;
	display: block;
	border: 1px solid rgba(0, 0, 0, 0.05);
}

.floating-card {
	position: absolute;
	background: rgba(255, 255, 255, 0.9);
	backdrop-filter: blur(16px);
	border: 1px solid rgba(255, 255, 255, 0.5);
	border-radius: 16px;
	padding: 1rem;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
	display: flex;
	align-items: center;
	gap: 1rem;
	animation: floatCard 6s ease-in-out infinite;
}

.card-savings {
	top: 10%;
	left: -10%;
	padding-right: 2rem;
}

.card-growth {
	bottom: 15%;
	right: -5%;
	animation-delay: 2s;
	padding-right: 2rem;
}

.card-icon-box {
	width: 48px;
	height: 48px;
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
}

.card-icon-box.savings {
	background: linear-gradient(
		135deg,
		#10b981,
		#059669
	);
}

.card-icon-box.growth {
	background: linear-gradient(
		135deg,
		#3b82f6,
		#2563eb
	);
}

.card-content {
	display: flex;
	flex-direction: column;
}

.card-label {
	font-size: 0.75rem;
	color: var(--text-light);
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.card-value {
	font-size: 1.25rem;
	font-weight: 800;
	color: var(--text-dark);
}

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

@media (max-width: 1024px) {
	.hero-container {
		grid-template-columns: 1fr;
		text-align: center;
		gap: 3rem;
		padding-top: 6rem;
	}

	.hero-content {
		align-items: center;
	}

	.hero-headline {
		font-size: 3rem;
	}

	.hero-cta-group {
		justify-content: center;
	}

	.hero-trust-bar {
		flex-direction: column;
		gap: 1rem;
	}

	.card-savings {
		left: 0;
	}

	.card-growth {
		right: 0;
	}
}

@media (max-width: 768px) {
	.hero-headline {
		font-size: 2.5rem;
	}

	.floating-card {
		display: none;
	}
}

@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@media (max-width: 1024px) {
	.hero-container {
		grid-template-columns: 1fr;
		text-align: center;
		gap: 3rem;
		padding: 2rem 1.5rem 3rem;
	}

	.hero-content {
		align-items: center;
	}

	.hero-headline {
		font-size: 3rem;
	}

	.hero-cta-group {
		justify-content: center;
	}

	.hero-trust-bar {
		justify-content: center;
	}

	.card-savings,
	.card-growth {
		display: none;
	}
}

@media (max-width: 768px) {
	.hero {
		padding-top: 64px; /* Smaller header on mobile */
	}

	.hero-headline {
		font-size: 2.5rem;
	}

	.hero-cta-group {
		flex-direction: column;
		width: 100%;
	}

	.cta-button.primary.large {
		padding: 1.125rem 2rem;
	}
}

@media (max-width: 480px) {
	.hero {
		padding-top: 60px; /* Even smaller header */
	}

	.hero-headline {
		font-size: 1.875rem;
	}

	.hero-subheadline {
		font-size: 0.9375rem;
	}
}

/* ========================================
   TRUST SECTION
   ======================================== */

.trust-section {
	position: relative;
	padding: var(--spacing-2xl) 0;
	background: linear-gradient(
		180deg,
		var(--white) 0%,
		var(--cream) 100%
	);
	overflow: hidden;
}

/* Logo Strip */
.trust-logos {
	text-align: center;
	margin-bottom: var(--spacing-2xl);
	padding-bottom: var(--spacing-xl);
	border-bottom: 1px solid rgba(99, 102, 241, 0.1);
}

.trust-logos-label {
	font-size: 0.75rem;
	text-transform: uppercase;
	letter-spacing: 1.5px;
	color: var(--text-muted);
	margin-bottom: var(--spacing-xl);
	font-weight: 700;
	opacity: 0.8;
}

.logo-grid {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: var(--spacing-2xl);
	flex-wrap: wrap;
}

.company-logo {
	width: 140px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
	color: var(--text-muted);
	opacity: 0.6;
	filter: grayscale(100%);
}

.company-logo:hover {
	opacity: 1;
	transform: translateY(-2px);
	color: var(--primary-blue);
	filter: grayscale(0%);
}

.logo-svg {
	width: 100%;
	height: 100%;
	display: block;
}

/* Split Layout */
.trust-content-wrapper {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: var(--spacing-2xl);
	align-items: center;
}

/* Text Content */
.trust-text-content {
	padding-right: var(--spacing-xl);
}

.section-badge {
	display: inline-block;
	padding: 0.5rem 1rem;
	background: rgba(99, 102, 241, 0.1);
	color: var(--primary-blue);
	border-radius: 50px;
	font-size: 0.875rem;
	font-weight: 600;
	margin-bottom: var(--spacing-md);
}

.section-title {
	font-size: 2.5rem;
	font-weight: 700;
	color: var(--text-dark);
	margin-bottom: var(--spacing-md);
	line-height: 1.2;
}

.gradient-text {
	background: linear-gradient(
		135deg,
		var(--primary-blue) 0%,
		var(--secondary-blue) 100%
	);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.section-description {
	font-size: 1.125rem;
	color: var(--text-light);
	line-height: 1.7;
	margin-bottom: var(--spacing-xl);
}

/* Features List */
.trust-features {
	display: flex;
	flex-direction: column;
	gap: var(--spacing-lg);
}

.trust-feature-item {
	display: flex;
	gap: var(--spacing-md);
	align-items: flex-start;
}

.feature-icon-box {
	width: 48px;
	height: 48px;
	flex-shrink: 0;
	background: var(--white);
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--primary-blue);
	box-shadow: 0 4px 12px rgba(99, 102, 241, 0.1);
	border: 1px solid rgba(99, 102, 241, 0.1);
}

.feature-text h3 {
	font-size: 1.1rem;
	font-weight: 600;
	margin-bottom: 0.25rem;
	color: var(--text-dark);
}

.feature-text p {
	font-size: 0.95rem;
	color: var(--text-light);
	margin: 0;
	line-height: 1.5;
}

/* Visual Side */
.trust-visual {
	position: relative;
}

.image-card {
	position: relative;
	border-radius: 24px;
	overflow: visible;
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.trust-image {
	width: 100%;
	height: auto;
	border-radius: 24px;
	display: block;
	border: 8px solid var(--white);
}

/* Floating Badges */
.floating-badge {
	position: absolute;
	background: var(--white);
	padding: 0.75rem 1rem;
	border-radius: 12px;
	display: flex;
	align-items: center;
	gap: 0.75rem;
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
	z-index: 2;
	animation: float 3s ease-in-out infinite;
}

.badge-1 {
	top: 10%;
	left: -20px;
	animation-delay: 0s;
}

.badge-2 {
	bottom: 15%;
	right: -20px;
	animation-delay: 1.5s;
}

.badge-icon {
	font-size: 1.5rem;
}

.badge-text {
	display: flex;
	flex-direction: column;
}

.badge-title {
	font-size: 0.875rem;
	font-weight: 700;
	color: var(--text-dark);
}

.badge-subtitle {
	font-size: 0.75rem;
	color: var(--text-light);
}

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

@media (max-width: 1024px) {
	.trust-content-wrapper {
		grid-template-columns: 1fr;
		gap: var(--spacing-xl);
	}

	.trust-text-content {
		padding-right: 0;
		text-align: center;
	}

	.trust-features {
		align-items: flex-start;
		text-align: left;
	}

	.trust-feature-item {
		width: 100%;
	}

	.logo-grid {
		gap: var(--spacing-lg);
	}

	.floating-badge {
		display: none; /* Hide on smaller screens to avoid overlap issues */
	}
}

@media (max-width: 768px) {
	.trust-section {
		padding: var(--spacing-lg) var(--spacing-md);
	}

	.section-title {
		font-size: 1.75rem;
	}

	.section-subtitle {
		font-size: 0.95rem;
	}

	.trust-grid {
		grid-template-columns: 1fr;
		gap: var(--spacing-lg);
	}

	.trust-card {
		padding: var(--spacing-lg);
	}

	.trust-card-icon {
		width: 50px;
		height: 50px;
	}

	.trust-card h3 {
		font-size: 1.05rem;
	}

	.trust-card p {
		font-size: 0.9rem;
	}
}

/* ========================================
   FEATURES SECTION
   ======================================== */

.features-section {
	position: relative;
	padding: var(--spacing-2xl) var(--spacing-lg);
	background: linear-gradient(
		180deg,
		var(--cream) 0%,
		var(--white) 50%,
		var(--light-blue) 100%
	);
	overflow: hidden;
}

.features-background {
	position: absolute;
	inset: 0;
	z-index: 0;
	pointer-events: none;
}

.features-gradient {
	position: absolute;
	inset: 0;
	background: radial-gradient(
			circle at 30% 100%,
			rgba(99, 102, 241, 0.08) 0%,
			transparent 50%
		),
		radial-gradient(
			circle at 70% 0%,
			rgba(16, 185, 129, 0.05) 0%,
			transparent 50%
		);
}

.features-shapes {
	position: absolute;
	inset: 0;
	overflow: hidden;
}

.feature-shape {
	position: absolute;
	border-radius: 50%;
	opacity: 0.04;
	animation: float 8s ease-in-out infinite;
}

.feature-shape-1 {
	width: 500px;
	height: 500px;
	background: var(--primary-blue);
	top: -200px;
	right: -200px;
	animation-delay: 0s;
}

.feature-shape-2 {
	width: 400px;
	height: 400px;
	background: var(--warm-coral);
	bottom: -150px;
	left: -100px;
	animation-delay: 2s;
}

.features-section .container {
	position: relative;
	z-index: 10;
}

.features-header {
	text-align: center;
	margin-bottom: var(--spacing-2xl);
	max-width: 700px;
	margin-left: auto;
	margin-right: auto;
}

.features-header .section-title {
	font-size: 2.5rem;
	font-weight: 700;
	color: var(--text-dark);
	margin-bottom: var(--spacing-md);
	background: linear-gradient(
		135deg,
		var(--primary-blue) 0%,
		var(--secondary-blue) 100%
	);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.features-header .section-subtitle {
	font-size: 1.1rem;
	color: var(--text-light);
	line-height: 1.7;
	margin: 0;
}

/* Bento Grid Layout */
.bento-grid {
	display: grid;
	grid-template-columns: repeat(12, 1fr);
	grid-auto-rows: minmax(280px, auto);
	gap: var(--spacing-lg);
}

.bento-card {
	position: relative;
	background: var(--white);
	border-radius: 24px;
	overflow: hidden;
	border: 1px solid rgba(99, 102, 241, 0.1);
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
	transition: all 0.4s
		cubic-bezier(0.4, 0, 0.2, 1);
	display: flex;
	flex-direction: column;
}

.bento-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 20px 40px rgba(99, 102, 241, 0.15);
	border-color: rgba(99, 102, 241, 0.3);
}

/* Grid Areas */
.feature-large {
	grid-column: span 8;
	grid-row: span 1;
	display: flex;
	flex-direction: row;
}

.feature-tall {
	grid-column: span 4;
	grid-row: span 2;
}

.bento-card:not(.feature-large):not(
		.feature-tall
	) {
	grid-column: span 4;
}

.bento-card:not(.feature-large):not(
		.feature-tall
	):not(.feature-full-img) {
	padding: var(--spacing-xl);
	gap: var(--spacing-md);
}

/* Card Content Styles */
.bento-content {
	padding: var(--spacing-xl);
	display: flex;
	flex-direction: column;
	gap: var(--spacing-md);
	flex: 1;
}

.feature-large .bento-content {
	flex: 0 0 50%;
}

.feature-large .bento-image {
	flex: 1;
	position: relative;
	overflow: hidden;
}

.bento-image img,
.bento-image-full img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.6s ease;
}

.bento-card:hover img {
	transform: scale(1.05);
}

.bento-image-full {
	position: relative;
	width: 100%;
	height: 100%;
}

.bento-overlay {
	position: absolute;
	inset: 0;
	padding: var(--spacing-xl);
	background: linear-gradient(
		to top,
		rgba(0, 0, 0, 0.9) 0%,
		rgba(0, 0, 0, 0.5) 50%,
		rgba(0, 0, 0, 0.2) 100%
	);
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	z-index: 2;
}

.bento-card .bento-overlay h3 {
	color: var(--white);
	margin-bottom: 0.5rem;
	text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.bento-card .bento-overlay p {
	color: rgba(255, 255, 255, 0.95);
	font-size: 0.95rem;
	margin: 0;
	text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.bento-image-full .feature-icon-box {
	position: absolute;
	top: var(--spacing-xl);
	left: var(--spacing-xl);
	background: rgba(255, 255, 255, 0.2);
	color: var(--white);
	backdrop-filter: blur(4px);
	border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Typography & Icons */
.bento-card h3 {
	font-size: 1.25rem;
	font-weight: 700;
	color: var(--text-dark);
	margin: 0;
}

.bento-card p {
	color: var(--text-light);
	line-height: 1.6;
	margin: 0;
}

.feature-list {
	list-style: none;
	padding: 0;
	margin-top: auto;
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.feature-list li {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	font-size: 0.95rem;
	font-weight: 500;
	color: var(--text-dark);
}

.feature-list li svg {
	color: var(--primary-blue);
}

.feature-icon-box {
	width: 48px;
	height: 48px;
	background: rgba(99, 102, 241, 0.1);
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--primary-blue);
	margin-bottom: var(--spacing-sm);
}

@media (max-width: 1024px) {
	.features-section {
		padding: var(--spacing-xl) var(--spacing-lg);
	}

	.features-header .section-title {
		font-size: 2rem;
	}

	.features-header .section-subtitle {
		font-size: 1rem;
	}

	.bento-grid {
		grid-template-columns: repeat(2, 1fr);
		grid-auto-rows: minmax(280px, auto);
	}

	.feature-large,
	.feature-tall,
	.bento-card:not(.feature-large):not(
			.feature-tall
		) {
		grid-column: span 1;
		grid-row: span 1;
	}

	.feature-large {
		grid-column: span 2;
		flex-direction: column;
	}

	.feature-large .bento-content {
		flex: 0 0 auto;
	}

	.feature-large .bento-image {
		height: 300px;
	}
}

@media (max-width: 768px) {
	.features-section {
		padding: var(--spacing-lg) var(--spacing-md);
	}

	.features-header .section-title {
		font-size: 1.75rem;
	}

	.features-header .section-subtitle {
		font-size: 0.95rem;
	}

	.bento-grid {
		grid-template-columns: 1fr;
		gap: var(--spacing-md);
		grid-auto-rows: minmax(320px, auto);
	}

	.feature-large {
		grid-column: span 1;
	}

	.bento-card {
		border-radius: 16px;
	}

	.bento-content {
		padding: var(--spacing-lg);
	}

	.bento-overlay {
		padding: var(--spacing-lg);
	}

	.bento-image-full .feature-icon-box {
		top: var(--spacing-lg);
		left: var(--spacing-lg);
	}
}

/* ========================================
   VIDEO SECTION
   ======================================== */

.video-section {
	position: relative;
	padding: 6rem 0;
	background: #fff;
	overflow: hidden;
}

.video-bg-glow {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 100%;
	height: 100%;
	background: radial-gradient(
		circle at center,
		rgba(99, 102, 241, 0.08) 0%,
		transparent 70%
	);
	pointer-events: none;
	z-index: 0;
}

.video-header-modern {
	text-align: center;
	max-width: 700px;
	margin: 0 auto 4rem;
	position: relative;
	z-index: 1;
}

.badge-pill {
	display: inline-block;
	padding: 0.5rem 1rem;
	background: rgba(99, 102, 241, 0.1);
	color: var(--primary-blue);
	font-size: 0.875rem;
	font-weight: 600;
	border-radius: 100px;
	margin-bottom: 1rem;
}

.section-title-modern {
	font-size: 2.5rem;
	font-weight: 800;
	color: var(--text-dark);
	margin-bottom: 1rem;
	letter-spacing: -0.02em;
}

.section-subtitle-modern {
	font-size: 1.125rem;
	color: var(--text-light);
	line-height: 1.6;
}

.video-showcase {
	display: grid;
	grid-template-columns: 1.8fr 1fr;
	gap: 2rem;
	position: relative;
	z-index: 1;
}

/* Main Video */
.video-main {
	position: relative;
	border-radius: 24px;
	overflow: hidden;
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
	background: #000;
}

.video-player-wrapper {
	position: relative;
	width: 100%;
	padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
	overflow: hidden;
}

.video-thumbnail-main {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}

.video-main:hover .video-thumbnail-main {
	transform: scale(1.03);
}

.video-overlay-gradient {
	position: absolute;
	inset: 0;
	background: linear-gradient(
		to top,
		rgba(0, 0, 0, 0.8) 0%,
		transparent 60%
	);
	pointer-events: none;
}

.play-button-large {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 80px;
	height: 80px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.2);
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.4);
	color: white;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: all 0.3s ease;
	z-index: 10;
}

.play-button-large:hover {
	transform: translate(-50%, -50%) scale(1.1);
	background: white;
	color: var(--primary-blue);
}

.video-info-overlay {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	padding: 2rem;
	color: white;
	z-index: 5;
}

.video-duration-badge {
	display: inline-block;
	padding: 0.25rem 0.75rem;
	background: rgba(0, 0, 0, 0.6);
	backdrop-filter: blur(4px);
	border-radius: 4px;
	font-size: 0.75rem;
	font-weight: 600;
	margin-bottom: 0.75rem;
}

.video-main-title {
	font-size: 1.5rem;
	font-weight: 700;
	margin-bottom: 0.5rem;
	color: #ffffff;
	text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.video-main-desc {
	font-size: 1rem;
	color: rgba(255, 255, 255, 0.9);
	max-width: 90%;
	margin: 0;
	text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

/* Playlist Sidebar */
.video-playlist {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	height: 100%;
}

.playlist-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 0.5rem;
}

.playlist-header h3 {
	font-size: 1.25rem;
	font-weight: 700;
	color: var(--text-dark);
	margin: 0;
}

.view-all-link {
	display: flex;
	align-items: center;
	gap: 0.25rem;
	font-size: 0.875rem;
	font-weight: 600;
	color: var(--primary-blue);
	text-decoration: none;
	transition: gap 0.2s ease;
}

.view-all-link:hover {
	gap: 0.5rem;
}

.playlist-item {
	display: flex;
	gap: 1rem;
	padding: 0.75rem;
	border-radius: 12px;
	background: white;
	border: 1px solid rgba(0, 0, 0, 0.05);
	transition: all 0.3s ease;
	cursor: pointer;
}

.playlist-item:hover {
	background: rgba(99, 102, 241, 0.04);
	border-color: rgba(99, 102, 241, 0.2);
	transform: translateX(4px);
}

.playlist-thumb {
	position: relative;
	width: 120px;
	height: 80px;
	border-radius: 8px;
	overflow: hidden;
	flex-shrink: 0;
}

.playlist-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.duration-small {
	position: absolute;
	bottom: 4px;
	right: 4px;
	background: rgba(0, 0, 0, 0.7);
	color: white;
	font-size: 0.65rem;
	padding: 2px 4px;
	border-radius: 2px;
}

.playlist-overlay {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.3);
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transition: opacity 0.2s ease;
	color: white;
}

.playlist-item:hover .playlist-overlay {
	opacity: 1;
}

.playlist-info {
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.playlist-info h4 {
	font-size: 1rem;
	font-weight: 600;
	color: var(--text-dark);
	margin-bottom: 0.25rem;
	line-height: 1.3;
}

.playlist-info p {
	font-size: 0.875rem;
	color: var(--text-light);
	margin: 0;
}

/* Responsive */
@media (max-width: 1024px) {
	.video-showcase {
		grid-template-columns: 1fr;
	}

	.video-playlist {
		display: grid;
		grid-template-columns: repeat(
			auto-fit,
			minmax(280px, 1fr)
		);
	}

	.playlist-header {
		grid-column: 1 / -1;
	}
}

@media (max-width: 768px) {
	.section-title-modern {
		font-size: 2rem;
	}

	.video-info-overlay {
		padding: 1.5rem;
	}

	.video-main-title {
		font-size: 1.25rem;
	}

	.play-button-large {
		width: 60px;
		height: 60px;
	}

	.video-playlist {
		grid-template-columns: 1fr;
	}
}

/* ========================================
   TESTIMONIALS SECTION
   ======================================== */

.testimonials-section-modern {
	position: relative;
	padding: 8rem 2rem;
	background-color: #f8fafc;
	overflow: hidden;
}

.testimonials-bg-glow {
	position: absolute;
	width: 600px;
	height: 600px;
	background: radial-gradient(
		circle,
		rgba(99, 102, 241, 0.15) 0%,
		rgba(255, 255, 255, 0) 70%
	);
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 0;
	pointer-events: none;
}

.testimonials-header-modern {
	text-align: center;
	max-width: 800px;
	margin: 0 auto 3rem auto;
	position: relative;
	z-index: 1;
}

.testimonials-header-modern .badge-pill {
	display: inline-block;
	padding: 0.5rem 1.5rem;
	background: rgba(99, 102, 241, 0.1);
	color: var(--primary-color);
	border-radius: 50px;
	font-weight: 600;
	font-size: 0.875rem;
	margin-bottom: 1.5rem;
}

.section-title-modern {
	font-size: 3rem;
	font-weight: 800;
	color: #1e293b;
	margin-bottom: 1.5rem;
	line-height: 1.2;
	letter-spacing: -0.02em;
}

.section-subtitle-modern {
	font-size: 1.25rem;
	color: #64748b;
	line-height: 1.6;
}

.testimonials-grid-modern {
	display: grid;
	grid-template-columns: repeat(
		auto-fit,
		minmax(320px, 1fr)
	);
	gap: 2rem;
	position: relative;
	z-index: 1;
}

.testimonial-card-modern {
	background: rgba(255, 255, 255, 0.8);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	border: 1px solid rgba(255, 255, 255, 0.6);
	border-radius: 24px;
	padding: 2.5rem;
	box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.05);
	transition: transform 0.3s ease,
		box-shadow 0.3s ease;
	display: flex;
	flex-direction: column;
}

.testimonial-card-modern:hover {
	transform: translateY(-5px);
	box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.1);
	background: rgba(255, 255, 255, 0.95);
}

.testimonial-card-modern.featured {
	border: 2px solid var(--primary-color);
	background: #ffffff;
	transform: scale(1.05);
	box-shadow: 0 25px 50px -12px rgba(99, 102, 241, 0.25);
	z-index: 2;
}

.testimonial-card-modern.featured:hover {
	transform: scale(1.05) translateY(-5px);
}

.card-header {
	display: flex;
	align-items: center;
	margin-bottom: 1.5rem;
}

.user-avatar {
	width: 56px;
	height: 56px;
	border-radius: 50%;
	object-fit: cover;
	margin-right: 1rem;
	border: 2px solid #ffffff;
	box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.user-info h4 {
	font-size: 1.1rem;
	font-weight: 700;
	color: #1e293b;
	margin: 0;
}

.user-info p {
	font-size: 0.875rem;
	color: #64748b;
	margin: 0;
}

.platform-icon {
	margin-left: auto;
	opacity: 0.7;
}

.verified-badge {
	margin-left: auto;
	display: flex;
	align-items: center;
	gap: 0.25rem;
	font-size: 0.75rem;
	font-weight: 600;
	color: var(--primary-color);
	background: rgba(99, 102, 241, 0.1);
	padding: 0.25rem 0.75rem;
	border-radius: 20px;
}

.star-rating {
	color: #fbbf24;
	font-size: 1.25rem;
	margin-bottom: 1rem;
	letter-spacing: 2px;
}

.testimonial-text {
	font-size: 1.1rem;
	color: #334155;
	line-height: 1.7;
	font-style: italic;
	margin: 0;
}

@media (max-width: 1024px) {
	.testimonial-card-modern.featured {
		transform: scale(1);
	}

	.testimonial-card-modern.featured:hover {
		transform: translateY(-5px);
	}
}

@media (max-width: 768px) {
	.testimonials-section-modern {
		padding: 5rem 1.5rem;
	}

	.section-title-modern {
		font-size: 2.25rem;
	}

	.testimonials-grid-modern {
		grid-template-columns: 1fr;
		gap: 1.5rem;
	}
}

/* ========================================
   CONNECTION SECTION
   ======================================== */

.connection-section-modern {
	position: relative;
	padding: 8rem 2rem;
	background-color: #1e293b; /* Dark slate blue/grey */
	color: #ffffff;
	overflow: hidden;
}

.connection-grid-modern {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: center;
}

.connection-content-modern {
	position: relative;
	z-index: 2;
}

.badge-pill-modern {
	display: inline-block;
	padding: 0.5rem 1.5rem;
	background: rgba(255, 255, 255, 0.1);
	color: #818cf8; /* Indigo-400 */
	border-radius: 50px;
	font-weight: 600;
	font-size: 0.875rem;
	margin-bottom: 1.5rem;
	border: 1px solid rgba(255, 255, 255, 0.1);
}

.section-title-modern.text-left {
	text-align: left;
	color: #ffffff;
}

.section-subtitle-modern.text-left {
	text-align: left;
	color: #cbd5e1; /* Slate-300 */
	font-size: 1.125rem;
	margin-bottom: 2.5rem;
}

.connection-quote-modern {
	background: rgba(255, 255, 255, 0.05);
	border-left: 4px solid #818cf8;
	padding: 1.5rem;
	border-radius: 0 12px 12px 0;
	margin-bottom: 2.5rem;
}

.quote-icon {
	color: #818cf8;
	margin-bottom: 1.5rem;
	opacity: 0.9;
}

.connection-quote-modern p {
	font-size: 1.1rem;
	font-style: italic;
	color: #e2e8f0;
	line-height: 1.6;
	margin: 0;
}

.connection-cta-group-modern {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 1rem;
}

.connection-subtext-modern {
	font-size: 0.875rem;
	color: #94a3b8;
}

.connection-image-wrapper {
	position: relative;
	border-radius: 24px;
	overflow: hidden;
	box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.connection-image {
	width: 100%;
	height: auto;
	display: block;
	transition: transform 0.5s ease;
}

.connection-image-wrapper:hover
	.connection-image {
	transform: scale(1.05);
}

.image-overlay-card {
	position: absolute;
	bottom: 2rem;
	left: 2rem;
	background: rgba(255, 255, 255, 0.9);
	backdrop-filter: blur(8px);
	padding: 1.5rem;
	border-radius: 16px;
	box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
	min-width: 180px;
}

.stat-number {
	font-size: 2rem;
	font-weight: 800;
	color: #4f46e5; /* Indigo-600 */
	line-height: 1;
	margin-bottom: 0.25rem;
}

.stat-label {
	font-size: 0.875rem;
	font-weight: 600;
	color: #475569;
}

@media (max-width: 1024px) {
	.connection-grid-modern {
		grid-template-columns: 1fr;
		gap: 3rem;
	}

	.connection-content-modern {
		text-align: center;
	}

	.section-title-modern.text-left,
	.section-subtitle-modern.text-left {
		text-align: center;
	}

	.connection-cta-group-modern {
		align-items: center;
	}

	.connection-quote-modern {
		text-align: left;
	}
}

@media (max-width: 768px) {
	.connection-section-modern {
		padding: 5rem 1.5rem;
	}

	.image-overlay-card {
		bottom: 1rem;
		left: 1rem;
		padding: 1rem;
	}

	.stat-number {
		font-size: 1.5rem;
	}
}

/* ========================================
   RESOURCES SECTION
   ======================================== */

.resources-header .section-title {
	font-size: 2.5rem;
	font-weight: 700;
	color: var(--text-dark);
	margin-bottom: var(--spacing-md);
	background: linear-gradient(
		135deg,
		var(--primary-blue) 0%,
		var(--secondary-blue) 100%
	);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.resources-header .section-subtitle {
	font-size: 1.1rem;
	color: var(--text-light);
	line-height: 1.7;
	margin: 0;
}

.resources-grid {
	display: grid;
	grid-template-columns: repeat(
		auto-fit,
		minmax(300px, 1fr)
	);
	gap: var(--spacing-xl);
	align-items: start;
}

/* ========================================
   CONTACT SECTION
   ======================================== */

.signup-form input:focus,
.signup-form select:focus {
	outline: none;
	border-color: var(--primary-blue);
	box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.signup-form input::placeholder {
	color: var(--text-muted);
}

.signup-form .cta-button {
	background: linear-gradient(
		135deg,
		var(--primary-blue) 0%,
		var(--secondary-blue) 100%
	);
	color: var(--white);
	border: none;
	font-weight: 700;
	transition: all 0.3s ease;
	margin-top: var(--spacing-md);
}

.signup-form .cta-button:hover {
	transform: translateY(-4px);
	box-shadow: 0 15px 40px rgba(99, 102, 241, 0.3);
}

.form-notice {
	text-align: center;
	font-size: 0.8rem;
	color: var(--text-muted);
	margin: 0;
	font-weight: 500;
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

@media (max-width: 768px) {
	:root {
		--spacing-2xl: 2.5rem;
		--spacing-xl: 2rem;
	}

	h1 {
		font-size: 2rem;
	}

	h2 {
		font-size: 1.75rem;
		margin-bottom: var(--spacing-lg);
	}

	h3 {
		font-size: 1.25rem;
	}

	.cta-button {
		padding: 0.875rem 1.5rem;
		font-size: 0.95rem;
	}

	.cta-button.primary.large {
		padding: 1rem 2rem;
		font-size: 1rem;
	}

	.hero {
		grid-template-columns: 1fr;
		padding: 9rem var(--spacing-md) 3rem;
		min-height: auto;
	}

	.hero-headline {
		font-size: 2rem;
	}

	.hero-subheadline {
		font-size: 1rem;
	}

	.trust-grid,
	.testimonials-grid {
		grid-template-columns: 1fr;
	}

	.trust-section,
	.features-section,
	.testimonials-section,
	.resources-section,
	.final-cta-section {
		padding: var(--spacing-xl) var(--spacing-md);
	}
}

@media (max-width: 480px) {
	h1 {
		font-size: 1.5rem;
	}

	h2 {
		font-size: 1.4rem;
	}

	.nav-links {
		display: none;
	}

	.hero-headline {
		font-size: 1.5rem;
	}

	.feature-number {
		font-size: 1.8rem;
	}

	.footer-grid {
		grid-template-columns: 1fr;
	}
}

/* MODERN RESOURCES SECTION */
.resources-section-modern {
	padding: 6rem 0;
	background-color: #f8fafc; /* Slate 50 */
	position: relative;
	overflow: hidden;
}

.resources-header-modern {
	text-align: center;
	max-width: 800px;
	margin: 0 auto 4rem;
}

.resources-grid-modern {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
}

.resource-card-modern {
	background: #ffffff;
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
		0 2px 4px -1px rgba(0, 0, 0, 0.06);
	transition: all 0.3s ease;
	display: flex;
	flex-direction: column;
	border: 1px solid #e2e8f0;
}

.resource-card-modern:hover {
	transform: translateY(-5px);
	box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1),
		0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.resource-image-wrapper {
	position: relative;
	padding-top: 60%; /* 16:9 Aspect Ratio approx */
	overflow: hidden;
}

.resource-image {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}

.resource-card-modern:hover .resource-image {
	transform: scale(1.05);
}

.resource-tag {
	position: absolute;
	top: 1rem;
	left: 1rem;
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(4px);
	padding: 0.35rem 0.75rem;
	border-radius: 9999px;
	font-size: 0.75rem;
	font-weight: 700;
	color: #4f46e5; /* Indigo 600 */
	text-transform: uppercase;
	letter-spacing: 0.05em;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.resource-content {
	padding: 1.5rem;
	display: flex;
	flex-direction: column;
	flex-grow: 1;
}

.resource-title {
	font-size: 1.25rem;
	font-weight: 700;
	color: #1e293b; /* Slate 800 */
	margin-bottom: 0.75rem;
	line-height: 1.4;
}

.resource-excerpt {
	color: #64748b; /* Slate 500 */
	font-size: 1rem;
	line-height: 1.6;
	margin-bottom: 1.5rem;
	flex-grow: 1;
}

.resource-link-modern {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	color: #4f46e5;
	font-weight: 600;
	text-decoration: none;
	transition: gap 0.2s ease;
}

.resource-link-modern:hover {
	gap: 0.75rem;
	color: #4338ca;
}

@media (max-width: 1024px) {
	.resources-grid-modern {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 640px) {
	.resources-grid-modern {
		grid-template-columns: 1fr;
	}

	.resources-section-modern {
		padding: 4rem 0;
	}
}

/* MODERN FINAL CTA SECTION */
.final-cta-section-modern {
	padding: 6rem 0;
	background-color: #0f172a; /* Slate 900 */
	position: relative;
	overflow: hidden;
}

/* Background decoration */
.final-cta-section-modern::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 1px;
	background: linear-gradient(
		90deg,
		transparent,
		rgba(255, 255, 255, 0.1),
		transparent
	);
}

.final-cta-wrapper-modern {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: center;
	background: rgba(
		30,
		41,
		59,
		0.5
	); /* Slate 800 with opacity */
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 24px;
	padding: 3rem;
	position: relative;
	backdrop-filter: blur(10px);
}

/* Glow effect behind the card */
.final-cta-wrapper-modern::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 100%;
	height: 100%;
	background: radial-gradient(
		circle at center,
		rgba(99, 102, 241, 0.15) 0%,
		transparent 70%
	);
	z-index: -1;
	pointer-events: none;
}

.final-cta-content-modern {
	z-index: 1;
}

.final-cta-title-modern {
	font-size: 3rem;
	font-weight: 800;
	color: #ffffff;
	line-height: 1.1;
	margin-bottom: 1.5rem;
	letter-spacing: -0.02em;
}

.final-cta-subtitle-modern {
	font-size: 1.125rem;
	color: #94a3b8; /* Slate 400 */
	line-height: 1.6;
	margin-bottom: 2.5rem;
	max-width: 90%;
}

.final-cta-actions-modern {
	display: flex;
	gap: 1rem;
	margin-bottom: 2.5rem;
	flex-wrap: wrap;
}

.cta-button-modern {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 1rem 2rem;
	border-radius: 12px;
	font-weight: 600;
	font-size: 1rem;
	transition: all 0.2s ease;
	text-decoration: none;
}

.cta-button-modern.primary {
	background: #6366f1; /* Indigo 500 */
	color: #ffffff;
	box-shadow: 0 4px 6px -1px rgba(99, 102, 241, 0.3),
		0 2px 4px -1px rgba(99, 102, 241, 0.15);
}

.cta-button-modern.primary:hover {
	background: #4f46e5; /* Indigo 600 */
	transform: translateY(-2px);
	box-shadow: 0 10px 15px -3px rgba(99, 102, 241, 0.4),
		0 4px 6px -2px rgba(99, 102, 241, 0.2);
}

.cta-button-modern.secondary {
	background: rgba(255, 255, 255, 0.1);
	color: #ffffff;
	border: 1px solid rgba(255, 255, 255, 0.1);
}

.cta-button-modern.secondary:hover {
	background: rgba(255, 255, 255, 0.15);
	border-color: rgba(255, 255, 255, 0.2);
}

.final-cta-trust-modern {
	display: flex;
	gap: 1.5rem;
	flex-wrap: wrap;
}

.trust-item-modern {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	color: #cbd5e1; /* Slate 300 */
	font-size: 0.875rem;
	font-weight: 500;
}

.trust-icon-modern {
	color: #34d399; /* Emerald 400 */
}

.final-cta-image-wrapper-modern {
	position: relative;
	height: 100%;
	min-height: 400px;
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.3),
		0 10px 10px -5px rgba(0, 0, 0, 0.2);
}

.final-cta-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.7s ease;
}

.final-cta-wrapper-modern:hover .final-cta-image {
	transform: scale(1.05);
}

/* Overlay on image to ensure it sits well in dark theme */
.final-cta-image-wrapper-modern::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(
		to bottom,
		transparent 0%,
		rgba(15, 23, 42, 0.3) 100%
	);
	pointer-events: none;
}

@media (max-width: 1024px) {
	.final-cta-wrapper-modern {
		grid-template-columns: 1fr;
		gap: 3rem;
		padding: 2.5rem;
	}

	.final-cta-image-wrapper-modern {
		min-height: 300px;
		order: -1; /* Image on top on mobile? Or bottom? Let's keep it bottom or remove order to keep it bottom */
		order: 0;
	}

	.final-cta-title-modern {
		font-size: 2.5rem;
	}
}

@media (max-width: 640px) {
	.final-cta-section-modern {
		padding: 4rem 0;
	}

	.final-cta-wrapper-modern {
		padding: 1.5rem;
		border-radius: 16px;
	}

	.final-cta-title-modern {
		font-size: 2rem;
	}

	.final-cta-actions-modern {
		flex-direction: column;
		width: 100%;
	}

	.cta-button-modern {
		width: 100%;
	}
}

/* MODERN CONTACT SECTION */
.contact-section-modern {
	padding: 6rem 0;
	background-color: #ffffff;
	position: relative;
}

.contact-wrapper-modern {
	display: grid;
	grid-template-columns: 1fr 1.2fr;
	gap: 4rem;
	align-items: start;
}

.contact-info-modern {
	padding-right: 2rem;
}

.contact-title-modern {
	font-size: 2.5rem;
	font-weight: 800;
	color: #1e293b; /* Slate 800 */
	margin-bottom: 1rem;
	line-height: 1.2;
}

.contact-subtitle-modern {
	font-size: 1.125rem;
	color: #64748b; /* Slate 500 */
	line-height: 1.6;
	margin-bottom: 3rem;
}

.contact-details-modern {
	display: flex;
	flex-direction: column;
	gap: 2.5rem;
}

.contact-item-modern {
	display: flex;
	gap: 1.5rem;
}

.contact-icon-wrapper {
	width: 48px;
	height: 48px;
	background: #e0e7ff; /* Indigo 100 */
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #4f46e5; /* Indigo 600 */
	flex-shrink: 0;
}

.contact-item-modern h3 {
	font-size: 1.125rem;
	font-weight: 700;
	color: #1e293b;
	margin-bottom: 0.25rem;
}

.contact-item-modern p {
	color: #64748b;
	font-size: 1rem;
	margin-bottom: 0.5rem;
}

.contact-item-modern a {
	color: #4f46e5;
	font-weight: 600;
	text-decoration: none;
	transition: color 0.2s ease;
}

.contact-item-modern a:hover {
	color: #4338ca; /* Indigo 700 */
}

.contact-form-wrapper-modern {
	background: #f8fafc; /* Slate 50 */
	padding: 3rem;
	border-radius: 24px;
	border: 1px solid #e2e8f0;
}

.contact-form-modern {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.form-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1.5rem;
}

.form-group-modern {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.form-group-modern label {
	font-size: 0.875rem;
	font-weight: 600;
	color: #334155; /* Slate 700 */
}

.form-group-modern input,
.form-group-modern textarea {
	padding: 0.75rem 1rem;
	border: 1px solid #cbd5e1; /* Slate 300 */
	border-radius: 8px;
	font-size: 1rem;
	color: #1e293b;
	background: #ffffff;
	transition: all 0.2s ease;
}

.form-group-modern input:focus,
.form-group-modern textarea:focus {
	outline: none;
	border-color: #6366f1; /* Indigo 500 */
	box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.contact-submit-modern {
	background: #4f46e5;
	color: #ffffff;
	border: none;
	padding: 1rem 2rem;
	border-radius: 8px;
	font-weight: 600;
	font-size: 1rem;
	cursor: pointer;
	transition: all 0.2s ease;
	margin-top: 1rem;
}

.contact-submit-modern:hover {
	background: #4338ca;
	transform: translateY(-1px);
	box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
		0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

@media (max-width: 1024px) {
	.contact-wrapper-modern {
		grid-template-columns: 1fr;
		gap: 3rem;
	}

	.contact-info-modern {
		padding-right: 0;
	}
}

@media (max-width: 640px) {
	.contact-section-modern {
		padding: 4rem 0;
	}

	.form-row {
		grid-template-columns: 1fr;
	}

	.contact-form-wrapper-modern {
		padding: 1.5rem;
	}
}

/* MODERN FOOTER SECTION */
.footer-modern {
    background-color: #0f172a; /* Slate 900 */
    color: #cbd5e1; /* Slate 300 */
    padding: 5rem 0 2rem;
    font-size: 0.95rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-top-modern {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-brand-modern {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-logo-modern {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #ffffff;
    font-weight: 700;
    font-size: 1.5rem;
    text-decoration: none;
}

.footer-logo-icon-modern {
    color: #6366f1; /* Indigo 500 */
}

.footer-description-modern {
    line-height: 1.6;
    color: #94a3b8; /* Slate 400 */
    max-width: 300px;
}

.footer-social-modern {
    display: flex;
    gap: 1rem;
}

.social-link-modern {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #cbd5e1;
    transition: all 0.2s ease;
    text-decoration: none;
}

.social-link-modern:hover {
    background: #6366f1;
    color: #ffffff;
    transform: translateY(-2px);
}

.footer-column-modern h4 {
    color: #ffffff;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.footer-links-modern {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-link-modern {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-link-modern:hover {
    color: #6366f1;
}

.footer-bottom-modern {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.footer-copyright-modern {
    color: #64748b; /* Slate 500 */
    font-size: 0.875rem;
}

.footer-legal-modern {
    display: flex;
    gap: 2rem;
}

.legal-link-modern {
    color: #64748b;
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.2s ease;
}

.legal-link-modern:hover {
    color: #cbd5e1;
}

@media (max-width: 1024px) {
    .footer-top-modern {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
        text-align: center;
    }

    .footer-brand-modern {
        align-items: center;
    }

    .footer-social-modern {
        justify-content: center;
    }

    .footer-links-modern {
        align-items: center;
    }

    .footer-bottom-modern {
        flex-direction: column;
        text-align: center;
    }

    .footer-legal-modern {
        justify-content: center;
    }
}

@media (max-width: 640px) {
    .footer-top-modern {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center;
    }

    .footer-brand-modern {
        align-items: center;
    }

    .footer-social-modern {
        justify-content: center;
    }

    .footer-links-modern {
        align-items: center;
    }
    
    .footer-bottom-modern {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-legal-modern {
        justify-content: center;
    }
}
