﻿/* InnovateTech Landing Page - Complete Styles */

:root {
	/* Brand Colors - Deep Indigo & Turquoise */
	--color-primary: #40e0d0;
	--color-primary-dark: #2dc4b5;
	--color-primary-light: #6fede0;
	--color-secondary: #3d5a80;
	--color-secondary-dark: #2d4463;
	--color-accent: #ee6c4d;

	/* Text Colors */
	--color-text: #2c3e50;
	--color-text-light: #6b7c8d;
	--color-text-white: #ffffff;

	/* Background Colors */
	--color-bg: #ffffff;
	--color-bg-light: #f8fafb;
	--color-bg-dark: #3d5159;

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

	/* Typography */
	--font-family: "Inter", -apple-system,
		BlinkMacSystemFont, "Segoe UI", system-ui,
		sans-serif;
	--font-size-sm: 0.875rem;
	--font-size-base: 1rem;
	--font-size-lg: 1.125rem;
	--font-size-xl: 1.25rem;
	--font-size-2xl: 1.5rem;
	--font-size-3xl: 2rem;

	/* Border Radius */
	--border-radius: 8px;
	--border-radius-lg: 12px;
	--border-radius-full: 9999px;

	/* Shadows */
	--shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
	--shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
	--shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
	--shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);

	/* Transitions */
	--transition-fast: 150ms ease;
	--transition-base: 300ms ease;
	--transition-slow: 500ms ease;
}

/* Hero Section Animations */
@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

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

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

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

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

/* Scroll Animation Keyframes */
@keyframes fadeInUpSection {
	from {
		opacity: 0;
		transform: translateY(60px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes fadeInScale {
	from {
		opacity: 0;
		transform: scale(0.95);
	}
	to {
		opacity: 1;
		transform: scale(1);
	}
}

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

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

/* Section Animation Classes */
section.fade-up,
section.fade-scale,
section.slide-left,
section.slide-right {
	opacity: 0;
}

section.animate-in {
	animation-duration: 1s;
	animation-timing-function: cubic-bezier(
		0.4,
		0,
		0.2,
		1
	);
	animation-fill-mode: both;
	opacity: 1;
}

section.fade-up.animate-in {
	animation-name: fadeInUpSection;
}

section.fade-scale.animate-in {
	animation-name: fadeInScale;
}

section.slide-left.animate-in {
	animation-name: slideInLeft;
}

section.slide-right.animate-in {
	animation-name: slideInRight;
}

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

html {
	scroll-behavior: smooth;
}

body {
	font-family: var(--font-family);
	color: var(--color-text);
	line-height: 1.6;
}

/* ===================================
   MODERN HEADER SECTION
   =================================== */

.header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	transition: all 0.3s
		cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar {
	background: rgba(255, 255, 255, 0.85);
	backdrop-filter: blur(16px);
	-webkit-backdrop-filter: blur(16px);
	border-bottom: 1px solid rgba(64, 224, 208, 0.1);
	transition: all 0.3s
		cubic-bezier(0.4, 0, 0.2, 1);
}

.header.scrolled .navbar {
	background: rgba(255, 255, 255, 0.95);
	box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
	border-bottom: 1px solid
		rgba(64, 224, 208, 0.15);
}

/* Navigation Container */
.nav-container {
	max-width: 1400px;
	margin: 0 auto;
	padding: 1rem 2.5rem;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 3rem;
}

/* Brand Logo Section */
.nav-brand {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	text-decoration: none;
	transition: transform 0.3s ease;
	flex-shrink: 0;
	z-index: 1001;
}

.nav-brand:hover {
	transform: translateY(-1px);
}

.logo-wrapper {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
}

.logo {
	width: 42px;
	height: 42px;
	transition: all 0.3s
		cubic-bezier(0.4, 0, 0.2, 1);
	filter: drop-shadow(
		0 2px 8px rgba(64, 224, 208, 0.2)
	);
}

.nav-brand:hover .logo {
	transform: rotate(5deg) scale(1.05);
	filter: drop-shadow(
		0 4px 12px rgba(64, 224, 208, 0.35)
	);
}

.brand-text {
	font-size: 1.35rem;
	font-weight: 700;
	background: linear-gradient(
		135deg,
		#2c3e50 0%,
		#40e0d0 100%
	);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	letter-spacing: -0.5px;
}

/* Navigation Menu */
.nav-menu {
	display: flex;
	align-items: center;
	gap: 2.5rem;
	flex: 1;
	justify-content: center;
}

.nav-link {
	position: relative;
	color: var(--color-text);
	text-decoration: none;
	font-size: 0.925rem;
	font-weight: 500;
	letter-spacing: 0.2px;
	transition: color 0.3s ease;
	padding: 0.5rem 0;
}

.nav-link span {
	position: relative;
	z-index: 1;
}

.nav-link::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 0;
	height: 2px;
	background: linear-gradient(
		90deg,
		var(--color-primary) 0%,
		var(--color-primary-light) 100%
	);
	border-radius: 2px;
	transition: width 0.3s
		cubic-bezier(0.4, 0, 0.2, 1);
}

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

.nav-link:hover::after {
	width: 100%;
}

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

.btn-demo {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.75rem 1.75rem;
	background: linear-gradient(
		135deg,
		var(--color-primary) 0%,
		var(--color-primary-dark) 100%
	);
	color: white;
	border: none;
	border-radius: 50px;
	font-size: 0.925rem;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s
		cubic-bezier(0.4, 0, 0.2, 1);
	box-shadow: 0 4px 16px rgba(64, 224, 208, 0.25);
	position: relative;
	overflow: hidden;
}

.btn-demo::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(
		135deg,
		var(--color-primary-light) 0%,
		var(--color-primary) 100%
	);
	opacity: 0;
	transition: opacity 0.3s ease;
}

.btn-demo:hover::before {
	opacity: 1;
}

.btn-demo:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 24px rgba(64, 224, 208, 0.4);
}

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

.btn-demo-text {
	position: relative;
	z-index: 1;
}

.btn-demo-icon {
	position: relative;
	z-index: 1;
	transition: transform 0.3s ease;
}

.btn-demo:hover .btn-demo-icon {
	transform: translateX(3px);
}

/* Mobile Hamburger Menu */
.hamburger {
	display: none;
	flex-direction: column;
	gap: 5px;
	background: none;
	border: none;
	cursor: pointer;
	padding: 0.5rem;
	z-index: 1001;
	transition: all 0.3s ease;
}

.hamburger-line {
	width: 26px;
	height: 2.5px;
	background: var(--color-text);
	border-radius: 3px;
	transition: all 0.3s
		cubic-bezier(0.4, 0, 0.2, 1);
	display: block;
}

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

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

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

/* ===================================
   TABLET RESPONSIVE (iPad Air, etc.)
   =================================== */
@media (max-width: 1024px) {
	.nav-container {
		padding: 1rem 1.5rem;
		gap: 1rem;
	}

	.brand-text {
		font-size: 1.15rem;
	}

	.nav-menu {
		gap: 1rem;
	}

	.nav-link {
		font-size: 0.8rem;
		padding: 0.4rem 0;
	}

	.btn-demo {
		padding: 0.65rem 1.25rem;
		font-size: 0.8rem;
		gap: 0.35rem;
	}

	.btn-demo-icon {
		width: 14px;
		height: 14px;
	}

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

	/* Center hero buttons on tablet */
	.hero-content {
		display: flex;
		flex-direction: column;
		align-items: center;
		text-align: center;
	}

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

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

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

	/* Tablet floating cards - adjusted for smaller screens */
	.hero-card-float {
		padding: 0.875rem 1rem;
		max-width: 280px;
	}

	.hero-card-1 {
		top: 5%;
		right: -5%;
	}

	.hero-card-2 {
		bottom: 25%;
		left: -8%;
	}

	.hero-card-3 {
		top: 55%;
		right: -6%;
	}

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

	.float-title {
		font-size: 0.8rem;
	}

	.float-desc {
		font-size: 0.7rem;
	}

	/* How It Works Tablet */
	.how-it-works {
		padding: 5rem 0;
	}

	.how-header {
		margin-bottom: 4rem;
		padding: 0 1rem;
	}

	.how-title {
		font-size: 2.5rem;
	}

	.how-subtitle {
		font-size: 1rem;
		max-width: 90%;
	}

	.how-timeline {
		max-width: 900px;
		padding: 0 1.5rem;
	}

	.timeline-line {
		top: 70px;
		bottom: 70px;
	}

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

	.how-step-card {
		padding: 1.5rem;
		gap: 1rem;
		flex-direction: row;
	}

	.step-icon-box {
		width: 52px;
		height: 52px;
		border-radius: 13px;
		flex-shrink: 0;
	}

	.step-icon-box svg {
		width: 22px;
		height: 22px;
	}

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

	.step-description {
		font-size: 0.875rem;
		line-height: 1.6;
	}

	.step-feature {
		font-size: 0.8125rem;
	}

	.step-feature svg {
		width: 16px;
		height: 16px;
	}

	.how-step-number {
		width: 64px;
		height: 64px;
	}

	.how-step-number span {
		font-size: 1.25rem;
	}

	.how-stats {
		gap: 1.5rem;
		margin-top: 5rem;
		padding: 0 1.5rem;
	}

	.how-stat-card {
		padding: 1.5rem 1.25rem;
		gap: 1rem;
	}

	.stat-icon-wrapper {
		width: 48px;
		height: 48px;
	}

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

	.stat-value {
		font-size: 1.375rem;
	}

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

/* Medium Tablet Breakpoint for How It Works */
@media (max-width: 900px) {
	.how-timeline {
		max-width: 100%;
	}

	.how-step {
		grid-template-columns: 0.9fr auto 0.9fr;
		gap: 1rem;
	}

	.how-step-card {
		flex-direction: column;
		text-align: center;
		align-items: center;
		padding: 1.5rem 1.25rem;
	}

	.step-content-body {
		align-items: center;
	}

	.step-features {
		align-items: center;
	}

	.how-step-number {
		width: 60px;
		height: 60px;
	}

	.how-step-number span {
		font-size: 1.125rem;
	}
}

.btn {
	padding: 12px 24px;
	border-radius: var(--border-radius);
	font-weight: 600;
	cursor: pointer;
	transition: var(--transition-base);
	border: 2px solid transparent;
	text-decoration: none;
	display: inline-block;
}

.btn-primary {
	background: var(--color-primary);
	color: white;
}

.btn-primary:hover {
	background: var(--color-primary-dark);
	transform: translateY(-2px);
}

.btn-secondary {
	background: transparent;
	color: var(--color-primary);
	border: 2px solid var(--color-primary);
}

.btn-secondary:hover {
	background: var(--color-primary);
	color: white;
}

.btn-outline {
	background: transparent;
	border: 2px solid #e0e7eb;
}

.btn-outline:hover {
	border-color: var(--color-primary);
	color: var(--color-primary);
}

.btn-lg {
	padding: 16px 32px;
	font-size: 1.125rem;
}

.btn-sm {
	padding: 8px 16px;
	font-size: 0.875rem;
}

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

/* Modern Hero Section */
.hero {
	position: relative;
	min-height: 100vh;
	display: flex;
	align-items: center;
	padding: 120px 0 80px;
	overflow: hidden;
	background: #ffffff;
}

.hero-bg {
	position: absolute;
	inset: 0;
	z-index: 0;
	overflow: hidden;
	pointer-events: none;
}

.hero-blob {
	position: absolute;
	border-radius: 50%;
	filter: blur(80px);
	opacity: 0.6;
	z-index: -1;
}

.hero-blob-1 {
	top: -10%;
	right: -5%;
	width: 600px;
	height: 600px;
	background: radial-gradient(
		circle,
		rgba(64, 224, 208, 0.2) 0%,
		rgba(255, 255, 255, 0) 70%
	);
	animation: floatBlob 20s infinite alternate;
}

.hero-blob-2 {
	bottom: -10%;
	left: -10%;
	width: 500px;
	height: 500px;
	background: radial-gradient(
		circle,
		rgba(61, 90, 128, 0.1) 0%,
		rgba(255, 255, 255, 0) 70%
	);
	animation: floatBlob 25s infinite
		alternate-reverse;
}

@keyframes floatBlob {
	0% {
		transform: translate(0, 0);
	}
	100% {
		transform: translate(30px, 50px);
	}
}

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

.hero-content {
	max-width: 600px;
}

.hero-badge {
	display: inline-flex;
	align-items: center;
	gap: 0.75rem;
	padding: 0.5rem 1rem;
	background: rgba(64, 224, 208, 0.1);
	border: 1px solid rgba(64, 224, 208, 0.2);
	border-radius: 100px;
	color: var(--color-primary-dark);
	font-size: 0.875rem;
	font-weight: 600;
	margin-bottom: 2rem;
}

.badge-dot {
	width: 8px;
	height: 8px;
	background-color: var(--color-primary);
	border-radius: 50%;
	box-shadow: 0 0 0 2px rgba(64, 224, 208, 0.3);
}

.hero-title {
	font-size: 3.5rem;
	font-weight: 800;
	line-height: 1.1;
	color: var(--color-text);
	margin-bottom: 1.5rem;
	letter-spacing: -0.03em;
}

.hero-highlight {
	color: var(--color-primary);
	position: relative;
	white-space: nowrap;
}

.hero-highlight::after {
	content: "";
	position: absolute;
	bottom: 4px;
	left: 0;
	width: 100%;
	height: 12px;
	background-color: rgba(64, 224, 208, 0.2);
	z-index: -1;
	transform: skewX(-10deg);
}

.hero-subtitle {
	font-size: 1.125rem;
	line-height: 1.6;
	color: var(--color-text-light);
	margin-bottom: 2.5rem;
	max-width: 90%;
}

.hero-actions {
	display: flex;
	align-items: center;
	gap: 1rem;
	margin-bottom: 3rem;
}

.hero-btn {
	display: inline-flex;
	align-items: center;
	gap: 0.75rem;
	padding: 0.875rem 1.75rem;
	border-radius: 12px;
	font-size: 1rem;
	font-weight: 600;
	border: none;
	cursor: pointer;
	transition: all 0.2s ease;
}

.hero-btn-primary {
	background-color: var(--color-text);
	color: white;
}

.hero-btn-primary:hover {
	background-color: #000;
	transform: translateY(-2px);
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.hero-btn-secondary {
	background-color: transparent;
	color: var(--color-text);
	border: 1px solid #e2e8f0;
}

.hero-btn-secondary:hover {
	background-color: #f8fafc;
	border-color: #cbd5e1;
}

.hero-trust {
	border-top: 1px solid #f1f5f9;
	padding-top: 2rem;
}

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

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

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

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

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

.hero-visual {
	position: relative;
}

.hero-image-container {
	position: relative;
	border-radius: 24px;
	overflow: visible;
}

.hero-img {
	width: 100%;
	height: auto;
	border-radius: 24px;
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
	transform: perspective(1000px) rotateY(-5deg);
	transition: transform 0.5s ease;
}

.hero-image-container:hover .hero-img {
	transform: perspective(1000px) rotateY(0deg);
}

.hero-floating-card {
	position: absolute;
	background: white;
	padding: 1rem;
	border-radius: 16px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
	display: flex;
	align-items: center;
	gap: 1rem;
	z-index: 2;
	animation: floatCard 6s ease-in-out infinite;
}

.card-1 {
	bottom: 40px;
	left: -40px;
}

.card-icon {
	width: 48px;
	height: 48px;
	background-color: #ecfdf5;
	color: #10b981;
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
}

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

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

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

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

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

	.hero-content {
		max-width: 100%;
		display: flex;
		flex-direction: column;
		align-items: center;
	}

	.hero-subtitle {
		margin-left: auto;
		margin-right: auto;
	}

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

	.hero-trust {
		display: flex;
		flex-direction: column;
		align-items: center;
	}

	.hero-img {
		transform: none;
	}

	.hero-image-container:hover .hero-img {
		transform: none;
	}

	.card-1 {
		left: 0;
		bottom: -20px;
	}
}

.decoration-glow {
	display: none;
}

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

@keyframes pulse {
	0%,
	100% {
		transform: scale(1);
		opacity: 0.2;
	}
	50% {
		transform: scale(1.1);
		opacity: 0.3;
	}
}

@keyframes pulse {
	0%,
	100% {
		transform: scale(1);
		opacity: 1;
	}
	50% {
		transform: scale(1.1);
		opacity: 0.8;
	}
}

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

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

.section-title {
	font-size: 2.5rem;
	font-weight: 700;
	text-align: center;
	margin-bottom: var(--spacing-xl);
}

/* ===== How It Works Section ===== */
.how-it-works {
	position: relative;
	padding: 7rem 0;
	background: linear-gradient(
		180deg,
		#ffffff 0%,
		#f8fffe 50%,
		#ffffff 100%
	);
	overflow: hidden;
}

.how-bg {
	position: absolute;
	inset: 0;
	z-index: 0;
	pointer-events: none;
}

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

.how-orb-1 {
	width: 400px;
	height: 400px;
	background: radial-gradient(
		circle,
		rgba(64, 224, 208, 0.4),
		transparent
	);
	top: 10%;
	left: -5%;
	animation-delay: 0s;
}

.how-orb-2 {
	width: 350px;
	height: 350px;
	background: radial-gradient(
		circle,
		rgba(38, 180, 170, 0.3),
		transparent
	);
	bottom: 15%;
	right: -5%;
	animation-delay: 10s;
}

@keyframes floatOrb {
	0%,
	100% {
		transform: translate(0, 0) scale(1);
	}
	33% {
		transform: translate(30px, -40px) scale(1.1);
	}
	66% {
		transform: translate(-30px, 30px) scale(0.9);
	}
}

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

.how-badge {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.625rem 1.25rem;
	background: white;
	border: 1px solid rgba(64, 224, 208, 0.2);
	border-radius: 100px;
	font-size: 0.875rem;
	font-weight: 600;
	color: var(--color-primary);
	margin-bottom: 1.5rem;
	box-shadow: 0 2px 12px rgba(64, 224, 208, 0.08);
	animation: fadeInDown 0.6s ease-out;
}

.how-badge svg {
	color: var(--color-primary);
}

.how-title {
	font-size: 3rem;
	font-weight: 800;
	line-height: 1.2;
	color: var(--color-text);
	margin-bottom: 1.25rem;
	animation: fadeInUp 0.6s ease-out 0.1s both;
}

.how-highlight {
	display: inline-block;
	background: linear-gradient(
		135deg,
		var(--color-primary) 0%,
		var(--color-primary-dark) 100%
	);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.how-subtitle {
	font-size: 1.125rem;
	line-height: 1.7;
	color: var(--color-text-light);
	max-width: 600px;
	margin: 0 auto;
	animation: fadeInUp 0.6s ease-out 0.2s both;
}

/* Timeline Layout */
.how-timeline {
	position: relative;
	z-index: 1;
	max-width: 1000px;
	margin: 0 auto;
	padding: 0 2rem;
}

.timeline-line {
	position: absolute;
	left: 50%;
	top: 80px;
	bottom: 80px;
	width: 2px;
	background: linear-gradient(
		180deg,
		transparent 0%,
		rgba(64, 224, 208, 0.3) 10%,
		rgba(64, 224, 208, 0.3) 90%,
		transparent 100%
	);
	transform: translateX(-50%);
}

.how-step {
	position: relative;
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	gap: 3rem;
	align-items: center;
	margin-bottom: 4rem;
	animation: fadeInUp 0.8s ease-out both;
}

.how-step:nth-child(1) {
	animation-delay: 0.3s;
}
.how-step:nth-child(2) {
	animation-delay: 0.5s;
}
.how-step:nth-child(3) {
	animation-delay: 0.7s;
}

.how-step:last-child {
	margin-bottom: 0;
}

/* Alternate layout */
.how-step[data-step="1"] .how-step-content {
	grid-column: 1;
	grid-row: 1;
}

.how-step[data-step="1"] .how-step-number {
	grid-column: 2;
	grid-row: 1;
}

.how-step[data-step="2"] .how-step-content {
	grid-column: 3;
	grid-row: 1;
}

.how-step[data-step="2"] .how-step-number {
	grid-column: 2;
	grid-row: 1;
}

.how-step[data-step="3"] .how-step-content {
	grid-column: 1;
	grid-row: 1;
}

.how-step[data-step="3"] .how-step-number {
	grid-column: 2;
	grid-row: 1;
}

/* Step Number */
.how-step-number {
	position: relative;
	width: 80px;
	height: 80px;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 2;
	flex-shrink: 0;
}

.how-step-number span {
	position: relative;
	z-index: 2;
	font-size: 1.5rem;
	font-weight: 800;
	background: linear-gradient(
		135deg,
		var(--color-primary) 0%,
		var(--color-primary-dark) 100%
	);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.step-pulse {
	position: absolute;
	inset: 0;
	border-radius: 50%;
	background: white;
	border: 2px solid var(--color-primary);
	box-shadow: 0 0 0 0 rgba(64, 224, 208, 0.5);
	animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1)
		infinite;
}

@keyframes pulse {
	0%,
	100% {
		box-shadow: 0 0 0 0 rgba(64, 224, 208, 0.5);
	}
	50% {
		box-shadow: 0 0 0 20px rgba(64, 224, 208, 0);
	}
}

/* Step Card */
.how-step-card {
	background: white;
	border-radius: 20px;
	padding: 2rem;
	border: 1px solid rgba(64, 224, 208, 0.15);
	box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
	transition: all 0.3s
		cubic-bezier(0.4, 0, 0.2, 1);
	display: flex;
	gap: 1.5rem;
}

.how-step-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 12px 40px rgba(64, 224, 208, 0.15);
	border-color: rgba(64, 224, 208, 0.3);
}

/* Step Icon */
.step-icon-box {
	flex-shrink: 0;
	width: 64px;
	height: 64px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 16px;
	color: white;
	position: relative;
	overflow: hidden;
}

.step-icon-box::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(
		135deg,
		rgba(255, 255, 255, 0.2),
		transparent
	);
	opacity: 0;
	transition: opacity 0.3s ease;
}

