@charset "utf-8";

/* =========================================================
   GLOBAL RESET & VARIABLES
   ========================================================= */

:root {
	--bg-dark: #0d0d0d;
	--bg-card: #1a1a1a;
	--bg-elevated: #242424;

	--accent: #cf2b29;
	--accent-light: #cf2b29;
	--accent-dark: #d97706;

	--text-primary: #fafafa;
	--text-secondary: #a3a3a3;
	--text-muted: #737373;

	--border: #2e2e2e;

	--max-width: 1200px;
}

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

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

body {
	font-family: 'Space Grotesk', sans-serif;
	background: var(--bg-dark);
	color: var(--text-primary);
	line-height: 1.6;
	overflow-x: hidden;
	width: 100%;
}

img {
	max-width: 100%;
	height: auto;
}

button,
input,
textarea,
select {
	font: inherit;
}

a {
	color: inherit;
}

button {
	cursor: pointer;
}


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

/* --- WITH THIS --- */
nav {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	width: 100%;
	z-index: 1000;
	background: transparent; /* Seamless at the top of the page */
	backdrop-filter: blur(0px);
	-webkit-backdrop-filter: blur(0px);
	border-bottom: 1px solid transparent; /* Hidden by default */
	transition: background-color 0.3s ease, border-color 0.3s ease, backdrop-filter 0.3s ease;
}

/* Added when scrolled down past ~50px (approx 1/2 to 3/4 inch) */
nav.scrolled {
	background: rgba(13, 13, 13, 0.9);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	border-bottom-color: var(--border); /* Reveals the border on scroll */
}

.nav-container {
	max-width: var(--max-width);
	margin: 0 auto;
	padding: 0.75rem 2rem;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 2rem;
	min-height: 68px;
}

.logo {
	display: flex;
	align-items: center;
	text-decoration: none;
	flex-shrink: 0;
}

.logo img {
	display: block;
	height: 52px;
	width: auto;
	max-width: 240px;
	object-fit: contain;
}

