:root {
	--bg: #f6fbfa;
	--bg-elev: #ffffff;
	--card: #ffffff;
	--text: #0b1f1a;
	--muted: #526a65;
	--teal: #14b8a6;
	--teal-600: #0d9488;
	--green: #0f766e;
	--accent: #22c55e;
	--white: #ffffff;
	--shadow: 0 10px 30px rgba(16,24,40,0.08);
}

/* Custom Scrollbar Styles */
::-webkit-scrollbar {
	width: 8px;
	height: 8px;
}

::-webkit-scrollbar-track {
	background: #f1f5f9;
	border-radius: 4px;
}

::-webkit-scrollbar-thumb {
	background: #0d9488;
	border-radius: 4px;
	transition: background 0.2s ease;
}

::-webkit-scrollbar-thumb:hover {
	background: #0f766e;
}

::-webkit-scrollbar-corner {
	background: #f1f5f9;
}

/* Firefox scrollbar */
* {
	scrollbar-width: thin;
	scrollbar-color: #0d9488 #f1f5f9;
}

* { box-sizing: border-box; }
html, body { 
	height: 100%; 
	overflow-x: hidden;
}

body {
	margin: 0;
	-ms-overflow-style: none;  /* IE and Edge */
	scrollbar-width: none;  /* Firefox */
}

/* Hide scrollbar completely */
body::-webkit-scrollbar {
	display: none !important;
}

html::-webkit-scrollbar {
	display: none !important;
}

*::-webkit-scrollbar {
	display: none !important;
}

body {
	font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
	color: var(--text);
	background: linear-gradient(180deg, #ffffff 0%, #f3fbf9 50%, var(--bg) 100%);
	line-height: 1.6;
	overflow-x: hidden;
	max-width: 100vw;
}

img { max-width: 100%; display: block; }
a { color: var(--teal); text-decoration: none; }
a:hover { color: var(--teal-600); }

/* Prevent horizontal overflow */
* {
	max-width: 100%;
	box-sizing: border-box;
}

.container {
	width: min(1120px, 92%);
	margin: 0 auto;
	padding: 0 16px;
}

@media (max-width: 480px) {
	.container { padding: 0 12px; }
}

/* Header */
.site-header {
	position: sticky;
	top: 0;
	z-index: 20;
	backdrop-filter: saturate(1.2) blur(8px);
	background: #0d9488;
	border-bottom: 1px solid rgba(16,24,40,0.06);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: 14px 0; }
.brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 800; letter-spacing: -0.02em; }
.brand .logo { 
	height: 70px; 
	width: auto; 
	max-width: 350px; 
	object-fit: contain;
}
.brand.small .logo { 
	height: 50px; 
	max-width: 250px; 
}
.brand .accent { color: var(--teal); }
.brand.small { font-size: 0.95rem; }
.logo-circle { width: 32px; height: 32px; border-radius: 999px; background: linear-gradient(135deg, var(--teal), var(--green)); display: grid; place-items: center; box-shadow: var(--shadow); }
.logo-dot { width: 10px; height: 10px; border-radius: 999px; background: var(--white); }
.nav { display: none; gap: 20px; align-items: center; }
.nav a { color: white; text-decoration: none; font-weight: 500; transition: opacity 0.2s; }
.nav a:hover { opacity: 0.8; }
.nav-toggle { display: inline-flex; flex-direction: column; gap: 4px; background: transparent; border: 0; padding: 6px; cursor: pointer; }
.nav-toggle span { width: 22px; height: 2px; background: white; display: block; }

/* Mobile Navigation */
@media (max-width: 859px) {
	.nav { 
		display: block;              /* ensure menu can be shown on mobile */
		position: fixed; 
		top: 100%; 
		left: 0; 
		right: 0; 
		background: var(--card); 
		border-top: 1px solid rgba(16,24,40,0.08); 
		padding: 20px; 
		box-shadow: var(--shadow);
		transform: translateY(-100%);
		opacity: 0;
		visibility: hidden;
		transition: all 0.3s ease;
	}
	.nav.open { 
		transform: translateY(0); 
		opacity: 1; 
		visibility: visible; 
	}
	.nav a { 
		display: block; 
		padding: 12px 0; 
		border-bottom: 1px solid rgba(16,24,40,0.08);
		color: var(--text); 
	}
	.nav a:last-child { border-bottom: none; }
}

@media (min-width: 860px) {
	.nav { display: flex; }
	.nav-toggle { display: none; }
}

/* Analytics Link */
.analytics-link {
	color: #7f8c8d;
	text-decoration: none;
	font-weight: 500;
	transition: color 0.2s ease;
}

.analytics-link:hover {
	color: #3498db;
}

/* Buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 2px; border-radius: 6px; font-weight: 600; border: 1px solid transparent; cursor: pointer; transition: transform .08s ease, background .2s ease, color .2s ease, border-color .2s ease; }
.btn-small { padding: 2px 4px; font-size: 0.65rem; }
.btn-primary { background: linear-gradient(135deg, var(--teal), var(--green)); color: var(--white); padding: 14px 18px; border: 2px solid rgba(255, 255, 255, 0.3); }
.btn-primary:hover { transform: translateY(-1px); border-color: rgba(255, 255, 255, 0.6); }
.btn-outline { border-color: rgba(20, 184, 166, 0.4); color: var(--text); padding: 14px 18px; background: rgba(20, 184, 166, 0.08); }
.btn-outline:hover { border-color: rgba(20, 184, 166, 0.8); }

.btn-ghost {
	background: rgba(13, 148, 136, 0.1);
	border: 2px solid rgba(13, 148, 136, 0.3);
	color: #0d9488;
	backdrop-filter: blur(10px);
	padding: 14px 18px;
}

.btn-ghost:hover {
	background: rgba(13, 148, 136, 0.2);
	border-color: rgba(13, 148, 136, 0.5);
	transform: translateY(-1px);
}

/* Hero */
.hero { padding: 60px 0 40px; position: relative; overflow: hidden; }
.hero-inner { display: grid; gap: 40px; align-items: center; }
.hero-copy h1 { font-size: clamp(1.8rem, 4.2vw, 3.2rem); line-height: 1.1; margin: 0 0 14px; letter-spacing: -0.02em; }
.hero-copy p { color: var(--muted); margin: 0 0 20px; font-size: clamp(0.95rem, 2.5vw, 1.1rem); }
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-cta .btn { flex: 1; min-width: 140px; }
.hero-art { position: relative; min-height: 200px; }

@media (max-width: 480px) {
	.hero { padding: 40px 0 30px; }
	.hero-cta { flex-direction: column; }
	.hero-cta .btn { width: 100%; }
}
.orb { position: absolute; border-radius: 999px; filter: blur(20px); opacity: 0.7; }
.orb-lg { width: 420px; height: 420px; right: -140px; top: -60px; background: radial-gradient(closest-side, rgba(20,184,166,0.9), transparent); }
.orb-sm { width: 220px; height: 220px; right: 60px; bottom: -40px; background: radial-gradient(closest-side, rgba(34,197,94,0.9), transparent); }
.grid { position: absolute; inset: 0; background: linear-gradient(transparent 95%, rgba(20, 184, 166, .15) 95%), linear-gradient(90deg, transparent 95%, rgba(20, 184, 166, .15) 95%); background-size: 30px 30px; opacity: .25; mix-blend-mode: overlay; }