.how-step-card:hover .step-icon-box::before {
	opacity: 1;
}

.step-icon-assess {
	background: linear-gradient(
		135deg,
		#667eea 0%,
		#764ba2 100%
	);
	box-shadow: 0 8px 24px rgba(102, 126, 234, 0.35);
}

.step-icon-adapt {
	background: linear-gradient(
		135deg,
		#f093fb 0%,
		#f5576c 100%
	);
	box-shadow: 0 8px 24px rgba(240, 147, 251, 0.35);
}

.step-icon-grow {
	background: linear-gradient(
		135deg,
		#4facfe 0%,
		#00f2fe 100%
	);
	box-shadow: 0 8px 24px rgba(79, 172, 254, 0.35);
}

/* Step Content */
.step-content-body {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 0.875rem;
}

.step-title {
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--color-text);
	margin: 0;
	line-height: 1.3;
}

.step-description {
	font-size: 0.9375rem;
	line-height: 1.7;
	color: var(--color-text-light);
	margin: 0;
}

.step-features {
	display: flex;
	flex-direction: column;
	gap: 0.625rem;
	margin-top: 0.5rem;
}

.step-feature {
	display: flex;
	align-items: center;
	gap: 0.625rem;
	font-size: 0.875rem;
	color: var(--color-text-light);
}

.step-feature svg {
	flex-shrink: 0;
	color: var(--color-primary);
}

/* Stats Section */
.how-stats {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
	max-width: 1000px;
	margin: 6rem auto 0;
	padding: 0 2rem;
}

.how-stat-card {
	background: white;
	padding: 2rem 1.75rem;
	border-radius: 16px;
	border: 1px solid rgba(64, 224, 208, 0.15);
	display: flex;
	align-items: center;
	gap: 1.25rem;
	transition: all 0.3s ease;
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.how-stat-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 8px 28px rgba(64, 224, 208, 0.15);
	border-color: rgba(64, 224, 208, 0.3);
}

.stat-icon-wrapper {
	width: 56px;
	height: 56px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(
		135deg,
		rgba(64, 224, 208, 0.1),
		rgba(38, 180, 170, 0.05)
	);
	border-radius: 12px;
	flex-shrink: 0;
}

.stat-emoji {
	font-size: 1.75rem;
}

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

.stat-value {
	font-size: 1.5rem;
	font-weight: 800;
	background: linear-gradient(
		135deg,
		var(--color-primary) 0%,
		var(--color-primary-dark) 100%
	);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	line-height: 1.2;
}

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

.benefits,
.demo,
.testimonials,
.for-schools,
.pricing {
	padding: var(--spacing-3xl) 0;
}

.benefits,
.testimonials,
.pricing {
	background: var(--color-bg-light);
}

.benefits-grid,
.testimonials-grid,
.schools-features,
.pricing-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: var(--spacing-xl);
	max-width: 1200px;
	margin: 0 auto;
	align-items: stretch;
}

.section-header {
	text-align: center;
	margin-bottom: var(--spacing-3xl);
}

.section-title {
	transition: opacity 0.6s ease,
		transform 0.6s ease;
}

.section-subtitle {
	font-size: 1.125rem;
	color: var(--color-text-light);
	margin-top: var(--spacing-md);
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
	transition: opacity 0.6s ease,
		transform 0.6s ease;
}

