﻿/* 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;
	}
}

* {
	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;
}

.navbar {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	background: linear-gradient(
		135deg,
		rgba(255, 255, 255, 0.95) 0%,
		rgba(250, 251, 252, 0.95) 100%
	);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
	z-index: 1000;
	height: auto;
	min-height: 76px;
	border-bottom: 1px solid
		rgba(64, 224, 208, 0.08);
}

.nav-container {
	max-width: 1440px;
	width: 100%;
	margin: 0 auto;
	padding: 1.25rem 2.5rem;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: nowrap;
	gap: 3rem;
	min-height: 76px;
}

.nav-brand {
	display: flex;
	align-items: center;
	gap: 0.875rem;
	font-size: 1.4rem;
	font-weight: 800;
	text-decoration: none;
	background: linear-gradient(
		135deg,
		var(--color-text) 0%,
		var(--color-secondary) 100%
	);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	flex-shrink: 0;
	transition: all var(--transition-base);
	letter-spacing: -0.5px;
}

.nav-brand:hover {
	transform: translateY(-2px);
	opacity: 0.9;
}

.logo {
	width: 44px;
	height: 44px;
	flex-shrink: 0;
	filter: drop-shadow(
		0 4px 12px rgba(64, 224, 208, 0.2)
	);
	transition: all var(--transition-base);
}

.nav-brand:hover .logo {
	filter: drop-shadow(
		0 6px 16px rgba(64, 224, 208, 0.3)
	);
	transform: scale(1.05);
}

.nav-menu {
	display: flex;
	align-items: center;
	gap: 3.5rem;
	flex: 1;
	justify-content: center;
	margin: 0;
	list-style: none;
}

.nav-link {
	color: var(--color-text);
	font-weight: 600;
	font-size: 0.95rem;
	text-decoration: none;
	transition: all var(--transition-base);
	position: relative;
	white-space: nowrap;
	letter-spacing: 0.3px;
	text-transform: uppercase;
	font-size: 0.85rem;
}

.nav-link::before {
	content: "";
	position: absolute;
	bottom: -6px;
	left: 0;
	width: 0;
	height: 3px;
	background: linear-gradient(
		90deg,
		var(--color-primary),
		var(--color-primary-light)
	);
	border-radius: 2px;
	transition: width var(--transition-base);
}

.nav-link:hover {
	color: var(--color-primary);
	transform: translateY(-2px);
}

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

.nav-cta {
	margin-left: auto;
	flex-shrink: 0;
	padding: 12px 28px;
	font-weight: 700;
	font-size: 0.9rem;
	letter-spacing: 0.5px;
	box-shadow: 0 6px 20px rgba(64, 224, 208, 0.25);
	transition: all 0.3s
		cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.nav-cta:hover {
	box-shadow: 0 12px 32px rgba(64, 224, 208, 0.35);
	transform: translateY(-2px);
}

.nav-cta:active {
	transform: translateY(0);
}

.hamburger {
	display: none;
	flex-direction: column;
	gap: 6px;
	cursor: pointer;
	padding: 10px;
	position: relative;
	z-index: 1001;
	flex-shrink: 0;
	background: none;
	border: none;
	border-radius: 8px;
	transition: all var(--transition-base);
}

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

.hamburger span {
	width: 26px;
	height: 3px;
	background: var(--color-text);
	border-radius: 2px;
	transition: all 0.35s
		cubic-bezier(0.25, 0.46, 0.45, 0.94);
	transform-origin: center;
	display: block;
}

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

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

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

.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;
}

.hero {
	padding: calc(80px + var(--spacing-2xl)) 0
		var(--spacing-2xl);
	background: #ffffff;
	min-height: 100vh;
	display: flex;
	align-items: center;
	position: relative;
	overflow: hidden;
}

.hero-decoration {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	pointer-events: none;
	z-index: 0;
	opacity: 0.5;
}

.decoration-blob {
	position: absolute;
	border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
	opacity: 0.08;
	mix-blend-mode: multiply;
	animation: float 25s infinite ease-in-out;
}

.blob-1 {
	width: 500px;
	height: 500px;
	background: var(--color-primary);
	top: -150px;
	right: -100px;
	animation-delay: 0s;
}

.blob-2 {
	width: 400px;
	height: 400px;
	background: var(--color-secondary);
	bottom: -100px;
	left: -150px;
	animation-delay: 2s;
	border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
}

.blob-3 {
	display: none;
}

.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;
	}
}

.hero-container {
	max-width: 1400px;
	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;
}

.hero-badge {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 8px 14px;
	background: rgba(64, 224, 208, 0.08);
	border: 1px solid rgba(64, 224, 208, 0.25);
	border-radius: 50px;
	font-size: 0.8rem;
	font-weight: 600;
	color: var(--color-primary-dark);
	width: fit-content;
	margin-bottom: var(--spacing-md);
	animation: fadeInDown 0.8s ease-out 0.1s both;
	backdrop-filter: none;
}

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

.hero-title {
	font-size: 3.5rem;
	font-weight: 800;
	line-height: 1.2;
	margin-bottom: var(--spacing-md);
	animation: fadeInUp 0.8s ease-out 0.2s both;
	color: var(--color-text);
	letter-spacing: -1px;
}

.title-line {
	display: block;
}

.gradient-text {
	background: linear-gradient(
		135deg,
		var(--color-primary),
		var(--color-primary-dark),
		var(--color-secondary)
	);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	background-size: 200% 200%;
	animation: gradientShift 6s ease infinite,
		fadeInUp 0.8s ease-out 0.2s both;
}

@keyframes gradientShift {
	0%,
	100% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
}

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

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

.hero-subtitle {
	font-size: 1.125rem;
	color: var(--color-text-light);
	margin-bottom: var(--spacing-lg);
	line-height: 1.7;
	animation: fadeInUp 0.8s ease-out 0.3s both;
	max-width: 85%;
}

.hero-cta {
	display: flex;
	gap: var(--spacing-md);
	flex-wrap: wrap;
	animation: fadeInUp 0.8s ease-out 0.6s both;
	margin-bottom: var(--spacing-2xl);
}

.btn-icon {
	display: inline-block;
	margin-right: 0.5rem;
	font-size: 1.1em;
	transition: transform 0.3s ease;
}

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

.hero-stats {
	display: flex;
	gap: 3rem;
	animation: fadeInUp 0.8s ease-out 0.5s both;
	padding-top: var(--spacing-md);
	border-top: 1px solid rgba(64, 224, 208, 0.15);
}

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

.stat-number {
	font-size: 1.5rem;
	font-weight: 700;
	background: linear-gradient(
		135deg,
		var(--color-primary),
		var(--color-primary-dark)
	);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

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

.hero-visual {
	display: flex;
	gap: var(--spacing-lg);
	animation: slideInRight 0.8s ease-out 0.3s both;
}

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

.hero-card {
	position: relative;
	padding: 2rem;
	background: #ffffff;
	border: 1px solid rgba(64, 224, 208, 0.15);
	border-radius: 12px;
	overflow: hidden;
	transition: all 0.3s ease;
	flex: 1;
	min-height: 280px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.hero-card:hover {
	border-color: rgba(64, 224, 208, 0.3);
	transform: translateY(-4px);
	box-shadow: 0 8px 24px rgba(64, 224, 208, 0.1);
}

.card-glow {
	display: none;
}

.card-secondary {
	background: #ffffff;
}

.card-content {
	position: relative;
	z-index: 1;
}

.card-icon {
	width: 50px;
	height: 50px;
	background: linear-gradient(
		135deg,
		rgba(64, 224, 208, 0.15),
		rgba(38, 180, 170, 0.1)
	);
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 1rem;
	color: var(--color-primary);
	font-size: 1.5rem;
}

.card-title {
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--color-text);
	margin-bottom: 0.75rem;
}

.card-description {
	font-size: 0.95rem;
	color: var(--color-text-light);
	line-height: 1.6;
	margin-bottom: 1.5rem;
}

.card-features {
	display: flex;
	gap: 0.5rem;
	flex-wrap: wrap;
}

.feature-badge {
	font-size: 0.75rem;
	padding: 6px 12px;
	background: rgba(64, 224, 208, 0.1);
	border: 1px solid rgba(64, 224, 208, 0.3);
	border-radius: 20px;
	color: var(--color-primary-dark);
	font-weight: 600;
}

.card-stats {
	display: flex;
	gap: 1.5rem;
}

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

.stat-mini-number {
	font-size: 1.25rem;
	font-weight: 700;
	background: linear-gradient(
		135deg,
		var(--color-primary),
		var(--color-primary-dark)
	);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

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

.network-center {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 3;
}

.learner-avatars {
	position: relative;
	width: 120px;
	height: 120px;
}

.avatar {
	position: absolute;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: linear-gradient(
		135deg,
		var(--color-primary),
		var(--color-primary-dark)
	);
	animation: pulse 2s ease-in-out infinite;
}

.avatar-1 {
	top: 0;
	left: 0;
}
.avatar-2 {
	top: 0;
	right: 0;
	animation-delay: 0.5s;
}
.avatar-3 {
	bottom: 0;
	left: 0;
	animation-delay: 1s;
}
.avatar-4 {
	bottom: 0;
	right: 0;
	animation-delay: 1.5s;
}

.network-nodes {
	position: relative;
	width: 100%;
	height: 100%;
}

.node {
	position: absolute;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	background: var(--color-primary);
	opacity: 0.6;
	animation: float 3s ease-in-out infinite;
}

.node-1 {
	top: 10%;
	left: 20%;
}
.node-2 {
	top: 20%;
	right: 15%;
	animation-delay: 0.4s;
}
.node-3 {
	top: 40%;
	left: 5%;
	animation-delay: 0.8s;
}
.node-4 {
	top: 40%;
	right: 5%;
	animation-delay: 1.2s;
}
.node-5 {
	bottom: 30%;
	left: 10%;
	animation-delay: 1.6s;
}
.node-6 {
	bottom: 30%;
	right: 10%;
	animation-delay: 2s;
}
.node-7 {
	bottom: 10%;
	left: 25%;
	animation-delay: 2.4s;
}
.node-8 {
	bottom: 10%;
	right: 25%;
	animation-delay: 2.8s;
}

.connections-svg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
}

@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,
.benefits,
.demo,
.testimonials,
.for-schools,
.pricing {
	padding: var(--spacing-3xl) 0;
}

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

.steps-grid,
.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;
}

.step,
.benefit-card,
.testimonial,
.pricing-card {
	padding: var(--spacing-xl);
	background: white;
	border-radius: var(--border-radius-lg);
	box-shadow: var(--shadow-md);
	transition: var(--transition-base);
	display: flex;
	flex-direction: column;
	height: 100%;
}

.step {
	text-align: center;
	background: transparent;
	box-shadow: none;
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.step-number {
	font-size: 3rem;
	font-weight: 900;
	background: linear-gradient(
		135deg,
		var(--color-primary),
		var(--color-primary-dark)
	);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	margin-bottom: 1rem;
	letter-spacing: -2px;
	opacity: 0.3;
}

.step-card {
	position: relative;
	padding: 2.5rem 2rem;
	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.3s ease;
	height: 100%;
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.step-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;
}

.step:hover .step-card {
	border-color: rgba(64, 224, 208, 0.5);
	box-shadow: 0 20px 60px rgba(64, 224, 208, 0.1);
	transform: translateY(-8px);
}

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

.icon-background {
	position: absolute;
	inset: 0;
	background: linear-gradient(
		135deg,
		rgba(64, 224, 208, 0.1),
		rgba(38, 180, 170, 0.1)
	);
	border-radius: 50%;
	animation: scaleInOut 3s ease-in-out infinite;
}

.step-icon {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(
		135deg,
		var(--color-primary),
		var(--color-primary-dark)
	);
	border-radius: 50%;
	color: white;
	font-size: 2rem;
	z-index: 1;
	box-shadow: 0 8px 20px rgba(64, 224, 208, 0.3);
	transition: all 0.3s ease;
}

.step:hover .step-icon {
	transform: scale(1.1);
	box-shadow: 0 12px 30px rgba(64, 224, 208, 0.4);
}

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

.step-description {
	font-size: 0.95rem;
	color: var(--color-text-light);
	line-height: 1.6;
	margin: 0;
	flex-grow: 1;
}

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

.step-features li {
	font-size: 0.85rem;
	color: var(--color-text-light);
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.step-features li::before {
	content: "✓";
	font-weight: 700;
	color: var(--color-primary);
	font-size: 1rem;
}

.steps-connector {
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 1px;
	height: 100%;
	background: linear-gradient(
		180deg,
		transparent,
		rgba(64, 224, 208, 0.3),
		transparent
	);
	pointer-events: none;
	display: none;
}

.steps-container {
	position: relative;
	margin: var(--spacing-3xl) 0;
}

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

@keyframes scaleInOut {
	0%,
	100% {
		transform: scale(1);
		opacity: 0.5;
	}
	50% {
		transform: scale(1.15);
		opacity: 0.3;
	}
}

.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;
}

.how-it-works-stats {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
	margin-top: var(--spacing-3xl);
	padding-top: var(--spacing-3xl);
	border-top: 1px solid rgba(64, 224, 208, 0.1);
}

.stat-box {
	display: flex;
	align-items: center;
	gap: 1.5rem;
	padding: 1.5rem;
	background: linear-gradient(
		135deg,
		rgba(64, 224, 208, 0.05),
		rgba(38, 180, 170, 0.02)
	);
	border: 1px solid rgba(64, 224, 208, 0.1);
	border-radius: 12px;
	transition: all 0.3s ease;
}

.stat-box:hover {
	border-color: rgba(64, 224, 208, 0.3);
	background: linear-gradient(
		135deg,
		rgba(64, 224, 208, 0.1),
		rgba(38, 180, 170, 0.05)
	);
}

.stat-icon {
	font-size: 2rem;
	min-width: 50px;
	text-align: center;
}

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

.stat-number {
	font-size: 1.5rem;
	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;
	display: block;
}

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

/* 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 {
	position: relative;
	overflow: hidden;
}

.benefits-blob,
.benefits-glow {
	position: absolute;
	border-radius: 50%;
	opacity: 0.15;
	pointer-events: none;
	z-index: 0;
}

.benefits-blob-1 {
	width: 400px;
	height: 400px;
	background: linear-gradient(
		135deg,
		var(--color-primary),
		var(--color-primary-dark)
	);
	top: 10%;
	right: -10%;
	animation: float 6s ease-in-out infinite;
}

.benefits-blob-2 {
	width: 350px;
	height: 350px;
	background: linear-gradient(
		135deg,
		var(--color-primary-dark),
		var(--color-primary)
	);
	bottom: 5%;
	left: -5%;
	animation: float 8s ease-in-out infinite 1s;
}

.benefits-glow-1 {
	width: 500px;
	height: 500px;
	background: radial-gradient(
		circle,
		rgba(64, 224, 208, 0.3),
		transparent
	);
	top: 30%;
	left: 50%;
	transform: translateX(-50%);
	filter: blur(40px);
	animation: pulse 4s ease-in-out infinite;
}

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

.benefits-header {
	text-align: center;
	margin-bottom: 3.5rem;
}

.benefits-badge {
	display: inline-block;
	padding: 0.75rem 1.5rem;
	background: linear-gradient(
		135deg,
		rgba(64, 224, 208, 0.15),
		rgba(64, 224, 208, 0.05)
	);
	border: 1px solid rgba(64, 224, 208, 0.3);
	border-radius: 50px;
	font-size: 0.875rem;
	font-weight: 600;
	color: var(--color-primary);
	margin-bottom: 1.5rem;
	backdrop-filter: blur(10px);
	animation: slideDown 0.6s ease-out;
}

.benefits-title {
	font-size: 2.5rem;
	font-weight: 700;
	margin-bottom: 1rem;
	animation: slideDown 0.8s ease-out 0.1s both;
}

.benefits-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;
}

.benefits-subtitle {
	font-size: 1.125rem;
	color: var(--color-text-light);
	max-width: 700px;
	margin: 0 auto;
	line-height: 1.8;
	animation: slideDown 1s ease-out 0.2s both;
}

.benefits-cards-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
	margin-bottom: 3.5rem;
}

.benefit-card {
	position: relative;
	padding: 2.5rem 2rem;
	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);
	height: 100%;
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
	overflow: hidden;
	animation: slideUp 0.6s ease-out both;
}

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

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

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

.benefit-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
	);
}

.benefit-card::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(
		135deg,
		rgba(64, 224, 208, 0.1),
		transparent
	);
	opacity: 0;
	transition: opacity 0.4s ease;
	pointer-events: none;
	border-radius: 16px;
}

.benefit-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 20px 40px rgba(64, 224, 208, 0.2),
		0 0 60px rgba(64, 224, 208, 0.1);
	border-color: rgba(64, 224, 208, 0.4);
}

.benefit-card:hover::after {
	opacity: 1;
}

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

.benefit-icon-wrapper {
	width: 60px;
	height: 60px;
	min-width: 60px;
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(
		135deg,
		rgba(64, 224, 208, 0.2),
		rgba(64, 224, 208, 0.1)
	);
	border: 1px solid rgba(64, 224, 208, 0.3);
	color: var(--color-primary);
	transition: all 0.3s ease;
}

.benefit-icon-wrapper svg {
	width: 32px;
	height: 32px;
	stroke-width: 2;
}

.benefit-card:hover .benefit-icon-wrapper {
	transform: scale(1.1);
	background: linear-gradient(
		135deg,
		rgba(64, 224, 208, 0.3),
		rgba(64, 224, 208, 0.15)
	);
	border-color: rgba(64, 224, 208, 0.5);
	box-shadow: 0 0 20px rgba(64, 224, 208, 0.3);
}

.student-color {
	background: linear-gradient(
		135deg,
		rgba(100, 200, 255, 0.2),
		rgba(100, 200, 255, 0.1)
	);
	border-color: rgba(100, 200, 255, 0.3);
	color: #64c8ff;
}

.teacher-color {
	background: linear-gradient(
		135deg,
		rgba(255, 180, 100, 0.2),
		rgba(255, 180, 100, 0.1)
	);
	border-color: rgba(255, 180, 100, 0.3);
	color: #ffb464;
}

.parent-color {
	background: linear-gradient(
		135deg,
		rgba(150, 100, 255, 0.2),
		rgba(150, 100, 255, 0.1)
	);
	border-color: rgba(150, 100, 255, 0.3);
	color: #9664ff;
}

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

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

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

.benefit-features li {
	font-size: 0.95rem;
	color: var(--color-text-light);
	padding-left: 1.75rem;
	position: relative;
	transition: all 0.3s ease;
}

.benefit-features li::before {
	content: "✓";
	position: absolute;
	left: 0;
	font-weight: 900;
	background: linear-gradient(
		135deg,
		var(--color-primary),
		var(--color-primary-dark)
	);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	font-size: 1.1rem;
}

.benefit-card:hover .benefit-features li {
	color: var(--color-text-dark);
}

.benefit-card-accent {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(
		90deg,
		var(--color-primary),
		var(--color-primary-dark),
		transparent
	);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.4s
		cubic-bezier(0.23, 1, 0.32, 1);
}

.benefit-card:hover .benefit-card-accent {
	transform: scaleX(1);
}

.benefits-stats {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
	padding-top: 2rem;
	border-top: 1px solid rgba(64, 224, 208, 0.1);
	animation: slideUp 0.8s ease-out 0.4s both;
}

.stat-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: 0.75rem;
}

.stat-icon {
	font-size: 2.5rem;
	animation: bounce 2s ease-in-out infinite;
}

.stat-value {
	font-size: 2.5rem;
	font-weight: 900;
	background: linear-gradient(
		135deg,
		var(--color-primary),
		var(--color-primary-dark)
	);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	letter-spacing: -1px;
}

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

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

.demo {
	position: relative;
	overflow: hidden;
}

.demo-blob,
.demo-glow {
	position: absolute;
	border-radius: 50%;
	opacity: 0.12;
	pointer-events: none;
	z-index: 0;
}

.demo-blob-1 {
	width: 450px;
	height: 450px;
	background: linear-gradient(
		135deg,
		var(--color-primary),
		var(--color-primary-dark)
	);
	top: -10%;
	left: -15%;
	animation: float 7s ease-in-out infinite;
}

.demo-blob-2 {
	width: 380px;
	height: 380px;
	background: linear-gradient(
		135deg,
		var(--color-primary-dark),
		var(--color-primary)
	);
	bottom: -5%;
	right: -10%;
	animation: float 9s ease-in-out infinite 1.5s;
}

.demo-glow-1 {
	width: 600px;
	height: 600px;
	background: radial-gradient(
		circle,
		rgba(64, 224, 208, 0.25),
		transparent
	);
	top: 25%;
	left: 50%;
	transform: translateX(-50%);
	filter: blur(50px);
	animation: pulse 5s ease-in-out infinite;
}

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

.demo-header {
	text-align: center;
	margin-bottom: 3.5rem;
}

.demo-badge {
	display: inline-block;
	padding: 0.75rem 1.5rem;
	background: linear-gradient(
		135deg,
		rgba(64, 224, 208, 0.15),
		rgba(64, 224, 208, 0.05)
	);
	border: 1px solid rgba(64, 224, 208, 0.3);
	border-radius: 50px;
	font-size: 0.875rem;
	font-weight: 600;
	color: var(--color-primary);
	margin-bottom: 1.5rem;
	backdrop-filter: blur(10px);
	animation: slideDown 0.6s ease-out;
}

.demo-title {
	font-size: 2.5rem;
	font-weight: 700;
	margin-bottom: 1rem;
	animation: slideDown 0.8s ease-out 0.1s both;
}

.demo-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;
}

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

.demo-container {
	max-width: 1000px;
	margin: 0 auto 4rem;
}

.video-preview {
	position: relative;
	aspect-ratio: 16/9;
	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: 20px;
	backdrop-filter: blur(20px);
	padding: 2rem;
	overflow: hidden;
	animation: slideUp 0.8s ease-out 0.3s both;
	box-shadow: 0 20px 40px rgba(64, 224, 208, 0.1);
	transition: all 0.4s ease;
}

.video-preview:hover {
	box-shadow: 0 30px 60px rgba(64, 224, 208, 0.15),
		0 0 60px rgba(64, 224, 208, 0.1);
	border-color: rgba(64, 224, 208, 0.4);
	transform: translateY(-4px);
}

.video-corner {
	position: absolute;
	width: 40px;
	height: 40px;
	border: 2px solid rgba(64, 224, 208, 0.3);
}

.video-corner-tl {
	top: 0;
	left: 0;
	border-right: none;
	border-bottom: none;
	border-radius: 0 0 0 0;
}

.video-corner-tr {
	top: 0;
	right: 0;
	border-left: none;
	border-bottom: none;
	border-radius: 0 0 0 0;
}

.video-corner-bl {
	bottom: 0;
	left: 0;
	border-right: none;
	border-top: none;
	border-radius: 0 0 0 0;
}

.video-corner-br {
	bottom: 0;
	right: 0;
	border-left: none;
	border-top: none;
	border-radius: 0 0 0 0;
}

.video-placeholder {
	width: 100%;
	height: 100%;
	background: linear-gradient(
		135deg,
		rgba(64, 224, 208, 0.08),
		rgba(64, 224, 208, 0.04)
	);
	border-radius: 16px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 1.5rem;
	cursor: pointer;
	border: 1px solid rgba(64, 224, 208, 0.15);
	transition: all 0.3s ease;
}

.video-preview:hover .video-placeholder {
	background: linear-gradient(
		135deg,
		rgba(64, 224, 208, 0.12),
		rgba(64, 224, 208, 0.08)
	);
	border-color: rgba(64, 224, 208, 0.25);
}

.play-button-wrapper {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.75rem;
}

.play-button {
	position: relative;
	width: 80px;
	height: 80px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	animation: pulse 2s ease-in-out infinite;
	transition: all 0.3s ease;
}

.play-button:hover {
	transform: scale(1.1);
}

.play-button svg {
	filter: drop-shadow(
		0 0 15px rgba(64, 224, 208, 0.4)
	);
	transition: all 0.3s ease;
}

.play-button:hover svg {
	filter: drop-shadow(
		0 0 25px rgba(64, 224, 208, 0.6)
	);
}

.play-label {
	font-size: 0.95rem;
	font-weight: 600;
	color: var(--color-primary);
	letter-spacing: 0.5px;
	animation: fadeIn 0.8s ease-out 0.5s both;
}

.demo-features {
	display: flex;
	gap: 1rem;
	flex-wrap: wrap;
	justify-content: center;
	padding: 0 1rem;
	margin-top: 1rem;
	animation: slideUp 0.8s ease-out 0.4s both;
}

.feature-pill {
	display: flex;
	align-items: center;
	gap: 0.6rem;
	padding: 0.65rem 1.25rem;
	background: linear-gradient(
		135deg,
		rgba(64, 224, 208, 0.15),
		rgba(64, 224, 208, 0.08)
	);
	border: 1px solid rgba(64, 224, 208, 0.25);
	border-radius: 20px;
	font-size: 0.9rem;
	font-weight: 600;
	color: var(--color-primary);
	backdrop-filter: blur(10px);
	transition: all 0.3s ease;
}

.feature-pill:hover {
	background: linear-gradient(
		135deg,
		rgba(64, 224, 208, 0.25),
		rgba(64, 224, 208, 0.15)
	);
	border-color: rgba(64, 224, 208, 0.4);
	box-shadow: 0 8px 20px rgba(64, 224, 208, 0.2);
	transform: translateY(-2px);
}

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

.demo-cta-section {
	background: linear-gradient(
		135deg,
		rgba(64, 224, 208, 0.1),
		rgba(64, 224, 208, 0.05)
	);
	border: 1px solid rgba(64, 224, 208, 0.15);
	border-radius: 16px;
	padding: 3rem;
	backdrop-filter: blur(10px);
	text-align: center;
	animation: slideUp 0.8s ease-out 0.5s both;
	max-width: 800px;
	margin: 0 auto;
}

.demo-info-title {
	font-size: 1.75rem;
	font-weight: 700;
	color: var(--color-text-dark);
	margin: 0 0 1rem 0;
	background: linear-gradient(
		135deg,
		var(--color-text-dark),
		var(--color-text)
	);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.demo-info-text {
	font-size: 1.05rem;
	color: var(--color-text-light);
	margin: 0 0 2rem 0;
	line-height: 1.7;
}

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

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

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

.demo-btn.btn-outline:hover {
	transform: translateY(-2px);
	border-color: var(--color-primary);
	color: var(--color-primary);
}

.demo-container {
	max-width: 800px;
	margin: 0 auto 4rem;
}

.video-placeholder {
	aspect-ratio: 16/9;
	background: linear-gradient(
		135deg,
		rgba(64, 224, 208, 0.1),
		rgba(38, 180, 170, 0.2)
	);
	border-radius: var(--border-radius-lg);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: var(--spacing-lg);
	cursor: pointer;
	border: 2px solid #e0e7eb;
	transition: var(--transition-base);
}

.video-placeholder:hover {
	transform: scale(1.02);
	border-color: var(--color-primary);
}

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

.testimonials {
	position: relative;
	overflow: hidden;
}

.testimonials-blob,
.testimonials-glow {
	position: absolute;
	border-radius: 50%;
	opacity: 0.12;
	pointer-events: none;
	z-index: 0;
}

.testimonials-blob-1 {
	width: 420px;
	height: 420px;
	background: linear-gradient(
		135deg,
		var(--color-primary),
		var(--color-primary-dark)
	);
	top: 15%;
	left: -10%;
	animation: float 7s ease-in-out infinite;
}

.testimonials-blob-2 {
	width: 360px;
	height: 360px;
	background: linear-gradient(
		135deg,
		var(--color-primary-dark),
		var(--color-primary)
	);
	bottom: 10%;
	right: -5%;
	animation: float 8s ease-in-out infinite 1s;
}

.testimonials-glow-1 {
	width: 550px;
	height: 550px;
	background: radial-gradient(
		circle,
		rgba(64, 224, 208, 0.25),
		transparent
	);
	top: 35%;
	right: 10%;
	filter: blur(50px);
	animation: pulse 5s ease-in-out infinite;
}

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

.testimonials-header {
	text-align: center;
	margin-bottom: 3.5rem;
}

.testimonials-badge {
	display: inline-block;
	padding: 0.75rem 1.5rem;
	background: linear-gradient(
		135deg,
		rgba(64, 224, 208, 0.15),
		rgba(64, 224, 208, 0.05)
	);
	border: 1px solid rgba(64, 224, 208, 0.3);
	border-radius: 50px;
	font-size: 0.875rem;
	font-weight: 600;
	color: var(--color-primary);
	margin-bottom: 1.5rem;
	backdrop-filter: blur(10px);
	animation: slideDown 0.6s ease-out;
}

.testimonials-title {
	font-size: 2.5rem;
	font-weight: 700;
	margin-bottom: 1rem;
	animation: slideDown 0.8s ease-out 0.1s both;
}

.testimonials-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;
}

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

.testimonials-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
	margin-bottom: 3.5rem;
	align-items: stretch;
}

.testimonial-card {
	position: relative;
	padding: 2.5rem 2rem;
	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);
	height: 100%;
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
	justify-content: space-between;
	overflow: hidden;
	animation: slideUp 0.6s ease-out both;
}

.testimonial-content {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
	min-height: 140px;
}

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

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

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

.testimonial-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
	);
}

.testimonial-card::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(
		135deg,
		rgba(64, 224, 208, 0.1),
		transparent
	);
	opacity: 0;
	transition: opacity 0.4s ease;
	pointer-events: none;
	border-radius: 16px;
}

.testimonial-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 20px 40px rgba(64, 224, 208, 0.2),
		0 0 60px rgba(64, 224, 208, 0.1);
	border-color: rgba(64, 224, 208, 0.4);
}

.testimonial-card:hover::after {
	opacity: 1;
}

.testimonial-header {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap: 1rem;
}

.star-rating {
	display: flex;
	gap: 0.25rem;
}

.star {
	font-size: 1.1rem;
	color: #fbbf24;
	text-shadow: 0 2px 4px rgba(251, 191, 36, 0.3);
}

.quote-mark {
	font-size: 2.5rem;
	font-weight: 900;
	color: var(--color-primary);
	opacity: 0.2;
	line-height: 1;
	align-self: flex-start;
}

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

.testimonial-author-info {
	display: flex;
	align-items: center;
	gap: 1rem;
	padding-top: 1rem;
	border-top: 1px solid rgba(64, 224, 208, 0.1);
	min-height: 70px;
}

.author-avatar {
	width: 50px;
	height: 50px;
	min-width: 50px;
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5rem;
	border: 1px solid rgba(64, 224, 208, 0.2);
	background: linear-gradient(
		135deg,
		rgba(64, 224, 208, 0.15),
		rgba(64, 224, 208, 0.08)
	);
	transition: all 0.3s ease;
}

.teacher-avatar {
	background: linear-gradient(
		135deg,
		rgba(100, 200, 255, 0.15),
		rgba(100, 200, 255, 0.08)
	);
	border-color: rgba(100, 200, 255, 0.3);
}

.principal-avatar {
	background: linear-gradient(
		135deg,
		rgba(255, 180, 100, 0.15),
		rgba(255, 180, 100, 0.08)
	);
	border-color: rgba(255, 180, 100, 0.3);
}

.parent-avatar {
	background: linear-gradient(
		135deg,
		rgba(150, 100, 255, 0.15),
		rgba(150, 100, 255, 0.08)
	);
	border-color: rgba(150, 100, 255, 0.3);
}

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

.author-details {
	display: flex;
	flex-direction: column;
	gap: 0.25rem;
	flex: 1;
	justify-content: center;
}

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

.author-role {
	font-size: 0.85rem;
	color: var(--color-text-light);
	font-weight: 500;
	line-height: 1.3;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.testimonials-stats {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
	padding-top: 2rem;
	border-top: 1px solid rgba(64, 224, 208, 0.1);
	animation: slideUp 0.8s ease-out 0.4s both;
}

.testimonial-stat {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: 0.75rem;
}

.stat-number {
	font-size: 2.5rem;
	font-weight: 900;
	background: linear-gradient(
		135deg,
		var(--color-primary),
		var(--color-primary-dark)
	);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	letter-spacing: -1px;
}

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

.quote-icon {
	font-size: 3rem;
	color: var(--color-primary);
	opacity: 0.3;
	line-height: 1;
	align-self: center;
	margin: 0;
}

.testimonial p {
	font-style: italic;
	color: var(--color-text);
	margin: 0;
	line-height: 1.8;
}

.testimonial-author {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
	justify-content: flex-end;
	align-items: center;
}

.testimonial-author strong {
	color: var(--color-text);
}

.testimonial-author span {
	color: var(--color-text-light);
	font-size: 0.875rem;
}

.pricing-card {
	border: 2px solid #e0e7eb;
	position: relative;
	display: flex;
	flex-direction: column;
	height: 100%;
}

.pricing-card.featured {
	border-color: var(--color-primary);
	transform: scale(1.05);
}

.popular-badge {
	position: absolute;
	top: -12px;
	left: 50%;
	transform: translateX(-50%);
	background: var(--color-primary);
	color: white;
	padding: 6px 16px;
	border-radius: 9999px;
	font-size: 0.875rem;
	font-weight: 600;
}

.price {
	text-align: center;
	margin: 1.5rem 0;
}

.currency,
.amount {
	font-weight: 700;
	color: var(--color-primary);
}

.amount {
	font-size: 3rem;
}

.period {
	color: var(--color-text-light);
}

.features-list {
	list-style: none;
	margin-bottom: var(--spacing-xl);
	flex-grow: 1;
}

.features-list li {
	padding: 0.5rem 0;
	padding-left: 30px;
	position: relative;
}

.features-list li::before {
	content: "";
	position: absolute;
	left: 0;
	color: var(--color-primary);
	font-weight: 700;
	font-size: 1.25rem;
}

.pricing-card .btn {
	width: 100%;
	margin-top: auto;
}

.cta-section {
	padding: var(--spacing-3xl) 0;
	background: linear-gradient(
		135deg,
		var(--color-primary),
		var(--color-primary-dark)
	);
	color: white;
	text-align: center;
}

.cta-content h2 {
	font-size: 2.5rem;
	margin-bottom: var(--spacing-lg);
	color: white;
}

.cta-content p {
	font-size: 1.25rem;
	margin-bottom: var(--spacing-xl);
}

.cta-buttons {
	display: flex;
	gap: var(--spacing-md);
	justify-content: center;
	flex-wrap: wrap;
}

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

.cta-section .btn-secondary {
	border-color: white;
	color: white;
}

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

/* For-Schools Section */
.for-schools {
	position: relative;
	padding: 4rem 0;
	overflow: hidden;
	background: linear-gradient(
		135deg,
		rgba(64, 224, 208, 0.05) 0%,
		rgba(38, 180, 170, 0.05) 100%
	);
}