@media (min-width: 980px) {
	.hero-inner { grid-template-columns: 1.15fr 1fr; }
}

/* Promo */
.promo { padding: 6px 0 26px; }
.promo-banner { display: grid; grid-template-columns: auto 1fr auto; gap: 14px; align-items: center; background: radial-gradient(80% 120% at 0% 0%, rgba(20,184,166,.18) 0%, rgba(20,184,166,.10) 30%, rgba(34,197,94,.08) 60%, rgba(255,255,255,0.9) 100%); border: 1px solid rgba(20,184,166,.28); border-radius: 16px; padding: 14px 16px; box-shadow: 0 8px 30px rgba(20,184,166,.12), var(--shadow); }
.promo-icon { color: var(--teal-600); background: var(--card); border: 1px solid rgba(16,24,40,.08); width: 40px; height: 40px; border-radius: 12px; display: grid; place-items: center; box-shadow: var(--shadow); }
.promo-content .eyebrow { text-transform: uppercase; letter-spacing: .08em; font-size: .72rem; color: color-mix(in oklab, var(--text) 70%, #667); font-weight: 800; margin-bottom: 2px; }
.promo-content h3 { margin: 0; font-size: clamp(1rem, 2vw, 1.2rem); letter-spacing: -.01em; }
.promo-content p { margin: 2px 0 0; color: var(--muted); }
.promo-cta { white-space: nowrap; }

/* Features */
.features { padding: 50px 0 10px; }
.section-title { font-size: clamp(1.6rem, 2.8vw, 2.2rem); margin: 0 0 16px; }
.section-subtitle { color: var(--muted); margin-top: -8px; margin-bottom: 24px; }
.feature-grid { display: grid; gap: 18px; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }

@media (max-width: 768px) {
	.features { padding: 40px 0 10px; }
	.feature-grid { grid-template-columns: 1fr; gap: 16px; }
	.brand .logo { height: 65px; max-width: 320px; }
	.brand.small .logo { height: 55px; max-width: 280px; }
}
.feature-card { background: var(--card); border: 1px solid rgba(16,24,40,0.08); border-radius: 16px; padding: 16px; box-shadow: var(--shadow); }
.feature-card h3 { margin: 8px 0 6px; }
.feature-card p { color: var(--muted); margin: 0; }
.icon { display: none; }
.icon-svg { color: var(--teal-600); background: radial-gradient(closest-side, rgba(20,184,166,.15), transparent); border: 1px solid rgba(16,24,40,0.08); border-radius: 10px; padding: 6px; box-shadow: var(--shadow); }

/* Plans */
.plans { padding: 60px 0; }
.customer-type-toggle { display: inline-flex; gap: 6px; background: rgba(20, 184, 166, 0.08); border: 1px solid rgba(20, 184, 166, 0.28); padding: 6px; border-radius: 14px; margin-bottom: 30px; }
.plan-toggle { display: inline-flex; gap: 6px; background: rgba(20, 184, 166, 0.08); border: 1px solid rgba(20, 184, 166, 0.28); padding: 6px; border-radius: 14px; margin-bottom: 18px; }
.toggle-option { background: transparent; color: color-mix(in oklab, var(--text) 75%, #6b7280); border: 0; padding: 10px 14px; border-radius: 12px; cursor: pointer; font-weight: 800; }
.toggle-option.active { background: linear-gradient(135deg, var(--teal), var(--green)); color: var(--white); box-shadow: 0 6px 18px rgba(20,184,166,.25), inset 0 0 0 1px rgba(255,255,255,.2); }
.plan-grid { display: grid; gap: 18px; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); overflow: visible; }

@media (max-width: 768px) {
	.plan-grid { grid-template-columns: 1fr; gap: 16px; }
}

@media (max-width: 480px) {
	.plan-grid { gap: 16px; }
	.plan-speed { font-size: 2rem; }
	
	.plan-card {
		padding: 24px 20px;
		border-radius: 20px;
	}
	
	/* Mobile Premium Animations */
	.promo-badge {
		top: -12px;
		right: -12px;
		padding: 10px 16px;
		border-radius: 25px;
	}
	
	.promo-text {
		font-size: 12px;
		letter-spacing: 0.8px;
	}
	
	.promo-subtitle {
		font-size: 10px;
		letter-spacing: 0.5px;
	}
	
	.promo-offer {
		font-size: 9px;
		letter-spacing: 0.3px;
	}
	
	.promo-plan::before {
		top: 18px;
		left: 18px;
		font-size: 18px;
	}
	
	.promo-plan::after {
		top: 22px;
		right: 22px;
		font-size: 14px;
	}
	
	.promo-details {
		padding: 10px 14px;
		margin: 10px 0;
		border-radius: 10px;
	}
	
	.promo-details p {
		font-size: 11px;
		line-height: 1.3;
	}
	
	.plan-card .badge {
		top: -10px;
		left: 12px;
		padding: 8px 14px;
		font-size: 0.8rem;
	}
}
.plan-card { 
	position: relative; 
	background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
	border: 1px solid rgba(226, 232, 240, 0.8); 
	border-radius: 24px; 
	padding: 32px 28px; 
	box-shadow: 
		0 1px 3px rgba(0, 0, 0, 0.05),
		0 4px 12px rgba(0, 0, 0, 0.08),
		0 8px 24px rgba(0, 0, 0, 0.04);
	transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1); 
	overflow: visible; 
	z-index: 1;
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
}

.plan-card:hover { 
	transform: translateY(-12px) scale(1.03); 
	border-color: rgba(20, 184, 166, 0.3);
	box-shadow: 
		0 4px 12px rgba(0, 0, 0, 0.1),
		0 12px 32px rgba(0, 0, 0, 0.12),
		0 24px 48px rgba(0, 0, 0, 0.08);
}

.plan-card.featured {
	border-color: rgba(20, 184, 166, 0.4);
	background: linear-gradient(145deg, #f0fdfa 0%, #ffffff 50%, #f8fffe 100%);
	box-shadow: 
		0 1px 3px rgba(0, 0, 0, 0.05),
		0 4px 12px rgba(0, 0, 0, 0.08),
		0 8px 24px rgba(0, 0, 0, 0.04),
		0 0 0 1px rgba(20, 184, 166, 0.1);
}

/* Terms Notice */
.terms-notice {
	font-size: 0.65rem;
	color: #9ca3af;
	text-align: left;
	margin-top: 0.5rem;
	font-weight: 400;
	letter-spacing: 0.025em;
	opacity: 0.8;
	padding-left: 0;
}

.plan-card.featured:hover {
	box-shadow: 
		0 4px 12px rgba(0, 0, 0, 0.1),
		0 12px 32px rgba(0, 0, 0, 0.12),
		0 24px 48px rgba(0, 0, 0, 0.08),
		0 0 0 1px rgba(20, 184, 166, 0.2);
}

.plan-card .badge { 
	position: absolute; 
	top: -12px; 
	left: 16px; 
	background: linear-gradient(135deg, #14b8a6 0%, #10b981 50%, #059669 100%); 
	color: white; 
	padding: 10px 18px; 
	border-radius: 25px; 
	font-size: 0.85rem; 
	font-weight: 900;
	box-shadow: 
		0 4px 12px rgba(20, 184, 166, 0.3),
		0 8px 24px rgba(20, 184, 166, 0.2),
		inset 0 1px 0 rgba(255, 255, 255, 0.2);
	animation: premiumPulse 3s ease-in-out infinite;
	border: 2px solid rgba(255, 255, 255, 0.1);
	letter-spacing: 0.5px;
	text-transform: uppercase;
}

@keyframes premiumPulse {
	0%, 100% { 
		transform: scale(1);
		box-shadow: 
			0 4px 12px rgba(20, 184, 166, 0.3),
			0 8px 24px rgba(20, 184, 166, 0.2),
			inset 0 1px 0 rgba(255, 255, 255, 0.2);
	}
	50% { 
		transform: scale(1.08);
		box-shadow: 
			0 6px 16px rgba(20, 184, 166, 0.4),
			0 12px 32px rgba(20, 184, 166, 0.3),
			inset 0 1px 0 rgba(255, 255, 255, 0.3);
	}
}

/* Premium Sparkle Animation - Only for Promo Plans */
.promo-plan::before {
	content: '✨';
	position: absolute;
	top: 24px;
	left: 24px;
	font-size: 20px;
	animation: premiumSparkle 3s ease-in-out infinite;
	z-index: 5;
	opacity: 0.9;
	filter: drop-shadow(0 2px 4px rgba(255, 193, 7, 0.3));
}

.promo-plan::after {
	content: '⭐';
	position: absolute;
	top: 28px;
	right: 28px;
	font-size: 16px;
	animation: premiumSparkle 3s ease-in-out infinite 1.5s;
	z-index: 5;
	opacity: 0.7;
	filter: drop-shadow(0 2px 4px rgba(255, 193, 7, 0.2));
}

@keyframes premiumSparkle {
	0%, 100% { 
		opacity: 0.7; 
		transform: scale(1) rotate(0deg);
		filter: drop-shadow(0 2px 4px rgba(255, 193, 7, 0.2));
	}
	50% { 
		opacity: 1; 
		transform: scale(1.4) rotate(180deg);
		filter: drop-shadow(0 4px 8px rgba(255, 193, 7, 0.4));
	}
}

/* Promo Badge - Premium Design */
.promo-badge {
	position: absolute;
	top: -16px;
	right: -16px;
	background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 50%, #ff9f4a 100%);
	color: white;
	padding: 12px 20px;
	border-radius: 30px;
	box-shadow: 
		0 4px 12px rgba(255, 107, 53, 0.3),
		0 8px 24px rgba(255, 107, 53, 0.2),
		inset 0 1px 0 rgba(255, 255, 255, 0.2);
	z-index: 100;
	text-align: center;
	animation: premiumFloat 4s ease-in-out infinite;
	transform: rotate(-3deg);
	transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
	border: 2px solid rgba(255, 255, 255, 0.1);
}

.promo-badge:hover {
	transform: rotate(0deg) scale(1.08);
	box-shadow: 
		0 8px 20px rgba(255, 107, 53, 0.4),
		0 16px 40px rgba(255, 107, 53, 0.3),
		inset 0 1px 0 rgba(255, 255, 255, 0.3);
	animation-play-state: paused;
}

@keyframes premiumFloat {
	0%, 100% { 
		transform: rotate(-3deg) translateY(0px);
	}
	50% { 
		transform: rotate(-3deg) translateY(-4px);
	}
}

.promo-text {
	display: block;
	font-weight: 900;
	font-size: 14px;
	letter-spacing: 1px;
	text-transform: uppercase;
	text-shadow: 
		0 1px 2px rgba(0,0,0,0.3),
		0 2px 4px rgba(0,0,0,0.1);
	margin-bottom: 3px;
	line-height: 1.1;
}

.promo-subtitle {
	display: block;
	font-weight: 700;
	font-size: 12px;
	opacity: 0.95;
	letter-spacing: 0.6px;
	text-transform: uppercase;
	margin-bottom: 2px;
	line-height: 1.1;
	text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

.promo-offer {
	display: block;
	font-weight: 600;
	font-size: 11px;
	opacity: 0.9;
	letter-spacing: 0.4px;
	font-style: italic;
	line-height: 1.1;
	text-shadow: 0 1px 1px rgba(0,0,0,0.2);
}

/* Promo Details - Compact Design */
.promo-details {
	background: linear-gradient(135deg, #fff8f0 0%, #ffe4cc 50%, #ffd7b3 100%);
	border: 2px solid transparent;
	border-radius: 12px;
	padding: 12px 16px;
	margin: 12px 0;
	text-align: center;
	position: relative;
	overflow: hidden;
	animation: luxuryGlow 4s ease-in-out infinite;
	box-shadow: 
		0 2px 8px rgba(255, 140, 66, 0.15),
		0 4px 16px rgba(255, 140, 66, 0.1);
}

.promo-details::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(135deg, 
		rgba(255, 255, 255, 0.1) 0%, 
		rgba(255, 140, 66, 0.1) 50%, 
		rgba(255, 255, 255, 0.1) 100%);
	border-radius: 14px;
	animation: luxuryShimmer 3s ease-in-out infinite;
}

.promo-details p {
	margin: 0;
	font-size: 12px;
	color: #bf360c;
	font-weight: 700;
	line-height: 1.4;
	text-shadow: 
		0 1px 2px rgba(0,0,0,0.1),
		0 2px 4px rgba(0,0,0,0.05);
	position: relative;
	z-index: 2;
	letter-spacing: 0.2px;
}

@keyframes luxuryGlow {
	0%, 100% { 
		box-shadow: 
			0 4px 12px rgba(255, 140, 66, 0.15),
			0 8px 24px rgba(255, 140, 66, 0.1);
	}
	50% { 
		box-shadow: 
			0 8px 20px rgba(255, 140, 66, 0.25),
			0 16px 40px rgba(255, 140, 66, 0.15);
	}
}

@keyframes luxuryShimmer {
	0%, 100% { 
		opacity: 0.3;
		transform: scale(1);
	}
	50% { 
		opacity: 0.6;
		transform: scale(1.02);
	}
}


/* Installation Notice */
.installation-notice {
	background: #f8f9fa;
	border-left: 4px solid #007bff;
	padding: 12px 16px;
	margin: 16px 0;
	border-radius: 4px;
}

.installation-notice p {
	margin: 0;
	font-size: 14px;
	color: #495057;
}
.plan-speed {
	font-size: 2.5rem;
	font-weight: 900;
	color: #14b8a6;
	text-align: center;
	margin: 0 0 0.5rem 0;
	padding: 0;
	letter-spacing: -0.5px;
	line-height: 1;
	position: relative;
	z-index: 10;
	display: block;
	width: 100%;
	text-shadow: 0 2px 4px rgba(20, 184, 166, 0.3);
}

.plan-name { margin: 4px 0; position: relative; z-index: 10; }
.plan-desc { color: var(--muted); margin: 0 0 8px; position: relative; z-index: 10; }
.price { display: flex; align-items: baseline; gap: 8px; margin: 6px 0 8px; }
.price .amount { font-size: 1.8rem; font-weight: 800; letter-spacing: -0.02em; }
.price .period { color: var(--muted); }
.plan-features { list-style: none; padding: 0; margin: 10px 0 14px; display: grid; gap: 6px; }
.plan-features li { 
	position: relative; 
	padding-left: 22px; 
}
.plan-features li:before { content: ""; position: absolute; left: 0; top: .5em; width: 12px; height: 12px; border-radius: 999px; background: radial-gradient(closest-side, var(--teal), transparent); border: 1px solid rgba(20,184,166,.3); box-shadow: inset 0 0 20px rgba(20,184,166,.3); }
.disclaimer { color: var(--muted); margin-top: 16px; font-size: 0.9rem; }

/* Installation fee styling */
.installation-fee { display: flex; justify-content: space-between; align-items: center; margin: 8px 0 8px; padding: 8px 12px; background: rgba(20, 184, 166, 0.08); border: 1px solid rgba(20, 184, 166, 0.2); border-radius: 10px; }
.fee-label { color: var(--muted); font-weight: 600; font-size: 0.9rem; }
.fee-amount { color: var(--text); font-weight: 800; font-size: 1.1rem; }

/* Total cost styling */
.total-cost { display: flex; justify-content: space-between; align-items: center; margin: 8px 0 12px; padding: 12px; background: linear-gradient(135deg, rgba(20, 184, 166, 0.12), rgba(34, 197, 94, 0.08)); border: 2px solid rgba(20, 184, 166, 0.3); border-radius: 12px; }
.total-label { color: var(--text); font-weight: 700; font-size: 0.95rem; }
.total-amount { color: var(--teal-600); font-weight: 900; font-size: 1.3rem; letter-spacing: -0.01em; }

/* Pricing explanation */
.pricing-explanation { margin-top: 40px; padding: 24px; background: var(--card); border: 1px solid rgba(16,24,40,0.08); border-radius: 16px; box-shadow: var(--shadow); }
.pricing-explanation h3 { margin: 0 0 16px; color: var(--text); }
.pricing-explanation ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }
.pricing-explanation li { position: relative; padding-left: 24px; color: var(--muted); }
.pricing-explanation li:before { content: "✓"; position: absolute; left: 0; top: 0; color: var(--teal); font-weight: 800; }

.installation-disclaimer { margin-top: 20px; padding: 16px; background: rgba(20, 184, 166, 0.08); border: 1px solid rgba(20, 184, 166, 0.2); border-radius: 12px; }
.installation-disclaimer p { margin: 0; color: var(--text); font-size: 0.9rem; line-height: 1.5; }

/* Customer type sections */
.customer-plans { margin-top: 30px; }
.customer-section-title { font-size: 1.4rem; margin: 0 0 8px; color: var(--text); }
.customer-section-subtitle { color: var(--muted); margin: 0 0 20px; }
.existing-customer.hidden { display: none; }

/* Testimonials */
.testimonials { padding: 40px 0; background: linear-gradient(0deg, rgba(20,184,166,.06), transparent 40%); }
.testimonials-inner { display: grid; gap: 16px; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }

@media (max-width: 768px) {
	.testimonials-inner { grid-template-columns: 1fr; }
}
.quote { background: var(--card); border: 1px solid rgba(16,24,40,.08); border-radius: 14px; padding: 14px; }
.quote footer { color: var(--muted); margin-top: 6px; }

/* FAQ */
.faq { padding: 50px 0 80px; }
.accordion { display: grid; gap: 10px; }
.accordion-item { background: var(--card); border: 1px solid rgba(16,24,40,0.08); border-radius: 14px; }
.accordion-trigger { width: 100%; text-align: left; background: transparent; color: var(--text); border: 0; padding: 14px; font-weight: 700; cursor: pointer; }
.accordion-panel { padding: 0 14px 14px; color: var(--muted); }

/* Footer */
.site-footer { border-top: 1px solid rgba(16,24,40,.08); padding: 20px 0; background: linear-gradient(135deg, #0d9488, #14b8a6); }
.footer-inner { display: grid; gap: 10px; align-items: center; grid-template-columns: 1fr; }
.footer-nav { display: flex; gap: 16px; flex-wrap: wrap; }
.footer-nav a { color: white; text-decoration: none; font-weight: 500; transition: opacity 0.2s; }
.footer-nav a:hover { opacity: 0.8; }
.legal { color: rgba(255, 255, 255, 0.8); }

@media (min-width: 760px) {
	.footer-inner { grid-template-columns: auto 1fr auto; }
}

/* Promo banner responsive */
@media (max-width: 768px) {
	.promo-banner { 
		grid-template-columns: 1fr; 
		gap: 12px; 
		text-align: center; 
	}
	.promo-icon { margin: 0 auto; }
	.promo-cta { width: 100%; }
}

@media (max-width: 480px) {
	.promo { padding: 4px 0 20px; }
	.promo-banner { padding: 12px; }
}

/* Modal */
.modal {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.6);
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 1000;
	padding: 20px;
}

.modal.hidden {
	display: none;
}

.modal-content {
	background: var(--card);
	border-radius: 16px;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
	max-width: 650px;
	width: 90%;
	max-height: 90vh;
	overflow-y: auto;
}

/* Modal scrollbar styling */
.modal-content::-webkit-scrollbar {
	width: 8px;
}

.modal-content::-webkit-scrollbar-track {
	background: #f1f5f9;
	border-radius: 4px;
}

.modal-content::-webkit-scrollbar-thumb {
	background: #0d9488;
	border-radius: 4px;
}

.modal-content::-webkit-scrollbar-thumb:hover {
	background: #0f766e;
}


.modal-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 24px 32px;
	border-bottom: 1px solid rgba(16, 24, 40, 0.08);
}

.modal-header h3 {
	margin: 0;
	color: var(--text);
}

.modal-close {
	background: none;
	border: none;
	font-size: 24px;
	cursor: pointer;
	color: var(--muted);
	padding: 0;
	width: 32px;
	height: 32px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.modal-body {
	padding: 32px;
}

.form-group {
	margin-bottom: 20px;
	position: relative !important;
}

.form-group label {
	display: block;
	margin-bottom: 6px;
	font-weight: 600;
	color: var(--text);
}

.form-group input,
.form-group textarea,
.form-group select {
	width: 100%;
	padding: 12px;
	border: 1px solid rgba(16, 24, 40, 0.08);
	border-radius: 8px;
	font-size: 16px;
	background: var(--card);
	color: var(--text);
	box-sizing: border-box;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
	outline: none;
	border-color: var(--teal);
	box-shadow: 0 0 0 3px rgba(20, 184, 166, 0.1);
}

/* VALIDATION ICONS - TOP RIGHT CORNER */
.form-group {
	position: relative;
}

.form-group .validation-icon {
	position: absolute;
	right: -8px;
	top: -8px;
	width: 20px;
	height: 20px;
	display: none;
	align-items: center;
	justify-content: center;
	z-index: 20;
	background: white;
	border-radius: 50%;
	border: 2px solid #e5e7eb;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
}

.form-group.valid .validation-icon.valid-icon {
	display: flex;
	border-color: #10b981;
	background: #10b981;
	color: white;
}

.form-group.invalid .validation-icon.invalid-icon {
	display: flex;
	border-color: #ef4444;
	background: #ef4444;
	color: white;
}

/* Appointment booking specific styling */
.form-group input[type="date"] {
	background: white;
	cursor: pointer;
}

.form-group input[type="date"]:focus {
	border-color: var(--teal);
	box-shadow: 0 0 0 3px rgba(20, 184, 166, 0.1);
}

.form-help {
	display: block;
	margin-top: 6px;
	font-size: 14px;
	color: #6b7280;
	font-style: italic;
}

/* Time slot selection styling */
.form-group select option {
	padding: 8px 12px;
}

/* Appointment confirmation styling */
.appointment-confirmation {
	background: linear-gradient(135deg, #f0fdfa, #ecfdf5);
	border: 2px solid #14b8a6;
	border-radius: 12px;
	padding: 16px;
	margin: 16px 0;
}

.appointment-confirmation h4 {
	margin: 0 0 12px 0;
	color: #0d9488;
	font-size: 16px;
}

.appointment-details {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 12px;
}

.appointment-detail {
	display: flex;
	align-items: center;
	gap: 8px;
}

.appointment-detail .icon {
	font-size: 18px;
	color: #14b8a6;
}

.appointment-detail .text {
	font-size: 14px;
	color: #374151;
	font-weight: 500;
}

.form-help {
	display: block;
	margin-top: 4px;
	color: var(--muted);
	font-size: 0.85rem;
}

.checkbox-group {
	display: grid;
	gap: 12px;
	margin-top: 8px;
}

.checkbox-item {
	display: flex;
	align-items: center;
	gap: 12px;
	cursor: pointer;
	padding: 12px 16px;
	border: 2px solid rgba(16, 24, 40, 0.1);
	border-radius: 12px;
	transition: all 0.3s ease;
	background: rgba(255, 255, 255, 0.8);
}

.checkbox-item:hover {
	background: rgba(20, 184, 166, 0.08);
	border-color: rgba(20, 184, 166, 0.3);
	transform: translateY(-1px);
	box-shadow: 0 4px 12px rgba(20, 184, 166, 0.15);
}

.checkbox-item input[type="checkbox"] {
	display: none;
}

.checkmark {
	width: 24px;
	height: 24px;
	border: 2px solid rgba(16, 24, 40, 0.3);
	border-radius: 6px;
	position: relative;
	transition: all 0.3s ease;
	background: white;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.checkbox-item input[type="checkbox"]:checked + .checkmark {
	background: linear-gradient(135deg, var(--teal), var(--green));
	border-color: var(--teal);
	box-shadow: 0 4px 12px rgba(20, 184, 166, 0.3);
	transform: scale(1.05);
}

.checkbox-item:has(input[type="checkbox"]:checked) {
	background: rgba(20, 184, 166, 0.12);
	border-color: rgba(20, 184, 166, 0.4);
	box-shadow: 0 4px 12px rgba(20, 184, 166, 0.2);
}

/* Fallback for browsers that don't support :has() */
.checkbox-item input[type="checkbox"]:checked ~ span:not(.checkmark) {
	color: var(--teal);
	font-weight: 600;
}

.checkbox-item input[type="checkbox"]:checked + .checkmark:after {
	content: "✓";
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	color: white;
	font-size: 14px;
	font-weight: 900;
	text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.checkbox-item span:not(.checkmark) {
	font-weight: 500;
	color: var(--text);
	font-size: 15px;
}

.breakdown-section {
	margin-bottom: 16px;
}

.breakdown-section h5 {
	margin: 0 0 8px;
	color: var(--text);
	font-size: 0.9rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.pill { display: inline-block; background: rgba(20,184,166,.1); border: 1px solid rgba(20,184,166,.25); color: var(--teal-600); padding: 2px 8px; border-radius: 999px; font-size: .8rem; font-weight: 800; }

.pricing-breakdown {
	background: rgba(20, 184, 166, 0.08);
	border: 1px solid rgba(20, 184, 166, 0.2);
	border-radius: 12px;
	padding: 16px;
	margin: 20px 0;
}

.pricing-breakdown h4 {
	margin: 0 0 12px;
	color: var(--text);
}

.breakdown-item {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 8px 0;
	border-bottom: 1px solid rgba(16, 24, 40, 0.08);
}

.breakdown-item:last-child {
	border-bottom: none;
}


.breakdown-item.total {
	font-weight: 800;
	font-size: 1.1rem;
	color: var(--teal-600);
	border-top: 2px solid rgba(20, 184, 166, 0.3);
	margin-top: 8px;
	padding-top: 12px;
}

.pricing-note {
	background: rgba(20, 184, 166, 0.05);
	border: 1px solid rgba(20, 184, 166, 0.15);
	border-radius: 8px;
	padding: 12px;
	margin: 16px 0;
}

.pricing-note p {
	margin: 0;
	color: var(--muted);
	font-size: 0.9rem;
	line-height: 1.4;
}

/* Payment Confirmation */
.payment-confirmation {
	text-align: center;
}

.payment-confirmation h4 {
	margin: 0 0 20px;
	color: var(--text);
}

.summary-item {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 12px 0;
	border-bottom: 1px solid rgba(16, 24, 40, 0.08);
}

.summary-item:last-child {
	border-bottom: none;
}

.summary-item.total {
	font-weight: 800;
	font-size: 1.2rem;
	color: var(--teal-600);
	border-top: 2px solid rgba(20, 184, 166, 0.3);
	margin-top: 12px;
	padding-top: 16px;
}

.payment-actions {
	display: flex;
	gap: 12px;
	margin-top: 24px;
}

.payment-actions .btn {
	flex: 1;
}

.summary-section {
	margin-bottom: 20px;
	padding: 16px;
	background: rgba(20, 184, 166, 0.05);
	border-radius: 8px;
}

.summary-section h5 {
	margin: 0 0 12px;
	color: var(--text);
	font-size: 0.9rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.modal-actions {
	display: flex;
	gap: 12px;
	margin-top: 24px;
}

.modal-actions .btn {
	flex: 1;
}

@media (max-width: 480px) {
	.modal {
		padding: 10px;
	}
	.modal-content {
		max-height: 95vh;
	}
	.modal-body {
		padding: 16px;
	}
	.modal-actions {
		flex-direction: column;
	}
}

/* Availability Modal Styles */
#availability-modal {
	display: none;
	position: fixed;
	z-index: 1000;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5);
	backdrop-filter: blur(5px);
}

#availability-modal .modal-content {
	background-color: white;
	margin: 5% auto;
	padding: 0;
	border-radius: 12px;
	width: 80%;
	max-width: 450px;
	max-height: 80vh;
	overflow-y: auto;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
	animation: modalSlideIn 0.3s ease-out;
}

/* Availability modal scrollbar styling */
#availability-modal .modal-content::-webkit-scrollbar {
	width: 8px;
}

#availability-modal .modal-content::-webkit-scrollbar-track {
	background: #f1f5f9;
	border-radius: 4px;
}

#availability-modal .modal-content::-webkit-scrollbar-thumb {
	background: #0d9488;
	border-radius: 4px;
}

#availability-modal .modal-content::-webkit-scrollbar-thumb:hover {
	background: #0f766e;
}

@keyframes modalSlideIn {
	from {
		opacity: 0;
		transform: translateY(-50px) scale(0.95);
	}
	to {
		opacity: 1;
		transform: translateY(0) scale(1);
	}
}

#availability-modal .modal-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 16px 20px 0;
	border-bottom: 1px solid #e5e7eb;
	margin-bottom: 16px;
}

#availability-modal .modal-header h2 {
	margin: 0;
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--text);
}