.title-gradient {
	background: linear-gradient(
		135deg,
		var(--color-primary),
		var(--color-primary-dark)
	);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

/* Icon Designs */
.icon-assess {
	position: relative;
	width: 50px;
	height: 50px;
}

.icon-assess::before {
	content: "📊";
	font-size: 40px;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.icon-adapt {
	position: relative;
	width: 50px;
	height: 50px;
}

.icon-adapt::before {
	content: "⚙️";
	font-size: 40px;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.icon-advance {
	position: relative;
	width: 50px;
	height: 50px;
}

.icon-advance::before {
	content: "🚀";
	font-size: 40px;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.benefit-icon {
	width: 60px;
	height: 60px;
	margin-bottom: var(--spacing-lg);
	position: relative;
}

/* Benefit Icons */
.student-icon {
	position: relative;
	width: 50px;
	height: 50px;
}

.student-icon::before {
	content: "🎓";
	font-size: 36px;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.teacher-icon {
	position: relative;
	width: 50px;
	height: 50px;
}

.teacher-icon::before {
	content: "👨‍🏫";
	font-size: 36px;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.parent-icon {
	position: relative;
	width: 50px;
	height: 50px;
}

.parent-icon::before {
	content: "👨‍👩‍👧";
	font-size: 36px;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.step h3,
.benefit-card h3,
.pricing-card h3 {
	font-size: 1.5rem;
	margin-bottom: 1rem;
}

.step p,
.benefit-card p,
.feature p {
	color: var(--color-text-light);
	line-height: 1.8;
}

/* ======================== */
/* Benefits Section Styles  */
/* ======================== */

/* ===== Benefits Section ===== */
.benefits {
	position: relative;
	padding: 6rem 0;
	background: var(--color-bg-light);
	overflow: hidden;
}

.benefits-bg {
	position: absolute;
	inset: 0;
	z-index: 0;
	pointer-events: none;
}

.benefits-circle {
	position: absolute;
	border-radius: 50%;
	filter: blur(100px);
	opacity: 0.15;
	animation: floatSlow 25s ease-in-out infinite;
}

.benefits-circle-1 {
	width: 500px;
	height: 500px;
	background: radial-gradient(
		circle,
		rgba(64, 224, 208, 0.4),
		transparent
	);
	top: -10%;
	right: -10%;
	animation-delay: 0s;
}

.benefits-circle-2 {
	width: 450px;
	height: 450px;
	background: radial-gradient(
		circle,
		rgba(102, 126, 234, 0.3),
		transparent
	);
	bottom: -15%;
	left: -10%;
	animation-delay: 12s;
}

@keyframes floatSlow {
	0%,
	100% {
		transform: translate(0, 0) scale(1);
	}
	50% {
		transform: translate(40px, -50px) scale(1.1);
	}
}

.benefits .container {
	position: relative;
	z-index: 1;
}

.benefits-header {
	text-align: center;
	max-width: 750px;
	margin: 0 auto 4.5rem;
}

.benefits-tag {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.625rem 1.25rem;
	background: white;
	border: 1px solid rgba(64, 224, 208, 0.2);
	border-radius: 100px;
	font-size: 0.875rem;
	font-weight: 600;
	color: var(--color-primary);
	margin-bottom: 1.5rem;
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
	animation: fadeInDown 0.6s ease-out;
}

.benefits-tag svg {
	color: var(--color-primary);
}

.benefits-title {
	font-size: 3rem;
	font-weight: 800;
	line-height: 1.2;
	color: var(--color-text);
	margin-bottom: 1.25rem;
	animation: fadeInUp 0.6s ease-out 0.1s both;
}

.benefits-highlight {
	display: inline-block;
	background: linear-gradient(
		135deg,
		var(--color-primary) 0%,
		var(--color-primary-dark) 100%
	);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.benefits-description {
	font-size: 1.125rem;
	line-height: 1.7;
	color: var(--color-text-light);
	max-width: 650px;
	margin: 0 auto;
	animation: fadeInUp 0.6s ease-out 0.2s both;
}

/* Benefits Grid */
.benefits-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
	max-width: 1200px;
	margin: 0 auto;
}

.benefit-card {
	position: relative;
	background: white;
	border-radius: 20px;
	padding: 2.25rem 2rem;
	border: 1px solid rgba(64, 224, 208, 0.12);
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
	transition: all 0.4s
		cubic-bezier(0.23, 1, 0.32, 1);
	animation: fadeInUp 0.8s ease-out both;
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

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

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

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

.benefit-card-featured {
	border-color: rgba(64, 224, 208, 0.3);
	box-shadow: 0 8px 32px rgba(64, 224, 208, 0.12);
	transform: scale(1.02);
}

.featured-badge {
	position: absolute;
	top: -12px;
	right: 2rem;
	padding: 0.375rem 1rem;
	background: linear-gradient(
		135deg,
		var(--color-primary) 0%,
		var(--color-primary-dark) 100%
	);
	color: white;
	font-size: 0.75rem;
	font-weight: 700;
	border-radius: 100px;
	box-shadow: 0 4px 12px rgba(64, 224, 208, 0.3);
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.benefit-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 16px 48px rgba(64, 224, 208, 0.15);
	border-color: rgba(64, 224, 208, 0.3);
}

.benefit-card-featured:hover {
	transform: translateY(-8px) scale(1.02);
}

.benefit-card-header {
	display: flex;
	align-items: center;
	gap: 1rem;
}

.benefit-icon {
	width: 60px;
	height: 60px;
	border-radius: 14px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	transition: all 0.3s ease;
}

.benefit-icon-students {
	background: linear-gradient(
		135deg,
		#667eea 0%,
		#764ba2 100%
	);
	box-shadow: 0 8px 24px rgba(102, 126, 234, 0.3);
	color: white;
}

.benefit-icon-teachers {
	background: linear-gradient(
		135deg,
		#f093fb 0%,
		#f5576c 100%
	);
	box-shadow: 0 8px 24px rgba(240, 147, 251, 0.3);
	color: white;
}

.benefit-icon-parents {
	background: linear-gradient(
		135deg,
		#4facfe 0%,
		#00f2fe 100%
	);
	box-shadow: 0 8px 24px rgba(79, 172, 254, 0.3);
	color: white;
}

.benefit-card:hover .benefit-icon {
	transform: scale(1.1) rotate(5deg);
}

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

.benefit-card-title {
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--color-text);
	margin: 0;
	line-height: 1.3;
}

.benefit-card-text {
	font-size: 0.9375rem;
	line-height: 1.7;
	color: var(--color-text-light);
	margin: 0;
	flex-grow: 1;
}

.benefit-list {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
	padding-top: 0.5rem;
	border-top: 1px solid rgba(64, 224, 208, 0.1);
}

.benefit-item {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	font-size: 0.875rem;
	color: var(--color-text);
	transition: all 0.2s ease;
}

.benefit-check {
	width: 20px;
	height: 20px;
	border-radius: 50%;
	background: linear-gradient(
		135deg,
		rgba(64, 224, 208, 0.15),
		rgba(64, 224, 208, 0.05)
	);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--color-primary);
	flex-shrink: 0;
	transition: all 0.3s ease;
}

.benefit-card:hover .benefit-check {
	background: linear-gradient(
		135deg,
		var(--color-primary) 0%,
		var(--color-primary-dark) 100%
	);
	color: white;
	transform: scale(1.1);
}

.benefit-card-footer {
	padding-top: 1rem;
	border-top: 1px solid rgba(64, 224, 208, 0.1);
}

.benefit-metric {
	font-size: 0.875rem;
	color: var(--color-text-light);
}

.benefit-metric strong {
	font-size: 1.125rem;
	font-weight: 800;
	background: linear-gradient(
		135deg,
		var(--color-primary) 0%,
		var(--color-primary-dark) 100%
	);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	margin-right: 0.25rem;
}

/* ======================== */
/* Demo Section Styles      */
/* ======================== */

/* ===== Demo Section ===== */
.demo {
	position: relative;
	padding: 6rem 0;
	background: linear-gradient(
		180deg,
		#f8fafb 0%,
		#ffffff 100%
	);
	overflow: hidden;
}

.demo-bg {
	position: absolute;
	inset: 0;
	z-index: 0;
	pointer-events: none;
}

.demo-circle {
	position: absolute;
	border-radius: 50%;
	filter: blur(120px);
	opacity: 0.12;
	animation: floatSlow 30s ease-in-out infinite;
}

.demo-circle-1 {
	width: 600px;
	height: 600px;
	background: radial-gradient(
		circle,
		rgba(102, 126, 234, 0.4),
		transparent
	);
	top: -20%;
	left: -10%;
	animation-delay: 0s;
}

.demo-circle-2 {
	width: 550px;
	height: 550px;
	background: radial-gradient(
		circle,
		rgba(64, 224, 208, 0.3),
		transparent
	);
	bottom: -25%;
	right: -15%;
	animation-delay: 15s;
}

.demo-grid-pattern {
	position: absolute;
	inset: 0;
	background-image: radial-gradient(
		circle,
		rgba(64, 224, 208, 0.05) 1px,
		transparent 1px
	);
	background-size: 40px 40px;
	opacity: 0.4;
}

.demo .container {
	position: relative;
	z-index: 1;
}

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

.demo-tag {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.625rem 1.25rem;
	background: white;
	border: 1px solid rgba(64, 224, 208, 0.2);
	border-radius: 100px;
	font-size: 0.875rem;
	font-weight: 600;
	color: var(--color-primary);
	margin-bottom: 1.5rem;
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
	animation: fadeInDown 0.6s ease-out;
}

.demo-tag svg {
	color: var(--color-primary);
}

.demo-title {
	font-size: 3rem;
	font-weight: 800;
	line-height: 1.2;
	color: var(--color-text);
	margin-bottom: 1.25rem;
	animation: fadeInUp 0.6s ease-out 0.1s both;
}

.demo-highlight {
	display: inline-block;
	background: linear-gradient(
		135deg,
		var(--color-primary) 0%,
		var(--color-primary-dark) 100%
	);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.demo-description {
	font-size: 1.125rem;
	line-height: 1.7;
	color: var(--color-text-light);
	max-width: 700px;
	margin: 0 auto;
	animation: fadeInUp 0.6s ease-out 0.2s both;
}

/* Video Container */
.demo-video-wrapper {
	max-width: 1100px;
	margin: 0 auto 4rem;
}

.demo-video-container {
	position: relative;
	animation: fadeInUp 0.8s ease-out 0.3s both;
}

.demo-video-frame {
	position: relative;
	aspect-ratio: 16/9;
	background: linear-gradient(
		135deg,
		rgba(64, 224, 208, 0.03),
		rgba(102, 126, 234, 0.03)
	);
	border-radius: 24px;
	border: 1px solid rgba(64, 224, 208, 0.15);
	overflow: hidden;
	box-shadow: 0 20px 60px rgba(64, 224, 208, 0.12),
		0 0 0 1px rgba(255, 255, 255, 0.5) inset;
	transition: all 0.4s
		cubic-bezier(0.23, 1, 0.32, 1);
}

.demo-video-frame:hover {
	transform: translateY(-4px);
	box-shadow: 0 30px 80px rgba(64, 224, 208, 0.18),
		0 0 0 1px rgba(255, 255, 255, 0.8) inset;
	border-color: rgba(64, 224, 208, 0.25);
}

.demo-video-content {
	position: relative;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(
		135deg,
		rgba(255, 255, 255, 0.9),
		rgba(255, 255, 255, 0.7)
	);
	backdrop-filter: blur(20px);
	cursor: pointer;
}

/* Play Button */
.demo-play-button {
	position: relative;
	width: 100px;
	height: 100px;
	border: none;
	background: white;
	border-radius: 50%;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 12px 40px rgba(64, 224, 208, 0.25);
	transition: all 0.4s
		cubic-bezier(0.23, 1, 0.32, 1);
	z-index: 2;
}

.demo-play-button:hover {
	transform: scale(1.1);
	box-shadow: 0 16px 50px rgba(64, 224, 208, 0.35);
}

.demo-play-pulse {
	position: absolute;
	inset: -10px;
	border: 2px solid var(--color-primary);
	border-radius: 50%;
	animation: playPulse 2.5s ease-out infinite;
	opacity: 0;
}

@keyframes playPulse {
	0% {
		transform: scale(0.95);
		opacity: 0.8;
	}
	100% {
		transform: scale(1.3);
		opacity: 0;
	}
}

.demo-play-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--color-primary);
	margin-left: 4px;
	transition: all 0.3s ease;
}

.demo-play-button:hover .demo-play-icon {
	color: var(--color-primary-dark);
	transform: scale(1.1);
}

/* Duration Badge */
.demo-duration-badge {
	position: absolute;
	bottom: 2rem;
	right: 2rem;
	display: flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.625rem 1.125rem;
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(10px);
	border: 1px solid rgba(64, 224, 208, 0.2);
	border-radius: 100px;
	font-size: 0.875rem;
	font-weight: 600;
	color: var(--color-text);
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
	z-index: 1;
}

.demo-duration-badge svg {
	color: var(--color-primary);
}

/* Floating Feature Tags */
.demo-feature-tags {
	position: absolute;
	inset: 0;
	pointer-events: none;
}

.demo-feature-tag {
	position: absolute;
	display: flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.5rem 1rem;
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(10px);
	border: 1px solid rgba(64, 224, 208, 0.2);
	border-radius: 100px;
	font-size: 0.8125rem;
	font-weight: 600;
	color: var(--color-text);
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
	animation: floatTag 6s ease-in-out infinite;
}

.demo-tag-icon {
	font-size: 1rem;
}

.demo-tag-1 {
	top: 15%;
	left: 8%;
	animation-delay: 0s;
}

.demo-tag-2 {
	top: 25%;
	right: 10%;
	animation-delay: 2s;
}

.demo-tag-3 {
	bottom: 20%;
	left: 12%;
	animation-delay: 4s;
}

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

/* Stats Row */
.demo-stats {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
	max-width: 900px;
	margin: 3rem auto 0;
	animation: fadeInUp 0.8s ease-out 0.4s both;
}

.demo-stat-item {
	display: flex;
	align-items: center;
	gap: 1rem;
	padding: 1.5rem;
	background: white;
	border-radius: 16px;
	border: 1px solid rgba(64, 224, 208, 0.12);
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
	transition: all 0.3s ease;
}

.demo-stat-item:hover {
	transform: translateY(-4px);
	box-shadow: 0 8px 24px rgba(64, 224, 208, 0.15);
	border-color: rgba(64, 224, 208, 0.25);
}

.demo-stat-icon {
	width: 50px;
	height: 50px;
	border-radius: 12px;
	background: linear-gradient(
		135deg,
		rgba(64, 224, 208, 0.15),
		rgba(64, 224, 208, 0.05)
	);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--color-primary);
	flex-shrink: 0;
	transition: all 0.3s ease;
}

.demo-stat-item:hover .demo-stat-icon {
	transform: scale(1.1) rotate(5deg);
	background: linear-gradient(
		135deg,
		rgba(64, 224, 208, 0.25),
		rgba(64, 224, 208, 0.1)
	);
}

.demo-stat-content {
	display: flex;
	flex-direction: column;
	gap: 0.25rem;
}

.demo-stat-value {
	font-size: 1.5rem;
	font-weight: 800;
	background: linear-gradient(
		135deg,
		var(--color-primary) 0%,
		var(--color-primary-dark) 100%
	);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	line-height: 1.2;
}

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

/* CTA Section */
.demo-cta {
	max-width: 800px;
	margin: 0 auto;
	padding: 3rem 2.5rem;
	background: linear-gradient(
		135deg,
		rgba(64, 224, 208, 0.08),
		rgba(102, 126, 234, 0.08)
	);
	border-radius: 24px;
	border: 1px solid rgba(64, 224, 208, 0.2);
	text-align: center;
	box-shadow: 0 8px 32px rgba(64, 224, 208, 0.1);
	animation: fadeInUp 0.8s ease-out 0.5s both;
}

.demo-cta-title {
	font-size: 1.875rem;
	font-weight: 800;
	color: var(--color-text);
	margin: 0 0 0.75rem 0;
	line-height: 1.3;
}

.demo-cta-text {
	font-size: 1.0625rem;
	color: var(--color-text-light);
	margin: 0 0 2rem 0;
	line-height: 1.6;
}

.demo-cta-actions {
	display: flex;
	gap: 1rem;
	justify-content: center;
	flex-wrap: wrap;
}

.demo-cta-actions .btn {
	font-weight: 600;
	letter-spacing: 0.3px;
	transition: all 0.3s
		cubic-bezier(0.23, 1, 0.32, 1);
}

.demo-cta-actions .btn:hover {
	transform: translateY(-2px);
}

.demo-cta-actions .btn-primary:hover {
	box-shadow: 0 12px 32px rgba(64, 224, 208, 0.3);
}

/* ======================== */
/* Testimonials Section      */
/* ======================== */

/* ===== Testimonials Section ===== */
.testimonials {
	position: relative;
	padding: 6rem 0;
	background: white;
	overflow: hidden;
}

.testimonials-bg {
	position: absolute;
	inset: 0;
	z-index: 0;
	pointer-events: none;
}

.testimonials-circle {
	position: absolute;
	border-radius: 50%;
	filter: blur(100px);
	opacity: 0.1;
	animation: floatSlow 28s ease-in-out infinite;
}

.testimonials-circle-1 {
	width: 550px;
	height: 550px;
	background: radial-gradient(
		circle,
		rgba(240, 147, 251, 0.4),
		transparent
	);
	top: -15%;
	left: -10%;
	animation-delay: 0s;
}

.testimonials-circle-2 {
	width: 500px;
	height: 500px;
	background: radial-gradient(
		circle,
		rgba(79, 172, 254, 0.3),
		transparent
	);
	bottom: -20%;
	right: -15%;
	animation-delay: 14s;
}

.testimonials .container {
	position: relative;
	z-index: 1;
}

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

.testimonials-tag {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.625rem 1.25rem;
	background: white;
	border: 1px solid rgba(64, 224, 208, 0.2);
	border-radius: 100px;
	font-size: 0.875rem;
	font-weight: 600;
	color: var(--color-primary);
	margin-bottom: 1.5rem;
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
	animation: fadeInDown 0.6s ease-out;
}

.testimonials-tag svg {
	color: var(--color-primary);
}

.testimonials-title {
	font-size: 3rem;
	font-weight: 800;
	line-height: 1.2;
	color: var(--color-text);
	margin-bottom: 1.25rem;
	animation: fadeInUp 0.6s ease-out 0.1s both;
}

.testimonials-highlight {
	display: inline-block;
	background: linear-gradient(
		135deg,
		var(--color-primary) 0%,
		var(--color-primary-dark) 100%
	);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.testimonials-description {
	font-size: 1.125rem;
	line-height: 1.7;
	color: var(--color-text-light);
	max-width: 700px;
	margin: 0 auto;
	animation: fadeInUp 0.6s ease-out 0.2s both;
}

/* Testimonials Grid */
.testimonials-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
	max-width: 1200px;
	margin: 0 auto 4rem;
}

.testimonial-card {
	position: relative;
	background: white;
	border-radius: 20px;
	padding: 2.5rem;
	border: 1px solid rgba(64, 224, 208, 0.12);
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
	transition: all 0.4s
		cubic-bezier(0.23, 1, 0.32, 1);
	animation: fadeInUp 0.8s ease-out both;
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

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

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

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

.testimonial-card-featured {
	border-color: rgba(64, 224, 208, 0.3);
	box-shadow: 0 8px 32px rgba(64, 224, 208, 0.12);
	transform: scale(1.02);
}

.testimonial-featured-badge {
	position: absolute;
	top: -12px;
	right: 2rem;
	padding: 0.375rem 1rem;
	background: linear-gradient(
		135deg,
		var(--color-primary) 0%,
		var(--color-primary-dark) 100%
	);
	color: white;
	font-size: 0.75rem;
	font-weight: 700;
	border-radius: 100px;
	box-shadow: 0 4px 12px rgba(64, 224, 208, 0.3);
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.testimonial-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 16px 48px rgba(64, 224, 208, 0.15);
	border-color: rgba(64, 224, 208, 0.3);
}

.testimonial-card-featured:hover {
	transform: translateY(-8px) scale(1.02);
}

.testimonial-quote-icon {
	width: 40px;
	height: 32px;
	color: rgba(64, 224, 208, 0.2);
	transition: all 0.3s ease;
}

.testimonial-card:hover .testimonial-quote-icon {
	color: rgba(64, 224, 208, 0.35);
	transform: scale(1.1);
}

.testimonial-text {
	font-size: 1rem;
	line-height: 1.8;
	color: var(--color-text);
	margin: 0;
	flex-grow: 1;
}

.testimonial-rating {
	display: flex;
	gap: 0.375rem;
	padding-bottom: 1rem;
	border-bottom: 1px solid rgba(64, 224, 208, 0.1);
}

.testimonial-rating svg {
	width: 16px;
	height: 16px;
}

.testimonial-author {
	display: flex;
	align-items: center;
	gap: 1rem;
}

.testimonial-avatar {
	width: 56px;
	height: 56px;
	border-radius: 50%;
	flex-shrink: 0;
	overflow: hidden;
	border: 2px solid rgba(64, 224, 208, 0.2);
	transition: all 0.3s ease;
}

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

.testimonial-card:hover .testimonial-avatar {
	transform: scale(1.1);
	border-color: rgba(64, 224, 208, 0.4);
	box-shadow: 0 4px 16px rgba(64, 224, 208, 0.2);
}

.testimonial-avatar-1 {
	border-color: rgba(102, 126, 234, 0.3);
}

.testimonial-avatar-2 {
	border-color: rgba(240, 147, 251, 0.3);
}

.testimonial-avatar-3 {
	border-color: rgba(79, 172, 254, 0.3);
}

.testimonial-author-info {
	display: flex;
	flex-direction: column;
	gap: 0.25rem;
}

.testimonial-author-name {
	font-size: 1rem;
	font-weight: 700;
	color: var(--color-text);
	line-height: 1.3;
}

.testimonial-author-role {
	font-size: 0.875rem;
	color: var(--color-text-light);
	line-height: 1.4;
}

/* Stats Row */
.testimonials-stats {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
	max-width: 900px;
	margin: 0 auto;
	padding-top: 2rem;
	border-top: 1px solid rgba(64, 224, 208, 0.1);
	animation: fadeInUp 0.8s ease-out 0.6s both;
}

.testimonials-stat-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.5rem;
	padding: 1.5rem;
	background: linear-gradient(
		135deg,
		rgba(64, 224, 208, 0.05),
		rgba(102, 126, 234, 0.05)
	);
	border-radius: 16px;
	border: 1px solid rgba(64, 224, 208, 0.1);
	transition: all 0.3s ease;
}

.testimonials-stat-item:hover {
	transform: translateY(-4px);
	box-shadow: 0 8px 24px rgba(64, 224, 208, 0.12);
	border-color: rgba(64, 224, 208, 0.2);
}

.testimonials-stat-value {
	font-size: 2.25rem;
	font-weight: 900;
	background: linear-gradient(
		135deg,
		var(--color-primary) 0%,
		var(--color-primary-dark) 100%
	);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	letter-spacing: -0.5px;
	line-height: 1.2;
}

.testimonials-stat-label {
	font-size: 0.9375rem;
	color: var(--color-text-light);
	font-weight: 500;
	text-align: center;
}

/* ======================== */
/* For-Schools Section */
/* ======================== */

/* ===== For Schools Section ===== */
.for-schools {
	position: relative;
	padding: 6rem 0;
	background: linear-gradient(
		180deg,
		#ffffff 0%,
		#f8fafb 100%
	);
	overflow: hidden;
}

.schools-bg {
	position: absolute;
	inset: 0;
	z-index: 0;
	pointer-events: none;
}

.schools-circle {
	position: absolute;
	border-radius: 50%;
	filter: blur(110px);
	opacity: 0.1;
	animation: floatSlow 32s ease-in-out infinite;
}

.schools-circle-1 {
	width: 580px;
	height: 580px;
	background: radial-gradient(
		circle,
		rgba(102, 126, 234, 0.4),
		transparent
	);
	top: -18%;
	right: -12%;
	animation-delay: 0s;
}

.schools-circle-2 {
	width: 530px;
	height: 530px;
	background: radial-gradient(
		circle,
		rgba(64, 224, 208, 0.35),
		transparent
	);
	bottom: -22%;
	left: -15%;
	animation-delay: 16s;
}

.schools-pattern {
	position: absolute;
	inset: 0;
	background-image: radial-gradient(
		circle,
		rgba(64, 224, 208, 0.04) 1px,
		transparent 1px
	);
	background-size: 35px 35px;
	opacity: 0.5;
}

.for-schools .container {
	position: relative;
	z-index: 1;
}

.schools-header {
	text-align: center;
	max-width: 850px;
	margin: 0 auto 4.5rem;
}

.schools-tag {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.625rem 1.25rem;
	background: white;
	border: 1px solid rgba(64, 224, 208, 0.2);
	border-radius: 100px;
	font-size: 0.875rem;
	font-weight: 600;
	color: var(--color-primary);
	margin-bottom: 1.5rem;
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
	animation: fadeInDown 0.6s ease-out;
}

.schools-tag svg {
	color: var(--color-primary);
}

.schools-title {
	font-size: 3rem;
	font-weight: 800;
	line-height: 1.2;
	color: var(--color-text);
	margin-bottom: 1.25rem;
	animation: fadeInUp 0.6s ease-out 0.1s both;
}

.schools-highlight {
	display: inline-block;
	background: linear-gradient(
		135deg,
		var(--color-primary) 0%,
		var(--color-primary-dark) 100%
	);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.schools-description {
	font-size: 1.125rem;
	line-height: 1.7;
	color: var(--color-text-light);
	max-width: 750px;
	margin: 0 auto;
	animation: fadeInUp 0.6s ease-out 0.2s both;
}

/* Features Grid */
.schools-features-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
	max-width: 1200px;
	margin: 0 auto 4rem;
}

.schools-feature-card {
	position: relative;
	background: white;
	border-radius: 20px;
	padding: 2.5rem 2rem;
	border: 1px solid rgba(64, 224, 208, 0.12);
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
	transition: all 0.4s
		cubic-bezier(0.23, 1, 0.32, 1);
	animation: fadeInUp 0.8s ease-out both;
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

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

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

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

.schools-feature-card-highlighted {
	border-color: rgba(64, 224, 208, 0.3);
	box-shadow: 0 8px 32px rgba(64, 224, 208, 0.12);
	transform: scale(1.02);
}

.schools-featured-badge {
	position: absolute;
	top: -12px;
	right: 2rem;
	padding: 0.375rem 1rem;
	background: linear-gradient(
		135deg,
		var(--color-primary) 0%,
		var(--color-primary-dark) 100%
	);
	color: white;
	font-size: 0.75rem;
	font-weight: 700;
	border-radius: 100px;
	box-shadow: 0 4px 12px rgba(64, 224, 208, 0.3);
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.schools-feature-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 16px 48px rgba(64, 224, 208, 0.15);
	border-color: rgba(64, 224, 208, 0.3);
}

.schools-feature-card-highlighted:hover {
	transform: translateY(-8px) scale(1.02);
}

.schools-feature-icon {
	width: 70px;
	height: 70px;
	border-radius: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	transition: all 0.3s ease;
}

.schools-icon-1 {
	background: linear-gradient(
		135deg,
		#667eea 0%,
		#764ba2 100%
	);
	box-shadow: 0 8px 24px rgba(102, 126, 234, 0.3);
	color: white;
}

.schools-icon-2 {
	background: linear-gradient(
		135deg,
		#f093fb 0%,
		#f5576c 100%
	);
	box-shadow: 0 8px 24px rgba(240, 147, 251, 0.3);
	color: white;
}

.schools-icon-3 {
	background: linear-gradient(
		135deg,
		#4facfe 0%,
		#00f2fe 100%
	);
	box-shadow: 0 8px 24px rgba(79, 172, 254, 0.3);
	color: white;
}

.schools-feature-card:hover
	.schools-feature-icon {
	transform: scale(1.1) rotate(5deg);
}

.schools-feature-title {
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--color-text);
	margin: 0;
	line-height: 1.3;
}

.schools-feature-text {
	font-size: 0.9375rem;
	line-height: 1.7;
	color: var(--color-text-light);
	margin: 0;
	flex-grow: 1;
}

.schools-feature-list {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
	list-style: none;
	padding: 0;
	margin: 0;
	padding-top: 0.75rem;
	border-top: 1px solid rgba(64, 224, 208, 0.1);
}

.schools-feature-list li {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	font-size: 0.875rem;
	color: var(--color-text);
	transition: all 0.2s ease;
}

.schools-feature-list li svg {
	flex-shrink: 0;
	color: var(--color-primary);
	stroke-width: 2.5;
}

/* Stats Section */
.schools-stats {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 2rem;
	max-width: 1200px;
	margin: 0 auto 4rem;
	animation: fadeInUp 0.8s ease-out 0.6s both;
}

.schools-stat-card {
	background: linear-gradient(
		135deg,
		rgba(64, 224, 208, 0.08),
		rgba(102, 126, 234, 0.08)
	);
	border: 1px solid rgba(64, 224, 208, 0.15);
	border-radius: 16px;
	padding: 2rem 1.5rem;
	text-align: center;
	transition: all 0.3s ease;
}

.schools-stat-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 8px 24px rgba(64, 224, 208, 0.12);
	border-color: rgba(64, 224, 208, 0.25);
}

.schools-stat-value {
	font-size: 2.5rem;
	font-weight: 900;
	background: linear-gradient(
		135deg,
		var(--color-primary) 0%,
		var(--color-primary-dark) 100%
	);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	letter-spacing: -0.5px;
	line-height: 1.2;
	margin-bottom: 0.5rem;
}

.schools-stat-label {
	font-size: 0.9375rem;
	color: var(--color-text-light);
	font-weight: 600;
}

/* CTA Section */
.schools-cta {
	max-width: 850px;
	margin: 0 auto;
	padding: 3.5rem 3rem;
	background: linear-gradient(
		135deg,
		rgba(64, 224, 208, 0.1),
		rgba(102, 126, 234, 0.1)
	);
	border-radius: 24px;
	border: 1px solid rgba(64, 224, 208, 0.2);
	text-align: center;
	box-shadow: 0 8px 32px rgba(64, 224, 208, 0.1);
	animation: fadeInUp 0.8s ease-out 0.7s both;
}

.schools-cta-title {
	font-size: 2rem;
	font-weight: 800;
	color: var(--color-text);
	margin: 0 0 0.875rem 0;
	line-height: 1.3;
}

.schools-cta-text {
	font-size: 1.0625rem;
	color: var(--color-text-light);
	margin: 0 0 2rem 0;
	line-height: 1.7;
	max-width: 650px;
	margin-left: auto;
	margin-right: auto;
}

.schools-cta-actions {
	display: flex;
	gap: 1rem;
	justify-content: center;
	flex-wrap: wrap;
}

.schools-cta-actions .btn {
	font-weight: 600;
	letter-spacing: 0.3px;
	transition: all 0.3s
		cubic-bezier(0.23, 1, 0.32, 1);
}

.schools-cta-actions .btn:hover {
	transform: translateY(-2px);
}

.schools-cta-actions .btn-primary:hover {
	box-shadow: 0 12px 32px rgba(64, 224, 208, 0.3);
}

/* ======================== */
/* Pricing Section */
/* ======================== */

/* ===== Pricing Section ===== */
.pricing {
	position: relative;
	padding: 6rem 0;
	background: linear-gradient(
		180deg,
		#f8fafb 0%,
		#ffffff 100%
	);
	overflow: hidden;
}

.pricing-bg {
	position: absolute;
	inset: 0;
	z-index: 0;
	pointer-events: none;
}

.pricing-circle {
	position: absolute;
	border-radius: 50%;
	filter: blur(110px);
	opacity: 0.1;
	animation: floatSlow 32s ease-in-out infinite;
}

.pricing-circle-1 {
	width: 550px;
	height: 550px;
	background: radial-gradient(
		circle,
		rgba(240, 147, 251, 0.4),
		transparent
	);
	top: -15%;
	left: -10%;
	animation-delay: 0s;
}

.pricing-circle-2 {
	width: 500px;
	height: 500px;
	background: radial-gradient(
		circle,
		rgba(79, 172, 254, 0.35),
		transparent
	);
	bottom: -18%;
	right: -8%;
	animation-delay: 16s;
}

.pricing-pattern {
	position: absolute;
	inset: 0;
	background-image: radial-gradient(
		circle,
		rgba(102, 126, 234, 0.04) 1px,
		transparent 1px
	);
	background-size: 35px 35px;
	opacity: 0.5;
}

.pricing .container {
	position: relative;
	z-index: 1;
}

.pricing-header {
	text-align: center;
	max-width: 850px;
	margin: 0 auto 3rem;
}

.pricing-tag {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.625rem 1.25rem;
	background: white;
	border: 1px solid rgba(64, 224, 208, 0.2);
	border-radius: 100px;
	font-size: 0.875rem;
	font-weight: 600;
	color: var(--color-primary);
	margin-bottom: 1.5rem;
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
	animation: fadeInDown 0.6s ease-out;
}

.pricing-tag svg {
	color: var(--color-primary);
}

.pricing-title {
	font-size: 3rem;
	font-weight: 800;
	line-height: 1.2;
	color: var(--color-text);
	margin-bottom: 1.25rem;
	animation: fadeInUp 0.6s ease-out 0.1s both;
}

.pricing-highlight {
	display: inline-block;
	background: linear-gradient(
		135deg,
		var(--color-primary) 0%,
		var(--color-primary-dark) 100%
	);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.pricing-description {
	font-size: 1.125rem;
	line-height: 1.7;
	color: var(--color-text-light);
	max-width: 750px;
	margin: 0 auto;
	animation: fadeInUp 0.6s ease-out 0.2s both;
}

/* Pricing Toggle */
.pricing-toggle {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	margin: 0 auto 3.5rem;
	padding: 0.375rem;
	background: white;
	border: 1px solid rgba(64, 224, 208, 0.15);
	border-radius: 100px;
	width: fit-content;
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
	animation: fadeInUp 0.6s ease-out 0.3s both;
}

.toggle-btn {
	padding: 0.625rem 1.5rem;
	border: none;
	background: transparent;
	color: var(--color-text-light);
	font-weight: 600;
	font-size: 0.9375rem;
	border-radius: 100px;
	cursor: pointer;
	transition: all 0.3s ease;
	display: flex;
	align-items: center;
	gap: 0.5rem;
	position: relative;
}

.toggle-btn.active {
	background: linear-gradient(
		135deg,
		var(--color-primary) 0%,
		var(--color-primary-dark) 100%
	);
	color: white;
	box-shadow: 0 4px 12px rgba(64, 224, 208, 0.3);
}

.toggle-save {
	padding: 0.25rem 0.625rem;
	background: rgba(255, 255, 255, 0.2);
	border-radius: 50px;
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.3px;
}

.toggle-btn.active .toggle-save {
	background: rgba(255, 255, 255, 0.25);
}

/* Pricing Cards Grid */
.pricing-cards-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
	max-width: 1200px;
	margin: 0 auto 4.5rem;
}

.pricing-plan-card {
	position: relative;
	background: white;
	border-radius: 20px;
	padding: 2.5rem 2rem;
	border: 1px solid rgba(64, 224, 208, 0.12);
	display: flex;
	flex-direction: column;
	transition: all 0.4s
		cubic-bezier(0.23, 1, 0.32, 1);
	animation: fadeInUp 0.8s ease-out both;
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.pricing-plan-card:nth-child(1) {
	animation-delay: 0.4s;
}

.pricing-plan-card:nth-child(2) {
	animation-delay: 0.5s;
}

.pricing-plan-card:nth-child(3) {
	animation-delay: 0.6s;
}

.pricing-plan-card-featured {
	border-color: rgba(64, 224, 208, 0.3);
	box-shadow: 0 8px 32px rgba(64, 224, 208, 0.12);
	transform: scale(1.05);
}

.pricing-featured-badge {
	position: absolute;
	top: -12px;
	left: 50%;
	transform: translateX(-50%);
	padding: 0.375rem 1rem;
	background: linear-gradient(
		135deg,
		var(--color-primary) 0%,
		var(--color-primary-dark) 100%
	);
	color: white;
	font-size: 0.75rem;
	font-weight: 700;
	border-radius: 100px;
	box-shadow: 0 4px 12px rgba(64, 224, 208, 0.3);
	text-transform: uppercase;
	letter-spacing: 0.5px;
	white-space: nowrap;
}

.pricing-plan-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 16px 48px rgba(64, 224, 208, 0.15);
	border-color: rgba(64, 224, 208, 0.3);
}

.pricing-plan-card-featured:hover {
	transform: translateY(-8px) scale(1.05);
}

.plan-header {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	margin-bottom: 2rem;
}

.plan-icon {
	width: 70px;
	height: 70px;
	border-radius: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 1.25rem;
	transition: all 0.3s ease;
}

.pricing-plan-icon-1 {
	background: linear-gradient(
		135deg,
		#667eea 0%,
		#764ba2 100%
	);
	box-shadow: 0 8px 24px rgba(102, 126, 234, 0.3);
	color: white;
}

.pricing-plan-icon-2 {
	background: linear-gradient(
		135deg,
		#f093fb 0%,
		#f5576c 100%
	);
	box-shadow: 0 8px 24px rgba(240, 147, 251, 0.3);
	color: white;
}

.pricing-plan-icon-3 {
	background: linear-gradient(
		135deg,
		#4facfe 0%,
		#00f2fe 100%
	);
	box-shadow: 0 8px 24px rgba(79, 172, 254, 0.3);
	color: white;
}

.pricing-plan-card:hover .plan-icon {
	transform: scale(1.1) rotate(5deg);
}

.plan-name {
	font-size: 1.75rem;
	font-weight: 700;
	color: var(--color-text);
	margin: 0 0 0.5rem 0;
	line-height: 1.2;
}

.plan-desc {
	font-size: 0.9375rem;
	color: var(--color-text-light);
	margin: 0;
}

.plan-pricing {
	text-align: center;
	padding-bottom: 2rem;
	border-bottom: 1px solid rgba(64, 224, 208, 0.1);
	margin-bottom: 2rem;
}

.plan-price {
	display: flex;
	align-items: baseline;
	justify-content: center;
	gap: 0.25rem;
	margin-bottom: 0.5rem;
}

.plan-currency {
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--color-text-light);
}

.plan-amount {
	font-size: 3.5rem;
	font-weight: 900;
	color: var(--color-text);
	letter-spacing: -1px;
	line-height: 1;
}

.plan-period {
	font-size: 1.125rem;
	color: var(--color-text-light);
	font-weight: 600;
}

.plan-price-custom {
	justify-content: center;
}

.plan-custom-label {
	font-size: 2.5rem;
	font-weight: 900;
	background: linear-gradient(
		135deg,
		var(--color-primary) 0%,
		var(--color-primary-dark) 100%
	);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	letter-spacing: -0.5px;
}

.plan-billing {
	font-size: 0.875rem;
	color: var(--color-text-light);
	margin: 0;
}

.plan-features {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	list-style: none;
	padding: 0;
	margin: 0 0 2.5rem 0;
	flex-grow: 1;
}

.plan-features li {
	display: flex;
	align-items: center;
	gap: 0.875rem;
	font-size: 0.9375rem;
	color: var(--color-text);
	transition: all 0.2s ease;
}

.plan-features li svg {
	flex-shrink: 0;
	color: var(--color-primary);
}

.pricing-btn {
	width: 100%;
	padding: 1rem 2rem;
	font-size: 1rem;
	font-weight: 600;
	letter-spacing: 0.3px;
	transition: all 0.3s
		cubic-bezier(0.23, 1, 0.32, 1);
}

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

.pricing-plan-card .btn-primary:hover {
	box-shadow: 0 12px 32px rgba(64, 224, 208, 0.3);
}

/* Pricing Features Section */
.pricing-features-section {
	max-width: 1200px;
	margin: 0 auto;
	padding: 3.5rem 3rem;
	background: linear-gradient(
		135deg,
		rgba(64, 224, 208, 0.05),
		rgba(102, 126, 234, 0.05)
	);
	border-radius: 24px;
	border: 1px solid rgba(64, 224, 208, 0.15);
	animation: fadeInUp 0.8s ease-out 0.7s both;
}

.pricing-features-title {
	font-size: 2rem;
	font-weight: 800;
	text-align: center;
	color: var(--color-text);
	margin: 0 0 3rem 0;
	line-height: 1.3;
}

.pricing-features-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 2rem;
}

.pricing-feature-item {
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1rem;
}

.pricing-feature-icon {
	width: 60px;
	height: 60px;
	border-radius: 14px;
	background: linear-gradient(
		135deg,
		rgba(64, 224, 208, 0.15),
		rgba(102, 126, 234, 0.15)
	);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--color-primary);
	transition: all 0.3s ease;
}