.schools-blob,
.schools-glow-1 {
	position: absolute;
	border-radius: 50%;
	filter: blur(60px);
	animation: float 6s ease-in-out infinite;
	pointer-events: none;
}

.schools-blob-1 {
	width: 300px;
	height: 300px;
	background: linear-gradient(
		135deg,
		rgba(64, 224, 208, 0.15),
		rgba(100, 200, 255, 0.1)
	);
	top: -10%;
	left: -5%;
	opacity: 0.12;
}

.schools-blob-2 {
	width: 250px;
	height: 250px;
	background: linear-gradient(
		135deg,
		rgba(64, 224, 208, 0.1),
		rgba(150, 100, 255, 0.1)
	);
	bottom: 10%;
	right: 5%;
	opacity: 0.1;
	animation-delay: -3s;
}

.schools-glow-1 {
	width: 200px;
	height: 200px;
	background: radial-gradient(
		circle,
		rgba(64, 224, 208, 0.2),
		transparent
	);
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	opacity: 0.08;
	animation: pulse 4s ease-in-out infinite;
}

.schools-header {
	text-align: center;
	margin-bottom: 3rem;
	position: relative;
	z-index: 1;
}

.schools-badge {
	display: inline-block;
	padding: 0.5rem 1rem;
	background: rgba(64, 224, 208, 0.1);
	border: 1px solid rgba(64, 224, 208, 0.3);
	border-radius: 50px;
	font-size: 0.85rem;
	font-weight: 600;
	color: var(--color-primary);
	backdrop-filter: blur(10px);
	margin-bottom: 1rem;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.schools-title {
	font-size: 2.5rem;
	line-height: 1.2;
	margin-bottom: 1rem;
	font-weight: 800;
	color: var(--text-dark);
}

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

.schools-subtitle {
	font-size: 1.1rem;
	color: var(--text-secondary);
	max-width: 600px;
	margin: 0 auto;
	line-height: 1.6;
}

.schools-features {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
	margin: 3rem 0;
	position: relative;
	z-index: 1;
}

.schools-features .feature-card {
	background: rgba(255, 255, 255, 0.5);
	border: 1px solid rgba(64, 224, 208, 0.2);
	backdrop-filter: blur(20px);
	border-radius: 12px;
	padding: 2rem;
	position: relative;
	transition: all 0.3s
		cubic-bezier(0.25, 0.46, 0.45, 0.94);
	overflow: hidden;
}

.schools-features .feature-card::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(
		90deg,
		var(--color-primary),
		var(--color-primary-dark),
		transparent
	);
	opacity: 0;
	transition: opacity 0.3s ease;
}