#availability-modal .modal-close {
	background: none;
	border: none;
	font-size: 28px;
	font-weight: 300;
	color: #6b7280;
	cursor: pointer;
	padding: 0;
	width: 32px;
	height: 32px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	transition: all 0.2s ease;
}

#availability-modal .modal-close:hover {
	background: #f3f4f6;
	color: #374151;
}

#availability-modal .modal-body {
	padding: 0 20px 20px;
}

.availability-form {
	display: flex;
	gap: 12px;
	margin-bottom: 0px;
	padding-bottom: 0px;
	align-items: flex-start;
}

.availability-form .form-group {
	flex: 1;
}

.availability-form .address-input {
	width: 100%;
	padding: 12px 16px;
	border: 2px solid #e5e7eb;
	border-radius: 12px;
	font-size: 14px;
	background: white;
	transition: all 0.2s ease;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
	height: 48px;
	box-sizing: border-box;
}

.availability-form .address-input:focus {
	outline: none;
	border-color: #0d9488;
	box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.1);
}

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

/* Check Now button styling */
.availability-form .btn {
	height: 48px;
	padding: 12px 24px;
	font-size: 14px;
	font-weight: 600;
	border-radius: 12px;
	white-space: nowrap;
	display: flex;
	align-items: center;
	justify-content: center;
	box-sizing: border-box;
}