.pricing-feature-item:hover
	.pricing-feature-icon {
	transform: scale(1.1);
	background: linear-gradient(
		135deg,
		rgba(64, 224, 208, 0.25),
		rgba(102, 126, 234, 0.25)
	);
}

.pricing-feature-name {
	font-size: 1.125rem;
	font-weight: 700;
	color: var(--color-text);
	margin: 0;
	line-height: 1.3;
}

.pricing-feature-text {
	font-size: 0.875rem;
	color: var(--color-text-light);
	margin: 0;
	line-height: 1.6;
}

/* ======================== */
/* CTA Section */
/* ======================== */

.cta-section {
	position: relative;
	background: linear-gradient(
		135deg,
		#0f172a 0%,
		#1e293b 50%,
		#1a2332 100%
	);
	color: var(--color-text-white);
	padding: var(--spacing-3xl) 0 var(--spacing-2xl);
	overflow: hidden;
	border-top: 1px solid rgba(64, 224, 208, 0.1);
}

/* ======================== */
/* Footer */
/* ======================== */

.footer {
	position: relative;
	background: linear-gradient(
		180deg,
		#0a0e1a 0%,
		#0f1420 100%
	);
	color: white;
	padding: 80px 0 40px;
	overflow: hidden;
}

.footer-bg {
	position: absolute;
	inset: 0;
	pointer-events: none;
	z-index: 0;
}

.footer-gradient {
	position: absolute;
	inset: 0;
	background: radial-gradient(
		circle at 20% 50%,
		rgba(64, 224, 208, 0.08) 0%,
		transparent 50%
	);
	opacity: 0.6;
}

.footer-pattern {
	position: absolute;
	inset: 0;
	background-image: linear-gradient(
			rgba(64, 224, 208, 0.03) 1px,
			transparent 1px
		),
		linear-gradient(
			90deg,
			rgba(64, 224, 208, 0.03) 1px,
			transparent 1px
		);
	background-size: 60px 60px;
	opacity: 0.4;
}

.footer .container {
	position: relative;
	z-index: 1;
}

.footer-main {
	display: grid;
	grid-template-columns: 1fr 2fr;
	gap: 80px;
	margin-bottom: 60px;
}

/* Brand Section */
.footer-brand {
	max-width: 400px;
}

.footer-logo {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 20px;
	transition: all 0.3s ease;
}

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

.footer-logo svg {
	flex-shrink: 0;
	filter: drop-shadow(
		0 4px 12px rgba(64, 224, 208, 0.3)
	);
}

.footer-logo span {
	font-size: 1.375rem;
	font-weight: 800;
	letter-spacing: -0.5px;
	background: linear-gradient(
		135deg,
		#ffffff 0%,
		rgba(255, 255, 255, 0.85) 100%
	);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.footer-tagline {
	color: rgba(255, 255, 255, 0.65);
	font-size: 0.9375rem;
	line-height: 1.7;
	margin-bottom: 32px;
}

.footer-newsletter {
	margin-top: 40px;
}

.footer-newsletter h4 {
	font-size: 1.125rem;
	font-weight: 700;
	color: white;
	margin-bottom: 8px;
}

.footer-newsletter p {
	font-size: 0.875rem;
	color: rgba(255, 255, 255, 0.6);
	margin-bottom: 16px;
	line-height: 1.6;
}

.newsletter-form {
	display: flex;
	gap: 8px;
	margin-bottom: 12px;
}

.newsletter-input-wrapper {
	position: relative;
	flex: 1;
}

.newsletter-input-wrapper svg {
	position: absolute;
	left: 14px;
	top: 50%;
	transform: translateY(-50%);
	color: rgba(64, 224, 208, 0.4);
	pointer-events: none;
}

.newsletter-input-wrapper input {
	width: 100%;
	padding: 12px 14px 12px 44px;
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(64, 224, 208, 0.15);
	border-radius: 10px;
	color: white;
	font-size: 0.9375rem;
	transition: all 0.3s ease;
}

.newsletter-input-wrapper input::placeholder {
	color: rgba(255, 255, 255, 0.4);
}

.newsletter-input-wrapper input:focus {
	outline: none;
	background: rgba(255, 255, 255, 0.08);
	border-color: rgba(64, 224, 208, 0.4);
	box-shadow: 0 0 0 3px rgba(64, 224, 208, 0.1);
}

.newsletter-btn {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 12px 24px;
	background: linear-gradient(
		135deg,
		#40e0d0 0%,
		#2ba89f 100%
	);
	border: none;
	border-radius: 10px;
	color: white;
	font-size: 0.9375rem;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s
		cubic-bezier(0.4, 0, 0.2, 1);
	white-space: nowrap;
}

.newsletter-btn svg {
	transition: transform 0.3s ease;
}

.newsletter-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 20px rgba(64, 224, 208, 0.3);
}

.newsletter-btn:hover svg {
	transform: translateX(3px);
}

/* Navigation */
.footer-nav {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 40px;
}

.footer-nav-col h4 {
	font-size: 0.875rem;
	font-weight: 700;
	color: white;
	text-transform: uppercase;
	letter-spacing: 0.8px;
	margin-bottom: 20px;
	position: relative;
	padding-left: 12px;
}

.footer-nav-col h4::before {
	content: "";
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 3px;
	height: 16px;
	background: linear-gradient(
		180deg,
		#40e0d0 0%,
		#2ba89f 100%
	);
	border-radius: 2px;
}

.footer-nav-col ul {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.footer-nav-col a {
	color: rgba(255, 255, 255, 0.65);
	text-decoration: none;
	font-size: 0.9375rem;
	transition: all 0.3s ease;
	display: inline-flex;
	align-items: center;
	position: relative;
	padding-left: 0;
}

.footer-nav-col a::before {
	content: "";
	position: absolute;
	left: -12px;
	width: 6px;
	height: 1px;
	background: var(--color-primary);
	opacity: 0;
	transition: all 0.3s ease;
}

.footer-nav-col a:hover {
	color: var(--color-primary);
	padding-left: 12px;
}

.footer-nav-col a:hover::before {
	opacity: 1;
}

/* Footer Bottom */
.footer-bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-top: 32px;
	border-top: 1px solid rgba(64, 224, 208, 0.1);
	gap: 32px;
}

.footer-bottom-left {
	display: flex;
	align-items: center;
	gap: 24px;
	flex-wrap: wrap;
}

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

.footer-badges {
	display: flex;
	align-items: center;
	gap: 12px;
}

.footer-badge {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 6px 12px;
	background: rgba(64, 224, 208, 0.08);
	border: 1px solid rgba(64, 224, 208, 0.2);
	border-radius: 8px;
	font-size: 0.8125rem;
	color: rgba(64, 224, 208, 0.85);
	font-weight: 600;
	transition: all 0.3s ease;
}

.footer-badge svg {
	flex-shrink: 0;
}

.footer-badge:hover {
	background: rgba(64, 224, 208, 0.12);
	border-color: rgba(64, 224, 208, 0.3);
	transform: translateY(-1px);
}

.footer-bottom-right {
	display: flex;
	align-items: center;
}

.footer-social {
	display: flex;
	align-items: center;
	gap: 8px;
}