.logo-icon {
	width: 32px;
	height: 32px;
	background: var(--accent);
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.nav-links {
	display: flex;
	align-items: center;
	gap: 2rem;
	list-style: none;
	margin-left: auto;
}

.nav-links a {
	color: var(--text-secondary);
	text-decoration: none;
	font-size: 0.95rem;
	font-weight: 500;
	transition: color 0.2s ease;
}

.nav-links a:hover {
	color: var(--accent);
}

.nav-cta {
	background: var(--accent);
	color: var(--bg-dark);
	padding: 0.6rem 1.5rem;
	border-radius: 8px;
	text-decoration: none;
	font-weight: 600;
	font-size: 0.9rem;
	transition: all 0.2s ease;
	flex-shrink: 0;
}

.nav-cta span {
	display: inline;
	background: transparent;
	padding: 0;
}

.nav-cta:hover {
	background: var(--accent-light);
	transform: translateY(-1px);
}

.mobile-menu-btn {
	display: none;
	background: none;
	border: none;
	color: var(--text-primary);
	font-size: 1.5rem;
	line-height: 1;
	padding: 0.5rem;
}


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

.hero {
	display: flex;
	align-items: center;
	padding: 8rem 2rem 3rem;
	position: relative;
	overflow: hidden;
	width: 100%;
	min-height: 100vh; /* <--- ADD THIS LINE */
}

.hero::before {
	content: '';
	position: absolute;
	top: -520%;
	right: -20%;
	width: 80%;
	height: 150%;
	background: radial-gradient(
		ellipse,
		rgba(230, 28, 36, 0.08) 0%,
		transparent 70%
	);
	pointer-events: none;
}

.hero-container {
	width: 100%;
	max-width: var(--max-width);
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: center;
}

.hero-content {
	position: relative;
	z-index: 1;
	min-width: 0;
}

.hero-badge {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	background: var(--bg-card);
	border: 1px solid var(--border);
	padding: 0.5rem 1rem;
	border-radius: 100px;
	font-size: 0.85rem;
	color: var(--text-secondary);
	margin-bottom: 1.5rem;
}

.hero-badge span {
	color: var(--accent);
}

.hero h1 {
	font-size: clamp(2.5rem, 5vw, 4rem);
	font-weight: 700;
	line-height: 1.1;
	margin-bottom: 1.5rem;
	letter-spacing: -0.02em;
}

.hero h1 .highlight {
	color: var(--accent);
}

.hero-description {
	font-size: 1.15rem;
	color: var(--text-secondary);
	margin-bottom: 2rem;
	max-width: 480px;
}

.hero-buttons {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	margin-bottom: 3rem;
}

.btn-primary {
	background: var(--accent);
	color: var(--bg-dark);
	padding: 1rem 2rem;
	border-radius: 10px;
	text-decoration: none;
	font-weight: 600;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	transition: all 0.2s ease;
}

.btn-primary:hover {
	background: var(--accent-light);
	transform: translateY(-2px);
	box-shadow: 0 10px 30px rgba(230, 28, 36, 0.3);
}

.btn-secondary {
	background: transparent;
	color: var(--text-primary);
	padding: 1rem 2rem;
	border-radius: 10px;
	text-decoration: none;
	font-weight: 600;
	border: 1px solid var(--border);
	transition: all 0.2s ease;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.btn-secondary:hover {
	border-color: var(--text-secondary);
	background: var(--bg-card);
}

.hero-stats {
	display: flex;
	flex-wrap: wrap;
	gap: 3rem;
}

.stat {
	text-align: left;
}

.stat-value {
	font-size: 2rem;
	font-weight: 700;
	color: var(--text-primary);
}

.stat-label {
	font-size: 0.85rem;
	color: var(--text-muted);
}


/* =========================================================
   3D HERO / LOGO
   ========================================================= */

.glow-bg {
	position: absolute;
	top: 30%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 500px;
	height: 500px;
	background: radial-gradient(
		circle,
		rgba(230, 28, 36, 0.35) 0%,
		transparent 70%
	);
	filter: blur(80px);
	z-index: 0;
	pointer-events: none;
}

.hero-3d-wrapper {
	position: relative;
	width: 100%;
	height: 450px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.overlay-logo {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 180px;
	height: auto;
	pointer-events: none;
	z-index: 10;
	filter: drop-shadow(0 0 15px rgba(230, 28, 36, 0.5));
}

.hero-3d-logo {
	max-width: 280px;
	margin-bottom: 2rem;
	filter: drop-shadow(0 0 20px rgba(230, 28, 36, 0.4));
	animation: float 6s ease-in-out infinite;
}

.hero-title {
	font-size: 2.5rem;
	letter-spacing: 2px;
	margin-bottom: 1rem;
	text-transform: uppercase;
}

.hero-subtitle {
	color: var(--text-muted);
	font-size: 1.1rem;
	font-weight: 300;
}

@keyframes float {
	0%,
	100% {
		transform: translateY(0);
	}

	50% {
		transform: translateY(-15px);
	}
}


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

.features {
	padding: 6rem 2rem;
	background: var(--bg-card);
}

.section-container {
	width: 100%;
	max-width: var(--max-width);
	margin: 0 auto;
}

.section-header {
	text-align: center;
	margin-bottom: 4rem;
}

.section-label {
	font-size: 0.85rem;
	color: var(--accent);
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	margin-bottom: 1rem;
}

.section-title {
	font-size: clamp(2rem, 4vw, 3rem);
	font-weight: 700;
	margin-bottom: 1rem;
	letter-spacing: -0.02em;
}

.section-description {
	font-size: 1.1rem;
	color: var(--text-secondary);
	max-width: 600px;
	margin: 0 auto;
}

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

.feature-card {
	background: var(--bg-dark);
	border: 1px solid var(--border);
	border-radius: 16px;
	padding: 2rem;
	transition: all 0.3s ease;
}

.feature-card:hover {
	border-color: var(--accent);
	transform: translateY(-4px);
}

.feature-icon {
	width: 56px;
	height: 56px;
	background: var(--bg-elevated);
	border-radius: 14px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 1.5rem;
	color: var(--accent);
	transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
	background: var(--accent);
	color: var(--bg-dark);
}

.feature-card h3 {
	font-size: 1.25rem;
	font-weight: 600;
	margin-bottom: 0.75rem;
}

.feature-card p {
	color: var(--text-secondary);
	font-size: 0.95rem;
}


/* =========================================================
   PRICING
   ========================================================= */

.pricing {
	padding: 6rem 2rem;
}

.billing-toggle {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 0.5rem;
	margin: 0 auto 3rem;
	background: var(--bg-card);
	padding: 0.5rem;
	border-radius: 12px;
	width: fit-content;
	max-width: 100%;
	border: 1px solid var(--border);
}

.billing-option {
	padding: 0.75rem 1.5rem;
	border-radius: 8px;
	font-size: 0.9rem;
	font-weight: 500;
	color: var(--text-secondary);
	cursor: pointer;
	transition: all 0.2s ease;
	position: relative;
	background: transparent;
	border: none;
	font-family: inherit;
	white-space: nowrap;
}

.billing-option:hover {
	color: var(--text-primary);
}

.billing-option.active {
	background: var(--accent);
	color: var(--bg-dark);
}

.billing-option .discount-badge {
	position: absolute;
	top: -8px;
	right: -8px;
	background: #22c55e;
	color: #fff;
	font-size: 0.65rem;
	font-weight: 700;
	padding: 0.2rem 0.4rem;
	border-radius: 4px;
}

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

.pricing-card {
	background: var(--bg-card);
	border: 1px solid var(--border);
	border-radius: 20px;
	padding: 2.5rem;
	position: relative;
	transition: all 0.3s ease;
	min-width: 0;
}

.pricing-card:hover {
	transform: translateY(-4px);
}

.pricing-card.featured {
	border-color: var(--accent);
	box-shadow: 0 0 40px rgba(230, 28, 36, 0.15);
}

.pricing-card.featured::before {
	content: 'Most Popular';
	position: absolute;
	top: -12px;
	left: 50%;
	transform: translateX(-50%);
	background: var(--accent);
	color: var(--bg-dark);
	padding: 0.3rem 1rem;
	border-radius: 100px;
	font-size: 0.75rem;
	font-weight: 600;
	white-space: nowrap;
}

.pricing-name {
	font-size: 1.1rem;
	font-weight: 600;
	color: var(--text-secondary);
	margin-bottom: 0.5rem;
}

.pricing-price {
	font-size: 3rem;
	font-weight: 700;
	margin-bottom: 0.25rem;
	display: flex;
	align-items: baseline;
	gap: 0.25rem;
}

.pricing-price .currency {
	font-size: 1.5rem;
	font-weight: 600;
}

.pricing-price .period {
	font-size: 1rem;
	font-weight: 400;
	color: var(--text-muted);
}

.pricing-billed {
	font-size: 0.85rem;
	color: var(--text-muted);
	margin-bottom: 0.5rem;
	min-height: 1.2rem;
}

.pricing-savings {
	display: inline-block;
	background: rgba(34, 197, 94, 0.15);
	color: #22c55e;
	font-size: 0.8rem;
	font-weight: 600;
	padding: 0.25rem 0.75rem;
	border-radius: 100px;
	margin-bottom: 1rem;
	min-height: 1.5rem;
}

.pricing-savings:empty {
	visibility: hidden;
}

.pricing-description {
	color: var(--text-muted);
	font-size: 0.9rem;
	margin-bottom: 2rem;
	padding-bottom: 2rem;
	border-bottom: 1px solid var(--border);
}

.pricing-features {
	list-style: none;
	margin-bottom: 2rem;
}

.pricing-features li {
	display: flex;
	align-items: flex-start;
	gap: 0.75rem;
	padding: 0.5rem 0;
	color: var(--text-secondary);
	font-size: 0.95rem;
}

.pricing-features li::before {
	content: '✓';
	color: var(--accent);
	font-weight: 700;
	flex-shrink: 0;
}

.pricing-btn {
	display: block;
	width: 100%;
	text-align: center;
	padding: 1rem;
	border-radius: 10px;
	text-decoration: none;
	font-weight: 600;
	transition: all 0.2s ease;
}

.pricing-card .pricing-btn {
	background: var(--bg-elevated);
	color: var(--text-primary);
	border: 1px solid var(--border);
}

.pricing-card .pricing-btn:hover {
	background: var(--text-primary);
	color: var(--bg-dark);
}

.pricing-card.featured .pricing-btn {
	background: var(--accent);
	color: var(--bg-dark);
	border: none;
}

.pricing-card.featured .pricing-btn:hover {
	background: var(--accent-light);
}


/* =========================================================
   INSTRUCTORS / SPOTLIGHT
   ========================================================= */

.spotlight {
	padding: 6rem 2rem;
	background: var(--bg-card);
}

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

.spotlight-card {
	text-align: center;
	min-width: 0;
}

.spotlight-image {
	width: 160px;
	height: 160px;
	border-radius: 50%;
	margin: 0 auto 1.5rem;
	border: 4px solid var(--border);
	transition: all 0.3s ease;
	overflow: hidden;
	background: var(--bg-elevated);
}

.spotlight-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: grayscale(20%);
	transition: filter 0.3s ease;
}

.spotlight-card:hover .spotlight-image {
	border-color: var(--accent);
	box-shadow: 0 0 20px rgba(230, 28, 36, 0.3);
}

.spotlight-card:hover .spotlight-image img {
	filter: grayscale(0%);
}

.spotlight-name {
	font-size: 1.1rem;
	font-weight: 600;
	margin-bottom: 0.25rem;
}

.spotlight-role {
	color: var(--accent);
	font-size: 0.85rem;
	font-weight: 500;
	margin-bottom: 0.5rem;
}

.spotlight-bio {
	color: var(--text-muted);
	font-size: 0.85rem;
}


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

.testimonials {
	padding: 6rem 2rem;
}

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

.testimonial-card {
	background: var(--bg-card);
	border: 1px solid var(--border);
	border-radius: 16px;
	padding: 2rem;
	min-width: 0;
}

.testimonial-stars {
	color: var(--accent);
	font-size: 1rem;
	margin-bottom: 1rem;
}

.testimonial-text {
	color: var(--text-secondary);
	font-size: 1rem;
	line-height: 1.7;
	margin-bottom: 1.5rem;
}

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

.testimonial-avatar {
	width: 64px;
	height: 64px;
	border-radius: 50%;
	overflow: hidden;
	flex-shrink: 0;
}

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

.testimonial-name {
	font-weight: 600;
	font-size: 0.95rem;
}

.testimonial-title {
	color: var(--text-muted);
	font-size: 0.8rem;
}


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

.cta {
	padding: 6rem 2rem;
	background: linear-gradient(
		135deg,
		var(--bg-card) 0%,
		var(--bg-dark) 100%
	);
	text-align: center;
	position: relative;
	overflow: hidden;
}

.cta::before {
	content: '';
	display: block;
	width: 250px;
	height: 250px;
	opacity: 0.35;
}

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

.cta h2 {
	font-size: clamp(2rem, 4vw, 3rem);
	font-weight: 700;
	margin-bottom: 1rem;
}

.cta p {
	color: var(--text-secondary);
	font-size: 1.1rem;
	margin-bottom: 2rem;
	max-width: 500px;
	margin-left: auto;
	margin-right: auto;
}


/* =========================================================
   FOOTER
   ========================================================= */

footer {
	padding: 4rem 2rem 2rem;
	border-top: 1px solid var(--border);
}

.footer-container {
	width: 100%;
	max-width: var(--max-width);
	margin: 0 auto;
}

.footer-grid {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr 1fr;
	gap: 3rem;
	margin-bottom: 3rem;
}

.footer-brand p {
	color: var(--text-muted);
	font-size: 0.9rem;
	margin-top: 1rem;
	max-width: 280px;
}

.footer-title {
	font-size: 0.85rem;
	font-weight: 600;
	color: var(--text-secondary);
	text-transform: uppercase;
	letter-spacing: 0.05em;
	margin-bottom: 1.5rem;
}

.footer-links {
	list-style: none;
}

.footer-links li {
	margin-bottom: 0.75rem;
}

.footer-links a {
	color: var(--text-muted);
	text-decoration: none;
	font-size: 0.9rem;
	transition: color 0.2s ease;
}

.footer-links a:hover {
	color: var(--accent);
}

.footer-bottom {
	padding-top: 2rem;
	border-top: 1px solid var(--border);
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 1rem;
	font-size: 0.85rem;
	color: var(--text-muted);
}

.footer-bottom a {
	color: var(--accent);
	text-decoration: none;
	transition: color 0.2s ease;
}

.footer-bottom a:hover {
	color: var(--accent-light);
}


/* =========================================================
   CHAT BUTTON
   ========================================================= */

#chatToggleBtn {
	position: fixed;
	bottom: 24px;
	right: 24px;
	width: 56px;
	height: 56px;
	border-radius: 50%;
	background: #e61c24;
	color: #fff;
	border: none;
	cursor: pointer;
	box-shadow: 0 4px 20px rgba(230, 28, 36, 0.4);
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 4000;
	transition:
		transform 0.2s ease,
		background-color 0.2s ease;
}

#chatToggleBtn:hover {
	transform: scale(1.05);
	background: #ff2a33;
}