/* Availability modal validation icons now use unified styles above */

/* Error and Success Messages for Availability Modal */
.availability-form .form-group .error-message {
	display: none;
	font-size: 13px;
	color: #ef4444;
	margin-top: 6px;
	font-weight: 500;
	line-height: 1.4;
}

.availability-form .form-group.invalid .error-message {
	display: block;
	animation: errorSlideIn 0.3s ease-out;
}

.availability-form .form-group .success-message {
	display: none;
	font-size: 13px;
	color: #10b981;
	margin-top: 6px;
	font-weight: 500;
	line-height: 1.4;
}

.availability-form .form-group.valid .success-message {
	display: block;
	animation: successSlideIn 0.3s ease-out;
}


.availability-result {
	margin-top: 0px;
	margin-bottom: 0px;
	padding: 16px 24px;
	border-radius: 12px;
	font-weight: 500;
	transition: all 0.4s ease;
	opacity: 0;
	transform: translateY(20px) scale(0.95);
	text-align: center;
	position: relative;
	overflow: hidden;
}

.availability-result.show {
	opacity: 1;
	transform: translateY(0) scale(1);
}

.availability-result.available {
	background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(34, 197, 94, 0.05));
	border: 2px solid rgba(16, 185, 129, 0.3);
	color: #065f46;
	box-shadow: 0 8px 32px rgba(16, 185, 129, 0.15);
}