.schools-features .feature-card:hover {
	transform: translateY(-5px);
	background: rgba(255, 255, 255, 0.6);
	border-color: rgba(64, 224, 208, 0.4);
	box-shadow: 0 10px 40px rgba(64, 224, 208, 0.15);
}

.schools-features .feature-card:hover::before {
	opacity: 1;
}

.feature-icon-wrapper {
	width: 50px;
	height: 50px;
	background: linear-gradient(
		135deg,
		rgba(64, 224, 208, 0.1),
		rgba(100, 200, 255, 0.1)
	);
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 1rem;
	color: var(--color-primary);
	flex-shrink: 0;
}

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

.feature-title {
	font-size: 1.25rem;
	font-weight: 700;
	color: var(--text-dark);
	margin-bottom: 0.75rem;
}

.feature-description {
	font-size: 0.95rem;
	color: var(--text-secondary);
	line-height: 1.6;
	margin-bottom: 1.25rem;
}

.feature-points {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
	list-style: none;
	padding: 0;
}

.feature-points li {
	font-size: 0.9rem;
	color: var(--text-secondary);
	padding-left: 1.25rem;
	position: relative;
}

.feature-points li::before {
	content: "✓";
	position: absolute;
	left: 0;
	color: var(--color-primary);
	font-weight: bold;
}

