/* SkillSwap Hub Landing Page Styles */

:root {
	--primary-color: #0056b3; /* Darker blue for better contrast */
	--accent-color: #0d7f5c; /* Darker teal for better contrast */
	--secondary-accent: #fd7e14; /* Orange */
	--background-color: #f8f9fa;
	--text-color: #1a1a1a;
	--text-muted: #4a4a4a;
	--light-text: #555;
	--white: #fff;
	--shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Smooth transition animations */
@keyframes fadeInGradient {
	from {
		opacity: 0;
		transform: translateY(20px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes smoothColorTransition {
	0% {
		opacity: 0.3;
		transform: translateY(10px);
	}
	50% {
		opacity: 0.6;
		transform: translateY(5px);
	}
	100% {
		opacity: 1;
		transform: translateY(0);
	}
}

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

/* Global SVG Icon Styling */
svg {
	display: inline-block;
	vertical-align: middle;
}

.feature-icon,
.badge-icon,
.btn-icon,
svg[class*="icon"] {
	flex-shrink: 0;
	background: none !important;
	border: none !important;
	padding: 0 !important;
	box-shadow: none !important;
	border-radius: 0 !important;
}

html {
	scroll-behavior: smooth;
	scroll-padding-top: 80px; /* Account for fixed header */
}

/* Ensure smooth scrolling works on all elements */
* {
	scroll-behavior: inherit;
}

html {
	scroll-behavior: smooth;
}

/* Smooth section transitions */
section {
	transition: all 0.3s ease;
}

body {
	font-family: "Arial", sans-serif;
	line-height: 1.6;
	color: var(--text-color);
	background-color: var(--background-color);
	margin: 0;
	padding: 0;
}

/* ============================================
   MODERN HEADER STYLES
   ============================================ */

.main-header {
	background: rgba(255, 255, 255, 0.98);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	border-bottom: 1px solid rgba(0, 0, 0, 0.06);
	box-shadow: 0 2px 20px rgba(0, 0, 0, 0.04);
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	transition: all 0.3s
		cubic-bezier(0.4, 0, 0.2, 1);
}

.main-header.scrolled {
	background: rgba(255, 255, 255, 1);
	box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
}

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

/* Logo Section */
.logo-section {
	flex-shrink: 0;
	z-index: 1001;
}

.logo {
	display: flex;
	align-items: center;
	gap: 0.625rem;
	cursor: pointer;
	transition: transform 0.3s ease;
}

.logo:hover {
	transform: translateY(-2px);
}

.logo-icon {
	width: 36px;
	height: 36px;
	flex-shrink: 0;
	filter: drop-shadow(
		0 2px 8px rgba(0, 86, 179, 0.2)
	);
	transition: all 0.3s ease;
	display: block;
}

.logo:hover .logo-icon {
	filter: drop-shadow(
		0 4px 12px rgba(0, 86, 179, 0.3)
	);
	transform: rotate(5deg);
}

.logo-text {
	display: flex;
	align-items: center;
	gap: 0.25rem;
	font-weight: 700;
	letter-spacing: -0.02em;
	line-height: 1;
}

.logo-main {
	font-size: 1.4rem;
	background: linear-gradient(
		135deg,
		#0056b3 0%,
		#0d4da3 100%
	);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	font-weight: 800;
	line-height: 1;
}

.logo-sub {
	font-size: 1.4rem;
	color: #2c3e50;
	font-weight: 600;
	line-height: 1;
}

/* Main Navigation */
.main-nav {
	flex: 1;
	display: flex;
	justify-content: center;
}

.nav-menu {
	display: flex;
	list-style: none;
	gap: 0.5rem;
	margin: 0;
	padding: 0;
}

.nav-item {
	position: relative;
}

.nav-link {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.625rem 1rem;
	color: #2c3e50;
	font-size: 0.95rem;
	font-weight: 500;
	text-decoration: none;
	border-radius: 10px;
	transition: all 0.3s
		cubic-bezier(0.4, 0, 0.2, 1);
	position: relative;
	overflow: hidden;
}

.nav-link::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(
		135deg,
		rgba(0, 86, 179, 0.08) 0%,
		rgba(13, 77, 163, 0.08) 100%
	);
	opacity: 0;
	transition: opacity 0.3s ease;
	border-radius: 10px;
}

.nav-link:hover::before {
	opacity: 1;
}

.nav-link:hover {
	color: #0056b3;
	transform: translateY(-1px);
}

.nav-icon {
	width: 18px;
	height: 18px;
	flex-shrink: 0;
	transition: all 0.3s ease;
}

.nav-link:hover .nav-icon {
	transform: scale(1.1);
}

/* Header Actions */
.header-actions {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	flex-shrink: 0;
}

.btn-header {
	padding: 0.625rem 1.25rem;
	font-size: 0.95rem;
	font-weight: 600;
	text-decoration: none;
	border-radius: 10px;
	transition: all 0.3s
		cubic-bezier(0.4, 0, 0.2, 1);
	cursor: pointer;
	border: none;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	white-space: nowrap;
}

.btn-outline {
	color: #2c3e50;
	background: transparent;
	border: 1.5px solid #cbd5e1;
}

.btn-outline:hover {
	background: #f8fafc;
	border-color: #cbd5e1;
	transform: translateY(-1px);
}

.btn-primary-header {
	color: white;
	background: linear-gradient(
		135deg,
		#0056b3 0%,
		#0d4da3 100%
	);
	box-shadow: 0 2px 8px rgba(0, 86, 179, 0.25);
	border: 1.5px solid transparent;
}

.btn-primary-header:hover {
	box-shadow: 0 4px 16px rgba(0, 86, 179, 0.35);
	transform: translateY(-2px);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
	display: none;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 4px;
	background: transparent;
	border: none;
	cursor: pointer;
	padding: 0.5rem;
	z-index: 1002;
	transition: all 0.3s ease;
	position: relative;
	width: 44px;
	height: 44px;
}

.mobile-menu-toggle.active {
	background: transparent;
}

.hamburger-line {
	width: 22px;
	height: 2px;
	background: #0056b3;
	border-radius: 1px;
	transition: all 0.3s
		cubic-bezier(0.4, 0, 0.2, 1);
	display: block;
}

.mobile-menu-toggle:hover .hamburger-line {
	background: #0d4da3;
}

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

.mobile-menu-toggle.active
	.hamburger-line:nth-child(2) {
	opacity: 0;
	transform: translateX(-20px);
}

.mobile-menu-toggle.active
	.hamburger-line:nth-child(3) {
	transform: translateY(-7.5px) rotate(-45deg);
}

/* Mobile Navigation Overlay */
.mobile-nav-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	background: rgba(0, 0, 0, 0.5);
	z-index: 1001;
	display: none;
}

.mobile-nav-overlay.active {
	display: block;
}

.mobile-nav-content {
	position: absolute;
	top: 0;
	right: 0;
	width: 85%;
	max-width: 400px;
	height: 100vh;
	background: white;
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
	box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
	animation: slideIn 0.3s ease-out;
	padding: 5rem 1.25rem 4rem;
	display: flex;
	flex-direction: column;
}

@keyframes slideIn {
	from {
		transform: translateX(100%);
	}
	to {
		transform: translateX(0);
	}
}

.mobile-nav-menu {
	list-style: none;
	padding: 0;
	margin: 0 0 2rem 0;
}

.mobile-nav-item {
	margin-bottom: 0.5rem;
}

.mobile-nav-link {
	display: flex;
	align-items: center;
	gap: 1rem;
	padding: 1rem;
	color: #1e293b;
	font-size: 1rem;
	font-weight: 500;
	text-decoration: none;
	border-radius: 10px;
	transition: all 0.3s ease;
	background: #f8fafc;
}

.mobile-nav-link:hover {
	background: linear-gradient(
		135deg,
		#0056b3 0%,
		#0d4da3 100%
	);
	color: white;
}

.mobile-nav-icon {
	width: 24px;
	height: 24px;
	flex-shrink: 0;
}

.mobile-nav-actions {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	padding-top: 1.5rem;
	padding-bottom: 1.5rem;
	border-top: 2px solid #e2e8f0;
	margin-top: auto;
	flex-shrink: 0;
}

.btn-mobile-nav {
	padding: 1rem 1.5rem;
	font-size: 1rem;
	font-weight: 600;
	text-decoration: none;
	border-radius: 10px;
	transition: all 0.3s ease;
	cursor: pointer;
	border: none;
	display: block;
	text-align: center;
}

.btn-outline-mobile {
	color: #2c3e50;
	background: transparent;
	border: 2px solid #e2e8f0;
}

.btn-outline-mobile:hover {
	background: #f8fafc;
	border-color: #cbd5e1;
}

.btn-primary-mobile {
	color: white;
	background: linear-gradient(
		135deg,
		#0056b3 0%,
		#0d4da3 100%
	);
	box-shadow: 0 4px 12px rgba(0, 86, 179, 0.3);
}

.btn-primary-mobile:hover {
	box-shadow: 0 6px 20px rgba(0, 86, 179, 0.4);
	transform: translateY(-2px);
}

/* Responsive Design */

/* Large Desktop (1440px+) - Optimal spacing */
@media (min-width: 1440px) {
	.header-container {
		max-width: 1400px;
		padding: 0 3rem;
	}

	.nav-menu {
		gap: 1rem;
	}

	.nav-link {
		padding: 0.75rem 1.25rem;
		font-size: 1rem;
	}
}

/* Desktop (1200px - 1439px) - Comfortable spacing */
@media (min-width: 1200px) and (max-width: 1439px) {
	.header-container {
		padding: 0 2.5rem;
	}
}

/* Tablet Landscape / Small Desktop (1024px - 1199px) - Compact navigation */
@media (max-width: 1199px) {
	.header-container {
		padding: 0 2rem;
		gap: 1.5rem;
	}

	.nav-menu {
		gap: 0.25rem;
	}

	.nav-link {
		padding: 0.5rem 0.875rem;
		font-size: 0.9rem;
		gap: 0.375rem;
	}

	.nav-icon {
		width: 16px;
		height: 16px;
	}

	.btn-header {
		padding: 0.5rem 1rem;
		font-size: 0.9rem;
	}
}

/* Tablet Portrait (900px - 1023px) - Condensed layout */
@media (max-width: 1023px) {
	.header-container {
		padding: 0 1.5rem;
		gap: 1rem;
	}

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

	.logo-main,
	.logo-sub {
		font-size: 1.4rem;
	}

	.nav-link span {
		display: none;
	}

	.nav-link {
		padding: 0.625rem;
		justify-content: center;
	}

	.nav-icon {
		margin: 0;
	}

	.btn-outline {
		padding: 0.5rem 0.875rem;
		font-size: 0.875rem;
	}

	.btn-primary-header {
		padding: 0.5rem 1rem;
		font-size: 0.875rem;
	}
}

/* Mobile Devices (< 768px) - Mobile navigation starts */
@media (max-width: 767px) {
	.main-nav {
		display: none;
	}

	.header-actions .btn-header {
		display: none;
	}

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

	.header-container {
		height: 70px;
	}

	.mobile-nav-content {
		width: 100%;
		max-width: 100%;
	}

	#hero {
		min-height: 100vh;
		flex-direction: column;
		padding: 2rem 1.5rem;
		text-align: center;
	}

	.hero-content {
		max-width: 100%;
		align-items: center;
		text-align: center;
		padding: 0;
		margin-bottom: 2rem;
	}

	.hero-visual {
		width: 100%;
		padding: 0;
	}

	.hero-image {
		max-width: 100%;
	}
}

/* Small Mobile (480px - 575px) - Compact mobile */
@media (max-width: 575px) {
	.header-container {
		padding: 0 1rem;
		height: 60px;
	}

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

	.logo-main,
	.logo-sub {
		font-size: 1.15rem;
	}

	.logo-text {
		gap: 0.15rem;
	}

	.mobile-nav-overlay {
		top: 60px;
	}

	.mobile-nav-content {
		padding: 1.25rem 1.25rem 3.5rem;
	}

	.mobile-nav-link {
		padding: 0.75rem;
		font-size: 0.95rem;
		gap: 0.875rem;
	}

	.mobile-nav-icon {
		width: 20px;
		height: 20px;
	}

	.btn-mobile-nav {
		padding: 0.75rem 1.25rem;
		font-size: 0.95rem;
	}

	.hamburger-line {
		width: 22px;
	}
}

/* Extra Small Mobile (< 480px) - Minimal layout */
@media (max-width: 479px) {
	.header-container {
		padding: 0 0.875rem;
		height: 56px;
	}

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

	.logo-main {
		font-size: 1.05rem;
	}

	.logo-sub {
		font-size: 1.05rem;
	}

	.mobile-nav-overlay {
		top: 56px;
	}

	.mobile-nav-content {
		padding: 1rem 1rem 3.5rem;
	}

	.mobile-nav-link {
		padding: 0.625rem;
		font-size: 0.9rem;
		gap: 0.75rem;
	}

	.mobile-nav-actions {
		gap: 0.75rem;
	}

	.btn-mobile-nav {
		padding: 0.625rem 1rem;
		font-size: 0.9rem;
	}

	.hamburger-line {
		width: 20px;
		height: 2px;
	}

	.mobile-menu-toggle {
		padding: 0.375rem;
		gap: 4px;
	}

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

	.mobile-menu-toggle.active
		.hamburger-line:nth-child(3) {
		transform: translateY(-6px) rotate(-45deg);
	}
}

/* Landscape Mobile Optimization */
@media (max-width: 767px) and (orientation: landscape) {
	.header-container {
		height: 60px;
	}

	.mobile-nav-overlay {
		top: 60px;
	}

	.mobile-nav-content {
		padding: 1rem 1.5rem 3.5rem;
	}

	.mobile-nav-menu {
		margin-bottom: 1rem;
		gap: 0.25rem;
	}

	.mobile-nav-link {
		padding: 0.625rem 1rem;
		font-size: 0.9rem;
	}

	.mobile-nav-actions {
		padding-top: 0.75rem;
		gap: 0.75rem;
	}

	.btn-mobile-nav {
		padding: 0.625rem 1.25rem;
	}
}

/* High DPI / Retina Display Optimization */
@media (-webkit-min-device-pixel-ratio: 2),
	(min-resolution: 192dpi) {
	.main-header {
		border-bottom-width: 0.5px;
	}

	.nav-link::before {
		border-radius: 9px;
	}
}

/* Reduced Motion Preference */
@media (prefers-reduced-motion: reduce) {
	.main-header,
	.nav-link,
	.btn-header,
	.mobile-menu-toggle,
	.hamburger-line,
	.mobile-nav-overlay,
	.mobile-nav-content,
	.logo,
	.logo-icon {
		transition: none;
		animation: none;
	}
}

/* Touch Device Optimization */
@media (hover: none) and (pointer: coarse) {
	.nav-link {
		padding: 0.75rem 1rem;
	}

	.btn-header {
		min-height: 44px;
		min-width: 44px;
	}

	.mobile-nav-link {
		min-height: 52px;
	}

	.btn-mobile-nav {
		min-height: 52px;
	}

	.mobile-menu-toggle {
		min-height: 44px;
		min-width: 44px;
	}
}

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

#hero {
	min-height: 100vh;
	background: linear-gradient(
		135deg,
		#f8f9fa 0%,
		#ffffff 100%
	);
	position: relative;
	overflow: hidden;
	padding: 8rem 0 4rem;
	display: flex;
	align-items: center;
}