.availability-result.unavailable {
	background: linear-gradient(135deg, rgba(239, 68, 68, 0.1), rgba(220, 38, 38, 0.05));
	border: 2px solid rgba(239, 68, 68, 0.3);
	color: #991b1b;
	box-shadow: 0 8px 32px rgba(239, 68, 68, 0.15);
}

.availability-result.checking {
	background: linear-gradient(135deg, rgba(13, 148, 136, 0.08), rgba(20, 184, 166, 0.05));
	border: 2px solid rgba(13, 148, 136, 0.2);
	color: #0d9488;
	box-shadow: 0 12px 40px rgba(13, 148, 136, 0.15);
	position: relative;
	overflow: hidden;
}

.availability-result.checking::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(135deg, 
		rgba(13, 148, 136, 0.1) 0%, 
		rgba(20, 184, 166, 0.05) 25%, 
		rgba(16, 185, 129, 0.08) 50%, 
		rgba(20, 184, 166, 0.05) 75%, 
		rgba(13, 148, 136, 0.1) 100%);
	background-size: 200% 200%;
	animation: gradientShift 3s ease-in-out infinite;
	z-index: 1;
}

.availability-result.checking .result-content {
	position: relative;
	z-index: 2;
}

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

@keyframes shimmer {
	0% {
		left: -100%;
	}
	100% {
		left: 100%;
	}
}