.schools-benefits {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 2rem;
	margin: 3rem 0;
	position: relative;
	z-index: 1;
}

.benefit-item {
	text-align: center;
	padding: 1.5rem;
	border-radius: 10px;
	background: rgba(64, 224, 208, 0.05);
	border: 1px solid rgba(64, 224, 208, 0.15);
	backdrop-filter: blur(10px);
	transition: all 0.3s
		cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.benefit-item:hover {
	background: rgba(64, 224, 208, 0.1);
	border-color: rgba(64, 224, 208, 0.3);
	transform: translateY(-3px);
}

.benefit-number {
	font-size: 2rem;
	font-weight: 800;
	background: linear-gradient(
		135deg,
		var(--color-primary),
		#64c8ff
	);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	margin-bottom: 0.5rem;
}

.benefit-label {
	font-size: 0.9rem;
	color: var(--text-secondary);
	font-weight: 600;
}

.schools-cta {
	background: linear-gradient(
		135deg,
		rgba(64, 224, 208, 0.08),
		rgba(100, 200, 255, 0.08)
	);
	border: 1px solid rgba(64, 224, 208, 0.2);
	backdrop-filter: blur(20px);
	border-radius: 12px;
	padding: 3rem 2rem;
	text-align: center;
	margin-top: 3rem;
	position: relative;
	z-index: 1;
}

.schools-cta-title {
	font-size: 1.75rem;
	font-weight: 700;
	color: var(--text-dark);
	margin-bottom: 0.75rem;
}

.schools-cta-text {
	font-size: 1rem;
	color: var(--text-secondary);
	line-height: 1.6;
	margin-bottom: 1.5rem;
	max-width: 500px;
	margin-left: auto;
	margin-right: auto;
}

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

.schools-btn {
	padding: 0.75rem 2rem;
	font-size: 1rem;
}

/* Pricing Section */
.pricing {
	position: relative;
	padding: 4rem 0;
	overflow: hidden;
	background: linear-gradient(
		135deg,
		rgba(64, 224, 208, 0.05) 0%,
		rgba(38, 180, 170, 0.05) 100%
	);
}

.pricing-blob,
.pricing-glow-1 {
	position: absolute;
	border-radius: 50%;
	filter: blur(60px);
	animation: float 6s ease-in-out infinite;
	pointer-events: none;
}

.pricing-blob-1 {
	width: 300px;
	height: 300px;
	background: linear-gradient(
		135deg,
		rgba(64, 224, 208, 0.15),
		rgba(100, 200, 255, 0.1)
	);
	top: -10%;
	left: -5%;
	opacity: 0.12;
}

.pricing-blob-2 {
	width: 250px;
	height: 250px;
	background: linear-gradient(
		135deg,
		rgba(64, 224, 208, 0.1),
		rgba(150, 100, 255, 0.1)
	);
	bottom: 10%;
	right: 5%;
	opacity: 0.1;
	animation-delay: -3s;
}

.pricing-glow-1 {
	width: 200px;
	height: 200px;
	background: radial-gradient(
		circle,
		rgba(64, 224, 208, 0.2),
		transparent
	);
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	opacity: 0.08;
	animation: pulse 4s ease-in-out infinite;
}

.pricing-header {
	text-align: center;
	margin-bottom: 3rem;
	position: relative;
	z-index: 1;
}

.pricing-badge {
	display: inline-block;
	padding: 0.5rem 1rem;
	background: rgba(64, 224, 208, 0.1);
	border: 1px solid rgba(64, 224, 208, 0.3);
	border-radius: 50px;
	font-size: 0.85rem;
	font-weight: 600;
	color: var(--color-primary);
	backdrop-filter: blur(10px);
	margin-bottom: 1rem;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.pricing-title {
	font-size: 2.5rem;
	line-height: 1.2;
	margin-bottom: 1rem;
	font-weight: 800;
	color: var(--text-dark);
}

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

.pricing-subtitle {
	font-size: 1.1rem;
	color: var(--text-secondary);
	max-width: 600px;
	margin: 0 auto;
	line-height: 1.6;
}

.pricing-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
	margin: 3rem 0 4rem;
	position: relative;
	z-index: 1;
}

.pricing-card {
	background: rgba(255, 255, 255, 0.75);
	border: 2px solid rgba(64, 224, 208, 0.3);
	backdrop-filter: blur(30px);
	border-radius: 16px;
	padding: 2.5rem 2rem;
	position: relative;
	transition: all 0.3s
		cubic-bezier(0.25, 0.46, 0.45, 0.94);
	overflow: visible;
	display: flex;
	flex-direction: column;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.05);
}