#hero::before {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	width: 50%;
	height: 100%;
	background: linear-gradient(
		135deg,
		rgba(0, 86, 179, 0.03) 0%,
		rgba(13, 77, 163, 0.05) 100%
	);
	pointer-events: none;
	z-index: 0;
}

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

/* Hero Content */
.hero-content {
	display: flex;
	flex-direction: column;
	gap: 2rem;
	animation: fadeInLeft 0.8s ease-out;
}

@keyframes fadeInLeft {
	from {
		opacity: 0;
		transform: translateX(-30px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

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

.hero-badge {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.625rem 1.25rem;
	background: linear-gradient(
		135deg,
		rgba(0, 86, 179, 0.1) 0%,
		rgba(13, 77, 163, 0.1) 100%
	);
	border: 1px solid rgba(0, 86, 179, 0.2);
	border-radius: 50px;
	font-size: 0.875rem;
	font-weight: 600;
	color: #0056b3;
	width: fit-content;
	animation: fadeInUp 0.6s ease-out 0.2s both;
}

.badge-icon {
	width: 16px;
	height: 16px;
	stroke: #0056b3;
	background: transparent;
	fill: none;
	stroke-width: 2.5;
	display: block;
}

.hero-title {
	font-size: clamp(2.5rem, 5vw, 3.75rem);
	font-weight: 800;
	line-height: 1.1;
	color: #1e293b;
	margin: 0;
	letter-spacing: -0.02em;
}

.title-line {
	display: block;
	animation: fadeInUp 0.6s ease-out both;
}

.title-line:nth-child(1) {
	animation-delay: 0.3s;
}

.title-line:nth-child(2) {
	animation-delay: 0.4s;
}

.title-line:nth-child(3) {
	animation-delay: 0.5s;
}

.gradient-text {
	background: linear-gradient(
		135deg,
		#0056b3 0%,
		#0d4da3 100%
	);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.hero-description {
	font-size: clamp(1.05rem, 1.5vw, 1.2rem);
	line-height: 1.7;
	color: #2c3e50;
	margin: 0;
	max-width: 560px;
	animation: fadeInUp 0.6s ease-out 0.6s both;
}

/* Hero CTA Buttons */
.hero-cta {
	display: flex;
	align-items: center;
	gap: 1rem;
	flex-wrap: wrap;
	animation: fadeInUp 0.6s ease-out 0.7s both;
}

.btn-hero-primary,
.btn-hero-secondary {
	display: inline-flex;
	align-items: center;
	gap: 0.625rem;
	padding: 1rem 2rem;
	font-size: 1rem;
	font-weight: 600;
	border-radius: 12px;
	cursor: pointer;
	transition: all 0.3s
		cubic-bezier(0.4, 0, 0.2, 1);
	border: none;
	white-space: nowrap;
	text-decoration: none;
}

.btn-hero-primary {
	background: linear-gradient(
		135deg,
		#0056b3 0%,
		#0d4da3 100%
	);
	color: white;
	box-shadow: 0 4px 20px rgba(0, 86, 179, 0.4);
}

.btn-hero-primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 30px rgba(0, 86, 179, 0.5);
}

.btn-hero-primary:active {
	transform: translateY(0);
}

.btn-icon {
	width: 20px;
	height: 20px;
	transition: transform 0.3s ease;
}

.btn-hero-primary:hover .btn-icon {
	transform: translateX(4px);
}

.btn-hero-secondary {
	background: white;
	color: #2c3e50;
	border: 2px solid #e2e8f0;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.btn-hero-secondary:hover {
	background: #f8fafc;
	border-color: #cbd5e1;
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.btn-play-icon {
	width: 18px;
	height: 18px;
	fill: #0056b3;
}

/* Hero Features */
.hero-features {
	display: flex;
	align-items: center;
	gap: 2rem;
	flex-wrap: wrap;
	animation: fadeInUp 0.6s ease-out 0.8s both;
}

.feature-item {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	color: #475569;
	font-size: 0.95rem;
	font-weight: 500;
	background: none;
	border: none;
	padding: 0;
}

.feature-item span {
	background: none;
	border: none;
	padding: 0;
}

.feature-icon {
	width: 20px;
	height: 20px;
	stroke: #0056b3;
	flex-shrink: 0;
	background: none !important;
	fill: none;
	border: none;
	border-radius: 0;
	padding: 0;
	box-shadow: none;
}

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

.visual-wrapper {
	position: relative;
	width: 100%;
	height: 100%;
}

.hero-image-container {
	position: relative;
	border-radius: 24px;
	overflow: hidden;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
	background: linear-gradient(
		135deg,
		#0056b3 0%,
		#0d4da3 100%
	);
}

.hero-main-image {
	width: 100%;
	height: auto;
	display: block;
	border-radius: 24px;
	position: relative;
	z-index: 1;
}

.image-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(
		135deg,
		rgba(0, 86, 179, 0.1) 0%,
		rgba(13, 77, 163, 0.1) 100%
	);
	z-index: 2;
	pointer-events: none;
}

/* Floating Stats */
.floating-stat {
	position: absolute;
	background: white;
	padding: 1rem 1.5rem;
	border-radius: 16px;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
	display: flex;
	align-items: center;
	gap: 1rem;
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.8);
	z-index: 3;
	animation: floatUpDown 3s ease-in-out infinite;
}

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

.stat-1 {
	top: 10%;
	left: -5%;
	animation-delay: 0s;
}

.stat-2 {
	top: 50%;
	right: -5%;
	animation-delay: 0.5s;
}

.stat-3 {
	bottom: 10%;
	left: 5%;
	animation-delay: 1s;
}

.stat-icon {
	width: 40px;
	height: 40px;
	background: linear-gradient(
		135deg,
		#0056b3 0%,
		#0d4da3 100%
	);
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.stat-icon svg {
	width: 20px;
	height: 20px;
	stroke: white;
}

.stat-info {
	display: flex;
	flex-direction: column;
}

.stat-number {
	font-size: 1.5rem;
	font-weight: 700;
	color: #1e293b;
	line-height: 1;
}

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

/* Decorative Elements */
.hero-decoration {
	position: absolute;
	border-radius: 50%;
	background: linear-gradient(
		135deg,
		rgba(0, 86, 179, 0.1) 0%,
		rgba(13, 77, 163, 0.1) 100%
	);
	z-index: 0;
	animation: pulse 4s ease-in-out infinite;
}

.decoration-1 {
	width: 300px;
	height: 300px;
	top: -10%;
	right: -10%;
	animation-delay: 0s;
}

.decoration-2 {
	width: 200px;
	height: 200px;
	bottom: 10%;
	right: 20%;
	animation-delay: 1s;
}

.decoration-3 {
	width: 150px;
	height: 150px;
	top: 40%;
	left: -5%;
	animation-delay: 2s;
}

/* Scroll Indicator */
.scroll-indicator {
	position: absolute;
	bottom: 2rem;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.5rem;
	animation: fadeInUp 0.6s ease-out 1s both;
	z-index: 10;
}

.scroll-mouse {
	width: 24px;
	height: 40px;
	border: 2px solid #cbd5e1;
	border-radius: 20px;
	position: relative;
	display: flex;
	justify-content: center;
	padding-top: 6px;
}

.scroll-wheel {
	width: 3px;
	height: 8px;
	background: #0056b3;
	border-radius: 2px;
	animation: scrollWheel 1.5s ease-in-out infinite;
}

@keyframes scrollWheel {
	0%,
	100% {
		opacity: 1;
		transform: translateY(0);
	}
	50% {
		opacity: 0.5;
		transform: translateY(8px);
	}
}

.scroll-text {
	font-size: 0.75rem;
	color: #5a6b7a;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 1px;
}

/* Responsive Design for Hero */
@media (max-width: 1024px) {
	.hero-container {
		gap: 3rem;
	}

	.floating-stat {
		padding: 0.75rem 1rem;
	}

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

@media (max-width: 768px) {
	#hero {
		padding: 6rem 0 3rem;
		min-height: auto;
	}

	.hero-container {
		grid-template-columns: 1fr;
		gap: 3rem;
	}

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

	.hero-badge {
		margin: 0 auto;
	}

	.hero-title {
		font-size: clamp(2rem, 8vw, 2.5rem);
	}

	.hero-description {
		text-align: center;
	}

	.hero-cta {
		justify-content: center;
		width: 100%;
	}

	.btn-hero-primary,
	.btn-hero-secondary {
		flex: 1;
		min-width: 140px;
		justify-content: center;
	}

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

	.floating-stat {
		padding: 0.625rem 0.875rem;
	}

	.stat-1 {
		top: 5%;
		left: 0%;
	}

	.stat-2 {
		top: auto;
		bottom: 5%;
		right: 0%;
	}

	.stat-3 {
		display: none;
	}

	.stat-icon {
		width: 32px;
		height: 32px;
	}

	.stat-icon svg {
		width: 16px;
		height: 16px;
	}

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

	.stat-label {
		font-size: 0.75rem;
	}

	.scroll-indicator {
		display: none;
	}
}

@media (max-width: 480px) {
	#hero {
		padding: 5rem 0 2rem;
	}

	.hero-container {
		padding: 0 1.25rem;
		gap: 2rem;
	}

	.hero-badge {
		font-size: 0.75rem;
		padding: 0.5rem 1rem;
	}

	.badge-icon {
		width: 14px;
		height: 14px;
	}

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

	.btn-hero-primary,
	.btn-hero-secondary {
		width: 100%;
		justify-content: center;
	}

	.hero-features {
		flex-direction: column;
		gap: 1rem;
		align-items: flex-start;
		width: 100%;
	}

	.feature-item {
		width: 100%;
		justify-content: center;
		background: none !important;
		border: none !important;
	}

	.scroll-indicator {
		display: none;
	}
}

.btn-footer {
	padding: 0.75rem 1.5rem;
	border: none;
	border-radius: 12px;
	font-size: 1rem;
	cursor: pointer;
	transition: all 0.3s ease;
	font-weight: 600;
	background: linear-gradient(
		135deg,
		#0056b3 0%,
		#0d4da3 100%
	);
	color: white;
	box-shadow: 0 4px 20px rgba(0, 86, 179, 0.4);
}

.btn-footer:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 30px rgba(0, 86, 179, 0.5);
}

section {
	padding: 4rem 4rem;
}

h2 {
	text-align: center;
	font-size: 2.5rem;
	margin-bottom: 2rem;
	color: var(--primary-color);
}

/* ============================================
   MODERN HOW IT WORKS SECTION
   ============================================ */

#how-it-works {
	background: #ffffff;
	padding: 6rem 0;
	position: relative;
	overflow: hidden;
}