@keyframes spin {
	from {
		transform: rotate(0deg);
	}
	to {
		transform: rotate(360deg);
	}
}

/* Premium button loading state */
.btn:disabled {
	opacity: 0.8;
	cursor: not-allowed;
	position: relative;
	overflow: hidden;
}

.btn:disabled::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
	animation: buttonShimmer 2s infinite;
}

@keyframes buttonShimmer {
	0% {
		left: -100%;
	}
	100% {
		left: 100%;
	}
}

.availability-result .result-icon {
	font-size: 32px;
	margin-bottom: 16px;
	display: flex;
	justify-content: center;
	align-items: center;
	animation: iconBounce 0.6s ease-out;
}

.availability-result .result-icon svg {
	width: 32px;
	height: 32px;
	color: currentColor;
}

.availability-result.checking .result-icon {
	font-size: 0;
	margin-bottom: 24px;
	display: flex;
	justify-content: center;
	align-items: center;
	animation: none;
}

.premium-loader {
	width: 48px;
	height: 48px;
	position: relative;
	margin: 0 auto;
}

.premium-loader::before,
.premium-loader::after {
	content: '';
	position: absolute;
	border-radius: 50%;
	animation: premiumPulse 2s ease-in-out infinite;
}

.premium-loader::before {
	width: 48px;
	height: 48px;
	border: 3px solid rgba(13, 148, 136, 0.2);
	animation-delay: 0s;
}

.premium-loader::after {
	width: 32px;
	height: 32px;
	top: 8px;
	left: 8px;
	border: 3px solid #0d9488;
	border-top-color: transparent;
	animation: premiumRotate 1.5s linear infinite, premiumPulse 2s ease-in-out infinite;
	animation-delay: 0.2s;
}

@keyframes premiumRotate {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(360deg);
	}
}

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

@keyframes iconBounce {
	0% {
		transform: scale(0);
		opacity: 0;
	}
	50% {
		transform: scale(1.2);
		opacity: 1;
	}
	100% {
		transform: scale(1);
		opacity: 1;
	}
}

.availability-result .result-title {
	font-size: 20px;
	font-weight: 700;
	margin-bottom: 12px;
	letter-spacing: -0.02em;
}

.availability-result .result-message {
	font-size: 16px;
	line-height: 1.6;
	margin-bottom: 20px;
	opacity: 0.9;
}

.availability-result .result-actions {
	margin-top: 16px;
}

.availability-result .result-actions .btn {
	margin: 0 8px;
}

/* Waitlist Form Styles */
.waitlist-form {
	margin-top: 8px;
	text-align: left;
	max-width: 320px;
	margin-left: auto;
	margin-right: auto;
}

.waitlist-form .form-group {
	margin-bottom: 8px;
}

.waitlist-form .form-group label {
	display: block;
	font-weight: 500;
	font-size: 12px;
	color: var(--text);
	margin-bottom: 4px;
}

.waitlist-form .form-group input {
	width: 100%;
	padding: 8px 12px;
	border: 1px solid #e5e7eb;
	border-radius: 6px;
	font-size: 12px;
	background: white;
	transition: all 0.2s ease;
	box-sizing: border-box;
	height: 36px;
}