.chat-widget {
	position: fixed;
	bottom: 90px;
	right: 24px;
	width: min(380px, calc(100vw - 32px));
	height: 500px;
	max-height: calc(100vh - 120px);
	max-height: calc(100dvh - 120px);
	background: rgba(15, 23, 42, 0.92);
	backdrop-filter: blur(16px);
	-webkit-backdrop-filter: blur(16px);
	border: 1px solid rgba(255, 255, 255, 0.15);
	border-radius: 16px;
	display: flex;
	flex-direction: column;
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
	z-index: 4000;
	opacity: 0;
	visibility: hidden;
	transform: translateY(20px) scale(0.95);
	transition:
		transform 0.25s ease,
		opacity 0.25s ease,
		visibility 0.25s;
	overflow: hidden;
}

.chat-widget.show {
	opacity: 1;
	visibility: visible;
	transform: translateY(0) scale(1);
}

.chat-header {
	padding: 1rem;
	background: rgba(255, 255, 255, 0.05);
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-shrink: 0;
}

.chat-title {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 0.95rem;
}

.online-indicator {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background-color: #22c55e;
	box-shadow: 0 0 8px #22c55e;
	flex-shrink: 0;
}

.chat-close {
	background: none;
	border: none;
	color: rgba(255, 255, 255, 0.6);
	font-size: 1.5rem;
	cursor: pointer;
	line-height: 1;
	padding: 0.25rem;
}