.pricing-card:hover {
	transform: translateY(-8px);
	background: rgba(255, 255, 255, 0.88);
	border-color: rgba(64, 224, 208, 0.5);
	box-shadow: 0 20px 60px rgba(64, 224, 208, 0.2);
}

.pricing-card.featured {
	border-color: rgba(64, 224, 208, 0.5);
	background: rgba(255, 255, 255, 0.9);
	box-shadow: 0 20px 60px rgba(64, 224, 208, 0.25);
	transform: scale(1.05);
}

.pricing-card.featured:hover {
	transform: scale(1.05) translateY(-8px);
	background: rgba(255, 255, 255, 0.95);
	border-color: rgba(64, 224, 208, 0.6);
	box-shadow: 0 30px 80px rgba(64, 224, 208, 0.35);
}

.popular-badge {
	position: absolute;
	top: -0.625rem;
	left: 50%;
	transform: translateX(-50%);
	background: linear-gradient(
		135deg,
		var(--color-primary),
		#64c8ff
	);
	color: white;
	padding: 0.35rem 0.9rem;
	border-radius: 50px;
	font-size: 0.65rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	z-index: 10;
	box-shadow: 0 4px 15px rgba(64, 224, 208, 0.2);
	white-space: nowrap;
}

.card-header {
	margin-bottom: 1.5rem;
}