.waitlist-form .form-group input:focus {
	outline: none;
	border-color: #0d9488;
	box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.1);
}

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

.waitlist-form .form-group .error-message {
	display: none;
	font-size: 11px;
	color: #ef4444;
	margin-top: 5px;
	font-weight: 500;
	line-height: 1.3;
}

.waitlist-form .form-group.invalid .error-message {
	display: block;
	animation: errorSlideIn 0.3s ease-out;
}

.waitlist-form .form-group .success-message {
	display: none;
	font-size: 11px;
	color: #10b981;
	margin-top: 5px;
	font-weight: 500;
	line-height: 1.3;
}

.waitlist-form .form-group.valid .success-message {
	display: block;
	animation: successSlideIn 0.3s ease-out;
}

.waitlist-form .form-actions {
	display: flex;
	gap: 8px;
	justify-content: flex-end;
	margin-top: 10px;
}

.availability-result.waitlist {
	background: linear-gradient(135deg, rgba(13, 148, 136, 0.08), rgba(20, 184, 166, 0.05));
	border: 2px solid rgba(13, 148, 136, 0.2);
	color: #0d9488;
	box-shadow: 0 8px 32px rgba(13, 148, 136, 0.15);
	padding: 16px 20px;
}

.availability-result.waitlist .result-title {
	font-size: 16px;
	margin-bottom: 8px;
}

.availability-result.waitlist .result-message {
	font-size: 13px;
	margin-bottom: 12px;
}


/* Responsive design for modal */
@media (max-width: 768px) {
	.modal-content {
		margin: 10% auto;
		width: 95%;
		max-height: 85vh;
	}
	
	.modal-header {
		padding: 20px 20px 0;
		margin-bottom: 20px;
	}
	
	.modal-body {
		padding: 0 20px 20px;
	}
	
	.availability-form {
		flex-direction: column;
		gap: 12px;
	}
	
	.map-container {
		height: 250px;
	}
	
	.form-actions {
		flex-direction: column;
		gap: 8px;
	}
	
	.form-actions .btn {
		width: 100%;
	}
}

/* Form Validation Styles - Only for payment form */
#payment-form .form-group {
	position: relative;
	margin-bottom: 20px;
}

#payment-form .form-group label {
	display: block;
	font-weight: 600;
	font-size: 14px;
	color: var(--text);
	margin-bottom: 8px;
}

#payment-form .form-group input,
#payment-form .form-group select,
#payment-form .form-group textarea {
	width: 100%;
	padding: 12px 16px;
	border: 2px solid #e5e7eb;
	border-radius: 8px;
	font-size: 14px;
	background: white;
	transition: all 0.2s ease;
	box-sizing: border-box;
}

#payment-form .form-group input:focus,
#payment-form .form-group select:focus,
#payment-form .form-group textarea:focus {
	outline: none;
	border-color: #0d9488;
	box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.1);
}

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

/* Validation States - Only for payment form */
#payment-form .form-group.valid input,
#payment-form .form-group.valid select,
#payment-form .form-group.valid textarea {
	border-color: #10b981;
	background: rgba(16, 185, 129, 0.05);
}

#payment-form .form-group.invalid input,
#payment-form .form-group.invalid select,
#payment-form .form-group.invalid textarea {
	border-color: #ef4444;
	background: rgba(239, 68, 68, 0.05);
}

#payment-form .form-group.valid input:focus,
#payment-form .form-group.valid select:focus,
#payment-form .form-group.valid textarea:focus {
	border-color: #10b981;
	box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

#payment-form .form-group.invalid input:focus,
#payment-form .form-group.invalid select:focus,
#payment-form .form-group.invalid textarea:focus {
	border-color: #ef4444;
	box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

/* Payment form validation icons now use unified styles above */

/* Error Messages - Only for payment form */
#payment-form .form-group .error-message {
	display: none !important;
}

#payment-form .form-group.invalid .error-message {
	display: none !important;
}

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

/* Success Messages - Only for payment form */
#payment-form .form-group .success-message {
	display: none !important;
}

#payment-form .form-group.valid .success-message {
	display: none !important;
}

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

/* Enhanced Loading States */
.loading-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.7);
	backdrop-filter: blur(5px);
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 9999;
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease;
}

.loading-overlay.show {
	opacity: 1;
	visibility: visible;
}

.loading-container {
	background: white;
	border-radius: 16px;
	padding: 40px;
	text-align: center;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
	max-width: 400px;
	width: 90%;
}

.loading-title {
	font-size: 24px;
	font-weight: 700;
	color: #0d9488;
	margin-bottom: 16px;
}

.loading-subtitle {
	font-size: 16px;
	color: #6b7280;
	margin-bottom: 32px;
	line-height: 1.5;
}

/* Premium Loading Spinner */
.premium-spinner {
	width: 60px;
	height: 60px;
	position: relative;
	margin: 0 auto 24px;
}

.premium-spinner::before,
.premium-spinner::after {
	content: '';
	position: absolute;
	border-radius: 50%;
	animation: premiumSpin 2s linear infinite;
}

.premium-spinner::before {
	width: 60px;
	height: 60px;
	border: 4px solid rgba(13, 148, 136, 0.2);
	animation-delay: 0s;
}

.premium-spinner::after {
	width: 40px;
	height: 40px;
	top: 10px;
	left: 10px;
	border: 4px solid #0d9488;
	border-top-color: transparent;
	animation: premiumSpin 1.5s linear infinite;
	animation-delay: 0.2s;
}

@keyframes premiumSpin {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(360deg);
	}
}

/* Payment Processing Steps */
.processing-steps {
	text-align: left;
	margin-top: 24px;
}

.processing-step {
	display: flex;
	align-items: center;
	margin-bottom: 16px;
	padding: 12px;
	border-radius: 8px;
	transition: all 0.3s ease;
}

.processing-step.active {
	background: rgba(13, 148, 136, 0.1);
	border: 1px solid rgba(13, 148, 136, 0.3);
}

.processing-step.completed {
	background: rgba(16, 185, 129, 0.1);
	border: 1px solid rgba(16, 185, 129, 0.3);
}