.chat-messages {
	flex: 1;
	min-height: 0;
	padding: 1rem;
	overflow-y: auto;
	display: flex;
	flex-direction: column;
	gap: 12px;
	-webkit-overflow-scrolling: touch;
}

.chat-msg {
	max-width: 82%;
	padding: 10px 14px;
	border-radius: 12px;
	font-size: 0.9rem;
	line-height: 1.4;
	word-break: break-word;
}

.chat-msg.bot {
	align-self: flex-start;
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.1);
	color: #e2e8f0;
	border-bottom-left-radius: 2px;
}

.chat-msg.user {
	align-self: flex-end;
	background: #e61c24;
	color: #ffffff;
	border-bottom-right-radius: 2px;
}

.chat-input-container {
	padding: 0.8rem;
	background: rgba(0, 0, 0, 0.2);
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	display: flex;
	gap: 8px;
	flex-shrink: 0;
}

.chat-input-container input {
	flex: 1;
	min-width: 0;
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 8px;
	padding: 8px 12px;
	color: #fff;
	font-size: 0.9rem;
	outline: none;
}

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

.chat-input-container button {
	background: #e61c24;
	border: none;
	border-radius: 8px;
	width: 36px;
	height: 36px;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	flex-shrink: 0;
	transition: background-color 0.2s ease;
}