.plan-name {
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--text-dark);
	margin-bottom: 0.25rem;
}

.plan-description {
	font-size: 0.85rem;
	color: var(--text-secondary);
}

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

.price-amount {
	display: flex;
	align-items: baseline;
	gap: 0.25rem;
	margin-bottom: 0.5rem;
}

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

.currency {
	font-size: 1.25rem;
	color: var(--text-secondary);
	font-weight: 600;
}

.currency-label {
	font-size: 1.75rem;
	font-weight: 800;
	background: linear-gradient(
		135deg,
		var(--color-primary),
		#64c8ff
	);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.amount {
	font-size: 3rem;
	font-weight: 800;
	color: var(--text-dark);
}

.period {
	font-size: 1rem;
	color: var(--text-secondary);
	font-weight: 600;
}

.price-note {
	font-size: 0.85rem;
	color: var(--text-secondary);
}

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

.features-list li {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	font-size: 0.95rem;
	color: var(--text-secondary);
}

.features-list li svg {
	width: 20px;
	height: 20px;
	color: var(--color-primary);
	flex-shrink: 0;
	stroke-width: 3;
}

.plan-btn {
	width: 100%;
	padding: 0.875rem 1.5rem;
	font-size: 1rem;
	font-weight: 600;
}

.pricing-comparison {
	background: rgba(64, 224, 208, 0.05);
	border: 1px solid rgba(64, 224, 208, 0.15);
	backdrop-filter: blur(10px);
	border-radius: 12px;
	padding: 2rem;
	margin-top: 3rem;
	position: relative;
	z-index: 1;
}

.comparison-title {
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--text-dark);
	margin-bottom: 2rem;
	text-align: center;
}

.comparison-table {
	display: grid;
	gap: 1.5rem;
}

.comparison-row {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr 1fr;
	gap: 1rem;
	align-items: center;
	padding: 1rem;
	border-bottom: 1px solid rgba(64, 224, 208, 0.1);
}

.comparison-row:last-child {
	border-bottom: none;
}

.feature-name {
	font-weight: 600;
	color: var(--text-dark);
}

.feature-value {
	font-size: 0.95rem;
	color: var(--text-secondary);
	text-align: center;
}

.footer {
	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-decoration {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	pointer-events: none;
	z-index: 0;
	overflow: hidden;
}

.footer-blob {
	position: absolute;
	border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
	opacity: 0.08;
	mix-blend-mode: screen;
	animation: float 30s infinite ease-in-out;
}

.footer-blob-1 {
	width: 500px;
	height: 500px;
	background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
	top: -100px;
	left: -100px;
	animation-delay: 0s;
}

.footer-blob-2 {
	width: 450px;
	height: 450px;
	background: linear-gradient(135deg, var(--color-secondary), var(--color-primary));
	bottom: -80px;
	right: -50px;
	animation-delay: 3s;
	border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
}

.footer-glow-1 {
	position: absolute;
	width: 400px;
	height: 400px;
	background: radial-gradient(circle, rgba(64, 224, 208, 0.15), transparent);
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	border-radius: 50%;
	filter: blur(80px);
	animation: pulse 6s ease-in-out infinite;
	pointer-events: none;
}

.footer-grid {
	position: absolute;
	width: 100%;
	height: 100%;
	background-image:
		linear-gradient(rgba(64, 224, 208, 0.02) 1px, transparent 1px),
		linear-gradient(90deg, rgba(64, 224, 208, 0.02) 1px, transparent 1px);
	background-size: 50px 50px;
	opacity: 0.5;
}

.footer .container {
	position: relative;
	z-index: 1;
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 var(--spacing-lg);
}

.footer-top {
	display: grid;
	grid-template-columns: 350px 1fr;
	gap: var(--spacing-3xl);
	margin-bottom: var(--spacing-3xl);
	animation: fadeInUp 0.8s ease-out 0.2s both;
}

.footer-brand-section {
	display: flex;
	flex-direction: column;
	gap: var(--spacing-lg);
}

.footer-logo-wrapper {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	margin-bottom: var(--spacing-sm);
}

.footer-logo {
	width: 48px;
	height: 48px;
	flex-shrink: 0;
	filter: drop-shadow(0 4px 12px rgba(64, 224, 208, 0.2));
	transition: all 0.3s ease;
}

.footer-logo-wrapper:hover .footer-logo {
	filter: drop-shadow(0 6px 16px rgba(64, 224, 208, 0.3));
	transform: scale(1.05);
}

.footer-brand-name {
	font-size: 1.5rem;
	font-weight: 800;
	background: linear-gradient(135deg, white, rgba(255, 255, 255, 0.8));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	letter-spacing: -0.5px;
}

.footer-brand-description {
	font-size: 0.95rem;
	color: rgba(255, 255, 255, 0.7);
	line-height: 1.7;
	max-width: 280px;
}

.footer-social {
	display: flex;
	gap: 1rem;
	margin: var(--spacing-md) 0;
}

.social-link {
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, rgba(64, 224, 208, 0.15), rgba(64, 224, 208, 0.05));
	border: 1px solid rgba(64, 224, 208, 0.3);
	border-radius: 10px;
	color: var(--color-primary);
	transition: all 0.3s ease;
	text-decoration: none;
}

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