.footer-social-link {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(64, 224, 208, 0.15);
	border-radius: 10px;
	color: rgba(255, 255, 255, 0.6);
	text-decoration: none;
	transition: all 0.3s
		cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-social-link:hover {
	background: rgba(64, 224, 208, 0.1);
	border-color: rgba(64, 224, 208, 0.3);
	color: var(--color-primary);
	transform: translateY(-3px);
	box-shadow: 0 6px 16px rgba(64, 224, 208, 0.2);
}

/* Responsive */
@media (max-width: 1024px) {
	.footer-main {
		grid-template-columns: 1fr;
		gap: 60px;
		text-align: center;
	}

	.footer-brand {
		max-width: 100%;
		display: flex;
		flex-direction: column;
		align-items: center;
	}

	.footer-tagline {
		max-width: 500px;
	}

	.footer-nav {
		grid-template-columns: repeat(2, 1fr);
		gap: 40px;
	}

	.footer-nav-col {
		text-align: center;
	}

	.footer-nav-col h4 {
		display: inline-flex;
		align-items: center;
		justify-content: center;
	}

	.footer-nav-col ul {
		align-items: center;
	}

	.footer-nav-col a::before {
		display: none;
	}

	.footer-nav-col a:hover {
		padding-left: 0;
	}

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

	.footer-bottom-left {
		align-items: center;
	}
}

@media (max-width: 768px) {
	.footer {
		padding: 60px 0 32px;
	}

	.footer-main {
		gap: 48px;
	}

	.footer-nav {
		grid-template-columns: repeat(2, 1fr);
		gap: 32px;
	}

	.newsletter-form {
		flex-direction: column;
		gap: 12px;
	}

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

	.footer-bottom {
		flex-direction: column;
		align-items: center;
		gap: 24px;
	}

	.footer-bottom-left {
		flex-direction: column;
		align-items: center;
		gap: 16px;
	}

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

@media (max-width: 480px) {
	.footer {
		padding: 48px 0 24px;
	}

	.footer-nav {
		grid-template-columns: 1fr;
		gap: 32px;
	}

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

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

	.footer-newsletter h4 {
		font-size: 1rem;
	}

	.footer-social {
		width: 100%;
		justify-content: center;
	}

	.footer-social-link {
		width: 38px;
		height: 38px;
	}

	.footer-badge {
		font-size: 0.75rem;
		padding: 5px 10px;
	}
}

.sticky-cta {
	position: fixed;
	bottom: var(--spacing-lg);
	right: var(--spacing-lg);
	z-index: 999;
	opacity: 0;
	transform: translateY(100px);
	transition: var(--transition-base);
}

.sticky-cta.show {
	opacity: 1;
	transform: translateY(0);
}

/* ===== Demo Modal ===== */
.demo-modal {
	display: flex;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100vw;
	height: 100vh;
	z-index: 2000;
	align-items: center;
	justify-content: center;
	padding: 1.5rem;
	border: none;
	max-width: none;
	max-height: none;
	margin: 0;
	background: transparent;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.3s ease-out;
}

.demo-modal::backdrop {
	background: rgba(15, 23, 42, 0.85);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
}

.demo-modal[open] {
	opacity: 1;
	pointer-events: auto;
	animation: modalFadeIn 0.3s ease-out;
}

@keyframes modalFadeIn {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

.modal-backdrop {
	position: absolute;
	inset: 0;
	background: rgba(15, 23, 42, 0.85);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
}

.modal-container {
	position: relative;
	background: white;
	border-radius: 24px;
	max-width: 640px;
	width: 100%;
	max-height: 90vh;
	overflow-y: auto;
	overflow-x: hidden;
	box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
	animation: modalSlideUp 0.4s
		cubic-bezier(0.23, 1, 0.32, 1);
	z-index: 1;
	scrollbar-width: thin;
	scrollbar-color: rgba(64, 224, 208, 0.3)
		rgba(64, 224, 208, 0.1);
}

.modal-container::-webkit-scrollbar {
	width: 8px;
}

.modal-container::-webkit-scrollbar-track {
	background: rgba(64, 224, 208, 0.05);
	border-radius: 0 24px 24px 0;
}

.modal-container::-webkit-scrollbar-thumb {
	background: rgba(64, 224, 208, 0.3);
	border-radius: 4px;
}

.modal-container::-webkit-scrollbar-thumb:hover {
	background: rgba(64, 224, 208, 0.5);
}

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

.modal-close {
	position: absolute;
	top: 1.5rem;
	right: 1.5rem;
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(15, 23, 42, 0.05);
	border: none;
	border-radius: 12px;
	color: var(--color-text-light);
	cursor: pointer;
	transition: all 0.3s ease;
	z-index: 10;
}

.modal-close:hover {
	background: rgba(15, 23, 42, 0.1);
	color: var(--color-text);
	transform: rotate(90deg);
}

.modal-close svg {
	width: 20px;
	height: 20px;
}

.modal-header {
	text-align: center;
	padding: 3rem 3rem 2rem;
	border-bottom: 1px solid rgba(64, 224, 208, 0.1);
}

.modal-icon {
	width: 70px;
	height: 70px;
	margin: 0 auto 1.5rem;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(
		135deg,
		rgba(64, 224, 208, 0.1),
		rgba(102, 126, 234, 0.1)
	);
	border-radius: 18px;
	color: var(--color-primary);
}

.modal-title {
	font-size: 2rem;
	font-weight: 800;
	color: var(--color-text);
	margin: 0 0 0.75rem 0;
	line-height: 1.3;
}

.modal-subtitle {
	font-size: 1rem;
	color: var(--color-text-light);
	margin: 0;
	line-height: 1.6;
	max-width: 450px;
	margin-left: auto;
	margin-right: auto;
}

.modal-form {
	padding: 2.5rem 3rem 3rem;
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

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

.form-row-2 {
	grid-template-columns: repeat(2, 1fr);
}

.form-field {
	display: flex;
	flex-direction: column;
	gap: 0.625rem;
}

.form-field label {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	font-size: 0.9375rem;
	font-weight: 600;
	color: var(--color-text);
}

.form-field label svg {
	color: var(--color-primary);
	flex-shrink: 0;
}

.form-field input,
.form-field select {
	width: 100%;
	padding: 0.875rem 1rem;
	font-size: 0.9375rem;
	font-family: inherit;
	border: 2px solid rgba(64, 224, 208, 0.2);
	border-radius: 12px;
	background: white;
	color: var(--color-text);
	transition: all 0.3s ease;
	appearance: none;
}

.form-field input::placeholder {
	color: var(--color-text-light);
	opacity: 0.7;
}

.form-field input:focus,
.form-field select:focus {
	outline: none;
	border-color: var(--color-primary);
	background: rgba(64, 224, 208, 0.02);
	box-shadow: 0 0 0 4px rgba(64, 224, 208, 0.1);
}

.form-field select {
	padding-right: 2.5rem;
	cursor: pointer;
	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='%2340E0D0' 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 0.875rem center;
	background-size: 18px;
}

.modal-submit {
	width: 100%;
	padding: 1rem 2rem;
	font-size: 1rem;
	font-weight: 600;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.625rem;
	margin-top: 0.5rem;
	transition: all 0.3s
		cubic-bezier(0.23, 1, 0.32, 1);
}

.modal-submit:hover {
	transform: translateY(-2px);
	box-shadow: 0 12px 32px rgba(64, 224, 208, 0.3);
}

.modal-submit svg {
	transition: transform 0.3s ease;
}

.modal-submit:hover svg {
	transform: translateX(4px);
}

.modal-footer {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	padding: 1.5rem 0 0;
	margin-top: 0.5rem;
	border-top: 1px solid rgba(64, 224, 208, 0.1);
	font-size: 0.875rem;
	color: var(--color-text-light);
}

.modal-footer svg {
	color: var(--color-primary);
	flex-shrink: 0;
}

/* Responsive Modal */
@media (max-width: 768px) {
	.modal-container {
		border-radius: 20px;
		max-height: 95vh;
	}

	.modal-header {
		padding: 2.5rem 2rem 1.5rem;
	}

	.modal-icon {
		width: 60px;
		height: 60px;
		margin-bottom: 1.25rem;
	}

	.modal-title {
		font-size: 1.625rem;
	}

	.modal-subtitle {
		font-size: 0.9375rem;
	}

	.modal-form {
		padding: 2rem;
		gap: 1.25rem;
	}

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

	.modal-close {
		top: 1.25rem;
		right: 1.25rem;
		width: 36px;
		height: 36px;
	}
}

@media (max-width: 480px) {
	.demo-modal {
		padding: 1rem;
	}

	.modal-container {
		border-radius: 16px;
	}

	.modal-header {
		padding: 2rem 1.5rem 1.25rem;
	}

	.modal-icon {
		width: 55px;
		height: 55px;
	}

	.modal-title {
		font-size: 1.5rem;
	}

	.modal-subtitle {
		font-size: 0.875rem;
	}

	.modal-form {
		padding: 1.5rem;
		gap: 1rem;
	}

	.form-row {
		gap: 1rem;
	}

	.form-field input,
	.form-field select {
		padding: 0.75rem 0.875rem;
		font-size: 0.875rem;
	}

	.modal-submit {
		padding: 0.875rem 1.5rem;
		font-size: 0.9375rem;
	}

	.modal-footer {
		font-size: 0.8125rem;
		padding-top: 1.25rem;
	}
}

/* ===== Responsive Layout ===== */
@media (max-width: 1024px) {
	.container {
		padding: 0 var(--spacing-md);
	}

	.nav-container {
		padding: 0.875rem var(--spacing-md);
	}

	.nav-menu {
		gap: 1.25rem;
	}

	.nav-link {
		font-size: 0.9375rem;
	}

	.btn {
		padding: 10px 20px;
		font-size: 0.9375rem;
	}

	.hero {
		padding: calc(70px + var(--spacing-2xl)) 0
			var(--spacing-2xl);
	}

	.hero-container {
		grid-template-columns: 1fr;
		text-align: center;
		gap: var(--spacing-2xl);
		max-width: 900px;
	}

	.hero-title {
		font-size: 2.75rem;
		margin-bottom: var(--spacing-lg);
	}

	.hero-subtitle {
		font-size: 1.125rem;
		margin-left: auto;
		margin-right: auto;
		max-width: 100%;
		margin-bottom: var(--spacing-lg);
	}

	.hero-badge {
		margin-bottom: 1rem;
	}

	.hero-cta {
		justify-content: center;
		margin-bottom: var(--spacing-xl);
	}

	.hero-stats {
		justify-content: center;
		border-top: none;
		padding-top: 0;
		gap: 2.5rem;
	}

	.hero-visual {
		flex-direction: column;
		max-width: 500px;
		margin: 0 auto;
	}

	.hero-card {
		min-height: 280px;
		width: 100%;
	}

	.card-icon {
		width: 55px;
		height: 55px;
		margin-bottom: 1.25rem;
	}

	.card-title {
		font-size: 1.375rem;
		margin-bottom: 0.75rem;
	}

	.card-description {
		font-size: 0.95rem;
		margin-bottom: 1rem;
	}

	.steps-grid {
		grid-template-columns: repeat(
			auto-fit,
			minmax(280px, 1fr)
		);
		gap: var(--spacing-lg);
	}

	.step-number {
		font-size: 2.5rem;
	}

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

	.step-icon-wrapper {
		width: 80px;
		height: 80px;
	}

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

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

	.step-features {
		gap: 0.5rem;
	}

	.how-it-works-stats {
		grid-template-columns: repeat(
			auto-fit,
			minmax(200px, 1fr)
		);
		gap: var(--spacing-lg);
	}

	.stat-box {
		padding: 1.25rem;
		gap: 1rem;
	}

	.steps-grid,
	.benefits-grid,
	.testimonials-grid,
	.schools-features {
		grid-template-columns: repeat(
			auto-fit,
			minmax(280px, 1fr)
		);
		gap: var(--spacing-lg);
	}

	.pricing-grid {
		grid-template-columns: 1fr;
		gap: var(--spacing-lg);
		max-width: 100%;
	}

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

	.pricing-card.featured {
		transform: scale(1);
		grid-column: auto;
		max-width: 100%;
		margin: 0;
	}

	.how-it-works,
	.benefits,
	.demo,
	.testimonials,
	.for-schools,
	.pricing {
		padding: var(--spacing-2xl) 0;
	}

	.footer-content {
		flex-wrap: wrap;
		gap: var(--spacing-xl);
	}

	.footer-brand {
		flex: 0 0 100%;
		width: 100%;
		max-width: 100%;
		margin-bottom: var(--spacing-md);
	}

	.footer-links {
		flex: 0 0 100%;
		width: 100%;
		justify-content: space-between;
		gap: var(--spacing-xl);
	}

	.footer-column {
		flex: 1 1 auto;
		min-width: 120px;
	}

	/* Benefits Responsive */
	.benefits-cards-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 1.5rem;
	}

	.benefits-blob-1,
	.benefits-blob-2,
	.benefits-glow-1 {
		opacity: 0.08;
	}

	.benefits-stats {
		gap: 1.5rem;
	}

	/* Demo Responsive */
	.demo-title {
		font-size: 2.25rem;
	}

	.demo-subtitle {
		font-size: 1rem;
	}

	.video-preview {
		padding: 1.75rem;
	}

	.play-button {
		width: 72px;
		height: 72px;
	}

	.play-button svg {
		width: 52px;
		height: 52px;
	}

	.play-label {
		font-size: 0.9rem;
	}

	.demo-features {
		gap: 0.875rem;
	}

	.feature-pill {
		padding: 0.6rem 1.1rem;
		font-size: 0.85rem;
	}

	.demo-cta-section {
		padding: 2.5rem;
	}

	.demo-info-title {
		font-size: 1.5rem;
		margin-bottom: 0.875rem;
	}

	.demo-info-text {
		font-size: 1rem;
		margin-bottom: 1.75rem;
	}

	.demo-actions {
		gap: 0.875rem;
	}

	/* Testimonials Responsive */
	.testimonials-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 1.5rem;
	}

	.testimonials-blob-1,
	.testimonials-blob-2,
	.testimonials-glow-1 {
		opacity: 0.08;
	}

	.testimonials-stats {
		gap: 1.5rem;
	}

	/* For-Schools Responsive */
	.schools-features {
		grid-template-columns: repeat(2, 1fr);
		gap: 1.5rem;
	}

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

	.schools-blob-1 {
		width: 250px;
		height: 250px;
		opacity: 0.08;
	}

	.schools-blob-2 {
		width: 200px;
		height: 200px;
		opacity: 0.06;
	}

	.schools-glow-1 {
		opacity: 0.06;
	}

	/* Pricing 1024px */
	.pricing-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 1.5rem;
	}

	.pricing-card.featured {
		transform: scale(1.02);
	}

	.pricing-blob-1 {
		width: 250px;
		height: 250px;
		opacity: 0.08;
	}

	.pricing-blob-2 {
		width: 200px;
		height: 200px;
		opacity: 0.06;
	}

	.pricing-glow-1 {
		opacity: 0.06;
	}

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

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

	.nav-brand {
		font-size: 1.25rem;
	}

	.nav-menu {
		gap: 2.5rem;
	}

	.nav-link {
		font-size: 0.8rem;
		letter-spacing: 0.2px;
	}

	.nav-cta {
		padding: 11px 24px;
		font-size: 0.85rem;
	}
}

@media (max-width: 900px) {
	.nav-container {
		padding: 1rem 1.25rem;
		gap: 2rem;
	}

	.logo {
		width: 40px;
		height: 40px;
	}

	.nav-brand {
		font-size: 1.2rem;
	}

	.nav-menu {
		gap: 2rem;
	}

	.nav-link {
		font-size: 0.75rem;
		letter-spacing: 0.1px;
	}

	.nav-cta {
		padding: 10px 22px;
		font-size: 0.8rem;
	}

	/* Benefits Responsive */
	.benefits-title {
		font-size: 2rem;
	}

	.benefits-subtitle {
		font-size: 1rem;
	}

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

	.benefit-card {
		padding: 2rem 1.75rem;
	}

	.benefit-icon-wrapper {
		width: 56px;
		height: 56px;
	}

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

	.benefit-card-title {
		font-size: 1.375rem;
	}

	.benefit-card-description {
		font-size: 0.95rem;
	}

	.benefit-features li {
		font-size: 0.9rem;
	}

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

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

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

	/* Demo Responsive */
	.demo-badge {
		padding: 0.65rem 1.25rem;
		font-size: 0.8rem;
	}

	.demo-title {
		font-size: 1.875rem;
	}

	.demo-subtitle {
		font-size: 0.95rem;
		max-width: 600px;
	}

	.video-preview {
		padding: 1.5rem;
		margin-bottom: 2.5rem;
	}

	.play-button {
		width: 68px;
		height: 68px;
	}

	.play-button svg {
		width: 48px;
		height: 48px;
	}

	.play-label {
		font-size: 0.85rem;
	}

	.demo-features {
		gap: 0.75rem;
		margin-top: 0.875rem;
		padding: 0 0.5rem;
	}

	.feature-pill {
		padding: 0.55rem 1rem;
		font-size: 0.8rem;
	}

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

	.demo-info-title {
		font-size: 1.375rem;
		margin-bottom: 0.75rem;
	}

	.demo-info-text {
		font-size: 0.95rem;
		margin-bottom: 1.5rem;
	}

	.demo-actions {
		gap: 0.75rem;
	}

	/* Testimonials Responsive */
	.testimonials-title {
		font-size: 2rem;
	}

	.testimonials-subtitle {
		font-size: 1rem;
	}

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

	.testimonial-card {
		padding: 2rem 1.75rem;
	}

	.author-avatar {
		width: 48px;
		height: 48px;
		min-width: 48px;
		font-size: 1.35rem;
	}

	.author-name {
		font-size: 0.95rem;
	}

	.author-role {
		font-size: 0.8rem;
	}

	.testimonials-stats {
		gap: 1.25rem;
	}

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

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

	/* For-Schools 900px */
	.schools-features-grid {
		grid-template-columns: 1fr;
		gap: 1.75rem;
		max-width: 600px;
	}

	.schools-feature-card-highlighted {
		transform: scale(1);
	}

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

	.schools-circle-1,
	.schools-circle-2 {
		opacity: 0.08;
	}

	.schools-title {
		font-size: 2.25rem;
	}

	.schools-description {
		font-size: 1.0625rem;
	}

	/* Pricing 900px */
	.pricing-title {
		font-size: 2.25rem;
	}

	.pricing-description {
		font-size: 1.0625rem;
	}

	.pricing-cards-grid {
		grid-template-columns: 1fr;
		gap: 1.75rem;
		max-width: 600px;
	}

	.pricing-plan-card-featured {
		transform: scale(1);
	}

	.plan-amount {
		font-size: 3.25rem;
	}

	.pricing-features-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 1.75rem;
	}

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

@media (max-width: 768px) {
	/* ===================================
	   MODERN MOBILE MENU REDESIGN
	   =================================== */

	.nav-container {
		padding: 1rem 1.5rem;
		gap: 1rem;
	}

	.nav-brand {
		gap: 0.625rem;
		z-index: 1002;
	}

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

	.brand-text {
		font-size: 1.15rem;
	}

	/* Modern Full-Screen Mobile Menu */
	.nav-menu {
		position: fixed;
		top: 0;
		right: -100%;
		width: 100%;
		height: 100vh;
		background: linear-gradient(
			135deg,
			rgba(255, 255, 255, 0.98) 0%,
			rgba(248, 250, 252, 0.98) 100%
		);
		backdrop-filter: blur(24px);
		-webkit-backdrop-filter: blur(24px);
		flex-direction: column;
		align-items: center;
		justify-content: center;
		padding: 0;
		gap: 0;
		transition: right 0.5s
			cubic-bezier(0.4, 0, 0.2, 1);
		z-index: 1000;
		overflow: hidden;
	}

	.nav-menu.active {
		right: 0;
	}

	/* Elegant Menu Links */
	.nav-link {
		width: 100%;
		max-width: 400px;
		padding: 1.5rem 2.5rem;
		font-size: 1.25rem;
		font-weight: 600;
		text-align: center;
		border: none;
		border-bottom: none;
		position: relative;
		overflow: hidden;
		transform: translateX(100px);
		opacity: 0;
		transition: all 0.4s
			cubic-bezier(0.4, 0, 0.2, 1);
	}

	.nav-menu.active .nav-link {
		transform: translateX(0);
		opacity: 1;
	}

	.nav-menu.active .nav-link:nth-child(1) {
		transition-delay: 0.1s;
	}

	.nav-menu.active .nav-link:nth-child(2) {
		transition-delay: 0.15s;
	}

	.nav-menu.active .nav-link:nth-child(3) {
		transition-delay: 0.2s;
	}

	.nav-menu.active .nav-link:nth-child(4) {
		transition-delay: 0.25s;
	}

	.nav-menu.active .nav-link:nth-child(5) {
		transition-delay: 0.3s;
	}

	.nav-link::before {
		content: "";
		position: absolute;
		left: 50%;
		bottom: 10px;
		transform: translateX(-50%);
		width: 0;
		height: 3px;
		background: linear-gradient(
			90deg,
			var(--color-primary) 0%,
			var(--color-primary-light) 100%
		);
		border-radius: 3px;
		transition: width 0.4s
			cubic-bezier(0.4, 0, 0.2, 1);
	}

	.nav-link::after {
		display: none;
	}

	.nav-link:hover {
		background: linear-gradient(
			90deg,
			transparent 0%,
			rgba(64, 224, 208, 0.08) 50%,
			transparent 100%
		);
		padding-left: 2.5rem;
		color: var(--color-primary);
	}

	.nav-link:hover::before {
		width: 60px;
	}

	.nav-link:active {
		transform: scale(0.98);
	}

	/* Hide Desktop Actions */
	.nav-actions {
		display: none;
	}

	/* Modern Hamburger Menu */
	.hamburger {
		display: flex;
		position: relative;
		z-index: 1002;
		padding: 0.75rem;
		border-radius: 8px;
		transition: background 0.3s ease;
	}

	.hamburger:hover {
		background: rgba(64, 224, 208, 0.1);
	}

	.hamburger-line {
		background: var(--color-text);
		transition: all 0.4s
			cubic-bezier(0.4, 0, 0.2, 1);
	}

	.hamburger.active .hamburger-line {
		background: var(--color-primary);
	}

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

	.hamburger.active .hamburger-line:nth-child(2) {
		opacity: 0;
		transform: scale(0);
	}

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

	/* Mobile Menu Overlay Effect */
	.nav-menu::before {
		content: "";
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background: radial-gradient(
			circle at 80% 20%,
			rgba(64, 224, 208, 0.15) 0%,
			transparent 50%
		);
		opacity: 0;
		transition: opacity 0.6s ease;
		pointer-events: none;
	}

	.nav-menu.active::before {
		opacity: 1;
	}

	.hero {
		padding: calc(70px + var(--spacing-xl)) 0
			var(--spacing-xl);
		min-height: auto;
	}

	.hero-container {
		padding: 0 var(--spacing-md);
		max-width: 100%;
		gap: var(--spacing-xl);
		display: flex;
		flex-direction: column;
		align-items: center;
	}

	.hero-content {
		display: flex;
		flex-direction: column;
		align-items: center;
		text-align: center;
		width: 100%;
	}

	.hero-badge {
		font-size: 0.8rem;
		padding: 10px 16px;
		margin-bottom: var(--spacing-md);
	}

	.hero-title {
		font-size: 2.25rem;
		line-height: 1.2;
		margin-bottom: var(--spacing-md);
	}

	.title-line {
		display: block;
	}

	.hero-subtitle {
		font-size: 1rem;
		max-width: 100%;
		margin-bottom: var(--spacing-lg);
		line-height: 1.7;
	}

	.hero-cta {
		gap: var(--spacing-sm);
		margin-bottom: var(--spacing-lg);
	}

	.hero-actions {
		gap: 0.75rem;
		flex-wrap: wrap;
		justify-content: center;
		width: 100%;
	}

	.hero-btn {
		padding: 0.75rem 1.5rem;
		font-size: 0.875rem;
		gap: 0.4rem;
	}

	.hero-btn svg {
		width: 16px;
		height: 16px;
	}

	.hero-stats {
		gap: 1.75rem;
		margin-top: var(--spacing-lg);
	}

	.stat {
		flex-direction: column;
	}

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

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

	.hero-visual {
		display: flex;
		flex-direction: column;
		width: 100%;
		gap: var(--spacing-md);
	}

	.hero-card {
		min-height: 240px;
		padding: 1.5rem;
		width: 100%;
	}

	/* Mobile floating cards - stack below main card */
	.hero-card-float {
		position: relative;
		top: auto !important;
		right: auto !important;
		left: auto !important;
		bottom: auto !important;
		width: 100%;
		max-width: none;
		margin-top: 1rem;
		padding: 1rem;
		animation: fadeInUp 0.6s ease-out forwards;
	}

	.hero-card-1 {
		animation-delay: 0.2s;
		opacity: 0;
	}

	.hero-card-2 {
		animation-delay: 0.4s;
		opacity: 0;
	}

	.hero-card-3 {
		animation-delay: 0.6s;
		opacity: 0;
	}

	.float-icon {
		width: 36px;
		height: 36px;
		font-size: 1.125rem;
	}

	.float-title {
		font-size: 0.8rem;
	}

	.float-desc {
		font-size: 0.7rem;
	}

	.card-icon {
		width: 52px;
		height: 52px;
		font-size: 1.5rem;
		margin-bottom: 1rem;
	}

	.card-title {
		font-size: 1.25rem;
		margin-bottom: 0.5rem;
	}

	.card-description {
		font-size: 0.875rem;
		margin-bottom: 0.75rem;
	}

	/* How It Works Mobile */
	.how-it-works {
		padding: 3.5rem 0;
		overflow-x: hidden;
	}

	.how-header {
		margin-bottom: 2.5rem;
		padding: 0 1.25rem;
	}

	.how-badge {
		padding: 0.5rem 1rem;
		font-size: 0.8125rem;
		margin-bottom: 1rem;
	}

	.how-badge svg {
		width: 14px;
		height: 14px;
	}

	.how-title {
		font-size: 1.875rem;
		line-height: 1.25;
		margin-bottom: 1rem;
	}

	.how-subtitle {
		font-size: 0.9375rem;
		line-height: 1.6;
		max-width: 100%;
	}

	.how-timeline {
		padding: 0 1rem;
		max-width: 100%;
	}

	.timeline-line {
		display: none;
	}

	.how-step {
		display: flex;
		flex-direction: column;
		gap: 1rem;
		margin-bottom: 2rem;
		grid-template-columns: none;
		width: 100%;
	}

	.how-step:last-child {
		margin-bottom: 0;
	}

	.how-step-number {
		width: 56px;
		height: 56px;
		margin: 0 auto;
		flex-shrink: 0;
	}

	.how-step-number span {
		font-size: 1.125rem;
	}

	.step-pulse {
		display: none;
	}

	.how-step-content {
		grid-column: auto !important;
		grid-row: auto !important;
		width: 100%;
	}

	.how-step-card {
		flex-direction: column;
		padding: 1.5rem 1.25rem;
		gap: 1rem;
		text-align: center;
		align-items: center;
		width: 100%;
		box-sizing: border-box;
	}

	.step-icon-box {
		width: 52px;
		height: 52px;
		border-radius: 12px;
		margin: 0 auto;
		flex-shrink: 0;
	}

	.step-icon-box svg {
		width: 22px;
		height: 22px;
	}

	.step-content-body {
		align-items: center;
		text-align: center;
		width: 100%;
	}

	.step-title {
		font-size: 1.25rem;
		line-height: 1.3;
	}

	.step-description {
		font-size: 0.875rem;
		line-height: 1.65;
	}

	.step-features {
		gap: 0.5rem;
		width: 100%;
		align-items: center;
	}

	.step-feature {
		font-size: 0.8125rem;
		justify-content: center;
		text-align: center;
	}

	.step-feature svg {
		width: 16px;
		height: 16px;
		flex-shrink: 0;
	}

	.how-stats {
		grid-template-columns: 1fr;
		gap: 1rem;
		margin-top: 2.5rem;
		padding: 0 1rem;
		max-width: 100%;
	}

	.how-stat-card {
		padding: 1.25rem 1rem;
		gap: 0.875rem;
	}

	.stat-icon-wrapper {
		width: 44px;
		height: 44px;
		border-radius: 10px;
	}

	.stat-emoji {
		font-size: 1.375rem;
	}

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

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

	.card-features {
		gap: 0.5rem;
	}

	.feature-badge {
		font-size: 0.75rem;
		padding: 5px 10px;
	}

	.blob-1,
	.blob-2,
	.blob-3 {
		opacity: 0.08;
	}

	.decoration-glow {
		opacity: 0.1;
	}

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

	.step-number {
		font-size: 2rem;
		margin-bottom: 0.5rem;
	}

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

	.step-icon-wrapper {
		width: 75px;
		height: 75px;
		margin: 0 auto 1rem;
	}

	.step-title {
		font-size: 1.25rem;
		margin-bottom: 0.5rem;
	}

	.step-description {
		font-size: 0.875rem;
		margin-bottom: 0.75rem;
	}

	.step-features {
		gap: 0.5rem;
		padding-top: 0.75rem;
	}

	.step-features li {
		font-size: 0.8rem;
	}

	.how-it-works-stats {
		grid-template-columns: 1fr;
		gap: var(--spacing-lg);
		margin-top: var(--spacing-2xl);
		padding-top: var(--spacing-2xl);
	}

	.stat-box {
		padding: 1.25rem;
		gap: 1rem;
	}

	/* Benefits Responsive */
	.benefits-badge {
		padding: 0.65rem 1.25rem;
		font-size: 0.8rem;
	}

	.benefits-title {
		font-size: 1.875rem;
	}

	.benefits-subtitle {
		font-size: 0.95rem;
		max-width: 600px;
	}

	.benefits-cards-grid {
		grid-template-columns: 1fr;
		gap: 1.25rem;
		margin-bottom: 2.5rem;
	}

	.benefit-card {
		padding: 1.75rem 1.5rem;
	}

	.benefit-card-top {
		gap: 0.875rem;
	}

	.benefit-icon-wrapper {
		width: 52px;
		height: 52px;
		min-width: 52px;
	}

	.benefit-icon-wrapper svg {
		width: 26px;
		height: 26px;
	}

	.benefit-card-title {
		font-size: 1.25rem;
	}

	.benefit-card-description {
		font-size: 0.9rem;
	}

	.benefit-features {
		gap: 0.5rem;
		margin-top: 0.75rem;
	}

	.benefit-features li {
		font-size: 0.85rem;
		padding-left: 1.5rem;
	}

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

	.stat-item {
		gap: 0.5rem;
	}

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

	.stat-value {
		font-size: 1.75rem;
	}

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

	/* Testimonials Responsive */
	.testimonials-header {
		margin-bottom: 2.5rem;
	}

	.testimonials-badge {
		padding: 0.6rem 1.1rem;
		font-size: 0.75rem;
		margin-bottom: 1rem;
	}

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

	.testimonials-subtitle {
		font-size: 0.9rem;
		max-width: 550px;
	}

	.testimonials-grid {
		grid-template-columns: 1fr;
		gap: 1.25rem;
		margin-bottom: 2rem;
	}

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

	.testimonial-header {
		gap: 0.75rem;
	}

	.star {
		font-size: 1rem;
	}

	.quote-mark {
		font-size: 2rem;
	}

	.testimonial-text {
		font-size: 0.95rem;
	}

	.testimonial-author-info {
		gap: 0.875rem;
		border-top: 1px solid rgba(64, 224, 208, 0.08);
		padding-top: 0.875rem;
	}

	.author-avatar {
		width: 46px;
		height: 46px;
		font-size: 1.25rem;
	}

	.author-name {
		font-size: 0.9rem;
	}

	.author-role {
		font-size: 0.8rem;
	}

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

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

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

	/* Demo Responsive */
	.demo-header {
		margin-bottom: 2.5rem;
	}

	.demo-badge {
		padding: 0.6rem 1.1rem;
		font-size: 0.75rem;
		margin-bottom: 1rem;
	}

	.demo-title {
		font-size: 1.625rem;
	}

	.demo-subtitle {
		font-size: 0.9rem;
		max-width: 550px;
	}

	.video-preview {
		padding: 1.25rem;
		margin-bottom: 2rem;
	}

	.play-button {
		width: 64px;
		height: 64px;
	}

	.play-button svg {
		width: 44px;
		height: 44px;
	}

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

	.demo-features {
		gap: 0.625rem;
		margin-top: 0.75rem;
	}

	.feature-pill {
		padding: 0.5rem 0.95rem;
		font-size: 0.75rem;
	}

	.demo-cta-section {
		padding: 1.75rem;
	}

	.demo-info-title {
		font-size: 1.25rem;
		margin-bottom: 0.625rem;
	}

	.demo-info-text {
		font-size: 0.9rem;
		margin-bottom: 1.25rem;
	}

	.demo-actions {
		gap: 0.625rem;
	}

	.demo-btn {
		padding: 10px 16px;
		font-size: 0.9rem;
	}

	/* For-Schools 768px */
	.for-schools {
		padding: 3.5rem 0;
	}

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

	.schools-tag {
		font-size: 0.8125rem;
		padding: 0.5rem 1rem;
	}

	.schools-title {
		font-size: 2rem;
	}

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

	.schools-features-grid {
		grid-template-columns: 1fr;
		gap: 1.5rem;
		max-width: 600px;
	}

	.schools-feature-card {
		padding: 2rem 1.75rem;
	}

	.schools-feature-card-highlighted {
		transform: scale(1);
	}

	.schools-feature-card-highlighted:hover {
		transform: translateY(-8px) scale(1);
	}

	.schools-featured-badge {
		font-size: 0.6875rem;
		padding: 0.3125rem 0.875rem;
	}

	.schools-feature-title {
		font-size: 1.25rem;
	}

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

	.schools-stat-card {
		padding: 1.75rem 1.25rem;
	}

	.schools-stat-value {
		font-size: 2rem;
	}

	.schools-cta {
		padding: 2.5rem 2rem;
		margin: 0 1rem;
	}

	.schools-cta-title {
		font-size: 1.5rem;
	}

	.schools-cta-text {
		font-size: 0.9375rem;
	}

	.schools-cta-actions {
		flex-direction: column;
		gap: 0.875rem;
	}

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

	/* Pricing 768px */
	.pricing {
		padding: 3.5rem 0;
	}

	.pricing-header {
		margin-bottom: 2.5rem;
	}

	.pricing-tag {
		font-size: 0.8125rem;
		padding: 0.5rem 1rem;
	}

	.pricing-title {
		font-size: 2rem;
	}

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

	.pricing-toggle {
		margin-bottom: 3rem;
		padding: 0.3125rem;
	}

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

	.pricing-cards-grid {
		grid-template-columns: 1fr;
		gap: 1.5rem;
		max-width: 600px;
		margin: 0 auto 3.5rem;
	}

	.pricing-plan-card {
		padding: 2rem 1.75rem;
	}

	.pricing-plan-card-featured {
		transform: scale(1);
	}

	.pricing-plan-card-featured:hover {
		transform: translateY(-8px) scale(1);
	}

	.pricing-featured-badge {
		font-size: 0.6875rem;
		padding: 0.3125rem 0.875rem;
	}

	.plan-icon {
		width: 60px;
		height: 60px;
		margin-bottom: 1rem;
	}

	.plan-name {
		font-size: 1.5rem;
	}

	.plan-amount {
		font-size: 3rem;
	}

	.plan-features {
		gap: 0.875rem;
	}

	.pricing-features-section {
		padding: 2.5rem 2rem;
		margin: 0 1rem;
	}

	.pricing-features-title {
		font-size: 1.5rem;
		margin-bottom: 2rem;
	}

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

	.pricing-feature-icon {
		width: 55px;
		height: 55px;
	}

	.pricing-feature-name {
		font-size: 1rem;
	}
}

@media (max-width: 600px) {
	.nav-container {
		padding: 0.75rem 0.875rem;
	}

	.navbar {
		min-height: 64px;
		box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
		border-bottom: 1px solid
			rgba(64, 224, 208, 0.05);
	}

	.nav-container {
		min-height: 64px;
	}

	.nav-brand {
		font-size: 1rem;
		gap: 0.5rem;
	}

	.logo {
		width: 32px;
		height: 32px;
		filter: drop-shadow(
			0 2px 6px rgba(64, 224, 208, 0.1)
		);
	}

	.nav-link {
		padding: 14px 20px;
		font-size: 14px;
	}

	.nav-link:hover {
		padding-left: 24px;
	}

	.hamburger {
		padding: 6px;
		gap: 4px;
	}

	.hamburger span {
		width: 22px;
		height: 2px;
	}

	.hero {
		padding: calc(64px + 2.5rem) 0 2.5rem;
		min-height: auto;
	}

	.hero-container {
		padding: 0 var(--spacing-md);
		gap: var(--spacing-lg);
		max-width: 100%;
		display: flex !important;
		flex-direction: column !important;
		text-align: center;
	}

	.hero-content {
		width: 100%;
		order: 0;
	}

	.hero-visual {
		display: flex !important;
		width: 100%;
		order: 1;
		flex-direction: column !important;
		gap: var(--spacing-md);
		max-width: none;
		animation: fadeInUp 0.8s ease-out 0.3s both;
		flex-wrap: nowrap;
		align-items: stretch;
		min-width: 0;
	}

	.hero-badge {
		font-size: 0.75rem;
		padding: 6px 12px;
		margin-bottom: var(--spacing-sm);
		margin-left: auto;
		margin-right: auto;
		width: fit-content;
	}

	.hero-title {
		font-size: 1.75rem;
		margin-bottom: var(--spacing-sm);
		line-height: 1.3;
	}

	.hero-subtitle {
		font-size: 0.95rem;
		margin-bottom: var(--spacing-lg);
		line-height: 1.6;
		margin-left: auto;
		margin-right: auto;
	}

	.hero-cta {
		flex-direction: column;
		gap: 0.75rem;
		margin-bottom: var(--spacing-lg);
		justify-content: center;
	}

	.btn-lg {
		padding: 12px 24px;
		font-size: 0.95rem;
		width: 100%;
	}

	.hero-stats {
		display: none;
	}

	.hero-card {
		min-height: auto;
		padding: 1.25rem;
		width: 100% !important;
		flex-shrink: 0;
		flex: none !important;
		margin-bottom: 1rem;
	}

	.card-icon {
		width: 48px;
		height: 48px;
		font-size: 1.25rem;
		margin-bottom: 0.75rem;
	}

	.card-title {
		font-size: 1.125rem;
		margin-bottom: 0.5rem;
	}

	.card-description {
		font-size: 0.8125rem;
		margin-bottom: 0.75rem;
	}

	.card-features {
		gap: 0.375rem;
	}

	.feature-badge {
		font-size: 0.7rem;
		padding: 5px 10px;
	}

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

	.step-number {
		font-size: 1.75rem;
		margin-bottom: 0.375rem;
	}

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

	.step-icon-wrapper {
		width: 70px;
		height: 70px;
		margin: 0 auto 0.75rem;
	}

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

	.step-description {
		font-size: 0.8125rem;
		margin-bottom: 0.5rem;
		line-height: 1.5;
	}

	.step-features {
		gap: 0.375rem;
		padding-top: 0.5rem;
	}

	.step-features li {
		font-size: 0.75rem;
	}

	.step-features li::before {
		font-size: 0.875rem;
	}

	.how-it-works-stats {
		grid-template-columns: 1fr;
		gap: var(--spacing-md);
		margin-top: var(--spacing-xl);
		padding-top: var(--spacing-xl);
	}

	.stat-box {
		padding: 1rem;
		gap: 0.75rem;
	}

	.stat-icon {
		font-size: 1.75rem;
		min-width: 40px;
	}

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

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

	/* Benefits Responsive */
	.benefits-header {
		margin-bottom: 2.5rem;
	}

	.benefits-badge {
		padding: 0.6rem 1.125rem;
		font-size: 0.75rem;
		margin-bottom: 1rem;
	}

	.benefits-title {
		font-size: 1.625rem;
	}

	.benefits-subtitle {
		font-size: 0.9rem;
		max-width: 550px;
	}

	.benefits-cards-grid {
		grid-template-columns: 1fr;
		gap: 1rem;
		margin-bottom: 2rem;
	}

	.benefit-card {
		padding: 1.5rem 1.25rem;
	}

	.benefit-card-top {
		gap: 0.75rem;
	}

	.benefit-icon-wrapper {
		width: 48px;
		height: 48px;
		min-width: 48px;
	}

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

	.benefit-card-title {
		font-size: 1.125rem;
	}

	.benefit-card-description {
		font-size: 0.875rem;
	}

	.benefit-features {
		gap: 0.4rem;
		margin-top: 0.5rem;
	}

	.benefit-features li {
		font-size: 0.8rem;
		padding-left: 1.375rem;
	}

	.benefit-features li::before {
		font-size: 1rem;
	}

	.benefits-stats {
		grid-template-columns: 1fr;
		gap: 0.875rem;
		padding-top: 1.25rem;
		border-top: 1px solid rgba(64, 224, 208, 0.08);
	}

	.stat-item {
		gap: 0.4rem;
	}

	.stat-icon {
		font-size: 1.75rem;
	}

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

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

	/* Testimonials Responsive */
	.testimonials-header {
		margin-bottom: 2rem;
	}

	.testimonials-badge {
		padding: 0.55rem 1rem;
		font-size: 0.7rem;
		margin-bottom: 0.875rem;
	}

	.testimonials-title {
		font-size: 1.5rem;
	}

	.testimonials-subtitle {
		font-size: 0.85rem;
		max-width: 500px;
	}

	.testimonials-grid {
		grid-template-columns: 1fr;
		gap: 1rem;
		margin-bottom: 1.75rem;
	}

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

	.star {
		font-size: 0.95rem;
	}

	.quote-mark {
		font-size: 1.75rem;
	}

	.testimonial-text {
		font-size: 0.9rem;
	}

	.testimonial-author-info {
		gap: 0.75rem;
	}

	.author-avatar {
		width: 44px;
		height: 44px;
		font-size: 1.15rem;
	}

	.author-name {
		font-size: 0.875rem;
	}

	.author-role {
		font-size: 0.75rem;
	}

	.testimonials-stats {
		grid-template-columns: 1fr;
		gap: 0.875rem;
		padding-top: 1.25rem;
	}

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

	.stat-description {
		font-size: 0.85rem;
	}

	/* Demo Responsive */
	.demo-header {
		margin-bottom: 2rem;
	}

	.demo-badge {
		padding: 0.55rem 1rem;
		font-size: 0.7rem;
		margin-bottom: 0.875rem;
	}

	.demo-title {
		font-size: 1.5rem;
	}

	.demo-subtitle {
		font-size: 0.85rem;
		max-width: 500px;
	}

	.video-preview {
		padding: 1rem;
		margin-bottom: 1.75rem;
	}

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

	.play-button svg {
		width: 40px;
		height: 40px;
	}

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

	.demo-features {
		gap: 0.5rem;
		margin-top: 0.625rem;
	}

	.feature-pill {
		padding: 0.45rem 0.875rem;
		font-size: 0.7rem;
	}

	.pill-icon {
		font-size: 1rem;
	}

	.demo-cta-section {
		padding: 1.5rem;
		margin-top: 1.75rem;
	}

	.demo-info-title {
		font-size: 1.125rem;
		margin-bottom: 0.5rem;
	}

	.demo-info-text {
		font-size: 0.85rem;
		margin-bottom: 1rem;
	}

	.demo-actions {
		gap: 0.5rem;
		flex-direction: column;
	}

	.demo-btn {
		padding: 9px 14px;
		font-size: 0.85rem;
	}
}

@media (max-width: 480px) {
	.nav-container {
		padding: 0.625rem 0.75rem;
		gap: 1rem;
	}

	.navbar {
		min-height: 60px;
	}

	.nav-container {
		min-height: 60px;
	}

	.nav-brand {
		font-size: 0.95rem;
		font-weight: 700;
	}

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

	.nav-menu {
		top: 60px;
		height: calc(100vh - 60px);
	}

	.nav-link {
		padding: 13px 18px;
		font-size: 13px;
	}

	.nav-link:hover {
		padding-left: 22px;
	}

	.hamburger {
		padding: 5px;
	}

	.hamburger span {
		width: 20px;
		height: 2px;
	}

	.hero {
		padding: calc(60px + var(--spacing-lg)) 0
			var(--spacing-lg);
	}

	.hero-container {
		padding: 0 var(--spacing-sm);
		gap: var(--spacing-md);
		display: flex !important;
		flex-direction: column !important;
		text-align: center;
	}

	.hero-badge {
		font-size: 0.7rem;
		padding: 6px 10px;
		margin-bottom: 0.75rem;
		margin-left: auto;
		margin-right: auto;
	}

	.hero-title {
		font-size: 1.5rem;
		margin-bottom: var(--spacing-sm);
		line-height: 1.25;
	}

	.hero-subtitle {
		font-size: 0.875rem;
		margin-bottom: var(--spacing-md);
		line-height: 1.6;
		margin-left: auto;
		margin-right: auto;
	}

	.hero-cta {
		flex-direction: column;
		gap: 0.5rem;
		margin-bottom: var(--spacing-md);
		justify-content: center;
	}

	.btn-lg {
		padding: 12px 20px;
		font-size: 0.875rem;
		width: 100%;
	}

	.hero-stats {
		display: none;
	}

	.hero-visual {
		display: flex;
		flex-direction: column;
		gap: var(--spacing-sm);
		width: 100%;
	}

	.hero-card {
		padding: 1rem;
		min-height: auto;
		width: 100% !important;
		flex: none !important;
		margin-bottom: 1rem;
	}

	.card-icon {
		width: 48px;
		height: 48px;
		font-size: 1.25rem;
		margin-bottom: 0.5rem;
	}

	.card-title {
		font-size: 1rem;
		margin-bottom: 0.375rem;
	}

	.card-description {
		font-size: 0.75rem;
		margin-bottom: 0.5rem;
	}

	.card-features {
		gap: 0.25rem;
	}

	.feature-badge {
		font-size: 0.65rem;
		padding: 4px 8px;
	}

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

	.step-number {
		font-size: 1.5rem;
		margin-bottom: 0.25rem;
	}

	.step-card {
		padding: 1.25rem 1rem;
	}

	.step-icon-wrapper {
		width: 65px;
		height: 65px;
		margin: 0 auto 0.5rem;
	}

	.step-icon {
		font-size: 1.75rem;
	}

	.step-title {
		font-size: 1rem;
		margin-bottom: 0.25rem;
	}

	.step-description {
		font-size: 0.75rem;
		margin-bottom: 0.375rem;
		line-height: 1.4;
	}

	.step-features {
		gap: 0.25rem;
		padding-top: 0.375rem;
	}

	.step-features li {
		font-size: 0.7rem;
	}

	.step-features li::before {
		font-size: 0.8rem;
		margin-right: 0.25rem;
	}

	.how-it-works-stats {
		grid-template-columns: 1fr;
		gap: var(--spacing-sm);
		margin-top: var(--spacing-lg);
		padding-top: var(--spacing-lg);
	}

	.stat-box {
		padding: 0.75rem;
		gap: 0.5rem;
	}

	.stat-icon {
		font-size: 1.5rem;
		min-width: 35px;
	}

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

	.stat-text {
		font-size: 0.7rem;
	}

	/* Benefits Responsive */
	.benefits-badge {
		padding: 0.5rem 1rem;
		font-size: 0.7rem;
		margin-bottom: 0.875rem;
	}

	.benefits-title {
		font-size: 1.375rem;
	}

	.benefits-subtitle {
		font-size: 0.8rem;
	}

	.benefits-cards-grid {
		grid-template-columns: 1fr;
		gap: 0.875rem;
		margin-bottom: 1.75rem;
	}

	.benefit-card {
		padding: 1.25rem 1rem;
	}

	.benefit-card-top {
		gap: 0.65rem;
	}

	.benefit-icon-wrapper {
		width: 44px;
		height: 44px;
		min-width: 44px;
	}

	.benefit-icon-wrapper svg {
		width: 22px;
		height: 22px;
	}

	.benefit-card-title {
		font-size: 1rem;
	}

	.benefit-card-description {
		font-size: 0.8rem;
	}

	.benefit-features {
		gap: 0.35rem;
		margin-top: 0.4rem;
	}

	.benefit-features li {
		font-size: 0.75rem;
		padding-left: 1.25rem;
	}

	.benefit-features li::before {
		font-size: 0.95rem;
	}

	.benefits-stats {
		grid-template-columns: 1fr;
		gap: 0.75rem;
		padding-top: 1rem;
	}

	.stat-item {
		gap: 0.35rem;
	}

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

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

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

	/* Demo Responsive */
	.demo-badge {
		padding: 0.5rem 0.95rem;
		font-size: 0.65rem;
		margin-bottom: 0.75rem;
	}

	.demo-title {
		font-size: 1.375rem;
	}

	.demo-subtitle {
		font-size: 0.8rem;
	}

	.video-preview {
		padding: 0.875rem;
		margin-bottom: 1.5rem;
	}

	.play-button {
		width: 56px;
		height: 56px;
	}

	.play-button svg {
		width: 36px;
		height: 36px;
	}

	.play-label {
		font-size: 0.7rem;
	}

	.demo-features {
		gap: 0.4rem;
		margin-top: 0.5rem;
	}

	.feature-pill {
		padding: 0.4rem 0.8rem;
		font-size: 0.65rem;
	}

	.pill-icon {
		font-size: 0.95rem;
	}

	.demo-cta-section {
		padding: 1.25rem;
		margin-top: 1.5rem;
	}

	.demo-info-title {
		font-size: 1rem;
		margin-bottom: 0.4rem;
	}

	.demo-info-text {
		font-size: 0.8rem;
		margin-bottom: 0.875rem;
	}

	.demo-actions {
		gap: 0.4rem;
	}

	.demo-btn {
		padding: 8px 12px;
		font-size: 0.8rem;
	}

	/* Testimonials Responsive */
	.testimonials-badge {
		padding: 0.5rem 0.95rem;
		font-size: 0.65rem;
		margin-bottom: 0.75rem;
	}

	.testimonials-title {
		font-size: 1.375rem;
	}

	.testimonials-subtitle {
		font-size: 0.8rem;
	}

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

	.testimonial-card {
		padding: 1.25rem 1rem;
	}

	.testimonial-header {
		gap: 0.5rem;
	}

	.star {
		font-size: 0.9rem;
	}

	.quote-mark {
		font-size: 1.5rem;
	}

	.testimonial-text {
		font-size: 0.8rem;
		line-height: 1.6;
	}

	.testimonial-author-info {
		gap: 0.65rem;
		padding-top: 0.75rem;
	}

	.author-avatar {
		width: 40px;
		height: 40px;
		font-size: 1rem;
	}

	.author-name {
		font-size: 0.8rem;
	}

	.author-role {
		font-size: 0.7rem;
	}

	.testimonials-stats {
		grid-template-columns: 1fr;
		gap: 0.75rem;
		padding-top: 1rem;
	}

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

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

@media (max-width: 375px) {
	.nav-container {
		padding: 0.5rem 0.6rem;
	}

	.nav-brand {
		font-size: 0.9rem;
		gap: 0.4rem;
	}

	.logo {
		width: 28px;
		height: 28px;
	}

	.nav-link {
		padding: 12px 16px;
		font-size: 12px;
	}

	.hero {
		padding: calc(60px + var(--spacing-md)) 0
			var(--spacing-md);
	}

	.hero-container {
		padding: 0 var(--spacing-sm);
		gap: var(--spacing-sm);
	}

	.hero-badge {
		font-size: 0.65rem;
		padding: 5px 8px;
		margin-bottom: 0.5rem;
		gap: 0.375rem;
	}

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

	.hero-title {
		font-size: 1.25rem;
		margin-bottom: var(--spacing-sm);
		line-height: 1.2;
	}

	.hero-subtitle {
		font-size: 0.75rem;
		margin-bottom: var(--spacing-md);
		line-height: 1.5;
	}

	.hero-cta {
		margin-bottom: var(--spacing-md);
		gap: 0.4rem;
	}

	.btn-lg {
		padding: 10px 16px;
		font-size: 0.75rem;
		width: 100%;
	}

	.hero-stats {
		gap: 0.5rem;
		margin-top: var(--spacing-md);
	}

	.stat {
		flex-direction: row;
		gap: 0.375rem;
	}

	.stat-number {
		font-size: 1rem;
		min-width: 40px;
	}

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

	.hero-visual {
		gap: var(--spacing-sm);
	}

	.hero-card {
		padding: 0.75rem;
		min-height: auto;
	}

	.card-icon {
		width: 42px;
		height: 42px;
		font-size: 1.1rem;
		margin-bottom: 0.375rem;
	}

	.card-title {
		font-size: 0.875rem;
		margin-bottom: 0.25rem;
	}

	.card-description {
		font-size: 0.65rem;
		margin-bottom: 0.375rem;
	}

	.card-features {
		gap: 0.2rem;
	}

	.feature-badge {
		font-size: 0.6rem;
		padding: 3px 6px;
	}

	.blob-1,
	.blob-2,
	.blob-3 {
		display: none;
	}

	.decoration-glow {
		display: none;
	}

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

	.step-number {
		font-size: 1.25rem;
		margin-bottom: 0.2rem;
	}

	.step-card {
		padding: 1rem 0.75rem;
	}

	.step-icon-wrapper {
		width: 60px;
		height: 60px;
		margin: 0 auto 0.375rem;
	}

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

	.step-title {
		font-size: 0.9375rem;
		margin-bottom: 0.2rem;
	}

	.step-description {
		font-size: 0.7rem;
		margin-bottom: 0.25rem;
		line-height: 1.4;
	}

	.step-features {
		gap: 0.2rem;
		padding-top: 0.25rem;
	}

	.step-features li {
		font-size: 0.65rem;
	}

	.step-features li::before {
		font-size: 0.75rem;
		margin-right: 0.2rem;
	}

	.how-it-works-stats {
		grid-template-columns: 1fr;
		gap: var(--spacing-xs);
		margin-top: var(--spacing-lg);
		padding-top: var(--spacing-lg);
	}

	.stat-box {
		padding: 0.625rem;
		gap: 0.375rem;
	}

	.stat-icon {
		font-size: 1.375rem;
		min-width: 32px;
	}

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

	.stat-text {
		font-size: 0.65rem;
	}
}

@media (max-width: 600px) {
	.hero {
		padding: calc(70px + var(--spacing-xl)) 0
			var(--spacing-xl);
		min-height: auto;
	}

	.hero-container {
		padding: 0 var(--spacing-md);
	}

	.hero-title {
		font-size: 2rem;
		line-height: 1.2;
	}

	.hero-subtitle {
		font-size: 1rem;
		margin-bottom: var(--spacing-lg);
	}

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

	.hero-cta .btn {
		width: 100%;
		text-align: center;
	}

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

	.how-it-works,
	.benefits,
	.demo,
	.testimonials,
	.for-schools,
	.pricing,
	.cta-section {
		padding: var(--spacing-xl) 0;
	}

	.steps-grid,
	.benefits-grid,
	.testimonials-grid,
	.schools-features,
	.pricing-grid {
		grid-template-columns: 1fr;
		gap: var(--spacing-lg);
	}

	.step,
	.benefit-card,
	.testimonial,
	.pricing-card {
		padding: var(--spacing-lg);
	}

	.cta-content h2 {
		font-size: 1.75rem;
		margin-bottom: var(--spacing-md);
	}

	.cta-content p {
		font-size: 1rem;
		margin-bottom: var(--spacing-lg);
	}

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

	.cta-buttons .btn {
		width: 100%;
	}

	.pricing-card.featured {
		transform: scale(1);
	}

	.sticky-cta {
		bottom: var(--spacing-md);
		right: var(--spacing-md);
		left: var(--spacing-md);
	}

	.sticky-cta .btn {
		width: 100%;
	}

	.modal {
		padding: var(--spacing-sm);
	}

	.modal-content {
		padding: var(--spacing-lg);
		max-height: 85vh;
	}

	.modal h2 {
		font-size: 1.5rem;
	}

	/* For-Schools 600px */
	.schools-circle-1 {
		width: 380px;
		height: 380px;
		top: -12%;
		right: -8%;
	}

	.schools-circle-2 {
		width: 340px;
		height: 340px;
		bottom: -15%;
		left: -10%;
	}

	.schools-tag {
		font-size: 0.75rem;
		padding: 0.5rem 0.875rem;
	}

	.schools-title {
		font-size: 1.625rem;
	}

	.schools-description {
		font-size: 0.9375rem;
	}

	.schools-features-grid {
		gap: 1.25rem;
	}

	.schools-feature-card {
		padding: 1.75rem 1.5rem;
	}

	.schools-feature-icon {
		width: 60px;
		height: 60px;
	}

	.schools-feature-title {
		font-size: 1.125rem;
	}

	.schools-feature-text {
		font-size: 0.875rem;
	}

	.schools-stats {
		gap: 1rem;
	}

	.schools-stat-card {
		padding: 1.5rem 1rem;
	}

	.schools-stat-value {
		font-size: 1.75rem;
	}

	.schools-stat-label {
		font-size: 0.875rem;
	}

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

	.schools-cta-title {
		font-size: 1.375rem;
	}

	.schools-cta-text {
		font-size: 0.875rem;
	}

	/* Pricing 600px */
	.pricing-circle-1 {
		width: 350px;
		height: 350px;
		top: -10%;
		left: -8%;
	}

	.pricing-circle-2 {
		width: 320px;
		height: 320px;
		bottom: -12%;
		right: -6%;
	}

	.pricing-tag {
		font-size: 0.75rem;
		padding: 0.5rem 0.875rem;
	}

	.pricing-title {
		font-size: 1.625rem;
	}

	.pricing-description {
		font-size: 0.9375rem;
	}

	.pricing-toggle {
		padding: 0.25rem;
		gap: 0.375rem;
	}

	.toggle-btn {
		padding: 0.5rem 1rem;
		font-size: 0.8125rem;
	}

	.toggle-save {
		font-size: 0.6875rem;
		padding: 0.1875rem 0.5rem;
	}

	.pricing-cards-grid {
		gap: 1.25rem;
	}

	.pricing-plan-card {
		padding: 1.75rem 1.5rem;
	}

	.plan-icon {
		width: 55px;
		height: 55px;
	}

	.plan-name {
		font-size: 1.375rem;
	}

	.plan-desc {
		font-size: 0.875rem;
	}

	.plan-amount {
		font-size: 2.75rem;
	}

	.plan-currency {
		font-size: 1.25rem;
	}

	.plan-period {
		font-size: 1rem;
	}

	.plan-custom-label {
		font-size: 2rem;
	}

	.plan-features {
		gap: 0.75rem;
	}

	.plan-features li {
		font-size: 0.875rem;
	}

	.pricing-features-section {
		padding: 2rem 1.5rem;
	}

	.pricing-features-title {
		font-size: 1.375rem;
	}

	.pricing-features-grid {
		gap: 1.25rem;
	}

	.pricing-feature-icon {
		width: 50px;
		height: 50px;
	}

	.pricing-feature-name {
		font-size: 0.9375rem;
	}

	.pricing-feature-text {
		font-size: 0.8125rem;
	}
}

@media (max-width: 480px) {
	.container {
		padding: 0 var(--spacing-sm);
	}

	.nav-container {
		padding: 0.5rem 0.75rem;
	}

	.nav-brand {
		font-size: 1rem;
		gap: 0.5rem;
	}

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

	.hamburger {
		padding: 4px;
		gap: 5px;
	}

	.hamburger span {
		width: 22px;
		height: 2px;
	}

	.hero {
		padding: calc(60px + var(--spacing-lg)) 0
			var(--spacing-lg);
	}

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

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

	.neural-network {
		width: 220px;
		height: 220px;
	}

	.btn {
		padding: 12px 20px;
		font-size: 0.9375rem;
	}

	.btn-lg {
		padding: 14px 24px;
		font-size: 1rem;
	}

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

	.step h3,
	.benefit-card h3,
	.pricing-card h3 {
		font-size: 1.25rem;
	}

	.step-icon,
	.benefit-icon {
		width: 60px;
		height: 60px;
		margin-bottom: var(--spacing-md);
	}

	.step,
	.benefit-card,
	.testimonial,
	.pricing-card {
		padding: var(--spacing-md);
	}

	.amount {
		font-size: 2.5rem;
	}

	.cta-content h2 {
		font-size: 1.5rem;
	}

	.cta-content p {
		font-size: 0.9375rem;
	}

	.footer-brand span {
		font-size: 1.125rem;
	}

	.modal-content {
		padding: var(--spacing-md);
	}

	.modal h2 {
		font-size: 1.375rem;
		margin-bottom: var(--spacing-md);
	}

	.form-group input,
	.form-group select {
		padding: 12px 14px;
		font-size: 0.9375rem;
	}

	.demo-form .btn-primary {
		padding: 14px;
		font-size: 1rem;
	}

	/* For-Schools 480px */
	.schools-features {
		gap: 0.9rem;
	}

	.schools-benefits {
		grid-template-columns: 1fr;
		gap: 0.75rem;
	}

	.benefit-item {
		padding: 0.9rem;
	}

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

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

	.schools-title {
		font-size: 1.25rem;
		margin-bottom: 0.75rem;
	}

	.schools-subtitle {
		font-size: 0.85rem;
		line-height: 1.5;
	}

	.schools-cta-title {
		font-size: 1.1rem;
	}

	.schools-cta-text {
		font-size: 0.85rem;
	}

	.schools-actions {
		gap: 0.5rem;
	}

	.schools-btn {
		padding: 0.6rem 1.5rem;
		font-size: 0.9rem;
	}

	/* Pricing 480px */
	.pricing-grid {
		gap: 0.9rem;
	}

	.pricing-title {
		font-size: 1.25rem;
		margin-bottom: 0.75rem;
	}

	.pricing-subtitle {
		font-size: 0.85rem;
		line-height: 1.5;
	}

	.plan-name {
		font-size: 1.1rem;
	}

	.amount {
		font-size: 1.75rem;
	}

	.period {
		font-size: 0.85rem;
	}

	.features-list {
		margin-bottom: 1.5rem;
		gap: 0.75rem;
	}

	.features-list li {
		font-size: 0.8rem;
	}

	.plan-btn {
		padding: 0.625rem 1rem;
		font-size: 0.85rem;
	}

	.comparison-row {
		grid-template-columns: 1fr;
		padding: 0.65rem;
		gap: 0.3rem;
	}

	.feature-name {
		font-weight: 600;
		font-size: 0.85rem;
	}

	.feature-value {
		font-size: 0.75rem;
	}
}

/* Responsive Design - Mobile-First Breakpoints */

/* Tablet and below (max 1024px) */
@media (max-width: 1024px) {
	.nav-container {
		max-width: 100%;
	}

	.nav-menu {
		gap: 1.5rem;
	}

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

/* Tablet (max 768px) */
@media (max-width: 768px) {
	.nav-container {
		padding: 0.75rem 1rem;
		flex-wrap: nowrap;
	}

	.nav-brand {
		gap: 0.75rem;
		font-size: 1.125rem;
		flex-shrink: 0;
	}

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

	.nav-menu {
		position: fixed;
		top: 70px;
		left: -100%;
		width: 100%;
		height: calc(100vh - 70px);
		background: white;
		flex-direction: column;
		align-items: stretch;
		padding: var(--spacing-lg);
		gap: 0;
		transition: left var(--transition-base);
		box-shadow: var(--shadow-lg);
		overflow-y: auto;
		z-index: 999;
		list-style: none;
	}

	.nav-menu.active {
		left: 0;
	}

	.nav-link {
		padding: var(--spacing-md) var(--spacing-sm);
		width: 100%;
		text-align: left;
		border-bottom: 1px solid #f0f0f0;
		font-size: var(--font-size-base);
		display: block;
	}

	.nav-link::after {
		display: none;
	}

	.nav-menu .nav-link:first-child {
		border-top: 1px solid #f0f0f0;
	}

	.nav-menu .btn {
		margin-top: var(--spacing-sm);
		margin-left: 0;
		width: 100%;
		text-align: center;
		justify-content: center;
	}

	.hamburger {
		display: flex;
		margin-left: auto;
		flex-shrink: 0;
	}

	.hero {
		padding: calc(70px + var(--spacing-xl)) 0
			var(--spacing-xl);
		min-height: auto;
	}

	.hero-container {
		padding: 0 var(--spacing-md);
	}

	.hero-title {
		font-size: 2rem;
		line-height: 1.2;
	}

	.hero-subtitle {
		font-size: 1rem;
		margin-bottom: var(--spacing-lg);
	}

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

	.hero-cta .btn {
		width: 100%;
		text-align: center;
	}

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

	.how-it-works,
	.benefits,
	.demo,
	.testimonials,
	.for-schools,
	.pricing,
	.cta-section {
		padding: var(--spacing-xl) 0;
	}
}

/* Small devices (max 600px) */
@media (max-width: 600px) {
	.nav-container {
		padding: 0.6rem 0.8rem;
	}

	.nav-brand {
		font-size: 1.05rem;
		gap: 0.6rem;
	}

	.logo {
		width: 34px;
		height: 34px;
	}

	.hamburger {
		padding: 5px;
		gap: 5px;
	}

	.hamburger span {
		width: 23px;
		height: 2.5px;
	}

	.hero {
		padding: calc(65px + var(--spacing-lg)) 0
			var(--spacing-lg);
	}

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

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

/* Extra small devices (max 480px) */
@media (max-width: 480px) {
	.container {
		padding: 0 var(--spacing-sm);
	}

	.nav-container {
		padding: 0.5rem 0.75rem;
	}

	.nav-brand {
		font-size: 1rem;
		gap: 0.5rem;
	}

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

	.hamburger {
		padding: 4px;
		gap: 5px;
	}

	.hamburger span {
		width: 22px;
		height: 2px;
	}

	.hero {
		padding: calc(60px + var(--spacing-lg)) 0
			var(--spacing-lg);
	}

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

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

/* Ultra-small devices (max 375px) */
@media (max-width: 375px) {
	.nav-brand {
		font-size: 0.95rem;
	}

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

	.hamburger span {
		width: 20px;
		height: 1.5px;
	}

	.hero-title {
		font-size: 1.35rem;
	}

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

	/* Benefits Responsive */
	.benefits-header {
		margin-bottom: 2rem;
	}

	.benefits-badge {
		padding: 0.5rem 0.95rem;
		font-size: 0.65rem;
		margin-bottom: 0.75rem;
	}

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

	.benefits-subtitle {
		font-size: 0.75rem;
		line-height: 1.5;
	}

	.benefits-cards-grid {
		grid-template-columns: 1fr;
		gap: 0.75rem;
		margin-bottom: 1.5rem;
	}

	.benefit-card {
		padding: 1.125rem 0.95rem;
	}

	.benefit-card-top {
		gap: 0.6rem;
	}

	.benefit-icon-wrapper {
		width: 40px;
		height: 40px;
		min-width: 40px;
	}

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

	.benefit-card-title {
		font-size: 0.95rem;
	}

	.benefit-card-description {
		font-size: 0.75rem;
	}

	.benefit-features {
		gap: 0.3rem;
		margin-top: 0.35rem;
	}

	.benefit-features li {
		font-size: 0.7rem;
		padding-left: 1.2rem;
	}

	.benefit-features li::before {
		font-size: 0.85rem;
	}

	.benefits-stats {
		grid-template-columns: 1fr;
		gap: 0.65rem;
		padding-top: 0.875rem;
	}

	.stat-item {
		gap: 0.3rem;
	}

	.stat-icon {
		font-size: 1.35rem;
	}

	.stat-value {
		font-size: 1.125rem;
	}

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

	/* Demo Responsive */
	.demo-header {
		margin-bottom: 1.5rem;
	}

	.demo-badge {
		padding: 0.45rem 0.9rem;
		font-size: 0.6rem;
		margin-bottom: 0.625rem;
	}

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

	.demo-subtitle {
		font-size: 0.75rem;
		line-height: 1.5;
	}

	.video-preview {
		padding: 0.75rem;
		margin-bottom: 1.25rem;
	}

	.play-button {
		width: 52px;
		height: 52px;
	}

	.play-button svg {
		width: 32px;
		height: 32px;
	}

	.play-label {
		font-size: 0.65rem;
	}

	.demo-features {
		gap: 0.35rem;
		margin-top: 0.4rem;
	}

	.feature-pill {
		padding: 0.375rem 0.75rem;
		font-size: 0.6rem;
	}

	.pill-icon {
		font-size: 0.9rem;
	}

	.demo-cta-section {
		padding: 1rem;
		margin-top: 1.25rem;
	}

	.demo-info-title {
		font-size: 0.95rem;
		margin-bottom: 0.35rem;
	}

	.demo-info-text {
		font-size: 0.75rem;
		margin-bottom: 0.75rem;
	}

	.demo-actions {
		gap: 0.35rem;
	}

	.demo-btn {
		padding: 7px 10px;
		font-size: 0.75rem;
	}

	/* Testimonials Responsive */
	.testimonials-header {
		margin-bottom: 1.5rem;
	}

	.testimonials-badge {
		padding: 0.45rem 0.9rem;
		font-size: 0.6rem;
		margin-bottom: 0.625rem;
	}

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

	.testimonials-subtitle {
		font-size: 0.75rem;
		line-height: 1.5;
	}

	.testimonials-grid {
		grid-template-columns: 1fr;
		gap: 0.75rem;
		margin-bottom: 1.25rem;
	}

	.testimonial-card {
		padding: 1.125rem 0.95rem;
	}

	.testimonial-header {
		gap: 0.4rem;
	}

	.star {
		font-size: 0.85rem;
	}

	.quote-mark {
		font-size: 1.25rem;
	}

	.testimonial-text {
		font-size: 0.75rem;
		line-height: 1.5;
	}

	.testimonial-author-info {
		gap: 0.6rem;
		padding-top: 0.625rem;
	}

	.author-avatar {
		width: 38px;
		height: 38px;
		font-size: 0.95rem;
	}

	.author-name {
		font-size: 0.75rem;
	}

	.author-role {
		font-size: 0.65rem;
	}

	.testimonials-stats {
		grid-template-columns: 1fr;
		gap: 0.65rem;
		padding-top: 0.875rem;
	}

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

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

	.schools-title {
		font-size: 1rem;
		margin-bottom: 0.5rem;
	}

	.schools-subtitle {
		font-size: 0.7rem;
	}

	.schools-features {
		grid-template-columns: 1fr;
		gap: 0.65rem;
		margin: 1rem 0;
	}

	.feature-card {
		padding: 0.85rem 0.7rem !important;
	}

	.feature-icon-wrapper {
		width: 40px;
		height: 40px;
		margin-bottom: 0.75rem;
	}

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

	.feature-title {
		font-size: 0.95rem;
		margin-bottom: 0.5rem;
	}

	.feature-description {
		font-size: 0.75rem;
		margin-bottom: 0.65rem;
	}

	.feature-points li {
		font-size: 0.7rem;
	}

	.schools-benefits {
		grid-template-columns: 1fr;
		gap: 0.55rem;
		margin: 1rem 0;
	}

	.benefit-item {
		padding: 0.75rem;
	}

	.benefit-number {
		font-size: 0.95rem;
	}

	.benefit-label {
		font-size: 0.65rem;
	}

	.schools-cta {
		padding: 1rem 0.75rem;
		margin-top: 1.25rem;
	}

	.schools-cta-title {
		font-size: 0.9rem;
		margin-bottom: 0.4rem;
	}

	.schools-cta-text {
		font-size: 0.7rem;
		margin-bottom: 0.75rem;
	}

	.schools-actions {
		gap: 0.35rem;
	}

	.schools-btn {
		padding: 0.45rem 1rem;
		font-size: 0.7rem;
	}

	/* Pricing 375px */
	.pricing-title {
		font-size: 1rem;
		margin-bottom: 0.5rem;
	}

	.pricing-subtitle {
		font-size: 0.7rem;
	}

	.pricing-grid {
		grid-template-columns: 1fr;
		gap: 0.8rem;
		margin: 1rem 0;
	}

	.plan-name {
		font-size: 0.95rem;
		margin-bottom: 0.15rem;
	}

	.plan-description {
		font-size: 0.7rem;
	}

	.amount {
		font-size: 1.5rem;
	}

	.currency {
		font-size: 0.95rem;
	}

	.period {
		font-size: 0.7rem;
	}

	.price-note {
		font-size: 0.7rem;
	}

	.features-list li {
		font-size: 0.7rem;
		gap: 0.4rem;
	}

	.features-list li svg {
		width: 16px;
		height: 16px;
	}

	.plan-btn {
		padding: 0.5rem 0.9rem;
		font-size: 0.75rem;
	}

	.pricing-comparison {
		padding: 1rem;
		margin-top: 1.25rem;
	}

	.comparison-title {
		font-size: 1rem;
		margin-bottom: 1rem;
	}

	.comparison-row {
		grid-template-columns: 1fr;
		padding: 0.5rem;
		gap: 0.2rem;
	}

	.feature-name {
		font-size: 0.7rem;
	}

	.feature-value {
		font-size: 0.65rem;
	}
}

/* ======================== */
/* Modern CTA Section Styles */
/* ======================== */

.cta-section {
	position: relative;
	padding: var(--spacing-3xl) 0;
	overflow: hidden;
	background: linear-gradient(
		135deg,
		rgba(255, 255, 255, 1) 0%,
		rgba(250, 251, 252, 1) 50%,
		rgba(240, 248, 252, 1) 100%
	);
}

.cta-decoration {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	pointer-events: none;
	z-index: 0;
	overflow: hidden;
}

.cta-blob {
	position: absolute;
	border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
	opacity: 0.08;
	mix-blend-mode: screen;
	animation: float 25s infinite ease-in-out;
}

.cta-blob-1 {
	width: 550px;
	height: 550px;
	background: linear-gradient(
		135deg,
		var(--color-primary),
		var(--color-secondary)
	);
	top: -150px;
	right: -100px;
	animation-delay: 0s;
}

.cta-blob-2 {
	width: 480px;
	height: 480px;
	background: linear-gradient(
		135deg,
		var(--color-secondary),
		var(--color-primary)
	);
	bottom: -120px;
	left: -80px;
	animation-delay: 3s;
	border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
}

.cta-glow-1 {
	position: absolute;
	width: 500px;
	height: 500px;
	background: radial-gradient(
		circle,
		rgba(64, 224, 208, 0.2),
		transparent
	);
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	border-radius: 50%;
	filter: blur(60px);
	animation: pulse 6s ease-in-out infinite;
	pointer-events: none;
}

.cta-grid {
	position: absolute;
	width: 100%;
	height: 100%;
	background-image: linear-gradient(
			rgba(64, 224, 208, 0.03) 1px,
			transparent 1px
		),
		linear-gradient(
			90deg,
			rgba(64, 224, 208, 0.03) 1px,
			transparent 1px
		);
	background-size: 50px 50px;
	opacity: 0.3;
}

.cta-wrapper {
	max-width: 1300px;
	margin: 0 auto;
	padding: 0 var(--spacing-lg);
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: var(--spacing-3xl);
	align-items: center;
	position: relative;
	z-index: 1;
}

.cta-content {
	display: flex;
	flex-direction: column;
	gap: var(--spacing-lg);
	animation: fadeInUp 0.8s ease-out 0.2s both;
}

.cta-badge {
	display: inline-flex;
	align-items: center;
	gap: 0.75rem;
	padding: 10px 16px;
	background: linear-gradient(
		135deg,
		rgba(238, 108, 77, 0.15),
		rgba(238, 108, 77, 0.08)
	);
	border: 1px solid rgba(238, 108, 77, 0.3);
	border-radius: 50px;
	font-size: 0.875rem;
	font-weight: 600;
	color: #d85a3a;
	width: fit-content;
	backdrop-filter: blur(10px);
	animation: fadeInDown 0.8s ease-out 0.1s both;
}

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

.cta-title {
	font-size: 3rem;
	font-weight: 800;
	line-height: 1.2;
	color: #2c3e50 !important;
	animation: fadeInUp 0.8s ease-out 0.2s both;
	margin: 0;
}

.cta-title .gradient-text {
	background: linear-gradient(
		135deg,
		var(--color-primary),
		var(--color-primary-dark)
	);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	font-weight: 900;
}

.cta-title .highlight {
	background: linear-gradient(
		135deg,
		var(--color-primary),
		var(--color-primary-dark)
	);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	font-weight: 900;
}

.cta-subtitle {
	font-size: 1.125rem;
	color: var(--color-text-light);
	line-height: 1.7;
	margin: 0;
	animation: fadeInUp 0.8s ease-out 0.3s both;
	max-width: 95%;
}

.cta-stats-row {
	display: flex;
	gap: var(--spacing-md);
	padding: var(--spacing-lg) 0;
	border-top: 1px solid rgba(64, 224, 208, 0.1);
	border-bottom: 1px solid rgba(64, 224, 208, 0.1);
	animation: fadeInUp 0.8s ease-out 0.4s both;
}

.cta-stat {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	flex: 1;
}

.cta-stat-number {
	font-size: 1.5rem;
	display: inline-block;
	min-width: 30px;
}

.cta-stat-text {
	font-size: 0.9rem;
	color: var(--color-text);
	font-weight: 600;
}

.cta-actions {
	display: flex;
	gap: var(--spacing-md);
	animation: fadeInUp 0.8s ease-out 0.5s both;
	flex-wrap: wrap;
}

.cta-main-btn {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	padding: 16px 32px;
	font-size: 1.1rem;
	background: linear-gradient(
		135deg,
		#0099cc,
		#006699
	);
	color: #fff;
	border: none;
	position: relative;
	overflow: hidden;
	box-shadow: 0 10px 30px rgba(0, 102, 153, 0.3);
	transition: all 0.4s
		cubic-bezier(0.23, 1, 0.32, 1);
}

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

.cta-main-btn:hover {
	transform: translateY(-3px);
	box-shadow: 0 15px 40px rgba(0, 102, 153, 0.4);
}

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

.btn-text {
	font-weight: 700;
}

.btn-arrow {
	display: inline-block;
	font-size: 1.3rem;
	transition: transform 0.3s ease;
}

.cta-main-btn:hover .btn-arrow {
	transform: translateX(4px);
}

.cta-secondary-btn {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	padding: 16px 28px;
	font-size: 1rem;
	background: transparent;
	border: 2px solid var(--color-primary);
	color: var(--color-primary);
	border-radius: var(--border-radius);
	font-weight: 600;
	transition: all 0.3s ease;
	cursor: pointer;
}

.cta-secondary-btn:hover {
	border-color: var(--color-primary);
	background: var(--color-primary);
	color: #fff;
	transform: translateY(-2px);
	box-shadow: 0 8px 20px rgba(64, 224, 208, 0.3);
}

.btn-icon {
	display: inline-block;
	transition: transform 0.3s ease;
	font-size: 1rem;
}

.cta-secondary-btn:hover .btn-icon {
	transform: translateY(2px);
}

.cta-trust {
	display: flex;
	align-items: center;
	gap: 1.5rem;
	animation: fadeInUp 0.8s ease-out 0.6s both;
	padding-top: var(--spacing-lg);
	border-top: 1px solid rgba(64, 224, 208, 0.1);
}

.trust-text {
	font-size: 0.9rem;
	color: var(--color-text-light);
	font-weight: 500;
	white-space: nowrap;
}

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

.trust-avatar {
	width: 36px;
	height: 36px;
	background: linear-gradient(
		135deg,
		var(--color-primary),
		var(--color-primary-dark)
	);
	border-radius: 50%;
	border: 2px solid white;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.2rem;
	margin-left: -12px;
	transition: all 0.3s ease;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

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

.trust-avatar:hover {
	transform: scale(1.1);
	z-index: 2;
	margin-left: -8px;
}

.cta-visual {
	position: relative;
	animation: slideInRight 0.8s ease-out 0.4s both;
	display: flex;
	align-items: center;
	justify-content: center;
}

.cta-card-container {
	position: relative;
	width: 100%;
	height: 100%;
	min-height: 400px;
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
	perspective: 1000px;
}

.cta-visual-card {
	position: relative;
	padding: 1.75rem;
	background: linear-gradient(
		135deg,
		rgba(255, 255, 255, 0.95),
		rgba(255, 255, 255, 0.85)
	);
	border: 1px solid rgba(64, 224, 208, 0.2);
	border-radius: 16px;
	backdrop-filter: blur(20px);
	transition: all 0.4s
		cubic-bezier(0.23, 1, 0.32, 1);
	overflow: hidden;
	cursor: pointer;
}

.cta-visual-card::before {
	content: "";
	position: absolute;
	top: -1px;
	left: 0;
	right: 0;
	height: 1px;
	background: linear-gradient(
		90deg,
		transparent,
		rgba(64, 224, 208, 0.5),
		transparent
	);
	border-radius: 16px 16px 0 0;
}

.cta-card-1 {
	animation: slideUp 0.6s ease-out 0.4s both;
}

.cta-card-2 {
	animation: slideUp 0.6s ease-out 0.5s both;
	margin-left: 1rem;
}

.cta-card-3 {
	animation: slideUp 0.6s ease-out 0.6s both;
	margin-left: 2rem;
}

.cta-visual-card:hover {
	border-color: rgba(64, 224, 208, 0.4);
	box-shadow: 0 15px 40px rgba(64, 224, 208, 0.15);
	transform: translateY(-4px);
}

.card-header-light {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	margin-bottom: 1rem;
	padding-bottom: 1rem;
	border-bottom: 1px solid rgba(64, 224, 208, 0.1);
}

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

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

.card-metric {
	display: flex;
	flex-direction: column;
	gap: 0.25rem;
	margin-bottom: 1rem;
}

.metric-value {
	font-size: 2rem;
	font-weight: 800;
	background: linear-gradient(
		135deg,
		var(--color-primary),
		var(--color-primary-dark)
	);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

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

.card-bar {
	width: 100%;
	height: 6px;
	background: rgba(64, 224, 208, 0.1);
	border-radius: 3px;
	overflow: hidden;
}

.bar-fill {
	height: 100%;
	background: linear-gradient(
		90deg,
		var(--color-primary),
		var(--color-primary-light)
	);
	border-radius: 3px;
	width: 94%;
	animation: fillBar 0.8s ease-out 0.7s both;
}

.bar-fill-2 {
	width: 85%;
	animation-delay: 0.8s;
}

.bar-fill-3 {
	width: 92%;
	animation-delay: 0.9s;
}

@keyframes fillBar {
	from {
		width: 0;
	}
}

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

.floating-element {
	position: absolute;
	width: 60px;
	height: 60px;
	border-radius: 50%;
	background: linear-gradient(
		135deg,
		rgba(64, 224, 208, 0.2),
		rgba(38, 180, 170, 0.1)
	);
	border: 2px solid rgba(64, 224, 208, 0.3);
	display: flex;
	align-items: center;
	justify-content: center;
	animation: float 6s ease-in-out infinite;
}

.element-1 {
	top: 15%;
	right: 5%;
	animation-delay: 0s;
}

.element-2 {
	bottom: 20%;
	right: 15%;
	animation-delay: 2s;
	width: 50px;
	height: 50px;
}

.pulse-ring {
	width: 100%;
	height: 100%;
	border-radius: 50%;
	border: 2px solid var(--color-primary);
	animation: scaleRing 2s ease-out infinite;
	opacity: 0;
}

@keyframes scaleRing {
	0% {
		transform: scale(1);
		opacity: 1;
	}
	100% {
		transform: scale(2);
		opacity: 0;
	}
}

.cta-footer-note {
	display: flex;
	align-items: center;
	gap: 1rem;
	padding: var(--spacing-lg);
	background: linear-gradient(
		135deg,
		rgba(64, 224, 208, 0.08),
		rgba(64, 224, 208, 0.04)
	);
	border: 1px solid rgba(64, 224, 208, 0.15);
	border-radius: var(--border-radius-lg);
	margin-top: var(--spacing-2xl);
	animation: slideUp 0.8s ease-out 0.7s both;
	position: relative;
	z-index: 1;
}

.cta-footer-note .icon {
	font-size: 1.25rem;
	min-width: 30px;
}

.cta-footer-note .text {
	font-size: 0.95rem;
	color: var(--color-text-light);
	line-height: 1.6;
}

/* Tablet & Mobile Responsive */
@media (max-width: 1024px) {
	.cta-wrapper {
		grid-template-columns: 1fr;
		gap: var(--spacing-2xl);
	}

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

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

	.cta-visual {
		max-width: 500px;
		margin: 0 auto;
	}

	.cta-card-2 {
		margin-left: 0.5rem;
	}

	.cta-card-3 {
		margin-left: 1rem;
	}

	/* Benefits Tablet */
	.benefits-grid {
		grid-template-columns: 1fr;
		gap: 1.5rem;
		max-width: 600px;
		margin: 0 auto;
	}

	.benefit-card {
		padding: 2rem 1.75rem;
	}

	.benefit-card-featured {
		transform: scale(1);
	}

	.benefit-card-featured:hover {
		transform: translateY(-8px) scale(1);
	}

	.benefits-title {
		font-size: 2.5rem;
	}

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

	/* Demo Tablet */
	.demo-title {
		font-size: 2.5rem;
	}

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

	.demo-stats {
		grid-template-columns: 1fr;
		gap: 1.25rem;
		max-width: 500px;
	}

	.demo-feature-tag {
		font-size: 0.75rem;
		padding: 0.4rem 0.875rem;
	}

	.demo-tag-1 {
		top: 10%;
		left: 5%;
	}

	.demo-tag-2 {
		top: 20%;
		right: 5%;
	}

	.demo-tag-3 {
		bottom: 15%;
		left: 8%;
	}

	.demo-cta {
		padding: 2.5rem 2rem;
	}

	.demo-cta-title {
		font-size: 1.625rem;
	}
}

@media (max-width: 768px) {
	.cta-section {
		padding: var(--spacing-2xl) 0;
	}

	.cta-wrapper {
		padding: 0 var(--spacing-md);
	}

	.cta-title {
		font-size: 2rem;
		line-height: 1.3;
	}

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

	.cta-stats-row {
		flex-direction: column;
		gap: var(--spacing-sm);
		padding: var(--spacing-md) 0;
	}

	.cta-actions {
		flex-direction: column;
		gap: var(--spacing-sm);
	}

	.cta-main-btn,
	.cta-secondary-btn {
		width: 100%;
		justify-content: center;
	}

	.cta-trust {
		flex-direction: column;
		align-items: flex-start;
		gap: 1rem;
		padding-top: var(--spacing-md);
		border-top: 1px solid rgba(64, 224, 208, 0.1);
	}

	.cta-card-container {
		min-height: 300px;
		gap: 1rem;
	}

	.cta-card-1,
	.cta-card-2,
	.cta-card-3 {
		margin-left: 0 !important;
	}

	.cta-footer-note {
		flex-direction: column;
		align-items: flex-start;
		text-align: left;
		gap: 0.75rem;
		padding: var(--spacing-md);
		margin-top: var(--spacing-xl);
	}

	.element-1,
	.element-2 {
		display: none;
	}

	/* Benefits Mobile */
	.benefits {
		padding: 4rem 0;
	}

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

	.benefits-tag {
		padding: 0.5rem 1rem;
		font-size: 0.8125rem;
	}

	.benefits-title {
		font-size: 2rem;
	}

	.benefits-description {
		font-size: 0.9375rem;
	}

	.benefits-grid {
		gap: 1.25rem;
		max-width: 100%;
	}

	.benefit-card {
		padding: 1.75rem 1.5rem;
	}

	.benefit-card-title {
		font-size: 1.25rem;
	}

	.benefit-card-text {
		font-size: 0.875rem;
	}

	.benefit-icon {
		width: 50px;
		height: 50px;
	}

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

	.featured-badge {
		right: 1.5rem;
		font-size: 0.6875rem;
		padding: 0.3125rem 0.875rem;
	}

	.benefit-list {
		gap: 0.625rem;
	}

	.benefit-item {
		font-size: 0.8125rem;
	}

	.benefit-check {
		width: 18px;
		height: 18px;
	}

	.benefit-card-footer {
		padding-top: 0.875rem;
	}

	.benefit-metric {
		font-size: 0.8125rem;
	}

	.benefit-metric strong {
		font-size: 1rem;
	}

	/* Demo Mobile */
	.demo {
		padding: 4rem 0;
	}

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

	.demo-tag {
		padding: 0.5rem 1rem;
		font-size: 0.8125rem;
	}

	.demo-title {
		font-size: 2rem;
	}

	.demo-description {
		font-size: 0.9375rem;
	}

	.demo-video-wrapper {
		margin: 0 auto 3rem;
	}

	.demo-video-frame {
		border-radius: 16px;
	}

	.demo-play-button {
		width: 80px;
		height: 80px;
	}

	.demo-play-icon svg {
		width: 20px;
		height: 23px;
	}

	.demo-duration-badge {
		bottom: 1rem;
		right: 1rem;
		padding: 0.5rem 0.875rem;
		font-size: 0.8125rem;
	}

	.demo-feature-tag {
		display: none;
	}

	.demo-stats {
		gap: 1rem;
		max-width: 100%;
	}

	.demo-stat-item {
		padding: 1.25rem;
		gap: 0.875rem;
	}

	.demo-stat-icon {
		width: 45px;
		height: 45px;
	}

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

	.demo-stat-value {
		font-size: 1.25rem;
	}

	.demo-stat-label {
		font-size: 0.8125rem;
	}

	.demo-cta {
		padding: 2rem 1.75rem;
		border-radius: 16px;
	}

	.demo-cta-title {
		font-size: 1.375rem;
	}

	.demo-cta-text {
		font-size: 0.9375rem;
		margin-bottom: 1.5rem;
	}

	.demo-cta-actions {
		flex-direction: column;
		gap: 0.75rem;
	}

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

	/* Testimonials Tablet */
	.testimonials-grid {
		grid-template-columns: 1fr;
		gap: 1.5rem;
		max-width: 600px;
		margin: 0 auto 3rem;
	}

	.testimonial-card {
		padding: 2.25rem;
	}

	.testimonial-card-featured {
		transform: scale(1);
	}

	.testimonial-card-featured:hover {
		transform: translateY(-8px) scale(1);
	}

	.testimonials-title {
		font-size: 2.5rem;
	}

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

	.testimonials-stats {
		grid-template-columns: 1fr;
		gap: 1.25rem;
		max-width: 400px;
	}

	/* Testimonials Mobile */
	.testimonials {
		padding: 4rem 0;
	}

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

	.testimonials-tag {
		padding: 0.5rem 1rem;
		font-size: 0.8125rem;
	}

	.testimonials-title {
		font-size: 2rem;
	}

	.testimonials-description {
		font-size: 0.9375rem;
	}

	.testimonials-grid {
		gap: 1.25rem;
		max-width: 100%;
		margin-bottom: 2.5rem;
	}

	.testimonial-card {
		padding: 2rem 1.75rem;
	}

	.testimonial-quote-icon {
		width: 32px;
		height: 26px;
	}

	.testimonial-text {
		font-size: 0.9375rem;
	}

	.testimonial-rating svg {
		width: 14px;
		height: 14px;
	}

	.testimonial-avatar {
		width: 48px;
		height: 48px;
	}

	.testimonial-author-name {
		font-size: 0.9375rem;
	}

	.testimonial-author-role {
		font-size: 0.8125rem;
	}

	.testimonial-featured-badge {
		right: 1.5rem;
		font-size: 0.6875rem;
		padding: 0.3125rem 0.875rem;
	}

	.testimonials-stats {
		padding-top: 1.5rem;
		gap: 1rem;
		max-width: 100%;
	}

	.testimonials-stat-item {
		padding: 1.25rem;
	}

	.testimonials-stat-value {
		font-size: 1.75rem;
	}

	.testimonials-stat-label {
		font-size: 0.875rem;
	}
}

@media (max-width: 480px) {
	.cta-section {
		padding: var(--spacing-xl) 0;
	}

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

	.cta-subtitle {
		font-size: 0.9rem;
	}

	.cta-badge {
		font-size: 0.75rem;
		padding: 8px 12px;
	}

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

	.cta-stat-text {
		font-size: 0.8rem;
	}

	.cta-main-btn,
	.cta-secondary-btn {
		padding: 12px 20px;
		font-size: 0.95rem;
	}

	.cta-visual-card {
		padding: 1.25rem;
	}

	.metric-value {
		font-size: 1.75rem;
	}

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

	.cta-footer-note {
		padding: var(--spacing-sm);
		font-size: 0.85rem;
	}
}

/* Video Modal Styles */
.video-modal-container {
    max-width: 900px;
    width: 90%;
    padding: 0;
    background: #000;
    overflow: hidden;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-modal-container .modal-close {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    z-index: 10;
    top: 1rem;
    right: 1rem;
}

.video-modal-container .modal-close:hover {
    background: rgba(255, 255, 255, 0.4);
}


.video-modal {
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100vw;
    height: 100vh;
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    border: none;
    max-width: none;
    max-height: none;
    margin: 0;
    background: transparent;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease-out;
}

.video-modal::backdrop {
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
}

.video-modal[open] {
    opacity: 1;
    pointer-events: auto;
    animation: modalFadeIn 0.3s ease-out;
}