.chat-input-container button:hover {
	background: #ff2a33;
}

.chat-input-container button:disabled {
	opacity: 0.5;
	cursor: not-allowed;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1024px) {

	.hero-container {
		grid-template-columns: 1fr;
		text-align: center;
		gap: 2rem;
	}

	.hero-content {
		order: 1;
	}

	.hero-description {
		margin: 0 auto 2rem;
	}

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

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

	.features-grid,
	.pricing-grid,
	.testimonials-grid {
		grid-template-columns: 1fr;
		max-width: 600px;
		margin-left: auto;
		margin-right: auto;
	}

	.spotlight-grid {
		grid-template-columns: repeat(2, 1fr);
		max-width: 700px;
		margin-left: auto;
		margin-right: auto;
	}

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

}


/* =========================================================
   MOBILE NAVIGATION
   ========================================================= */

@media (max-width: 880px) {

	.nav-container {
		padding: 0.65rem 1.25rem;
		min-height: 64px;
	}

	.logo img {
		height: 44px;
		max-width: 200px;
	}

	.nav-links,
	.nav-cta {
		display: none;
	}

	.mobile-menu-btn {
		display: block;
	}

	.nav-links.active {
		display: flex;
		flex-direction: column;
		align-items: stretch;
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		width: 100%;
		background: rgba(13, 13, 13, 0.98);
		backdrop-filter: blur(20px);
		-webkit-backdrop-filter: blur(20px);
		padding: 0;
		gap: 0;
		margin: 0;
		border-bottom: 1px solid var(--border);
	}

	.nav-links.active li {
		border-bottom: 1px solid var(--border);
	}

	.nav-links.active li:last-child {
		border-bottom: none;
	}

	.nav-links.active a {
		display: block;
		width: 100%;
		padding: 1.1rem 1.5rem;
		font-size: 1rem;
	}

	.nav-cta.active {
		display: block;
		position: absolute;
		top: calc(100% + 1px);
		left: 0;
		right: 0;
		width: 100%;
		text-align: center;
		background: var(--bg-dark);
		padding: 1rem 1.5rem;
		border-top: 1px solid var(--border);
	}

	.nav-cta.active span {
		display: block;
		background: var(--accent);
		color: var(--bg-dark);
		padding: 0.9rem;
		border-radius: 8px;
		font-weight: 600;
	}

	.hero {
		padding: 6rem 1rem 3rem;
	}

	.hero-3d-wrapper {
		height: 350px;
	}

	.overlay-logo {
		width: 140px;
	}

}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 768px) {

	/* Sections */

	.features,
	.pricing,
	.spotlight,
	.testimonials,
	.cta {
		padding: 4rem 1rem;
	}

	footer {
		padding: 3rem 1rem 1.5rem;
	}

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

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

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

	/* Hero */

	.hero {
		padding: 5.5rem 1rem 3rem;
	}

	.hero h1 {
		font-size: clamp(2rem, 9vw, 2.75rem);
		line-height: 1.12;
	}

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

	.hero-buttons {
		flex-direction: column;
		width: 100%;
		max-width: 400px;
		margin-left: auto;
		margin-right: auto;
	}

	.btn-primary,
	.btn-secondary {
		width: 100%;
		padding: 0.9rem 1.25rem;
	}

	.hero-stats {
		flex-direction: row;
		justify-content: center;
		gap: 1.5rem;
		width: 100%;
	}

	.stat {
		text-align: center;
	}

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

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

	/* 3D */

	.hero-3d-wrapper {
		height: 300px;
	}

	.overlay-logo {
		width: 120px;
	}

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

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

	/* Cards */

	.features-grid,
	.pricing-grid,
	.testimonials-grid {
		grid-template-columns: 1fr;
		width: 100%;
		max-width: none;
	}

	.feature-card,
	.pricing-card,
	.testimonial-card {
		padding: 1.5rem;
	}

	/* Pricing */

	.billing-toggle {
		width: 100%;
		max-width: 400px;
		flex-wrap: nowrap;
		padding: 0.35rem;
	}

	.billing-option {
		flex: 1;
		padding: 0.65rem 0.5rem;
		font-size: 0.8rem;
	}

	.billing-option .discount-badge {
		top: -7px;
		right: -3px;
		font-size: 0.55rem;
	}

	.pricing-price {
		font-size: 2.5rem;
	}

	/* Spotlight */

	.spotlight-grid {
		grid-template-columns: 1fr;
		gap: 2.5rem;
	}

	/* Footer */

	.footer-grid {
		grid-template-columns: 1fr;
		text-align: center;
		gap: 2rem;
	}

	.footer-brand p {
		margin: 1rem auto;
	}

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

	/* Chat */

	#chatToggleBtn {
		width: 52px;
		height: 52px;
		right: 16px;
		bottom: 16px;
	}

	.chat-widget {
		left: 16px;
		right: 16px;
		bottom: 80px;
		width: auto;
		height: min(500px, calc(100dvh - 100px));
		max-height: calc(100dvh - 100px);
		border-radius: 14px;
	}

}