.social-link:hover {
	background: linear-gradient(135deg, rgba(64, 224, 208, 0.25), rgba(64, 224, 208, 0.1));
	border-color: var(--color-primary);
	transform: translateY(-3px);
	box-shadow: 0 8px 16px rgba(64, 224, 208, 0.2);
}

.footer-newsletter {
	background: linear-gradient(135deg, rgba(64, 224, 208, 0.08), rgba(64, 224, 208, 0.03));
	border: 1px solid rgba(64, 224, 208, 0.2);
	border-radius: 12px;
	padding: var(--spacing-md);
	margin-top: auto;
}

.newsletter-title {
	font-size: 0.9rem;
	font-weight: 700;
	color: white;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	margin-bottom: 0.75rem;
}

.newsletter-form {
	display: flex;
	gap: 0.5rem;
	margin-bottom: 0.75rem;
}

.newsletter-input {
	flex: 1;
	padding: 10px 12px;
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(64, 224, 208, 0.2);
	border-radius: 8px;
	color: white;
	font-size: 0.9rem;
	transition: all 0.3s ease;
}

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

.newsletter-input:focus {
	outline: none;
	border-color: var(--color-primary);
	background: rgba(255, 255, 255, 0.08);
	box-shadow: 0 0 12px rgba(64, 224, 208, 0.2);
}

.newsletter-submit {
	padding: 10px 14px;
	background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
	border: none;
	border-radius: 8px;
	color: white;
	cursor: pointer;
	transition: all 0.3s ease;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 600;
}

.newsletter-submit:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 16px rgba(64, 224, 208, 0.3);
}

.submit-icon {
	font-size: 1.1rem;
	transition: transform 0.3s ease;
}

.newsletter-submit:hover .submit-icon {
	transform: translateX(2px);
}

.newsletter-note {
	font-size: 0.75rem;
	color: rgba(255, 255, 255, 0.5);
	line-height: 1.4;
}

.footer-links-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: var(--spacing-2xl);
}

.footer-column {
	display: flex;
	flex-direction: column;
	gap: var(--spacing-sm);
	animation: fadeInUp 0.8s ease-out 0.3s both;
}

.footer-column:nth-child(1) {
	animation-delay: 0.3s;
}

.footer-column:nth-child(2) {
	animation-delay: 0.4s;
}

.footer-column:nth-child(3) {
	animation-delay: 0.5s;
}

.footer-column:nth-child(4) {
	animation-delay: 0.6s;
}

.column-title {
	font-size: 0.9rem;
	font-weight: 700;
	color: white;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	margin-bottom: 0.5rem;
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.column-title::before {
	content: "";
	width: 3px;
	height: 3px;
	background: var(--color-primary);
	border-radius: 50%;
	display: inline-block;
}

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

.column-link {
	color: rgba(255, 255, 255, 0.7);
	text-decoration: none;
	font-size: 0.9rem;
	transition: all 0.3s ease;
	position: relative;
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	width: fit-content;
}

.column-link::before {
	content: "→";
	opacity: 0;
	transform: translateX(-8px);
	transition: all 0.3s ease;
	font-size: 0.9rem;
}

.column-link:hover {
	color: var(--color-primary);
	transform: translateX(4px);
}

.column-link:hover::before {
	opacity: 1;
	transform: translateX(0);
}

.footer-divider {
	height: 1px;
	background: linear-gradient(90deg, transparent, rgba(64, 224, 208, 0.3), transparent);
	margin: var(--spacing-2xl) 0;
	animation: fadeInUp 0.8s ease-out 0.4s both;
}

.footer-bottom {
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	gap: var(--spacing-2xl);
	align-items: center;
	animation: fadeInUp 0.8s ease-out 0.5s both;
}

.footer-bottom-left {
	display: flex;
	align-items: center;
	gap: 1.5rem;
}

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

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

.status-badge {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 6px 12px;
	background: rgba(34, 197, 94, 0.1);
	border: 1px solid rgba(34, 197, 94, 0.3);
	border-radius: 6px;
	font-size: 0.8rem;
	color: rgba(34, 197, 94, 0.8);
	font-weight: 600;
	white-space: nowrap;
}

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

.footer-features {
	display: flex;
	gap: 1rem;
	flex-wrap: wrap;
	justify-content: center;
}

.feature-badge {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 6px 12px;
	background: linear-gradient(135deg, rgba(64, 224, 208, 0.1), rgba(64, 224, 208, 0.05));
	border: 1px solid rgba(64, 224, 208, 0.2);
	border-radius: 6px;
	font-size: 0.8rem;
	color: rgba(64, 224, 208, 0.8);
	font-weight: 600;
	white-space: nowrap;
	transition: all 0.3s ease;
}

.feature-badge:hover {
	background: linear-gradient(135deg, rgba(64, 224, 208, 0.15), rgba(64, 224, 208, 0.08));
	border-color: rgba(64, 224, 208, 0.4);
	box-shadow: 0 4px 12px rgba(64, 224, 208, 0.15);
}

.footer-bottom-right {
	display: flex;
	justify-content: flex-end;
}

.footer-cta {
	background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
	box-shadow: 0 6px 20px rgba(64, 224, 208, 0.25);
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.footer-cta::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;
}

.footer-cta:hover {
	transform: translateY(-2px);
	box-shadow: 0 10px 28px rgba(64, 224, 208, 0.35);
}

.footer-cta:hover::before {
	left: 100%;
}

/* Responsive Footer */
@media (max-width: 1200px) {
	.footer-links-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: var(--spacing-xl);
	}

	.footer-bottom {
		grid-template-columns: 1fr;
		gap: var(--spacing-lg);
		text-align: center;
	}

	.footer-bottom-left {
		justify-content: center;
		flex-direction: column;
	}

	.footer-bottom-right {
		justify-content: center;
	}
}

@media (max-width: 768px) {
	.footer {
		padding: var(--spacing-2xl) 0 var(--spacing-xl);
	}

	.footer-top {
		grid-template-columns: 1fr;
		gap: var(--spacing-2xl);
	}

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

	.footer-newsletter {
		order: -1;
	}

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

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

	.feature-badge {
		width: 100%;
		justify-content: center;
	}
}

@media (max-width: 480px) {
	.footer {
		padding: var(--spacing-xl) 0 var(--spacing-md);
	}

	.footer .container {
		padding: 0 var(--spacing-md);
	}

	.footer-top {
		gap: var(--spacing-xl);
	}

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

	.footer-brand-description {
		font-size: 0.85rem;
	}

	.footer-social {
		gap: 0.75rem;
	}

	.social-link {
		width: 36px;
		height: 36px;
	}

	.social-link svg {
		width: 18px;
		height: 18px;
	}

	.column-title {
		font-size: 0.85rem;
		margin-bottom: 0.75rem;
	}

	.column-link {
		font-size: 0.85rem;
	}

	.footer-bottom {
		gap: var(--spacing-sm);
	}

	.copyright {
		font-size: 0.8rem;
	}

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

	.status-badge {
		width: 100%;
		justify-content: center;
		font-size: 0.75rem;
	}

	.footer-cta {
		width: 100%;
	}
}

.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);
}

.modal {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100vw;
	height: 100vh;
	background: rgba(61, 81, 89, 0.75);
	z-index: 2000;
	align-items: center;
	justify-content: center;
	backdrop-filter: blur(4px);
	-webkit-backdrop-filter: blur(4px);
	padding: var(--spacing-md);
	border: none;
	max-width: none;
	max-height: none;
	margin: 0;
}

.modal::backdrop {
	background: rgba(61, 81, 89, 0.75);
	backdrop-filter: blur(4px);
	-webkit-backdrop-filter: blur(4px);
}

.modal[open] {
	display: flex;
	animation: fadeIn 0.3s ease-out;
}

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