.how-it-works-container {
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 2rem;
}

/* Section Header */
.section-header {
	text-align: center;
	margin-bottom: 4rem;
	animation: fadeInUp 0.6s ease-out;
}

.section-badge {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.5rem 1rem;
	background: linear-gradient(
		135deg,
		rgba(0, 86, 179, 0.1) 0%,
		rgba(13, 77, 163, 0.1) 100%
	);
	border: 1px solid rgba(0, 86, 179, 0.2);
	border-radius: 50px;
	font-size: 0.875rem;
	font-weight: 600;
	color: #0056b3;
	margin-bottom: 1rem;
}

.section-badge .badge-icon {
	width: 16px;
	height: 16px;
	stroke: #0056b3;
	stroke-width: 2.5;
	display: block;
	fill: none;
}

.section-title {
	font-size: clamp(2.25rem, 4vw, 3rem);
	font-weight: 800;
	color: #1e293b;
	margin: 0 0 1rem 0;
	letter-spacing: -0.02em;
}

.section-description {
	font-size: clamp(1rem, 1.5vw, 1.125rem);
	color: #475569;
	max-width: 600px;
	margin: 0 auto;
	line-height: 1.7;
}

/* Steps Grid */
.steps-grid {
	display: grid;
	grid-template-columns: repeat(
		auto-fit,
		minmax(280px, 1fr)
	);
	gap: 2rem;
	margin-bottom: 4rem;
}

/* Step Card */
.step-card {
	position: relative;
	animation: fadeInUp 0.6s ease-out both;
}

.step-card:nth-child(1) {
	animation-delay: 0.1s;
}
.step-card:nth-child(2) {
	animation-delay: 0.2s;
}
.step-card:nth-child(3) {
	animation-delay: 0.3s;
}
.step-card:nth-child(4) {
	animation-delay: 0.4s;
}

.step-card-inner {
	background: white;
	border: 2px solid #e2e8f0;
	border-radius: 20px;
	padding: 2rem;
	height: 100%;
	position: relative;
	transition: all 0.3s
		cubic-bezier(0.4, 0, 0.2, 1);
	overflow: hidden;
}

.step-card-inner:hover {
	transform: translateY(-8px);
	border-color: #0056b3;
	box-shadow: 0 20px 50px rgba(0, 86, 179, 0.15);
}

.step-card-inner::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(
		135deg,
		#0056b3 0%,
		#0d4da3 100%
	);
	opacity: 0;
	transition: opacity 0.3s ease;
}

.step-card-inner:hover::before {
	opacity: 1;
}

/* Step Badge */
.step-badge {
	position: absolute;
	top: 1.5rem;
	right: 1.5rem;
	background: linear-gradient(
		135deg,
		rgba(0, 86, 179, 0.1) 0%,
		rgba(13, 77, 163, 0.1) 100%
	);
	border: 1px solid rgba(0, 86, 179, 0.2);
	padding: 0.375rem 0.75rem;
	border-radius: 20px;
	transition: all 0.3s ease;
}

.step-card-inner:hover .step-badge {
	background: linear-gradient(
		135deg,
		#0056b3 0%,
		#0d4da3 100%
	);
	border-color: transparent;
}

.step-badge-number {
	font-size: 0.875rem;
	font-weight: 700;
	color: #0056b3;
	letter-spacing: 0.05em;
}

.step-card-inner:hover .step-badge-number {
	color: white;
}

/* Step Icon */
.step-icon-wrapper {
	margin-bottom: 1.5rem;
}

.step-icon-circle {
	width: 64px;
	height: 64px;
	background: linear-gradient(
		135deg,
		rgba(0, 86, 179, 0.1) 0%,
		rgba(13, 77, 163, 0.1) 100%
	);
	border-radius: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
}

.step-card-inner:hover .step-icon-circle {
	background: linear-gradient(
		135deg,
		#0056b3 0%,
		#0d4da3 100%
	);
	transform: scale(1.1) rotate(5deg);
}

.step-icon {
	width: 28px;
	height: 28px;
	stroke: #0056b3;
	transition: stroke 0.3s ease;
}

.step-card-inner:hover .step-icon {
	stroke: white;
}

/* Step Content */
.step-content {
	margin-bottom: 1.5rem;
}

.step-title {
	font-size: 1.25rem;
	font-weight: 700;
	color: #1e293b;
	margin: 0 0 0.75rem 0;
	line-height: 1.3;
}

.step-description {
	font-size: 0.95rem;
	color: #475569;
	line-height: 1.6;
	margin: 0 0 1rem 0;
}

/* Step Features */
.step-features {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.step-features li {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	font-size: 0.875rem;
	color: #2c3e50;
}

.step-features li svg {
	width: 16px;
	height: 16px;
	stroke: #10b981;
	flex-shrink: 0;
}

/* Step Connector */
.step-connector {
	position: absolute;
	top: 50%;
	right: -2rem;
	transform: translateY(-50%);
	display: none;
}

.step-connector svg {
	width: 32px;
	height: 32px;
	stroke: #cbd5e1;
	opacity: 0.5;
}

/* Show connector on desktop for all except last card */
@media (min-width: 1200px) {
	.steps-grid {
		grid-template-columns: repeat(4, 1fr);
	}

	.step-card:not(:last-child) .step-connector {
		display: block;
	}
}

@media (min-width: 768px) and (max-width: 1199px) {
	.steps-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

/* Section CTA */
.section-cta {
	text-align: center;
	padding: 3rem 2rem;
	background: linear-gradient(
		135deg,
		rgba(0, 86, 179, 0.05) 0%,
		rgba(13, 77, 163, 0.05) 100%
	);
	border-radius: 20px;
	border: 2px solid rgba(0, 86, 179, 0.1);
	animation: fadeInUp 0.6s ease-out 0.5s both;
}

.cta-text {
	font-size: 1.25rem;
	font-weight: 600;
	color: #1e293b;
	margin: 0 0 1.5rem 0;
}

.btn-section-cta {
	display: inline-flex;
	align-items: center;
	gap: 0.625rem;
	padding: 1rem 2rem;
	font-size: 1rem;
	font-weight: 600;
	background: linear-gradient(
		135deg,
		#0056b3 0%,
		#0d4da3 100%
	);
	color: white;
	border: none;
	border-radius: 12px;
	cursor: pointer;
	transition: all 0.3s
		cubic-bezier(0.4, 0, 0.2, 1);
	box-shadow: 0 4px 20px rgba(0, 86, 179, 0.4);
}

.btn-section-cta:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 30px rgba(0, 86, 179, 0.5);
}

.btn-section-cta .btn-icon {
	width: 20px;
	height: 20px;
	transition: transform 0.3s ease;
}

.btn-section-cta:hover .btn-icon {
	transform: translateX(4px);
}

/* Responsive Design */
@media (max-width: 768px) {
	#how-it-works {
		padding: 4rem 0;
	}

	.how-it-works-container {
		padding: 0 1.5rem;
	}

	.section-header {
		margin-bottom: 3rem;
	}

	.steps-grid {
		grid-template-columns: 1fr;
		gap: 1.5rem;
		margin-bottom: 3rem;
	}

	.step-card-inner {
		padding: 1.5rem;
	}

	.section-cta {
		padding: 2rem 1.5rem;
	}

	.cta-text {
		font-size: 1.1rem;
	}

	.btn-section-cta {
		width: 100%;
		justify-content: center;
	}
}

@media (max-width: 480px) {
	.step-badge {
		right: 1rem;
	}

	.step-icon-circle {
		width: 56px;
		height: 56px;
	}

	.step-icon {
		width: 24px;
		height: 24px;
	}

	.step-title {
		font-size: 1.125rem;
	}

	.step-description {
		font-size: 0.9rem;
	}
}

/* ============================================
   MODERN FEATURED SKILLS SECTION
   ============================================ */

#featured-skills {
	background: linear-gradient(
		135deg,
		#f8f9fa 0%,
		#ffffff 100%
	);
	padding: 6rem 0;
	position: relative;
	overflow: hidden;
}

#featured-skills::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 40%;
	height: 100%;
	background: linear-gradient(
		135deg,
		rgba(0, 86, 179, 0.03) 0%,
		rgba(13, 77, 163, 0.02) 100%
	);
	pointer-events: none;
	z-index: 0;
}

.featured-skills-container {
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 2rem;
	position: relative;
	z-index: 1;
}

/* Skills Grid */
.skills-grid-modern {
	display: grid;
	grid-template-columns: repeat(
		auto-fit,
		minmax(340px, 1fr)
	);
	gap: 2rem;
	margin-bottom: 4rem;
}

/* Skill Card Modern */
.skill-card-modern {
	background: white;
	border: 2px solid #e2e8f0;
	border-radius: 20px;
	overflow: hidden;
	transition: all 0.3s
		cubic-bezier(0.4, 0, 0.2, 1);
	display: flex;
	flex-direction: column;
	animation: fadeInUp 0.6s ease-out both;
}