/* =========================================================
   VERY SMALL PHONES
   ========================================================= */

@media (max-width: 480px) {

	.nav-container {
		padding-left: 1rem;
		padding-right: 1rem;
	}

	.logo img {
		height: 38px;
		max-width: 170px;
	}

	.hero {
		padding-left: 0.75rem;
		padding-right: 0.75rem;
	}

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

	.hero h1 {
		font-size: 1.9rem;
	}

	.hero-stats {
		gap: 1rem;
	}

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

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

	.hero-3d-wrapper {
		height: 250px;
	}

	.overlay-logo {
		width: 100px;
	}

	.billing-toggle {
		flex-direction: column;
		width: 100%;
		border-radius: 12px;
	}

	.billing-option {
		width: 100%;
	}

	.pricing-card {
		padding: 1.25rem;
	}

	.pricing-price {
		font-size: 2.25rem;
	}

	.pricing-price .currency {
		font-size: 1.25rem;
	}

	.chat-widget {
		left: 8px;
		right: 8px;
		bottom: 76px;
		max-height: calc(100dvh - 90px);
	}

	.chat-msg {
		max-width: 90%;
	}

}


/* =========================================================
   ACCESSIBILITY / TOUCH
   ========================================================= */

@media (hover: none) {

	.feature-card:hover,
	.pricing-card:hover,
	.spotlight-card:hover .spotlight-image {
		transform: none;
	}

	.btn-primary:hover,
	.btn-secondary:hover,
	.pricing-btn:hover {
		transform: none;
	}

}

@media (prefers-reduced-motion: reduce) {

	html {
		scroll-behavior: auto;
	}

	*,
	*::before,
	*::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
	}

}