.step-icon {
	width: 24px;
	height: 24px;
	margin-right: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.step-icon .spinner {
	width: 16px;
	height: 16px;
	border: 2px solid rgba(13, 148, 136, 0.3);
	border-top-color: #0d9488;
	border-radius: 50%;
	animation: spin 1s linear infinite;
}

.step-icon .check {
	width: 16px;
	height: 16px;
	color: #10b981;
}

.step-text {
	font-size: 14px;
	font-weight: 500;
	color: #374151;
}

.processing-step.completed .step-text {
	color: #10b981;
}

/* Form Submit Button States */
.form-submit {
	position: relative;
	overflow: hidden;
	transition: all 0.3s ease;
}

.form-submit:disabled {
	opacity: 0.7;
	cursor: not-allowed;
}

.form-submit.loading {
	pointer-events: none;
	background: linear-gradient(135deg, #0d9488, #14b8a6);
}

.form-submit.loading::after {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
	animation: buttonShimmer 2s infinite;
}

.form-submit.loading .btn-text {
	opacity: 0;
}

.form-submit.loading .btn-spinner {
	opacity: 1;
}

.btn-spinner {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	opacity: 0;
	transition: opacity 0.3s ease;
}

.btn-spinner::before {
	content: '';
	display: inline-block;
	width: 16px;
	height: 16px;
	border: 2px solid rgba(255, 255, 255, 0.3);
	border-top-color: white;
	border-radius: 50%;
	animation: spin 1s linear infinite;
}

/* Payment Success Animation */
.payment-success {
	text-align: center;
	padding: 40px 20px;
}

.success-icon {
	width: 80px;
	height: 80px;
	margin: 0 auto 24px;
	background: linear-gradient(135deg, #10b981, #059669);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	animation: successBounce 0.6s ease-out;
}

.success-icon svg {
	width: 40px;
	height: 40px;
	color: white;
}

@keyframes successBounce {
	0% {
		transform: scale(0);
		opacity: 0;
	}
	50% {
		transform: scale(1.2);
		opacity: 1;
	}
	100% {
		transform: scale(1);
		opacity: 1;
	}
}

.success-title {
	font-size: 28px;
	font-weight: 700;
	color: #10b981;
	margin-bottom: 16px;
	animation: fadeInUp 0.6s ease-out 0.2s both;
}

.success-message {
	font-size: 16px;
	color: #6b7280;
	margin-bottom: 32px;
	line-height: 1.5;
	animation: fadeInUp 0.6s ease-out 0.4s both;
}

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

/* Progress Bar */
.progress-bar {
	width: 100%;
	height: 4px;
	background: rgba(13, 148, 136, 0.2);
	border-radius: 2px;
	overflow: hidden;
	margin: 24px 0;
}

.progress-fill {
	height: 100%;
	background: linear-gradient(90deg, #0d9488, #14b8a6);
	border-radius: 2px;
	transition: width 0.5s ease;
	animation: progressShimmer 2s ease-in-out infinite;
}

@keyframes progressShimmer {
	0% {
		background-position: -200% 0;
	}
	100% {
		background-position: 200% 0;
	}
}

/* Error State */
.payment-error {
	text-align: center;
	padding: 40px 20px;
}

.error-icon {
	width: 80px;
	height: 80px;
	margin: 0 auto 24px;
	background: linear-gradient(135deg, #ef4444, #dc2626);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	animation: errorShake 0.6s ease-out;
}

.error-icon svg {
	width: 40px;
	height: 40px;
	color: white;
}

@keyframes errorShake {
	0%, 100% {
		transform: translateX(0);
	}
	25% {
		transform: translateX(-5px);
	}
	75% {
		transform: translateX(5px);
	}
}

.error-title {
	font-size: 28px;
	font-weight: 700;
	color: #ef4444;
	margin-bottom: 16px;
}

.error-message {
	font-size: 16px;
	color: #6b7280;
	margin-bottom: 32px;
	line-height: 1.5;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
	.loading-container {
		padding: 24px;
		margin: 20px;
	}
	
	.loading-title {
		font-size: 20px;
	}
	
	.loading-subtitle {
		font-size: 14px;
	}
	
	.premium-spinner {
		width: 50px;
		height: 50px;
	}
	
	.premium-spinner::before {
		width: 50px;
		height: 50px;
	}
	
	.premium-spinner::after {
		width: 30px;
		height: 30px;
		top: 10px;
		left: 10px;
	}
}

/* Real-time Validation Feedback - Only for payment form */
#payment-form .form-group .field-hint {
	font-size: 13px;
	color: #6b7280;
	margin-top: 4px;
	font-style: italic;
	line-height: 1.4;
}

#payment-form .form-group input:focus + .field-hint {
	color: #0d9488;
}

/* Validation Summary - Only for payment form */
#payment-form .validation-summary {
	background: rgba(239, 68, 68, 0.1);
	border: 1px solid rgba(239, 68, 68, 0.3);
	border-radius: 8px;
	padding: 16px;
	margin-bottom: 20px;
	display: none;
}

#payment-form .validation-summary.show {
	display: block;
	animation: errorSlideIn 0.3s ease-out;
}

#payment-form .validation-summary h4 {
	color: #ef4444;
	font-size: 14px;
	font-weight: 600;
	margin: 0 0 8px 0;
}

#payment-form .validation-summary ul {
	margin: 0;
	padding-left: 16px;
	color: #ef4444;
	font-size: 14px;
	line-height: 1.4;
}

#payment-form .validation-summary li {
	margin-bottom: 4px;
}

/* Utilities */
.hidden { display: none !important; }
.selected { outline: 2px solid color-mix(in oklab, var(--teal) 70%, var(--white)); outline-offset: 3px; }

/* Review Page */
.review-hero {
	padding: 90px 0 40px;
	background: radial-gradient(circle at top left, rgba(20, 184, 166, 0.12), transparent 55%);
}

.review-hero-grid {
	display: grid;
	gap: 40px;
	align-items: stretch;
}

@media (min-width: 960px) {
	.review-hero-grid {
		grid-template-columns: 1.2fr 0.8fr;
	}
}

.review-hero-copy .eyebrow {
	text-transform: uppercase;
	font-size: 0.8rem;
	letter-spacing: 0.15em;
	font-weight: 700;
	color: rgba(11, 31, 26, 0.6);
	margin-bottom: 12px;
}

.review-hero-copy h1 {
	font-size: clamp(2rem, 4vw, 3rem);
	margin-bottom: 16px;
}

.review-hero-copy p {
	color: var(--muted);
	margin-bottom: 24px;
	max-width: 520px;
}

.review-hero-highlights {
	display: flex;
	align-items: stretch;
}

.highlight-card {
	background: var(--card);
	border: 1px solid rgba(20, 184, 166, 0.2);
	border-radius: 24px;
	padding: 28px;
	box-shadow: var(--shadow);
	backdrop-filter: blur(12px);
}

.highlight-card h3 {
	margin-top: 0;
	margin-bottom: 12px;
}

.highlight-card ul {
	margin: 0;
	padding-left: 20px;
	color: var(--muted);
	line-height: 1.5;
}

.review-form {
	padding: 20px 0 80px;
}

.form-card {
	background: var(--card);
	border-radius: 28px;
	border: 1px solid rgba(16,24,40,0.08);
	box-shadow: var(--shadow);
	padding: 32px;
}

.form-card-header h2 {
	margin: 0 0 8px;
	font-size: 2rem;
}

.form-card-header p {
	margin: 0;
	color: var(--muted);
}

.compliance-note {
	margin: 20px 0 24px;
	padding: 12px 16px;
	border-radius: 14px;
	background: rgba(20, 184, 166, 0.08);
	border: 1px solid rgba(20, 184, 166, 0.2);
	color: #0d9488;
	font-weight: 600;
}

.zoho-form-embed {
	border-radius: 24px;
	border: 1px solid rgba(16,24,40,0.08);
	background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
	box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.05);
	overflow: hidden;
}

.zoho-form-embed iframe {
	width: 100%;
	min-height: 1200px;
	border: 0;
	background: transparent;
}

.zoho-form-fallback {
	margin-top: 16px;
	text-align: center;
	color: var(--muted);
}

.zoho-form-fallback a {
	font-weight: 600;
}

@media (max-width: 768px) {
	.review-hero {
		padding: 60px 0 30px;
	}

	.form-card {
		padding: 24px;
	}

	.zoho-form-embed iframe {
		min-height: 1400px;
	}
}