.skill-card-modern:nth-child(1) {
	animation-delay: 0.1s;
}
.skill-card-modern:nth-child(2) {
	animation-delay: 0.15s;
}
.skill-card-modern:nth-child(3) {
	animation-delay: 0.2s;
}
.skill-card-modern:nth-child(4) {
	animation-delay: 0.25s;
}
.skill-card-modern:nth-child(5) {
	animation-delay: 0.3s;
}
.skill-card-modern:nth-child(6) {
	animation-delay: 0.35s;
}

.skill-card-modern:hover {
	transform: translateY(-8px);
	border-color: #0056b3;
	box-shadow: 0 20px 50px rgba(0, 86, 179, 0.2);
}

/* Card Header */
.skill-card-header {
	padding: 2rem 2rem 1rem;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
}

.skill-icon-modern {
	width: 64px;
	height: 64px;
	background: linear-gradient(
		135deg,
		rgba(0, 86, 179, 0.1) 0%,
		rgba(13, 77, 163, 0.1) 100%
	);
	border-radius: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
}

.skill-card-modern:hover .skill-icon-modern {
	background: linear-gradient(
		135deg,
		#0056b3 0%,
		#0d4da3 100%
	);
	transform: scale(1.1) rotate(-5deg);
}

.skill-icon-modern svg {
	width: 28px;
	height: 28px;
	stroke: #0056b3;
	transition: stroke 0.3s ease;
}

.skill-card-modern:hover .skill-icon-modern svg {
	stroke: white;
}

.skill-badge {
	background: linear-gradient(
		135deg,
		rgba(0, 86, 179, 0.1) 0%,
		rgba(13, 77, 163, 0.1) 100%
	);
	padding: 0.375rem 0.875rem;
	border-radius: 20px;
	border: 1px solid rgba(0, 86, 179, 0.2);
}

.skill-badge span {
	font-size: 0.75rem;
	font-weight: 600;
	color: #0056b3;
}

/* Card Content */
.skill-card-content {
	padding: 0 2rem 1.5rem;
	flex: 1;
}

.skill-title {
	font-size: 1.375rem;
	font-weight: 700;
	color: #1e293b;
	margin: 0 0 0.75rem 0;
	line-height: 1.3;
}

.skill-description {
	font-size: 0.95rem;
	color: #475569;
	line-height: 1.6;
	margin: 0 0 1rem 0;
}

/* Skill Tags */
.skill-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
}

.skill-tag {
	font-size: 0.75rem;
	font-weight: 600;
	color: #475569;
	background: #f1f5f9;
	padding: 0.375rem 0.75rem;
	border-radius: 12px;
	transition: all 0.3s ease;
}

.skill-card-modern:hover .skill-tag {
	background: #e2e8f0;
	color: #2c3e50;
}

/* Card Footer */
.skill-card-footer {
	padding: 0 2rem 2rem;
}

.btn-skill {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	padding: 0.875rem 1.5rem;
	background: transparent;
	color: #0056b3;
	border: 2px solid #e2e8f0;
	border-radius: 12px;
	font-size: 0.95rem;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s
		cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-skill:hover {
	background: linear-gradient(
		135deg,
		#0056b3 0%,
		#0d4da3 100%
	);
	color: white;
	border-color: transparent;
	transform: translateY(-2px);
}

.btn-skill svg {
	width: 18px;
	height: 18px;
	transition: transform 0.3s ease;
}

.btn-skill:hover svg {
	transform: translateX(4px);
}

/* View All Skills Section */
.view-all-skills {
	text-align: center;
	padding: 3rem 2rem;
	background: linear-gradient(
		135deg,
		rgba(0, 86, 179, 0.05) 0%,
		rgba(13, 77, 163, 0.05) 100%
	);
	border-radius: 20px;
	border: 2px solid rgba(0, 86, 179, 0.1);
	animation: fadeInUp 0.6s ease-out 0.4s both;
}

.view-all-text {
	font-size: 1.125rem;
	font-weight: 600;
	color: #1e293b;
	margin: 0 0 1.5rem 0;
}

.btn-view-all {
	display: inline-flex;
	align-items: center;
	gap: 0.625rem;
	padding: 1rem 2rem;
	font-size: 1rem;
	font-weight: 600;
	background: linear-gradient(
		135deg,
		#0056b3 0%,
		#0d4da3 100%
	);
	color: white;
	border: none;
	border-radius: 12px;
	cursor: pointer;
	transition: all 0.3s
		cubic-bezier(0.4, 0, 0.2, 1);
	box-shadow: 0 4px 20px rgba(0, 86, 179, 0.4);
}

.btn-view-all:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 30px rgba(0, 86, 179, 0.5);
}

.btn-view-all svg {
	width: 20px;
	height: 20px;
	transition: transform 0.3s ease;
}

.btn-view-all:hover svg {
	transform: translateX(4px);
}

/* Responsive Design */
@media (max-width: 1024px) {
	.skills-grid-modern {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 768px) {
	#featured-skills {
		padding: 4rem 0;
	}

	.featured-skills-container {
		padding: 0 1.5rem;
	}

	.skills-grid-modern {
		grid-template-columns: 1fr;
		gap: 1.5rem;
		margin-bottom: 3rem;
	}

	.skill-card-header {
		padding: 1.5rem 1.5rem 1rem;
	}

	.skill-card-content {
		padding: 0 1.5rem 1.25rem;
	}

	.skill-card-footer {
		padding: 0 1.5rem 1.5rem;
	}

	.view-all-skills {
		padding: 2rem 1.5rem;
	}

	.btn-view-all {
		width: 100%;
		justify-content: center;
	}
}

@media (max-width: 480px) {
	.skill-icon-modern {
		width: 56px;
		height: 56px;
	}

	.skill-icon-modern svg {
		width: 24px;
		height: 24px;
	}

	.skill-title {
		font-size: 1.25rem;
	}

	.skill-description {
		font-size: 0.9rem;
	}
}

/* ===========================
   TESTIMONIALS SECTION - MODERN
   =========================== */

#testimonials {
	background: linear-gradient(
		135deg,
		#f8fafc 0%,
		#f1f5f9 100%
	);
	position: relative;
	overflow: hidden;
	padding: 8rem 2rem;
}

#testimonials::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: radial-gradient(
			circle at 10% 20%,
			rgba(0, 86, 179, 0.08) 0%,
			transparent 50%
		),
		radial-gradient(
			circle at 90% 80%,
			rgba(13, 77, 163, 0.08) 0%,
			transparent 50%
		);
	pointer-events: none;
}

.testimonials-container {
	max-width: 1280px;
	margin: 0 auto;
	position: relative;
	z-index: 1;
}

/* Section Header */
.testimonials-container .section-header {
	text-align: center;
	margin-bottom: 4rem;
	animation: fadeInUp 0.6s ease-out;
}

.testimonials-container .section-badge {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	background: linear-gradient(
		135deg,
		#0056b3 0%,
		#0d4da3 100%
	);
	color: white;
	padding: 0.625rem 1.25rem;
	border-radius: 50px;
	font-size: 0.875rem;
	font-weight: 600;
	margin-bottom: 1.5rem;
	box-shadow: 0 4px 12px rgba(0, 86, 179, 0.3);
}

.testimonials-container .badge-icon {
	width: 18px;
	height: 18px;
	stroke: white;
	stroke-width: 2.5;
	display: block;
	fill: none;
}

.testimonials-container .section-title {
	font-size: clamp(2.5rem, 5vw, 3.5rem);
	font-weight: 800;
	color: #1e293b;
	margin: 0 0 1rem 0;
	line-height: 1.2;
}

.testimonials-container .section-description {
	font-size: clamp(1.05rem, 1.5vw, 1.2rem);
	line-height: 1.7;
	color: #475569;
	margin: 0 auto;
	max-width: 680px;
}

/* Testimonial Stats Bar */
.testimonial-stats {
	display: grid;
	grid-template-columns: repeat(
		auto-fit,
		minmax(200px, 1fr)
	);
	gap: 2rem;
	margin-bottom: 4rem;
	animation: fadeInUp 0.6s ease-out 0.2s both;
}

.stat-item {
	display: flex;
	align-items: center;
	gap: 1rem;
	background: white;
	padding: 1.5rem;
	border-radius: 16px;
	border: 2px solid #e2e8f0;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
	transition: all 0.3s ease;
}

.stat-item:hover {
	transform: translateY(-4px);
	box-shadow: 0 8px 24px rgba(0, 86, 179, 0.15);
	border-color: #0056b3;
}

.stat-icon {
	width: 48px;
	height: 48px;
	background: linear-gradient(
		135deg,
		#0056b3 0%,
		#0d4da3 100%
	);
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.stat-icon svg {
	width: 24px;
	height: 24px;
	color: white;
	fill: white;
}

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

.stat-number {
	font-size: 1.5rem;
	font-weight: 700;
	color: #1e293b;
	line-height: 1;
}

.stat-label {
	font-size: 0.875rem;
	color: #475569;
	margin-top: 0.25rem;
}

/* Testimonials Grid */
.testimonials-grid {
	display: grid;
	grid-template-columns: repeat(
		auto-fit,
		minmax(340px, 1fr)
	);
	gap: 2rem;
	margin-bottom: 4rem;
}

.testimonial-card-modern {
	background: white;
	border: 2px solid #e2e8f0;
	border-radius: 20px;
	padding: 2rem;
	position: relative;
	transition: all 0.3s
		cubic-bezier(0.4, 0, 0.2, 1);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
	animation: fadeInUp 0.6s ease-out both;
}

.testimonial-card-modern:nth-child(1) {
	animation-delay: 0.3s;
}

.testimonial-card-modern:nth-child(2) {
	animation-delay: 0.4s;
}

.testimonial-card-modern:nth-child(3) {
	animation-delay: 0.5s;
}

.testimonial-card-modern:hover {
	transform: translateY(-8px);
	box-shadow: 0 12px 32px rgba(0, 86, 179, 0.15);
	border-color: #0056b3;
}

.quote-icon {
	width: 48px;
	height: 48px;
	background: linear-gradient(
		135deg,
		#0056b3 0%,
		#0d4da3 100%
	);
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	flex-shrink: 0;
}

.quote-icon svg {
	width: 24px;
	height: 24px;
}

.testimonial-rating {
	display: flex;
	gap: 4px;
}

.testimonial-rating svg {
	width: 20px;
	height: 20px;
	color: #fbbf24;
}

.testimonial-text {
	font-size: 1rem;
	line-height: 1.7;
	color: #2c3e50;
	margin: 0;
	flex-grow: 1;
}

.testimonial-author {
	display: flex;
	align-items: center;
	gap: 1rem;
	padding-top: 1.5rem;
	border-top: 1px solid #e2e8f0;
}

.author-avatar {
	width: 56px;
	height: 56px;
	border-radius: 50%;
	object-fit: cover;
	border: 3px solid #e2e8f0;
	flex-shrink: 0;
}

.author-info {
	display: flex;
	flex-direction: column;
}

.author-name {
	font-size: 1rem;
	font-weight: 700;
	color: #1e293b;
	margin: 0 0 0.25rem 0;
}

.author-role {
	font-size: 0.875rem;
	color: #475569;
	margin: 0;
}

.testimonial-skills {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
}

.testimonial-skill-tag {
	background: linear-gradient(
		135deg,
		#0056b315 0%,
		#0d4da315 100%
	);
	color: #0056b3;
	padding: 0.5rem 1rem;
	border-radius: 8px;
	font-size: 0.875rem;
	font-weight: 600;
	border: 1px solid #0056b330;
	transition: all 0.3s ease;
}

.testimonial-card-modern:hover
	.testimonial-skill-tag {
	background: linear-gradient(
		135deg,
		#0056b3 0%,
		#0d4da3 100%
	);
	color: white;
	transform: translateY(-2px);
}

/* Bottom CTA */
.testimonials-cta {
	text-align: center;
	padding: 3rem 2rem;
	background: white;
	border-radius: 20px;
	border: 2px solid #e2e8f0;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
	animation: fadeInUp 0.6s ease-out 0.6s both;
}

.cta-text {
	font-size: 1.25rem;
	font-weight: 600;
	color: #1e293b;
	margin: 0 0 1.5rem 0;
}

.btn-testimonials-cta {
	display: inline-flex;
	align-items: center;
	gap: 0.625rem;
	background: linear-gradient(
		135deg,
		#0056b3 0%,
		#0d4da3 100%
	);
	color: white;
	padding: 1rem 2rem;
	border-radius: 12px;
	font-size: 1rem;
	font-weight: 600;
	border: none;
	cursor: pointer;
	transition: all 0.3s
		cubic-bezier(0.4, 0, 0.2, 1);
	box-shadow: 0 4px 20px rgba(0, 86, 179, 0.4);
}

.btn-testimonials-cta:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 30px rgba(0, 86, 179, 0.5);
}