.modal-content {
	background: white;
	padding: var(--spacing-2xl);
	border-radius: var(--border-radius-lg);
	max-width: 440px;
	width: 100%;
	position: relative;
	box-shadow: var(--shadow-xl);
	animation: slideUp var(--transition-base);
	max-height: 90vh;
	overflow-y: auto;
	border: none;
	margin: auto;
}

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

.modal h2 {
	font-size: var(--font-size-3xl);
	font-weight: 700;
	margin-bottom: var(--spacing-md);
	color: var(--color-text);
	padding-right: 2rem;
}

.close {
	position: absolute;
	top: var(--spacing-md);
	right: var(--spacing-md);
	font-size: 1.75rem;
	color: var(--color-text-light);
	cursor: pointer;
	background: transparent;
	border: none;
	width: 36px;
	height: 36px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	transition: var(--transition-base);
	line-height: 1;
}

.close:hover {
	background: var(--color-bg-light);
	color: var(--color-text);
}

.demo-form {
	display: flex;
	flex-direction: column;
	gap: var(--spacing-md);
}

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

.form-group label {
	font-weight: 600;
	color: var(--color-text);
	font-size: var(--font-size-base);
}

.form-group input,
.form-group select {
	padding: 14px 16px;
	border: 2px solid #e0e7eb;
	border-radius: var(--border-radius);
	font-family: inherit;
	font-size: var(--font-size-base);
	transition: var(--transition-base);
	background: white;
}

.form-group select {
	padding-right: 40px;
	appearance: none;
	background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232c3e50' 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 12px center;
	background-size: 20px;
	cursor: pointer;
}

.form-group input:focus,
.form-group select:focus {
	outline: none;
	border-color: var(--color-primary);
	box-shadow: 0 0 0 3px rgba(64, 224, 208, 0.15);
}

.form-group input::placeholder {
	color: #9ca3af;
}

.demo-form .btn-primary {
	margin-top: var(--spacing-sm);
	width: 100%;
	padding: 16px;
	font-size: var(--font-size-lg);
	font-weight: 600;
}

@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-template-columns: repeat(2, 1fr);
		gap: 1.5rem;
	}

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

	.schools-blob-1 {
		opacity: 0.08;
	}

	.schools-blob-2 {
		opacity: 0.06;
	}

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

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

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

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

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

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

	.amount {
		font-size: 2.5rem;
	}

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

@media (max-width: 768px) {
	.nav-container {
		padding: 0.875rem 1rem;
		gap: 1.5rem;
		min-height: 70px;
	}

	.navbar {
		min-height: 70px;
		box-shadow: 0 6px 24px rgba(0, 0, 0, 0.05);
	}

	.nav-brand {
		gap: 0.6rem;
		font-size: 1.1rem;
		font-weight: 700;
		flex-shrink: 0;
	}

	.logo {
		width: 36px;
		height: 36px;
		filter: drop-shadow(
			0 2px 8px rgba(64, 224, 208, 0.15)
		);
	}

	.nav-brand:hover .logo {
		transform: scale(1.08);
		filter: drop-shadow(
			0 3px 10px rgba(64, 224, 208, 0.25)
		);
	}

	.nav-menu {
		position: fixed;
		top: 70px;
		right: -100%;
		width: 100%;
		height: calc(100vh - 70px);
		background: linear-gradient(
			to bottom,
			#ffffff 0%,
			#fafbfc 100%
		);
		flex-direction: column;
		align-items: stretch;
		padding: 0;
		gap: 0;
		transition: right 0.35s
			cubic-bezier(0.25, 0.46, 0.45, 0.94);
		box-shadow: -4px 0 16px rgba(0, 0, 0, 0.1);
		overflow-y: auto;
		overflow-x: hidden;
		z-index: 999;
		will-change: right;
	}

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

	.nav-link {
		padding: 16px 24px;
		width: 100%;
		text-align: left;
		border: none;
		border-bottom: 1px solid #e8eef2;
		font-size: 15px;
		font-weight: 500;
		color: var(--color-text);
		text-decoration: none;
		display: flex;
		align-items: center;
		transition: all 0.25s
			cubic-bezier(0.4, 0, 0.6, 1);
		position: relative;
		cursor: pointer;
		user-select: none;
		text-transform: capitalize;
		letter-spacing: 0;
	}

	.nav-link::before {
		content: "";
		position: absolute;
		left: 0;
		top: 0;
		bottom: 0;
		width: 4px;
		background: linear-gradient(
			to bottom,
			var(--color-primary),
			var(--color-primary-dark)
		);
		transform: scaleY(0);
		transform-origin: center;
		transition: transform 0.3s
			cubic-bezier(0.25, 0.46, 0.45, 0.94);
	}

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

	.nav-link:hover {
		background: rgba(64, 224, 208, 0.04);
		padding-left: 28px;
	}

	.nav-link:active {
		background: rgba(64, 224, 208, 0.08);
	}

	.nav-link:active::before {
		transform: scaleY(1);
	}

	.nav-cta {
		display: none;
	}

	.hamburger {
		display: flex;
		padding: 8px;
		gap: 5px;
	}

	.hamburger span {
		width: 24px;
		height: 2.5px;
	}

	.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);
	}

	.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-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%;
	}

	.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;
	}

	.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: 3rem 0;
	}

	.schools-header {
		margin-bottom: 2.5rem;
	}

	.schools-features {
		grid-template-columns: 1fr;
		gap: 1.25rem;
		margin: 2rem 0;
	}

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

	.schools-cta {
		padding: 2rem 1.5rem;
		margin-top: 2.5rem;
	}

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

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

	.schools-cta-title {
		font-size: 1.5rem;
	}

	.schools-actions {
		flex-direction: column;
		gap: 0.75rem;
	}

	.schools-btn {
		width: 100%;
	}

	/* Pricing 768px */
	.pricing {
		padding: 3rem 0;
	}

	.pricing-header {
		margin-bottom: 2.5rem;
	}

	.pricing-grid {
		grid-template-columns: 1fr;
		gap: 1.25rem;
		margin: 2rem 0;
	}

	.pricing-card.featured {
		transform: none;
		grid-column: auto;
		max-width: 100%;
	}

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

	.amount {
		font-size: 2.25rem;
	}

	.comparison-row {
		grid-template-columns: 1fr 1fr;
		gap: 0.5rem;
	}

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

@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-blob-1 {
		width: 200px;
		height: 200px;
		top: -5%;
		left: -10%;
	}

	.schools-blob-2 {
		width: 150px;
		height: 150px;
		bottom: 5%;
		right: -5%;
	}

	.schools-badge {
		font-size: 0.75rem;
		padding: 0.4rem 0.8rem;
	}

	.schools-features {
		gap: 1rem;
		margin: 1.5rem 0;
	}

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

	.benefit-item {
		padding: 1rem;
	}

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

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

	.feature-card {
		padding: 1.5rem 1rem !important;
	}

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

	.schools-subtitle {
		font-size: 0.9rem;
	}

	.schools-cta {
		padding: 1.5rem 1rem;
	}

	.schools-cta-title {
		font-size: 1.25rem;
	}

	.schools-cta-text {
		font-size: 0.9rem;
	}

	/* Pricing 600px */
	.pricing-blob-1 {
		width: 200px;
		height: 200px;
		top: -5%;
		left: -10%;
	}

	.pricing-blob-2 {
		width: 150px;
		height: 150px;
		bottom: 5%;
		right: -5%;
	}

	.pricing-badge {
		font-size: 0.75rem;
		padding: 0.4rem 0.8rem;
	}

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

	.pricing-grid {
		gap: 1rem;
		margin: 1.5rem 0;
	}

	.plan-name {
		font-size: 1.25rem;
	}

	.amount {
		font-size: 1.875rem;
	}

	.features-list li {
		font-size: 0.85rem;
		gap: 0.5rem;
	}

	.features-list li svg {
		width: 18px;
		height: 18px;
	}

	.comparison-title {
		font-size: 1.25rem;
		margin-bottom: 1.5rem;
	}

	.comparison-row {
		grid-template-columns: 1fr;
		padding: 0.75rem;
		gap: 0.5rem;
	}

	.feature-name {
		font-weight: 600;
		padding-bottom: 0.25rem;
		margin-bottom: 0.25rem;
	}

	.feature-value {
		font-size: 0.85rem;
	}
}

@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;
	}
}

@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;
	}
}

@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;
	}
}