.btn-testimonials-cta svg {
	width: 20px;
	height: 20px;
	transition: transform 0.3s ease;
}

.btn-testimonials-cta:hover svg {
	transform: translateX(4px);
}

/* Responsive Design */
@media (max-width: 1024px) {
	.testimonials-grid {
		grid-template-columns: repeat(
			auto-fit,
			minmax(300px, 1fr)
		);
	}
}

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

	.testimonial-stats {
		grid-template-columns: 1fr;
		gap: 1rem;
	}

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

	.testimonial-card-modern {
		padding: 1.5rem;
	}

	.testimonials-cta {
		padding: 2rem 1.5rem;
	}
}

@media (max-width: 480px) {
	.testimonials-container .section-badge {
		font-size: 0.8rem;
		padding: 0.5rem 1rem;
	}

	.stat-item {
		padding: 1.25rem;
	}

	.stat-icon {
		width: 40px;
		height: 40px;
	}

	.stat-icon svg {
		width: 20px;
		height: 20px;
	}

	.testimonial-card {
		padding: 1.5rem;
	}

	.testimonial-header {
		margin-bottom: 1rem;
	}

	.user-avatar {
		width: 50px;
		height: 50px;
	}
}

/* ===========================
   COMMUNITY SECTION - MODERN
   =========================== */

#community {
	background: linear-gradient(
		135deg,
		#0056b3 0%,
		#0d4da3 100%
	);
	position: relative;
	overflow: hidden;
	padding: 8rem 2rem;
}

#community::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: radial-gradient(
			circle at 20% 30%,
			rgba(255, 255, 255, 0.15) 0%,
			transparent 50%
		),
		radial-gradient(
			circle at 80% 70%,
			rgba(0, 0, 0, 0.1) 0%,
			transparent 50%
		);
	pointer-events: none;
}

.community-container {
	max-width: 1280px;
	margin: 0 auto;
	position: relative;
	z-index: 1;
}

/* Community Header */
.community-header {
	text-align: center;
	margin-bottom: 4rem;
	animation: fadeInUp 0.6s ease-out;
}

.community-header .section-badge {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	background: rgba(255, 255, 255, 0.25);
	backdrop-filter: blur(10px);
	color: white;
	padding: 0.625rem 1.25rem;
	border-radius: 50px;
	font-size: 0.875rem;
	font-weight: 600;
	margin-bottom: 1.5rem;
	border: 1px solid rgba(255, 255, 255, 0.3);
}

.community-header .badge-icon {
	width: 18px;
	height: 18px;
	stroke: white;
	stroke-width: 2.5;
	display: block;
	fill: none;
}

.community-header .section-title {
	font-size: clamp(2.5rem, 5vw, 3.5rem);
	font-weight: 800;
	color: white;
	margin: 0 0 1rem 0;
	line-height: 1.2;
	text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.community-header .section-description {
	font-size: clamp(1.05rem, 1.5vw, 1.2rem);
	line-height: 1.7;
	color: rgba(255, 255, 255, 0.95);
	margin: 0 auto;
	max-width: 680px;
}

/* Stats Grid */
.community-stats-grid {
	display: grid;
	grid-template-columns: repeat(
		auto-fit,
		minmax(240px, 1fr)
	);
	gap: 1.5rem;
	margin-bottom: 4rem;
	animation: fadeInUp 0.6s ease-out 0.2s both;
}

.stat-card {
	background: rgba(255, 255, 255, 0.22);
	backdrop-filter: blur(12px);
	border: 1.5px solid rgba(255, 255, 255, 0.45);
	border-radius: 16px;
	padding: 1.75rem;
	display: flex;
	align-items: center;
	gap: 1.25rem;
	transition: all 0.3s ease;
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.stat-card:hover {
	background: rgba(255, 255, 255, 0.32);
	transform: translateY(-4px);
	box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
	border-color: rgba(255, 255, 255, 0.6);
}

.stat-icon-wrapper {
	width: 52px;
	height: 52px;
	background: white;
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.18);
}

.stat-icon-wrapper svg {
	width: 26px;
	height: 26px;
	color: #0056b3;
	stroke-width: 2.5;
}

.stat-info {
	display: flex;
	flex-direction: column;
}

.stat-number {
	font-size: 1.85rem;
	font-weight: 800;
	color: #ffffff;
	line-height: 1;
	letter-spacing: -0.5px;
	text-shadow: 0 3px 6px rgba(0, 0, 0, 0.15);
}

.stat-card .stat-label {
	font-size: 0.95rem !important;
	color: #ffffff !important;
	margin-top: 0.4rem !important;
	font-weight: 800 !important;
	text-shadow: 0 3px 6px rgba(0, 0, 0, 0.3) !important;
	letter-spacing: 0.5px !important;
	text-transform: uppercase !important;
	line-height: 1.4 !important;
	opacity: 1 !important;
}

.stat-label {
	font-size: 0.95rem;
	color: #ffffff;
	margin-top: 0.4rem;
	font-weight: 800;
	text-shadow: 0 3px 6px rgba(0, 0, 0, 0.25);
	letter-spacing: 0.5px;
	text-transform: uppercase;
	line-height: 1.4;
	opacity: 1;
}

/* Main Content Grid */
.community-main-grid {
	display: grid;
	grid-template-columns: repeat(
		auto-fit,
		minmax(480px, 1fr)
	);
	gap: 2rem;
	margin-bottom: 3rem;
}

.community-feature-card {
	background: white;
	border-radius: 20px;
	padding: 2rem;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
	transition: all 0.3s ease;
	animation: fadeInUp 0.6s ease-out both;
}

.community-feature-card:nth-child(1) {
	animation-delay: 0.3s;
}

.community-feature-card:nth-child(2) {
	animation-delay: 0.4s;
}

.community-feature-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2);
}

.feature-card-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.feature-icon {
	width: 56px;
	height: 56px;
	background: linear-gradient(
		135deg,
		#0056b3 0%,
		#0d4da3 100%
	);
	border-radius: 14px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
}

.feature-icon svg {
	width: 28px;
	height: 28px;
}

.live-badge {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	background: #fee;
	color: #dc2626;
	padding: 0.5rem 1rem;
	border-radius: 50px;
	font-size: 0.875rem;
	font-weight: 600;
}

.pulse-dot {
	width: 8px;
	height: 8px;
	background: #dc2626;
	border-radius: 50%;
	animation: pulse-animation 2s infinite;
}

@keyframes pulse-animation {
	0%,
	100% {
		opacity: 1;
		transform: scale(1);
	}
	50% {
		opacity: 0.5;
		transform: scale(1.2);
	}
}

.events-count-badge {
	background: linear-gradient(
		135deg,
		#0056b315 0%,
		#0d4da315 100%
	);
	color: #0056b3;
	padding: 0.5rem 1rem;
	border-radius: 50px;
	font-size: 0.875rem;
	font-weight: 600;
	border: 1px solid #0056b330;
}

.feature-title {
	font-size: 1.5rem;
	font-weight: 700;
	color: #1e293b;
	margin: 0;
}

.feature-description {
	font-size: 1rem;
	line-height: 1.7;
	color: #475569;
	margin: 0;
}

.feature-highlights {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.highlight-item {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	font-size: 0.95rem;
	color: #2c3e50;
}

.highlight-item svg {
	width: 20px;
	height: 20px;
	color: #10b981;
	flex-shrink: 0;
}

/* Events Timeline */
.events-timeline {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.event-timeline-item {
	display: flex;
	gap: 1rem;
	padding: 1rem;
	background: #f8fafc;
	border-radius: 12px;
	border: 1px solid #e2e8f0;
	transition: all 0.3s ease;
}

.event-timeline-item:hover {
	background: #f1f5f9;
	border-color: #0056b3;
	transform: translateX(4px);
}

.event-date-badge {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	min-width: 56px;
	height: 56px;
	background: linear-gradient(
		135deg,
		#0056b3 0%,
		#0d4da3 100%
	);
	border-radius: 12px;
	flex-shrink: 0;
}

.date-day {
	font-size: 1.25rem;
	font-weight: 800;
	color: white;
	line-height: 1;
}

.date-month {
	font-size: 0.75rem;
	font-weight: 600;
	color: rgba(255, 255, 255, 0.9);
	text-transform: uppercase;
	margin-top: 0.125rem;
}

.event-details {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.event-name {
	font-size: 1rem;
	font-weight: 700;
	color: #1e293b;
	margin: 0;
}

.event-meta {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	font-size: 0.875rem;
	color: #475569;
	margin: 0;
}

.event-meta svg {
	width: 16px;
	height: 16px;
}

.event-attendees {
	margin-top: 0.25rem;
}

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

.attendee-avatars img {
	width: 28px;
	height: 28px;
	border-radius: 50%;
	border: 2px solid white;
	margin-left: -8px;
	object-fit: cover;
}

.attendee-avatars img:first-child {
	margin-left: 0;
}

.more-count {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 28px;
	background: #e2e8f0;
	border-radius: 50%;
	border: 2px solid white;
	margin-left: -8px;
	font-size: 0.75rem;
	font-weight: 600;
	color: #475569;
}

/* Feature Footer */
.feature-footer {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-top: 1rem;
	border-top: 1px solid #e2e8f0;
	margin-top: auto;
}

.btn-community-primary,
.btn-community-secondary {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.875rem 1.75rem;
	border-radius: 12px;
	font-size: 0.95rem;
	font-weight: 600;
	border: none;
	cursor: pointer;
	transition: all 0.3s ease;
}

.btn-community-primary {
	background: linear-gradient(
		135deg,
		#0056b3 0%,
		#0d4da3 100%
	);
	color: white;
	box-shadow: 0 4px 12px rgba(0, 86, 179, 0.3);
}

.btn-community-primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(0, 86, 179, 0.4);
}

.btn-community-primary svg {
	width: 18px;
	height: 18px;
	transition: transform 0.3s ease;
}

.btn-community-primary:hover svg {
	transform: translateX(4px);
}

.btn-community-secondary {
	background: white;
	color: #0056b3;
	border: 2px solid #0056b3;
}

.btn-community-secondary:hover {
	background: #0056b3;
	color: white;
	transform: translateY(-2px);
}

.btn-community-secondary svg {
	width: 18px;
	height: 18px;
	transition: transform 0.3s ease;
}

.btn-community-secondary:hover svg {
	transform: translateX(4px);
}

.online-status {
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.online-indicator {
	width: 8px;
	height: 8px;
	background: #10b981;
	border-radius: 50%;
	animation: pulse-animation 2s infinite;
}

.online-text {
	font-size: 0.875rem;
	color: #475569;
	font-weight: 500;
}

/* CTA Banner */
.community-cta-banner {
	background: white;
	border-radius: 20px;
	padding: 2.5rem;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
	animation: fadeInUp 0.6s ease-out 0.5s both;
}

.cta-banner-content {
	display: flex;
	align-items: center;
	gap: 2rem;
	flex-wrap: wrap;
}

.cta-icon {
	width: 64px;
	height: 64px;
	background: linear-gradient(
		135deg,
		#0056b3 0%,
		#0d4da3 100%
	);
	border-radius: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.cta-icon svg {
	width: 32px;
	height: 32px;
	color: white;
}

.cta-text-content {
	flex: 1;
	min-width: 280px;
}

.cta-text-content h3 {
	font-size: 1.5rem;
	font-weight: 700;
	color: #1e293b;
	margin: 0 0 0.5rem 0;
}

.cta-text-content p {
	font-size: 1rem;
	color: #475569;
	margin: 0;
	line-height: 1.6;
}

.btn-cta-large {
	display: inline-flex;
	align-items: center;
	gap: 0.625rem;
	background: linear-gradient(
		135deg,
		#0056b3 0%,
		#0d4da3 100%
	);
	color: white;
	padding: 1rem 2rem;
	border-radius: 12px;
	font-size: 1rem;
	font-weight: 600;
	border: none;
	cursor: pointer;
	transition: all 0.3s ease;
	box-shadow: 0 4px 20px rgba(0, 86, 179, 0.4);
	white-space: nowrap;
}

.btn-cta-large:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 30px rgba(0, 86, 179, 0.5);
}

.btn-cta-large svg {
	width: 20px;
	height: 20px;
	transition: transform 0.3s ease;
}

.btn-cta-large:hover svg {
	transform: translateX(4px);
}

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

@media (max-width: 768px) {
	#community {
		padding: 5rem 1.5rem;
	}

	.community-stats-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 1rem;
	}

	.stat-card {
		flex-direction: column;
		text-align: center;
		padding: 1.25rem;
	}

	.community-main-grid {
		gap: 1.5rem;
	}

	.community-feature-card {
		padding: 1.5rem;
	}

	.feature-footer {
		flex-direction: column;
		gap: 1rem;
		align-items: stretch;
	}

	.btn-community-primary,
	.btn-community-secondary {
		width: 100%;
		justify-content: center;
	}

	.online-status {
		justify-content: center;
	}

	.cta-banner-content {
		flex-direction: column;
		text-align: center;
		gap: 1.5rem;
	}

	.btn-cta-large {
		width: 100%;
		justify-content: center;
	}
}

@media (max-width: 480px) {
	.community-stats-grid {
		grid-template-columns: 1fr;
	}

	.community-main-grid {
		grid-template-columns: 1fr;
	}

	.event-timeline-item {
		flex-direction: column;
		align-items: flex-start;
	}

	.attendee-avatars img,
	.more-count {
		width: 32px;
		height: 32px;
	}
}

.forum-preview h3,
.event-calendar h3 {
	color: var(--primary-color);
	margin-bottom: 1rem;
}

.event-calendar ul {
	list-style: none;
	margin-bottom: 1rem;
}

.event-calendar li {
	margin-bottom: 0.5rem;
}

.forum-preview button,
.event-calendar button {
	background: var(--accent-color);
	color: var(--white);
	border: none;
	padding: 0.75rem 1.5rem;
	border-radius: 5px;
	font-size: 1rem;
	cursor: pointer;
	transition: all 0.3s ease;
	font-weight: bold;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	box-shadow: 0 4px 10px rgba(40, 167, 69, 0.2);
}

.forum-preview button:hover,
.event-calendar button:hover {
	background: #20c997;
	transform: translateY(-2px);
	box-shadow: 0 6px 15px rgba(40, 167, 69, 0.3);
}

#signup {
	background: linear-gradient(
		135deg,
		#f8f9fa 0%,
		#ffffff 50%,
		#f0f4ff 100%
	);
	position: relative;
	overflow: hidden;
	padding: 5rem 2rem;
}

#signup::before {
	content: "";
	position: absolute;
	top: -50%;
	right: -20%;
	width: 600px;
	height: 600px;
	background: radial-gradient(
		circle,
		rgba(0, 86, 179, 0.08) 0%,
		transparent 70%
	);
	border-radius: 50%;
	pointer-events: none;
}

#signup::after {
	content: "";
	position: absolute;
	bottom: -30%;
	left: -10%;
	width: 400px;
	height: 400px;
	background: radial-gradient(
		circle,
		rgba(13, 79, 162, 0.06) 0%,
		transparent 70%
	);
	border-radius: 50%;
	pointer-events: none;
}

.signup-wrapper {
	display: grid;
	grid-template-columns: 1fr 1.15fr;
	gap: 6rem;
	max-width: 1400px;
	margin: 0 auto;
	align-items: flex-start;
	position: relative;
	z-index: 1;
	padding: 0 2rem;
}

/* CTA Section */
.signup-cta-section {
	animation: fadeInUp 0.6s ease-out;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	max-width: 600px;
	width: 100%;
}

.cta-badge {
	display: inline-flex;
	align-items: center;
	gap: 0.75rem;
	padding: 0.625rem 1.25rem;
	background: rgba(0, 86, 179, 0.08);
	border: 1px solid rgba(0, 86, 179, 0.15);
	border-radius: 50px;
	font-size: 0.875rem;
	font-weight: 600;
	color: #0056b3;
	margin-bottom: 2.5rem;
	text-align: left;
	width: fit-content;
}

.pulse-dot {
	width: 6px;
	height: 6px;
	background: #0056b3;
	border-radius: 50%;
	display: inline-block;
	animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
	0%,
	100% {
		opacity: 1;
	}
	50% {
		opacity: 0.5;
	}
}

.cta-title {
	font-size: 3rem;
	font-weight: 800;
	line-height: 1.25;
	color: #1a1a1a;
	margin-bottom: 1.5rem;
	text-align: left;
	word-spacing: -0.05em;
}

.cta-description {
	font-size: 1.1rem;
	color: #4a4a4a;
	line-height: 1.7;
	margin-bottom: 3.5rem;
	max-width: 500px;
	text-align: left;
}

.cta-features {
	display: flex;
	flex-direction: column;
	gap: 2rem;
	margin-bottom: 4rem;
	align-items: flex-start;
}

.feature {
	display: flex;
	gap: 1.25rem;
	align-items: flex-start;
	width: 100%;
}

.feature-icon {
	width: 48px;
	height: 48px;
	background: linear-gradient(
		135deg,
		#0056b3 0%,
		#0d4da3 100%
	) !important;
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	flex-shrink: 0;
	box-shadow: 0 4px 12px rgba(0, 86, 179, 0.2);
	margin-top: 0.25rem;
	border: none !important;
}

.feature-icon svg {
	width: 24px;
	height: 24px;
	stroke-width: 2;
	stroke: currentColor;
	fill: none;
}

.feature-text {
	flex: 1;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
}

.feature-text h4 {
	font-size: 1rem;
	font-weight: 700;
	color: #1a1a1a;
	margin: 0 0 0.4rem;
	letter-spacing: -0.3px;
	line-height: 1.3;
}

.feature-text p {
	font-size: 0.95rem;
	color: #5a6b7a;
	margin: 0;
	line-height: 1.4;
}

.cta-stats {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
	padding: 2.5rem;
	background: rgba(255, 255, 255, 0.5);
	border-radius: 16px;
	border: 1px solid rgba(0, 86, 179, 0.1);
	margin-top: 2.5rem;
	width: 100%;
}

.stat-box {
	text-align: center;
	padding: 0.75rem 0;
}

.stat-number {
	font-size: 1.8rem;
	font-weight: 800;
	color: #0056b3;
	line-height: 1.2;
	margin-bottom: 0.75rem;
	letter-spacing: -0.5px;
}

.stat-label {
	font-size: 0.85rem;
	color: #5a6b7a;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	line-height: 1.4;
}

/* Form Section */
.signup-form-section {
	animation: fadeInUp 0.6s ease-out 0.1s both;
	display: flex;
	justify-content: center;
}

.signup-form {
	background: white;
	border-radius: 20px;
	padding: 2.75rem;
	box-shadow: 0 20px 60px rgba(0, 86, 179, 0.12);
	border: 1px solid rgba(0, 86, 179, 0.06);
	position: relative;
	overflow: hidden;
	width: 100%;
	max-width: 450px;
}

.signup-form::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(
		90deg,
		#0056b3 0%,
		#0d4da3 100%
	);
}

.form-top {
	text-align: center;
	margin-bottom: 2.5rem;
}

.form-top h3 {
	font-size: 1.6rem;
	font-weight: 700;
	color: #1a1a1a;
	margin: 0 0 0.75rem;
	letter-spacing: -0.3px;
}

.form-top p {
	font-size: 0.95rem;
	color: #5a6b7a;
	margin: 0;
	line-height: 1.5;
}

.form-field {
	margin-bottom: 1.75rem;
}

.form-field label {
	display: block;
	font-size: 0.9rem;
	font-weight: 600;
	color: #1a1a1a;
	margin-bottom: 0.65rem;
	letter-spacing: -0.2px;
}

.signup-form input,
.signup-form select {
	width: 100%;
	padding: 0.95rem 1rem;
	border: 2px solid #e0e5f0;
	border-radius: 10px;
	font-size: 1rem;
	color: #1a1a1a;
	background: #f8f9fa;
	transition: all 0.3s ease;
	outline: none;
	font-family: inherit;
	line-height: 1.4;
}

.signup-form input::placeholder {
	color: #5a6b7a;
}

.signup-form select {
	appearance: none;
	background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230056b3' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
	background-repeat: no-repeat;
	background-position: right 1rem center;
	background-size: 1rem;
	padding-right: 2.75rem;
	cursor: pointer;
}

.signup-form input:hover,
.signup-form select:hover {
	border-color: #0056b3;
	background-color: #fff;
	box-shadow: 0 4px 12px rgba(0, 86, 179, 0.08);
}

.signup-form input:focus,
.signup-form select:focus {
	border-color: #0056b3;
	background-color: #fff;
	box-shadow: 0 0 0 3px rgba(0, 86, 179, 0.1);
}

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

.form-fields-row .form-field {
	margin-bottom: 0;
}

.btn-submit {
	width: 100%;
	background: linear-gradient(
		135deg,
		#0056b3 0%,
		#0d4da3 100%
	);
	color: white;
	padding: 1rem 1.5rem;
	border: none;
	border-radius: 10px;
	font-size: 1rem;
	font-weight: 700;
	cursor: pointer;
	transition: all 0.3s ease;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.75rem;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	box-shadow: 0 8px 20px rgba(0, 86, 179, 0.25);
	margin-top: 1.5rem;
	min-height: 48px;
	position: relative;
	overflow: hidden;
}

.btn-submit::before {
	content: "";
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(
		90deg,
		transparent,
		rgba(255, 255, 255, 0.2),
		transparent
	);
	transition: left 0.5s ease;
}

.btn-submit:hover::before {
	left: 100%;
}

.btn-submit:hover {
	transform: translateY(-2px);
	box-shadow: 0 12px 28px rgba(0, 86, 179, 0.35);
}

.btn-submit:active {
	transform: translateY(0);
	box-shadow: 0 4px 12px rgba(0, 86, 179, 0.25);
}

.btn-submit svg {
	width: 20px;
	height: 20px;
	stroke-width: 2;
}

.form-divider {
	text-align: center;
	margin: 2rem 0;
	position: relative;
	color: #5a6b7a;
	font-size: 0.85rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.form-divider::before,
.form-divider::after {
	content: "";
	position: absolute;
	top: 50%;
	width: 48%;
	height: 1px;
	background: #e0e5f0;
}

.form-divider::before {
	left: 0;
}

.form-divider::after {
	right: 0;
}

.social-buttons {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1.25rem;
}

.btn-social {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.75rem;
	padding: 0.9rem;
	border: 2px solid #e0e5f0;
	background: #f8f9fa;
	border-radius: 10px;
	font-size: 0.95rem;
	font-weight: 600;
	color: #1a1a1a;
	cursor: pointer;
	transition: all 0.3s ease;
	font-family: inherit;
	line-height: 1.4;
}

.btn-social svg {
	width: 20px;
	height: 20px;
}

.btn-social:hover {
	border-color: #0056b3;
	background: white;
	box-shadow: 0 4px 12px rgba(0, 86, 179, 0.1);
	transform: translateY(-2px);
}

.form-terms {
	font-size: 0.85rem;
	color: #5a6b7a;
	text-align: center;
	margin-top: 1.25rem;
	line-height: 1.6;
}

.form-terms a {
	color: #0056b3;
	text-decoration: none;
	font-weight: 600;
	transition: color 0.3s ease;
}

.form-terms a:hover {
	text-decoration: underline;
}

.form-trust-badges {
	display: flex;
	gap: 1.75rem;
	margin-top: 2rem;
	justify-content: center;
	flex-wrap: wrap;
}

.trust-badge {
	display: flex;
	align-items: center;
	gap: 0.6rem;
	font-size: 0.85rem;
	color: #5a6b7a;
	font-weight: 500;
	line-height: 1.4;
}

.trust-badge svg {
	width: 20px;
	height: 20px;
	color: #0056b3;
	flex-shrink: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
	.cta-title {
		font-size: 2.2rem;
	}

	.cta-description {
		font-size: 1rem;
	}

	.signup-wrapper {
		grid-template-columns: 1fr;
		gap: 3rem;
	}

	.cta-stats {
		grid-template-columns: 1fr 1fr;
	}

	#signup {
		padding: 4rem 2rem;
	}
}

@media (max-width: 768px) {
	#signup {
		padding: 3rem 1.5rem;
	}

	.signup-wrapper {
		gap: 2.5rem;
	}

	.cta-badge {
		font-size: 0.8rem;
		padding: 0.5rem 1rem;
		margin-bottom: 1.5rem;
	}

	.cta-title {
		font-size: 1.8rem;
		margin-bottom: 1rem;
		text-align: left;
	}

	.cta-description {
		font-size: 0.95rem;
		margin-bottom: 2rem;
		text-align: left;
	}

	.cta-features {
		gap: 1.25rem;
		margin-bottom: 2.5rem;
	}

	.feature {
		gap: 0.75rem;
	}

	.feature-icon {
		width: 40px;
		height: 40px;
	}

	.feature-text h4 {
		font-size: 0.95rem;
		margin-bottom: 0.25rem;
	}

	.feature-text p {
		font-size: 0.9rem;
	}

	.cta-stats {
		grid-template-columns: 1fr;
		gap: 1rem;
		padding: 1.5rem;
		margin-top: 1.5rem;
	}

	.stat-box {
		padding: 0.25rem 0;
	}

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

	.stat-label {
		font-size: 0.8rem;
	}

	.signup-form {
		padding: 2rem;
		max-width: 100%;
	}

	.form-top {
		margin-bottom: 2rem;
	}

	.form-top h3 {
		font-size: 1.3rem;
		margin-bottom: 0.5rem;
	}

	.form-top p {
		font-size: 0.9rem;
	}

	.form-field {
		margin-bottom: 1.5rem;
	}

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

	.btn-submit {
		padding: 0.9rem 1rem;
		font-size: 0.95rem;
		min-height: 44px;
		margin-top: 1.5rem;
	}

	.social-buttons {
		grid-template-columns: 1fr;
		gap: 1rem;
	}

	.form-divider {
		font-size: 0.75rem;
		margin: 1.5rem 0;
	}

	.form-terms {
		font-size: 0.8rem;
		margin-top: 1rem;
	}

	.form-trust-badges {
		gap: 1.25rem;
		margin-top: 1.5rem;
	}

	.trust-badge {
		font-size: 0.8rem;
	}
}

@media (max-width: 480px) {
	#signup {
		padding: 2rem 1rem;
	}

	.cta-title {
		font-size: 1.4rem;
	}

	.signup-form {
		padding: 1.25rem;
	}

	.btn-submit {
		padding: 0.75rem 1rem;
		font-size: 0.9rem;
		min-height: 42px;
	}
}

/* Form Footer */
.form-footer {
	opacity: 1;
}

.signup-visual {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 400px;
}

.visual-content {
	position: relative;
	width: 100%;
	height: 100%;
	min-height: 300px;
}

.floating-card {
	position: absolute;
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.3);
	border-radius: 16px;
	padding: 1rem;
	display: flex;
	align-items: center;
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
	transition: all 0.3s ease;
	cursor: pointer;
	pointer-events: auto;
}

.floating-card:hover {
	transform: translateY(-5px) scale(1.05);
	box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.card-1 {
	top: 10%;
	left: 5%;
	animation: float 6s ease-in-out infinite;
	z-index: 1;
}

.card-2 {
	top: 45%;
	right: 10%;
	animation: float 6s ease-in-out infinite reverse;
	z-index: 2;
}

.card-3 {
	bottom: 15%;
	left: 25%;
	animation: float 6s ease-in-out infinite 2s;
	z-index: 1;
}

.card-avatar {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	overflow: hidden;
	margin-right: 0.75rem;
	border: 2px solid rgba(255, 255, 255, 0.8);
}

.card-avatar img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.card-info h4 {
	margin: 0 0 0.25rem 0;
	font-size: 0.9rem;
	font-weight: 600;
	color: var(--text-color);
}

.card-info p {
	margin: 0;
	font-size: 0.8rem;
	color: var(--text-muted);
}

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

@keyframes slideDown {
	0% {
		opacity: 0;
		transform: translateY(-10px);
	}
	100% {
		opacity: 1;
		transform: translateY(0);
	}
}

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

	.signup-visual {
		order: -1;
		min-height: 300px;
		margin-bottom: 2rem;
	}

	.visual-content {
		min-height: 250px;
	}

	.signup-stats {
		flex-wrap: wrap;
		gap: 2rem;
		justify-content: center;
	}
}

@media (max-width: 768px) {
	#signup {
		padding: 4rem 4rem;
	}

	.signup-header h2 {
		font-size: 2.5rem;
		text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4),
			0 0 15px rgba(0, 0, 0, 0.2);
		-webkit-text-stroke: 0.5px rgba(0, 0, 0, 0.1);
	}

	.signup-header .section-subtitle {
		font-size: 1.1rem;
		margin-bottom: 2rem;
		text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
	}

	.signup-stats {
		gap: 1.5rem;
	}

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

	.signup-form {
		padding: 2rem 1.5rem;
	}

	.form-row {
		grid-template-columns: 1fr;
		gap: 1rem;
		margin-bottom: 1rem;
	}

	.form-benefits {
		flex-direction: column;
		gap: 1rem;
		padding: 1rem;
	}

	.signup-btn {
		font-size: 1rem;
		padding: 0.875rem 1.5rem;
		min-height: 48px;
		gap: 0.5rem;
	}

	.form-footer {
		font-size: 0.85rem;
		margin: 0.75rem 0 0 0;
		padding: 0 0.5rem;
		line-height: 1.4;
		opacity: 0.9;
	}

	.floating-card {
		padding: 0.75rem;
	}

	.signup-visual {
		min-height: 200px;
		margin-bottom: 2rem;
	}

	.visual-content {
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
		gap: 1rem;
		min-height: auto;
	}

	.floating-card {
		position: static;
		width: calc(50% - 0.5rem);
		margin: 0;
		margin-bottom: 1rem;
		animation: none;
		transition: none;
		cursor: default;
	}

	.floating-card:hover {
		transform: none;
		box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
	}

	.card-1,
	.card-2,
	.card-3 {
		position: static;
		margin: 0;
		float: none;
		width: calc(50% - 0.5rem);
		display: flex;
	}
}

footer {
	background: linear-gradient(
		135deg,
		#0f0f23 0%,
		#1a1a2e 100%
	);
	color: #ffffff;
	position: relative;
	padding: 4rem 2rem 2rem;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Footer Top Section */
.footer-top {
	display: grid;
	grid-template-columns: 1fr 2fr;
	gap: 4rem;
	margin-bottom: 3rem;
	align-items: start;
}

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

.footer-logo {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	font-size: 1.5rem;
	font-weight: 800;
	color: #ffffff;
}

.footer-logo svg {
	width: 32px;
	height: 32px;
	color: #0056b3;
}

.footer-tagline {
	font-size: 0.95rem;
	color: rgba(255, 255, 255, 0.85);
	line-height: 1.6;
	margin: 0;
	max-width: 300px;
}

.footer-social {
	display: flex;
	gap: 1rem;
	margin-top: 0.5rem;
}

.footer-social a {
	width: 40px;
	height: 40px;
	border-radius: 10px;
	background: rgba(0, 86, 179, 0.15);
	border: 1px solid rgba(0, 86, 179, 0.3);
	display: flex;
	align-items: center;
	justify-content: center;
	color: #0056b3;
	transition: all 0.3s ease;
	text-decoration: none;
}

.footer-social a svg {
	width: 20px;
	height: 20px;
	stroke-width: 2;
}

.footer-social a:hover {
	background: rgba(0, 86, 179, 0.25);
	border-color: rgba(0, 86, 179, 0.5);
	color: #ffffff;
	transform: translateY(-3px);
}

/* Footer Links Grid */
.footer-links-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 2rem;
}

.footer-column {
	display: flex;
	flex-direction: column;
}

.footer-column h5 {
	font-size: 0.95rem;
	font-weight: 700;
	color: #ffffff;
	margin: 0 0 1.25rem;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

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

.footer-column ul li {
	margin: 0;
}

.footer-column ul li a {
	color: rgba(255, 255, 255, 0.8);
	text-decoration: none;
	font-size: 0.9rem;
	transition: all 0.3s ease;
	display: inline-flex;
	align-items: center;
}

.footer-column ul li a:hover {
	color: #ffffff;
	transform: translateX(4px);
}

/* Footer Divider */
.footer-divider {
	height: 1px;
	background: linear-gradient(
		90deg,
		transparent,
		rgba(255, 255, 255, 0.2),
		transparent
	);
	margin: 3rem 0;
}

/* Footer Bottom */
.footer-bottom {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 2rem;
	flex-wrap: wrap;
}

.footer-copyright {
	font-size: 0.9rem;
	color: rgba(255, 255, 255, 0.75);
	margin: 0;
}

.footer-badges {
	display: flex;
	gap: 1.5rem;
	flex-wrap: wrap;
}

.badge {
	font-size: 0.85rem;
	color: rgba(255, 255, 255, 0.8);
	padding: 0.5rem 1rem;
	background: rgba(0, 86, 179, 0.1);
	border: 1px solid rgba(0, 86, 179, 0.2);
	border-radius: 20px;
	transition: all 0.3s ease;
}

.badge:hover {
	background: rgba(0, 86, 179, 0.2);
	border-color: rgba(0, 86, 179, 0.4);
}

/* Responsive Footer */
@media (max-width: 1024px) {
	.footer-top {
		grid-template-columns: 1fr;
		gap: 3rem;
	}

	.footer-links-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 2rem;
	}

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

	.footer-badges {
		justify-content: center;
	}
}

@media (max-width: 768px) {
	footer {
		padding: 3rem 1.5rem 1.5rem;
	}

	.footer-top {
		gap: 2rem;
	}

	.footer-links-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 1.5rem;
	}

	.footer-column h5 {
		font-size: 0.9rem;
		margin-bottom: 1rem;
	}

	.footer-tagline {
		font-size: 0.9rem;
	}

	.footer-bottom {
		flex-direction: column;
		gap: 1.5rem;
	}

	.footer-badges {
		flex-direction: column;
		width: 100%;
	}

	.badge {
		text-align: center;
	}
}

@media (max-width: 480px) {
	footer {
		padding: 2rem 1rem 1rem;
	}

	.footer-links-grid {
		grid-template-columns: 1fr;
		gap: 1.5rem;
	}

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

	.footer-social {
		gap: 0.75rem;
	}

	.footer-social a {
		width: 36px;
		height: 36px;
	}
}

footer > p {
	margin: 1.5rem 0 1rem;
	font-size: 1.1rem;
	font-weight: 400;
	color: rgba(255, 255, 255, 0.8);
	text-align: center;
	line-height: 1.5;
}

footer > .btn-footer {
	margin: 1rem auto 2rem;
}

footer > p:last-of-type {
	margin-top: 1.5rem;
	font-size: 0.9rem;
	color: rgba(255, 255, 255, 0.5);
	font-weight: 400;
	text-align: center;
	padding-top: 2rem;
	border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* Tablet Responsiveness */
@media (max-width: 1024px) {
	nav {
		padding: 1rem 2rem;
	}

	nav ul {
		gap: 1.5rem;
	}

	nav ul {
		gap: 1rem;
	}

	nav ul li a {
		font-size: 0.85rem;
		padding: 0.4rem 0;
	}

	.signup-form {
		padding: 2rem;
	}

	.footer-content {
		gap: 1.5rem;
		padding: 0 2rem;
	}

	.footer-section {
		min-width: 180px;
	}
}

/* Medium Tablet Responsiveness */
@media (max-width: 768px) {
	.footer-content {
		flex-direction: column;
		text-align: center;
		gap: 2rem;
		padding: 0 1.5rem;
		margin-bottom: 1.5rem;
	}

	.footer-content {
		flex-direction: column;
		text-align: center;
		gap: 2rem;
		padding: 0 1.5rem;
		margin-bottom: 1.5rem;
		display: flex;
		align-items: center;
	}

	.footer-section {
		text-align: center !important;
		min-width: auto;
		margin-bottom: 2rem;
		width: 100%;
		max-width: 400px;
	}

	.footer-section:last-child {
		border-bottom: none;
		margin-bottom: 0;
	}

	.footer-section h4 {
		text-align: center !important;
		margin: 0 auto;
	}

	.footer-section p {
		text-align: center !important;
		margin: 0 auto;
	}

	.footer-section ul {
		list-style: none;
		padding: 0;
		margin: 0 auto;
		text-align: center !important;
		display: inline-block;
	}

	.footer-section ul li {
		text-align: center !important;
		display: block;
		margin-bottom: 0.5rem;
	}

	.footer-section ul li a {
		display: inline-block;
		text-align: center;
	}

	.social-icons {
		justify-content: center;
		display: flex;
		margin: 0 auto;
		max-width: fit-content;
	}
}

/* Medium Tablet Responsiveness */
@media (max-width: 768px) {
	nav {
		flex-direction: row;
		justify-content: space-between;
		align-items: center;
		padding: 1rem;
	}

	.mobile-menu-btn {
		display: block;
		background: rgba(255, 255, 255, 0.95);
		border: 1px solid rgba(255, 255, 255, 0.3);
		border-radius: 12px;
		font-size: 1.1rem;
		cursor: pointer;
		color: #1e293b;
		padding: 0.6rem;
		transition: all 0.3s
			cubic-bezier(0.175, 0.885, 0.32, 1.275);
		backdrop-filter: blur(15px);
		box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
	}

	.mobile-menu-btn:hover {
		background: rgba(255, 255, 255, 0.98);
		transform: scale(1.05);
		box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
	}

	nav ul {
		position: absolute;
		top: 100%;
		left: 1rem;
		right: 1rem;
		display: none;
		margin-top: 0.5rem;
		flex-direction: column;
		padding: 0.5rem 0;
		background: rgba(255, 255, 255, 0.95);
		border-radius: 12px;
		border: 1px solid rgba(255, 255, 255, 0.3);
		box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
		z-index: 1000;
		overflow: hidden;
	}

	nav ul.active {
		display: flex;
	}

	nav ul li {
		border-bottom: 1px solid rgba(0, 0, 0, 0.05);
	}

	nav ul li:last-child {
		border-bottom: none;
	}

	nav ul li a {
		display: block;
		padding: 1rem 1.5rem;
		color: #2c3e50;
		text-decoration: none;
		font-weight: 500;
		font-size: 1rem;
	}

	.hero-image {
		max-width: min(400px, 95vw);
		margin: 0.25rem auto;
		border-radius: 12px;
		border: 2px solid rgba(255, 255, 255, 0.6);
		box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
	}

	.hero-visual {
		margin-top: 0.25rem;
	}

	.btn-primary,
	.btn-secondary {
		padding: clamp(0.875rem, 2vw, 1rem)
			clamp(1.5rem, 4vw, 2rem);
		font-size: clamp(0.95rem, 2.2vw, 1.1rem);
	}

	.cta-buttons {
		flex-direction: column;
		align-items: center;
	}

	.steps,
	.skills-grid,
	.testimonials,
	.community-content {
		grid-template-columns: 1fr;
	}

	.signup-form {
		padding: 1.5rem 1rem;
	}

	.signup-form input,
	.signup-form select {
		padding: 1.2rem 3rem 1.2rem 1.2rem;
		font-size: 1.1rem;
		min-height: 48px;
	}

	.signup-form input {
		padding: 1.2rem 1.2rem;
	}

	.signup-form select {
		background-size: 1.2rem;
		background-position: right 1.2rem center;
	}

	.footer-content {
		grid-template-columns: 1fr;
		gap: 2rem;
		padding: 0 1rem;
		margin-bottom: 2rem;
	}

	.footer-section {
		padding: 1.5rem;
		text-align: center;
		min-width: auto;
		margin-bottom: 1.5rem;
	}

	.footer-section h4 {
		text-align: center;
		margin-bottom: 1rem;
	}

	.footer-section h4::after {
		left: 50%;
		transform: translateX(-50%);
	}

	.footer-section p {
		text-align: center;
		margin-bottom: 1rem;
	}

	.footer-section ul li {
		padding-left: 0;
		text-align: center;
	}

	.footer-section ul li::before {
		display: none;
	}

	.footer-section ul li a {
		display: inline-block;
		text-align: center;
	}

	.social-icons {
		justify-content: center;
		margin-top: 1.5rem;
		margin-bottom: 1.5rem;
	}

	.btn-footer {
		min-width: 200px;
		padding: 0.875rem 1.5rem;
		font-size: 1rem;
		margin: 1.5rem auto;
	}

	.signup-form {
		padding: 1.5rem 1.5rem;
	}
}

@media (max-width: 480px) {
	nav {
		padding: 1rem 1.25rem;
	}

	.logo {
		font-size: 1.5rem;
	}

	.mobile-menu-btn {
		font-size: 1.1rem;
		padding: 0.4rem;
		display: block;
	}

	.btn-primary,
	.btn-secondary {
		padding: clamp(0.75rem, 3vw, 1rem)
			clamp(1.25rem, 5vw, 2rem);
		font-size: clamp(0.9rem, 3.5vw, 1.1rem);
	}

	.signup-form {
		padding: 1rem 0.75rem;
	}

	.signup-form input,
	.signup-form select {
		padding: 1rem 2.5rem 1rem 1rem;
		font-size: 1rem;
		min-height: 44px;
	}

	.signup-form input {
		padding: 1rem;
	}

	.signup-form select {
		background-size: 1rem;
		background-position: right 0.8rem center;
	}

	.signup-visual {
		min-height: 150px;
		margin-bottom: 1.5rem;
	}

	.visual-content {
		gap: 0.75rem;
	}

	.floating-card {
		width: 100%;
		padding: 0.625rem;
		justify-content: flex-start;
		animation: none;
		transition: none;
		cursor: default;
		margin-bottom: 0.75rem;
	}

	.floating-card:hover {
		transform: none;
		box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
	}

	.card-avatar {
		width: 35px;
		height: 35px;
		margin-right: 0.625rem;
	}

	.card-info h4 {
		font-size: 0.85rem;
	}

	.card-info p {
		font-size: 0.75rem;
	}
}

/* Force center alignment for mobile footer */
@media (max-width: 767px) {
	.footer-content .footer-section {
		text-align: center !important;
		margin: 0 auto 2rem auto !important;
		width: 100% !important;
		max-width: 400px !important;
	}

	.footer-content .footer-section h4,
	.footer-content .footer-section p {
		text-align: center !important;
		margin: 0 auto !important;
	}

	.footer-content .footer-section ul {
		text-align: center !important;
		margin: 0 auto !important;
		padding: 0 !important;
		list-style: none !important;
	}

	.footer-content .footer-section ul li {
		text-align: center !important;
		display: block !important;
		margin-bottom: 0.5rem !important;
	}

	.footer-content .footer-section ul li a {
		display: block !important;
		text-align: center !important;
		padding: 0.25rem 0 !important;
	}

	.footer-content .social-icons {
		justify-content: center !important;
		display: flex !important;
		margin: 0 auto !important;
		max-width: fit-content !important;
	}
}

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

/* Viewport Animation Styles */
.animate-on-scroll {
	opacity: 0;
	transform: translateY(50px);
	transition: all 0.9s
		cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.animate-on-scroll.animate {
	opacity: 1;
	transform: translateY(0);
}

.animate-on-scroll.animate-slide-left {
	transform: translateX(-60px);
}

.animate-on-scroll.animate-slide-left.animate {
	transform: translateX(0);
}

.animate-on-scroll.animate-slide-right {
	transform: translateX(60px);
}

.animate-on-scroll.animate-slide-right.animate {
	transform: translateX(0);
}

.animate-on-scroll.animate-fade-in {
	transform: translateY(0);
}

.animate-on-scroll.animate-scale {
	transform: scale(0.85);
}

.animate-on-scroll.animate-scale.animate {
	transform: scale(1);
}

/* Staggered animation delays with increased variety */
.animate-on-scroll:nth-child(1) {
	transition-delay: 0.05s;
}
.animate-on-scroll:nth-child(2) {
	transition-delay: 0.15s;
}
.animate-on-scroll:nth-child(3) {
	transition-delay: 0.25s;
}
.animate-on-scroll:nth-child(4) {
	transition-delay: 0.35s;
}
.animate-on-scroll:nth-child(5) {
	transition-delay: 0.45s;
}
.animate-on-scroll:nth-child(6) {
	transition-delay: 0.55s;
}
.animate-on-scroll:nth-child(n + 7) {
	transition-delay: calc(
		0.05s * (var(--index, 6))
	);
}

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

@keyframes slideInDown {
	from {
		opacity: 0;
		transform: translateY(-60px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes scaleIn {
	from {
		opacity: 0;
		transform: scale(0.85);
	}
	to {
		opacity: 1;
		transform: scale(1);
	}
}

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

/* Large Screen Optimization */
@media (min-width: 1200px) {
	.hero-content h1 {
		font-size: 3.5rem;
		line-height: 1.05;
	}

	.hero-content p {
		font-size: 1.3rem;
		line-height: 1.7;
	}

	.cta-buttons {
		gap: 1.25rem;
	}

	.btn-primary,
	.btn-secondary {
		padding: 0.875rem 1.75rem;
		font-size: 1.1rem;
	}
}
