/* Apple Premium Design System */
:root {
	--bg: #ffffff;
	--text: #1d1d1f;
	--muted: #6e6e73;
	--accent: #007aff;
	--accent-hover: #0056b3;
	--accent-light: #e3f2fd;
	--button-primary: #007aff;
	--button-primary-hover: #0056b3;
	--button-secondary: #1d1d1f;
	--button-secondary-hover: #424245;
	--button-success: #34c759;
	--button-success-hover: #30d158;
	--border: #d1d1d6;
	--border-light: #f2f2f7;
	--surface: #fafafa;
	--surface-elevated: #ffffff;
	--shadow: 0 1px 3px rgba(0,0,0,0.1), 0 1px 2px rgba(0,0,0,0.06);
	--shadow-md: 0 4px 6px rgba(0,0,0,0.07), 0 2px 4px rgba(0,0,0,0.06);
	--shadow-lg: 0 10px 15px rgba(0,0,0,0.1), 0 4px 6px rgba(0,0,0,0.05);
	--shadow-xl: 0 20px 25px rgba(0,0,0,0.1), 0 10px 10px rgba(0,0,0,0.04);
	--gradient-primary: linear-gradient(135deg, #007aff 0%, #0056b3 100%);
	--gradient-button: linear-gradient(135deg, #007aff 0%, #0056b3 100%);
	--gradient-button-hover: linear-gradient(135deg, #0056b3 0%, #004494 100%);
	--gradient-bg: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
	--gradient-surface: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
	--success: #34c759;
	--success-light: #e8f5e8;
	--warning: #ff9500;
	--warning-light: #fff4e6;
	--error: #ff3b30;
	--error-light: #ffeaea;
	--radius-sm: 4px;
	--radius-md: 6px;
	--radius-lg: 8px;
	--radius-xl: 12px;
	--radius-2xl: 16px;
	--radius-3xl: 20px;
	--spacing-xs: 4px;
	--spacing-sm: 8px;
	--spacing-md: 12px;
	--spacing-lg: 16px;
	--spacing-xl: 20px;
	--spacing-2xl: 24px;
	--spacing-3xl: 32px;
	--spacing-4xl: 40px;
	--spacing-5xl: 48px;
	--spacing-6xl: 64px;
}

* { 
	box-sizing: border-box; 
}

html, body { 
	height: 100%; 
	overflow-x: hidden;
	width: 100%;
}

body {
	margin: 0;
	padding: 0;
	font-family: "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Helvetica Neue", Helvetica, Arial, sans-serif;
	background: var(--bg);
	color: var(--text);
	line-height: 1.47;
	text-rendering: optimizeLegibility;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	font-size: 17px;
	font-weight: 400;
	letter-spacing: -0.022em;
	width: 100%;
	max-width: 100vw;
}

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

/* Enhanced Responsive Images */
img { 
	max-width: 100%; 
	height: auto; 
	display: block; 
	object-fit: cover;
}

/* Responsive Image Optimization */
@media (max-width: 768px) {
	img {
		width: 100%;
		height: auto;
	}
	
	.hero-media img,
	.welcome-video {
		width: 100%;
		height: auto;
		min-height: 200px;
		object-fit: cover;
	}
}

@media (max-width: 480px) {
	img {
		width: 100%;
		height: auto;
	}
	
	.hero-media img,
	.welcome-video {
		min-height: 150px;
	}
}

/* Device-specific video display */
.desktop-video {
	display: block;
}

.mobile-video {
	display: none;
}

/* Show mobile video on mobile devices and tablets */
@media (max-width: 1024px) {
	.desktop-video {
		display: none;
	}
	
	.mobile-video {
		display: block;
		/* Fast loading for mobile - no delays */
		opacity: 1;
		transform: none;
		animation: none;
	}
}

/* Additional mobile detection for iPads */
@media (max-width: 1024px) and (orientation: landscape) {
	.desktop-video {
		display: none;
	}
	
	.mobile-video {
		display: block;
		/* Fast loading for mobile - no delays */
		opacity: 1;
		transform: none;
		animation: none;
	}
}

/* Mobile video optimization - instant loading */
@media (max-width: 1024px) {
	.mobile-video {
		/* Remove any loading states on mobile */
		will-change: auto;
		backface-visibility: visible;
		-webkit-backface-visibility: visible;
		transform: none;
		-webkit-transform: none;
	}
	
	/* Skip loading animations on mobile */
	body.loading .mobile-video {
		opacity: 1;
		transform: none;
	}
}

/* Lazy Loading Images */
img[data-src] {
	opacity: 0;
	transition: opacity 0.3s ease;
}

img[data-src].loaded {
	opacity: 1;
}

a { color: var(--text); text-decoration: none; }

/* Apple Premium Header */
.site-header {
	position: sticky;
	top: 0;
	z-index: 100;
	background: rgba(255,255,255,0.72);
	backdrop-filter: saturate(180%) blur(20px);
	-webkit-backdrop-filter: saturate(180%) blur(20px);
	border-bottom: 0.5px solid var(--border);
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.site-header.scrolled {
	background: rgba(255,255,255,0.85);
	backdrop-filter: saturate(180%) blur(20px);
	-webkit-backdrop-filter: saturate(180%) blur(20px);
	box-shadow: var(--shadow-md);
}

.top-nav {
	max-width: 100%;
	margin: 0 auto;
	padding: var(--spacing-md) var(--spacing-lg);
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
}

.brand { 
	font-weight: 600; 
	letter-spacing: -0.02em;
	display: flex;
	align-items: center;
	gap: var(--spacing-sm);
}

.brand-text {
	font-size: 21px;
	font-weight: 600;
	color: var(--text);
	letter-spacing: -0.022em;
}

@media (max-width: 768px) {
	.brand-text {
		display: none;
	}
}

.brand-icon { 
	width: 40px; 
	height: 40px; 
	display: inline-block; 
	object-fit: contain; 
	vertical-align: middle;
	transition: transform 0.3s ease;
}

.brand:hover .brand-icon {
	transform: scale(1.05);
}

.nav-links { 
	list-style: none; 
	display: flex; 
	gap: var(--spacing-xl); 
	margin: 0; 
	padding: 0;
}

.nav-links a { 
	color: var(--muted); 
	font-weight: 400;
	font-size: 17px;
	transition: color 0.3s ease;
	position: relative;
	letter-spacing: -0.022em;
}

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

.nav-links a::after {
	content: '';
	position: absolute;
	bottom: -2px;
	left: 0;
	width: 0;
	height: 1px;
	background: var(--accent);
	transition: width 0.3s ease;
}

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

.content { 
	max-width: 100%; 
	margin: 0 auto; 
	padding: 0 var(--spacing-lg);
	width: 100%;
}

.section { 
	padding: var(--spacing-3xl) 0;
}

/* Enhanced Mobile Navigation */
.mobile-menu-toggle {
	display: none;
	background: none;
	border: none;
	cursor: pointer;
	padding: var(--spacing-sm);
	border-radius: var(--radius-sm);
	transition: all 0.3s ease;
	position: relative;
	z-index: 1001;
}

.mobile-menu-toggle:hover {
	background: var(--surface);
}

.mobile-menu-toggle:focus-visible {
	outline: 2px solid var(--accent);
	outline-offset: 2px;
}

.mobile-menu-toggle span {
	display: block;
	width: 24px;
	height: 2px;
	background: var(--text);
	margin: 4px 0;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	transform-origin: center;
	border-radius: 1px;
}

.mobile-menu-toggle.active span:nth-child(1) {
	transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
	opacity: 0;
	transform: scaleX(0);
}

.mobile-menu-toggle.active span:nth-child(3) {
	transform: rotate(-45deg) translate(7px, -6px);
}

/* Mobile Navigation Overlay */
@media (max-width: 768px) {
	.mobile-menu-toggle {
		display: block;
	}
	
	.nav-links {
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 100vh;
		background: rgba(255, 255, 255, 0.95);
		backdrop-filter: blur(20px);
		-webkit-backdrop-filter: blur(20px);
		flex-direction: column;
		padding: var(--spacing-6xl) var(--spacing-lg) var(--spacing-lg);
		box-shadow: var(--shadow-xl);
		transform: translateX(100%);
		opacity: 0;
		visibility: hidden;
		transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
		z-index: 1000;
		justify-content: center;
		align-items: center;
	}
	
	.nav-links.active {
		transform: translateX(0);
		opacity: 1;
		visibility: visible;
	}
	
	.nav-links a {
		padding: var(--spacing-lg) 0;
		border-bottom: 1px solid var(--border-light);
		font-size: 18px;
		font-weight: 500;
		text-align: center;
		width: 100%;
		max-width: 200px;
		transition: all 0.3s ease;
	}
	
	.nav-links a:last-child {
		border-bottom: none;
	}
	
	.nav-links a:hover {
		color: var(--accent);
		transform: translateY(-2px);
	}
}

/* Tablet Navigation */
@media (min-width: 769px) and (max-width: 1024px) {
	.nav-links {
		gap: var(--spacing-lg);
	}
	
	.nav-links a {
		font-size: 16px;
		padding: var(--spacing-sm) var(--spacing-md);
	}
}

/* Apple Premium Hero */
.hero { 
	position: relative; 
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	text-align: left;
	overflow: hidden;
	min-height: 100vh;
	padding: var(--spacing-6xl) 0;
	background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f0f0f0 100%);
	width: 100%;
	max-width: 100vw;
}

.hero.pro .headline { 
	font-weight: 600; 
	color: var(--text);
	letter-spacing: -0.003em;
	background: linear-gradient(135deg, #1d1d1f 0%, #007aff 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.hero-inner { 
	padding: var(--spacing-lg) 0; 
	position: relative; 
	z-index: 2;
	max-width: 100%;
	width: 100%;
	text-align: left;
}

.hero-inner .cta.primary {
	display: block;
	margin: var(--spacing-2xl) auto 0;
	text-align: center;
}

.hero-bg { 
	position: absolute; 
	inset: -20% -20% 0 -20%; 
	background: radial-gradient(1400px 700px at 15% 15%, #f8f9fa 0%, #ffffff 60%, #ffffff 100%); 
	z-index: 1;
	border-radius: 50%;
	width: 100%;
	max-width: 100vw;
	overflow: hidden;
}

@media (max-width: 768px) {
	.hero-bg {
		inset: -10% -10% 0 -10%;
		width: 100%;
		max-width: 100vw;
		overflow: hidden;
	}
}

.headline { 
	font-size: clamp(56px, 9vw, 96px); 
	letter-spacing: -0.003em; 
	margin: 0 0 var(--spacing-lg); 
	line-height: 1.05;
	font-weight: 600;
}

.subheadline { 
	font-size: clamp(24px, 3.5vw, 36px); 
	color: var(--muted); 
	margin: 0 0 var(--spacing-2xl); 
	font-weight: 400;
	letter-spacing: 0.011em;
	line-height: 1.2;
}

.offer { 
	font-size: clamp(19px, 2.2vw, 24px); 
	color: var(--text); 
	margin: 0 0 var(--spacing-3xl); 
	line-height: 1.5;
	max-width: 100%;
	font-weight: 400;
	opacity: 0.9;
}

/* Enhanced Offer Content Layout */
.offer-content {
	max-width: 100%;
	margin: 0 0 var(--spacing-3xl);
	text-align: left;
}

.offer {
	text-align: left !important;
	max-width: 100% !important;
}

.offer-intro {
	margin-bottom: var(--spacing-2xl);
}

.offer-intro p {
	font-size: clamp(18px, 2vw, 22px);
	color: var(--text);
	margin: 0 0 var(--spacing-lg);
	line-height: 1.6;
	font-weight: 400;
}

.offer-benefits {
	margin-bottom: var(--spacing-2xl);
	padding: var(--spacing-xl);
	background: var(--surface-elevated);
	border-radius: var(--radius-xl);
	border: 0.5px solid var(--border);
	box-shadow: var(--shadow);
}

.offer-benefits h3 {
	font-size: clamp(20px, 2.5vw, 24px);
	color: var(--text);
	margin: 0 0 var(--spacing-lg);
	font-weight: 600;
	letter-spacing: -0.022em;
}

.benefits-list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.benefits-list li {
	position: relative;
	padding: var(--spacing-sm) 0 var(--spacing-sm) var(--spacing-2xl);
	font-size: clamp(16px, 1.8vw, 20px);
	color: var(--text);
	line-height: 1.5;
	font-weight: 400;
}

.benefits-list li::before {
	content: "✓";
	position: absolute;
	left: 0;
	top: var(--spacing-sm);
	color: var(--success);
	font-weight: 700;
	font-size: 18px;
	width: 20px;
	height: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--success-light);
	border-radius: 50%;
}

.offer-cta {
	text-align: center;
	padding: var(--spacing-lg);
	background: linear-gradient(135deg, var(--accent-light) 0%, rgba(0,122,255,0.05) 100%);
	border-radius: var(--radius-xl);
	border: 1px solid rgba(0,122,255,0.2);
}

.offer-cta p {
	font-size: clamp(18px, 2vw, 22px);
	color: var(--text);
	margin: 0;
	font-weight: 500;
	line-height: 1.4;
}

.hero-media { 
	border-radius: var(--radius-3xl); 
	overflow: hidden; 
	box-shadow: var(--shadow-xl); 
	transform: translateY(16px);
	transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
	border: 0.5px solid var(--border);
	max-width: 600px;
	width: 100%;
	margin-top: var(--spacing-3xl);
}

.hero-media:hover {
	transform: translateY(12px);
	box-shadow: var(--shadow-xl), 0 0 0 1px rgba(0,122,255,0.1);
}

.parallax-container { 
	perspective: 1000px; 
}

.parallax-img { 
	transform: translateY(0) rotateX(0.0001deg); 
	will-change: transform; 
	transition: transform 0.6s cubic-bezier(.2,.6,.2,1);
	width: 100%;
	height: auto;
}

.cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: var(--spacing-sm);
	padding: var(--spacing-lg) var(--spacing-2xl);
	border-radius: 980px;
	background: var(--button-primary);
	color: #fff;
	font-weight: 500;
	font-size: 17px;
	box-shadow: 0 4px 14px rgba(0,122,255,0.25);
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	border: none;
	cursor: pointer;
	text-decoration: none;
	position: relative;
	overflow: hidden;
	letter-spacing: -0.022em;
}

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

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

.cta:hover { 
	background: var(--button-primary-hover);
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(0,122,255,0.35);
}

.cta:active { 
	transform: translateY(0);
	box-shadow: 0 4px 14px rgba(0,122,255,0.25);
}

.cta.primary {
	background: var(--button-primary);
	font-size: 18px;
	padding: var(--spacing-xl) var(--spacing-3xl);
	font-weight: 500;
	box-shadow: 0 6px 20px rgba(0,122,255,0.3);
	display: block;
	margin: 0 auto;
}

.cta.primary:hover {
	background: var(--button-primary-hover);
	box-shadow: 0 8px 25px rgba(0,122,255,0.4);
}

.cta.secondary {
	background: transparent;
	color: var(--button-secondary);
	border: 1px solid var(--button-secondary);
	box-shadow: none;
}

.cta.secondary:hover {
	background: var(--button-secondary);
	color: white;
	transform: translateY(-2px);
	box-shadow: 0 4px 14px rgba(29,29,31,0.25);
}

.cta:disabled {
	opacity: 0.4;
	cursor: not-allowed;
	transform: none !important;
	background: #d1d1d6 !important;
	color: #8e8e93 !important;
	box-shadow: none !important;
}

/* Partnership Badge */
.partnership-badge {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: var(--spacing-sm);
	margin: 0 auto var(--spacing-2xl) auto;
	padding: var(--spacing-lg);
	background: var(--gradient-surface);
	border-radius: var(--radius-2xl);
	border: 0.5px solid var(--border);
	box-shadow: var(--shadow-md);
	max-width: 600px;
	width: 100%;
}

/* Simple Steps Layout */
.simple-steps {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: var(--spacing-xl);
	margin: var(--spacing-3xl) 0;
	padding: var(--spacing-2xl);
	background: var(--surface-elevated);
	border-radius: var(--radius-2xl);
	border: 0.5px solid var(--border);
	box-shadow: var(--shadow-md);
}

.step-item {
	display: flex;
	align-items: flex-start;
	gap: var(--spacing-lg);
	padding: var(--spacing-lg);
	background: var(--bg);
	border-radius: var(--radius-xl);
	border: 0.5px solid var(--border);
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	position: relative;
	overflow: hidden;
}

.step-item::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 0;
	height: 4px;
	background: var(--gradient-primary);
	transition: width 0.4s ease;
}

.step-item:hover {
	transform: translateY(-2px);
	box-shadow: var(--shadow-lg);
	border-color: var(--accent);
}

.step-item:hover::before {
	width: 100%;
}

.step-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	background: var(--gradient-primary);
	color: white;
	border-radius: 50%;
	font-weight: 700;
	font-size: 20px;
	box-shadow: 0 4px 14px rgba(0,122,255,0.25);
	flex-shrink: 0;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.step-item:hover .step-icon {
	transform: scale(1.1);
	box-shadow: 0 6px 20px rgba(0,122,255,0.35);
}

.step-text h3 {
	margin: 0 0 var(--spacing-sm) 0;
	font-size: 18px;
	font-weight: 600;
	color: var(--text);
	line-height: 1.3;
}

.step-text p {
	margin: 0;
	color: var(--muted);
	font-size: 15px;
	line-height: 1.5;
}

/* CTA Button */
.cta-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: var(--spacing-sm);
	padding: var(--spacing-xl) var(--spacing-3xl);
	border-radius: 980px;
	background: var(--button-primary);
	color: #fff;
	font-weight: 600;
	font-size: 18px;
	box-shadow: 0 6px 20px rgba(0,122,255,0.3);
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	border: none;
	cursor: pointer;
	text-decoration: none;
	position: relative;
	overflow: hidden;
	letter-spacing: -0.022em;
	width: 100%;
	max-width: 300px;
	margin: 0 auto;
}

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

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

.cta-button:hover {
	background: var(--button-primary-hover);
	transform: translateY(-2px);
	box-shadow: 0 8px 25px rgba(0,122,255,0.4);
}

.cta-button:active {
	transform: translateY(0);
	box-shadow: 0 6px 20px rgba(0,122,255,0.3);
}

/* Benefits Section */
.benefits {
	background: var(--gradient-surface);
	padding: var(--spacing-4xl) 0;
}

.benefits-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: var(--spacing-2xl);
	margin: var(--spacing-3xl) 0;
}

.benefit-item {
	text-align: center;
	padding: var(--spacing-2xl);
	background: var(--surface-elevated);
	border-radius: var(--radius-2xl);
	border: 0.5px solid var(--border);
	box-shadow: var(--shadow-md);
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	position: relative;
	overflow: hidden;
}

.benefit-item::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: var(--gradient-primary);
	opacity: 0;
	transition: opacity 0.3s ease;
}

.benefit-item:hover {
	transform: translateY(-4px);
	box-shadow: var(--shadow-lg);
	border-color: var(--accent);
}

.benefit-item:hover::before {
	opacity: 1;
}

.benefit-icon {
	font-size: 48px;
	margin-bottom: var(--spacing-lg);
	display: block;
}

.benefit-item h3 {
	margin: 0 0 var(--spacing-md) 0;
	font-size: 20px;
	font-weight: 600;
	color: var(--text);
}

.benefit-item p {
	margin: 0;
	color: var(--muted);
	line-height: 1.6;
	font-size: 15px;
}

.partnership-content {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: var(--spacing-md);
}

.partnership-logo {
	width: 24px;
	height: 24px;
}

.partnership-text {
	font-weight: 600;
	font-size: 16px;
	color: var(--text);
	letter-spacing: -0.022em;
}

.partnership-description {
	font-size: 14px;
	color: var(--muted);
	margin: 0;
	font-weight: 500;
	text-align: center;
}

/* Program Details */
.program-details {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: var(--spacing-xl);
	margin: var(--spacing-2xl) 0;
}

.detail-item {
	padding: var(--spacing-xl);
	background: var(--surface-elevated);
	border-radius: var(--radius-xl);
	border: 0.5px solid var(--border);
	box-shadow: var(--shadow);
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.detail-item:hover {
	transform: translateY(-2px);
	box-shadow: var(--shadow-md);
}

.detail-item h3 {
	margin: 0 0 var(--spacing-md) 0;
	font-size: 18px;
	font-weight: 600;
	color: var(--text);
}

.detail-item p {
	margin: 0;
	color: var(--muted);
	line-height: 1.6;
}

/* Reviews Section */
.reviews {
	background: var(--gradient-surface);
	padding: var(--spacing-4xl) 0;
}

.reviews-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
	gap: var(--spacing-xl);
	margin: var(--spacing-2xl) 0;
}

.review-card {
	background: var(--surface-elevated);
	border-radius: var(--radius-2xl);
	padding: var(--spacing-xl);
	border: 0.5px solid var(--border);
	box-shadow: var(--shadow-md);
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	position: relative;
	overflow: hidden;
}

.review-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--shadow-lg);
}

.review-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: var(--gradient-primary);
	opacity: 0;
	transition: opacity 0.3s ease;
}

.review-card:hover::before {
	opacity: 1;
}

.review-header {
	display: flex;
	align-items: center;
	gap: var(--spacing-md);
	margin-bottom: var(--spacing-md);
}

.review-avatar {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	object-fit: cover;
	border: 2px solid var(--border);
}

.review-info h4 {
	margin: 0;
	font-size: 16px;
	font-weight: 600;
	color: var(--text);
}

.review-rating {
	font-size: 14px;
	margin: 2px 0;
}

.review-verified {
	font-size: 12px;
	color: var(--success);
	font-weight: 500;
	background: var(--success-light);
	padding: 2px 8px;
	border-radius: 12px;
}

.review-text {
	margin: 0 0 var(--spacing-md) 0;
	color: var(--text);
	line-height: 1.6;
	font-size: 15px;
}

.review-meta {
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: 12px;
	color: var(--muted);
}

.review-date {
	font-weight: 500;
}

.review-location {
	font-weight: 400;
}

/* Important Notice */
.important-notice {
	margin-top: var(--spacing-2xl);
	padding: var(--spacing-xl);
	background: linear-gradient(135deg, #fff3cd 0%, #ffeaa7 100%);
	border-radius: var(--radius-xl);
	border: 1px solid #ffc107;
	box-shadow: var(--shadow-md);
}

.important-notice h3 {
	margin: 0 0 var(--spacing-md) 0;
	color: #856404;
	font-size: 18px;
	font-weight: 600;
}

.important-notice ul {
	margin: 0;
	padding-left: var(--spacing-lg);
	color: #856404;
}

.important-notice li {
	margin-bottom: var(--spacing-sm);
	font-weight: 500;
}

/* Social Proof Stats */
.social-proof {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: var(--spacing-xl);
	margin-top: var(--spacing-3xl);
	padding: var(--spacing-2xl);
	background: var(--surface-elevated);
	border-radius: var(--radius-2xl);
	border: 0.5px solid var(--border);
	box-shadow: var(--shadow-md);
}

.proof-stat {
	text-align: center;
}

.proof-stat h3 {
	margin: 0 0 var(--spacing-sm) 0;
	font-size: 36px;
	font-weight: 700;
	color: var(--accent);
	letter-spacing: -0.03em;
}

.proof-stat p {
	margin: 0;
	color: var(--muted);
	font-size: 14px;
	font-weight: 500;
}

/* Focus styles for accessibility */
.cta:focus-visible,
button:focus-visible,
input:focus-visible,
a:focus-visible {
	outline: 2px solid var(--accent);
	outline-offset: 2px;
}

.mobile-menu-toggle:focus-visible {
	outline: 2px solid var(--accent);
	outline-offset: 2px;
	border-radius: 4px;
}

/* Skip link for screen readers */
.skip-link {
	position: absolute;
	top: -40px;
	left: 6px;
	background: var(--accent);
	color: white;
	padding: 8px;
	text-decoration: none;
	border-radius: 4px;
	z-index: 1000;
}

.skip-link:focus {
	top: 6px;
}

/* Program/Info */
.grid.two { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.copy h2 { font-size: 28px; letter-spacing: -0.02em; margin: 0 0 12px; }
.copy p { color: var(--muted); margin: 0 0 16px; }
.steps { list-style: none; padding: 0; margin: 12px 0 0; }
.steps li { padding: 10px 0 10px 26px; position: relative; }
.steps li::before { content: "\2713"; position: absolute; left: 0; top: 8px; color: #06c167; }

.info-grid { align-items: stretch; }
.info-step { border: 0.5px solid var(--border); border-radius: var(--radius-2xl); padding: var(--spacing-2xl); background: var(--surface-elevated); box-shadow: var(--shadow-md); }
.info-step h3 { margin: 6px 0 8px; font-size: 18px; }
.info-step p { margin: 0; color: var(--muted); }
.step-index { display: inline-flex; align-items: center; justify-content: center; width: 28px; height: 28px; border-radius: 999px; background: #111; color: #fff; font-weight: 700; font-size: 14px; }

.card {
	border: 0.5px solid var(--border);
	border-radius: var(--radius-2xl);
	padding: var(--spacing-2xl);
	box-shadow: var(--shadow-md);
	background: var(--surface-elevated);
}
.stats { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; align-items: center; justify-items: center; }
.stat { text-align: center; }
.stat .num { font-size: 36px; font-weight: 700; letter-spacing: -0.03em; }
.stat .label { color: var(--muted); font-size: 14px; }

/* Signup */
.signup { 
	display: none; /* Hidden form */
}

.form-card { 
	align-self: start;
	background: var(--gradient-surface);
	border: 0.5px solid var(--border);
	box-shadow: var(--shadow-lg);
	border-radius: var(--radius-2xl);
}

.field { 
	display: grid; 
	gap: var(--spacing-sm); 
	margin-bottom: var(--spacing-lg);
	position: relative;
}

label { 
	font-weight: 600; 
	color: var(--text);
	font-size: 14px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

input[type="text"], 
input[type="email"] {
	width: 100%;
	padding: var(--spacing-md) var(--spacing-lg);
	border: 1px solid var(--border);
	border-radius: var(--radius-md);
	background: #fff;
	transition: all 0.3s ease;
	font-size: 17px;
	color: var(--text);
	position: relative;
	font-family: inherit;
	letter-spacing: -0.022em;
	-webkit-appearance: none;
	appearance: none;
}

/* Enhanced Mobile Form Inputs */
@media (max-width: 768px) {
	input[type="text"], 
	input[type="email"] {
		font-size: 16px; /* Prevents zoom on iOS */
		padding: var(--spacing-lg) var(--spacing-md);
		border-radius: var(--radius-lg);
		min-height: 48px; /* Better touch target */
	}
	
	.field {
		margin-bottom: var(--spacing-xl);
	}
	
	label {
		font-size: 16px;
		margin-bottom: var(--spacing-sm);
		display: block;
	}
	
	.cta {
		min-height: 48px;
		font-size: 16px;
		padding: var(--spacing-lg) var(--spacing-xl);
	}
}

@media (max-width: 480px) {
	input[type="text"], 
	input[type="email"] {
		font-size: 16px;
		padding: var(--spacing-md);
		min-height: 44px;
	}
	
	.field {
		margin-bottom: var(--spacing-lg);
	}
	
	label {
		font-size: 14px;
	}
	
	.cta {
		min-height: 44px;
		font-size: 15px;
		padding: var(--spacing-md) var(--spacing-lg);
	}
}

input[type="text"]:focus, 
input[type="email"]:focus { 
	outline: none; 
	border-color: var(--accent); 
	box-shadow: 0 0 0 4px rgba(0,122,255,0.1);
}

input[type="text"]:valid,
input[type="email"]:valid {
	border-color: var(--success);
}

input[type="text"]:invalid:not(:placeholder-shown),
input[type="email"]:invalid:not(:placeholder-shown) {
	border-color: var(--error);
}

.hint { 
	color: var(--muted); 
	font-size: 12px;
	margin-top: var(--spacing-xs);
}

.agree { 
	color: var(--muted); 
	font-size: 13px;
	text-align: center;
	margin-top: var(--spacing-lg);
	line-height: 1.5;
}

.link { 
	color: var(--accent); 
	text-decoration: underline;
	transition: color 0.3s ease;
}

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

.note { color: #b1440e; font-weight: 600; }

/* Eligibility */
.eligibility .checklist { list-style: none; padding: 0; margin: 0; }
.eligibility .checklist li { padding: 10px 0 10px 26px; position: relative; }
.eligibility .checklist li::before { content: "\2713"; position: absolute; left: 0; top: 8px; color: #06c167; }

/* Footer */
.site-footer { border-top: 1px solid var(--border); margin-top: 64px; }
.site-footer .legal { color: var(--muted); font-size: 12px; max-width: 840px; margin: 0 auto; padding: 18px 20px 32px; text-align: center;}

/* Reveal on scroll */
.reveal { opacity: 0; transform: translateY(14px); transition: opacity .6s ease, transform .6s cubic-bezier(.2,.6,.2,1); }
.reveal.in-view { opacity: 1; transform: translateY(0); }

/* Animations */
@keyframes float { 0%,100% { transform: translateY(8px) } 50% { transform: translateY(0) } }

/* Mobile Overflow Prevention */
@media (max-width: 768px) {
	html, body {
		overflow-x: hidden !important;
		width: 100% !important;
		max-width: 100vw !important;
	}
	
	* {
		max-width: 100vw !important;
		box-sizing: border-box !important;
	}
	
	.hero, .welcome, .section, .content {
		overflow-x: hidden !important;
		width: 100% !important;
		max-width: 100vw !important;
	}
}

/* Enhanced Responsive Design - Mobile First Approach */

/* Extra Large Screens (1400px+) */
@media (min-width: 1400px) {
	.content {
		max-width: 100%;
		padding: 0 var(--spacing-2xl);
		width: 100%;
	}
	
	.hero-inner {
		max-width: 100%;
		width: 100%;
	}
	
	.hero-media {
		max-width: 100%;
		width: 100%;
	}
}

/* Large Screens (1200px - 1399px) */
@media (min-width: 1200px) and (max-width: 1399px) {
	.content {
		max-width: 100%;
		padding: 0 var(--spacing-xl);
		width: 100%;
	}
	
	.hero-inner {
		max-width: 100%;
		width: 100%;
	}
	
	.hero-media {
		max-width: 100%;
		width: 100%;
	}
}

/* Desktop Screens (1024px - 1199px) */
@media (min-width: 1024px) and (max-width: 1199px) {
	.hero { 
		min-height: 80vh;
		padding: var(--spacing-4xl) 0;
	}
	
	.hero-inner {
		max-width: 100%;
		width: 100%;
	}
	
	.hero-media { 
		max-width: 100%;
		width: 100%;
		margin-top: var(--spacing-2xl);
	}
	
	.content {
		padding: 0 var(--spacing-lg);
		max-width: 100%;
		width: 100%;
	}
	
	.benefits-grid {
		grid-template-columns: repeat(3, 1fr);
		gap: var(--spacing-xl);
	}
	
	.reviews-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: var(--spacing-xl);
	}
}

/* Tablet Screens (768px - 1023px) */
@media (min-width: 768px) and (max-width: 1023px) {
	.hero {
		min-height: 75vh;
		padding: var(--spacing-4xl) 0;
	}
	
	.hero-inner {
		max-width: 100%;
		width: 100%;
		padding: 0 var(--spacing-lg);
	}
	
	.headline {
		font-size: clamp(40px, 6vw, 64px);
	}
	
	.subheadline {
		font-size: clamp(20px, 3vw, 28px);
	}
	
	.offer {
		font-size: clamp(16px, 2.5vw, 20px);
		max-width: 100%;
	}
	
	.offer-content {
		margin: 0 0 var(--spacing-2xl);
	}
	
	.offer-intro p {
		font-size: clamp(16px, 2.2vw, 18px);
		margin-bottom: var(--spacing-md);
	}
	
	.offer-benefits {
		padding: var(--spacing-lg);
		margin-bottom: var(--spacing-lg);
	}
	
	.offer-benefits h3 {
		font-size: clamp(18px, 2.8vw, 22px);
		margin-bottom: var(--spacing-md);
	}
	
	.benefits-list li {
		font-size: clamp(15px, 2vw, 18px);
		padding: var(--spacing-xs) 0 var(--spacing-xs) var(--spacing-xl);
	}
	
	.offer-cta {
		padding: var(--spacing-md);
	}
	
	.offer-cta p {
		font-size: clamp(16px, 2.2vw, 20px);
	}
	
	.hero-media {
		max-width: 100%;
		width: 100%;
		transform: translateY(12px);
		margin-top: var(--spacing-2xl);
	}
	
	.cta.primary {
		font-size: 17px;
		padding: var(--spacing-lg) var(--spacing-2xl);
		width: auto;
		min-width: 200px;
	}
	
	.section { 
		padding: var(--spacing-3xl) 0; 
	}
	
	.content {
		padding: 0 var(--spacing-lg);
		max-width: 100%;
		width: 100%;
	}
	
	.benefits-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: var(--spacing-xl);
	}
	
	.reviews-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: var(--spacing-lg);
	}
	
	.configure .configurator {
		grid-template-columns: 1fr;
		gap: var(--spacing-xl);
	}
}

/* Mobile Screens (481px - 767px) */
@media (min-width: 481px) and (max-width: 767px) {
	html, body {
		overflow-x: hidden;
		width: 100%;
		max-width: 100vw;
	}
	
	.hero {
		min-height: 70vh;
		padding: var(--spacing-3xl) 0;
		align-items: flex-start;
		text-align: left;
		width: 100%;
		max-width: 100vw;
		overflow-x: hidden;
	}
	
	.hero-inner {
		max-width: 100%;
		width: 100%;
		padding: 0 var(--spacing-md);
		text-align: left;
	}
	
	.headline {
		font-size: clamp(32px, 7vw, 48px);
	}
	
	.subheadline {
		font-size: clamp(18px, 4vw, 24px);
	}
	
	.offer {
		font-size: clamp(15px, 3.5vw, 18px);
		max-width: 100%;
		width: 100%;
	}
	
	.offer-content {
		margin: 0 0 var(--spacing-xl);
	}
	
	.offer-intro p {
		font-size: clamp(14px, 3vw, 16px);
		margin-bottom: var(--spacing-sm);
	}
	
	.offer-benefits {
		padding: var(--spacing-md);
		margin-bottom: var(--spacing-md);
	}
	
	.offer-benefits h3 {
		font-size: clamp(16px, 3.2vw, 20px);
		margin-bottom: var(--spacing-sm);
	}
	
	.benefits-list li {
		font-size: clamp(14px, 2.5vw, 16px);
		padding: var(--spacing-xs) 0 var(--spacing-xs) var(--spacing-lg);
	}
	
	.benefits-list li::before {
		width: 16px;
		height: 16px;
		font-size: 14px;
		top: var(--spacing-xs);
	}
	
	.offer-cta {
		padding: var(--spacing-sm);
	}
	
	.offer-cta p {
		font-size: clamp(14px, 2.5vw, 18px);
	}
	
	.hero-media {
		max-width: 100%;
		width: 100%;
		transform: translateY(8px);
		margin-top: var(--spacing-xl);
	}
	
	.cta.primary {
		font-size: 16px;
		padding: var(--spacing-md) var(--spacing-xl);
		width: 100%;
		justify-content: center;
		display: block;
		margin: var(--spacing-lg) auto 0;
		text-align: center;
	}
	
	.section { 
		padding: var(--spacing-2xl) 0; 
	}
	
	.top-nav { 
		padding: var(--spacing-sm) var(--spacing-md); 
	}
	
	.content {
		padding: 0 var(--spacing-md);
		max-width: 100%;
		width: 100%;
	}
	
	.benefits-grid {
		grid-template-columns: 1fr;
		gap: var(--spacing-lg);
	}
	
	.reviews-grid {
		grid-template-columns: 1fr;
		gap: var(--spacing-lg);
	}
	
	.configure .configurator {
		grid-template-columns: 1fr;
		gap: var(--spacing-lg);
	}
}

/* Small Mobile Screens (320px - 480px) */
/* Extra Small Mobile Screens (320px - 375px) */
@media (max-width: 375px) {
	html, body {
		overflow-x: hidden;
		width: 100%;
		max-width: 100vw;
	}
	
	.hero {
		min-height: 50vh;
		padding: var(--spacing-xl) 0;
		align-items: flex-start;
		text-align: left;
		width: 100%;
		max-width: 100vw;
		overflow-x: hidden;
	}
	
	.hero-inner {
		padding: 0 var(--spacing-xs);
		text-align: left;
		max-width: 100%;
		width: 100%;
	}
	
	.headline {
		font-size: clamp(20px, 12vw, 28px);
		margin-bottom: var(--spacing-xs);
	}
	
	.subheadline {
		font-size: clamp(12px, 6vw, 16px);
		margin-bottom: var(--spacing-sm);
	}
	
	.offer {
		font-size: clamp(11px, 5vw, 14px);
		margin-bottom: var(--spacing-md);
		max-width: 100%;
		width: 100%;
	}
	
	.hero-media {
		margin-top: var(--spacing-md);
	}
	
	.cta {
		font-size: 13px;
		padding: var(--spacing-xs) var(--spacing-md);
	}
	
	.cta.primary {
		font-size: 15px;
		padding: var(--spacing-sm) var(--spacing-md);
		display: block;
		margin: var(--spacing-sm) auto 0;
		text-align: center;
	}
	
	.section {
		padding: var(--spacing-lg) 0;
	}
	
	.content {
		padding: 0 var(--spacing-xs);
		max-width: 100%;
		width: 100%;
	}
	
	.benefits-grid {
		grid-template-columns: 1fr;
		gap: var(--spacing-sm);
	}
	
	.reviews-grid {
		grid-template-columns: 1fr;
		gap: var(--spacing-sm);
	}
	
	.configure .configurator {
		grid-template-columns: 1fr;
		gap: var(--spacing-sm);
	}
}

@media (max-width: 480px) {
	html, body {
		overflow-x: hidden;
		width: 100%;
		max-width: 100vw;
	}
	
	.hero {
		min-height: 60vh;
		padding: var(--spacing-2xl) 0;
		align-items: flex-start;
		text-align: left;
		width: 100%;
		max-width: 100vw;
		overflow-x: hidden;
	}
	
	.hero-inner {
		padding: 0 var(--spacing-sm);
		text-align: left;
		max-width: 100%;
		width: 100%;
	}
	
	.headline {
		font-size: clamp(24px, 10vw, 36px);
		margin-bottom: var(--spacing-sm);
	}
	
	.subheadline {
		font-size: clamp(14px, 5vw, 18px);
		margin-bottom: var(--spacing-md);
	}
	
	.offer {
		font-size: clamp(12px, 4vw, 16px);
		margin-bottom: var(--spacing-lg);
		max-width: 100%;
		width: 100%;
	}
	
	.offer-content {
		margin: 0 0 var(--spacing-lg);
	}
	
	.offer-intro p {
		font-size: clamp(12px, 3.5vw, 14px);
		margin-bottom: var(--spacing-xs);
	}
	
	.offer-benefits {
		padding: var(--spacing-sm);
		margin-bottom: var(--spacing-sm);
	}
	
	.offer-benefits h3 {
		font-size: clamp(14px, 3.5vw, 18px);
		margin-bottom: var(--spacing-xs);
	}
	
	.benefits-list li {
		font-size: clamp(12px, 2.8vw, 14px);
		padding: 2px 0 2px var(--spacing-md);
	}
	
	.benefits-list li::before {
		width: 14px;
		height: 14px;
		font-size: 12px;
		top: 2px;
	}
	
	.offer-cta {
		padding: var(--spacing-xs);
	}
	
	.offer-cta p {
		font-size: clamp(12px, 2.8vw, 16px);
	}
	
	.hero-media {
		margin-top: var(--spacing-lg);
	}
	
	.cta {
		font-size: 14px;
		padding: var(--spacing-sm) var(--spacing-lg);
	}
	
	.cta.primary {
		font-size: 16px;
		padding: var(--spacing-md) var(--spacing-lg);
		display: block;
		margin: var(--spacing-md) auto 0;
		text-align: center;
	}
	
	.section {
		padding: var(--spacing-xl) 0;
	}
}

/* Grid responsive */
@media (max-width: 768px) {
	.grid.two { 
		grid-template-columns: 1fr; 
		gap: var(--spacing-lg);
	}
	
	.grid.three {
		grid-template-columns: 1fr;
		gap: var(--spacing-md);
	}
}

/* Loading states */
body.loading {
	overflow: hidden;
}

body.loading .reveal {
	opacity: 0;
	transform: translateY(20px);
}

body.loaded .reveal {
	transition: opacity 0.6s ease, transform 0.6s ease;
}

/* Enhanced Performance Optimizations */
* {
	will-change: auto;
}

.parallax-img,
.welcome-video,
.cta,
.step-card,
.configure .gallery {
	will-change: transform;
}

/* Mobile Performance Optimizations */
@media (max-width: 768px) {
	/* Reduce animations on mobile for better performance */
	.cta::before,
	.step-number::before,
	.configure .swatch::before,
	.configure .storage-option::before,
	.get-iphone-btn::before {
		display: none;
	}
	
	/* Optimize transforms for mobile */
	.cta:hover,
	.step-card:hover,
	.configure .gallery:hover {
		transform: none;
	}
	
	/* Reduce box-shadows on mobile */
	.hero-media {
		box-shadow: var(--shadow-md);
	}
	
	.benefit-item,
	.review-card,
	.step-card {
		box-shadow: var(--shadow);
	}
}

/* Critical CSS for above-the-fold content */
@media (max-width: 480px) {
	/* Further optimize for small screens */
	.hero {
		background-attachment: scroll; /* Better performance than fixed */
	}
	
	/* Reduce complex gradients on mobile */
	.hero-bg {
		background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
	}
	
	/* Ensure welcome section maintains light background on mobile */
	.welcome {
		background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
	}
}

/* Enhanced Touch Interactions */
@media (hover: none) and (pointer: coarse) {
	/* Touch device optimizations */
	.cta,
	button:not(.dot),
	.nav-links a,
	.mobile-menu-toggle {
		min-height: 44px;
		min-width: 44px;
	}
	
	/* Keep dots small on touch devices */
	.dot {
		min-height: 6px;
		min-width: 6px;
	}
	
	.cta {
		padding: var(--spacing-lg) var(--spacing-xl);
	}
	
	.nav-links a {
		padding: var(--spacing-lg) var(--spacing-md);
	}
	
	/* Remove hover effects on touch devices */
	.cta:hover,
	.step-card:hover,
	.benefit-item:hover,
	.review-card:hover {
		transform: none;
		box-shadow: var(--shadow-md);
	}
}

/* High DPI Display Optimizations */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
	img {
		image-rendering: -webkit-optimize-contrast;
		image-rendering: crisp-edges;
	}
}

/* Landscape Mobile Orientation */
@media (max-width: 768px) and (orientation: landscape) {
	.hero {
		min-height: 100vh;
		padding: var(--spacing-lg) 0;
	}
	
	.hero-inner {
		padding: 0 var(--spacing-md);
	}
	
	.headline {
		font-size: clamp(24px, 6vw, 36px);
	}
	
	.subheadline {
		font-size: clamp(16px, 3vw, 20px);
	}
	
	.offer {
		font-size: clamp(14px, 2.5vw, 16px);
	}
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
	* { 
		animation: none !important; 
		transition: none !important;
		will-change: auto !important;
	}
	
	.parallax-img {
		transform: none !important;
	}
	
	/* Keep essential transitions for usability */
	.cta:focus-visible,
	button:focus-visible,
	input:focus-visible {
		transition: outline 0.2s ease;
	}
}

/* Optimize animations for better performance */
@media (max-width: 768px) {
	.cta::before,
	.step-number::before,
	.configure .swatch::before,
	.configure .storage-option::before,
	.get-iphone-btn::before {
		display: none;
	}
	
	.cta:hover,
	.step-card:hover,
	.configure .gallery:hover {
		transform: none;
	}
}

/* Apple Official Welcome Section Structure */
.section-welcome {
	position: relative;
	background: #000;
	color: #fff;
	overflow: hidden;
}

.section-welcome.no-pad {
	padding: 0;
}

.marquee {
	position: absolute;
	left: 0;
	right: 0;
	z-index: 2;
	pointer-events: none;
}

.marquee-top {
	top: 0;
	padding-top: 80px;
}

.marquee-bottom {
	bottom: 0;
	padding-bottom: 80px;
}

.viewport-content {
	max-width: 100%;
	margin: 0 auto;
	padding: 0 20px;
	width: 100%;
}

.marquee-header {
	text-align: center;
}

.header-eyebrow {
	font-size: clamp(28px, 6vw, 56px);
	color: #fff;
	margin: 0 0 16px;
	letter-spacing: -0.003em;
	font-weight: 600;
	line-height: 1.05;
}

.header-headline {
	font-size: clamp(21px, 3.5vw, 32px);
	color: #fff;
	margin: 0;
	opacity: 0.8;
	font-weight: 400;
	letter-spacing: 0.011em;
	line-height: 1.2;
}
.eyebrow { 
	font-size: clamp(28px, 6vw, 56px); 
	color: #fff; 
	margin: 0 0 16px; 
	letter-spacing: -0.003em; 
	font-weight: 600;
	line-height: 1.05;
}
.welcome-subtitle {
	font-size: clamp(21px, 3.5vw, 32px);
	color: #fff;
	margin: 0;
	opacity: 0.8;
	font-weight: 400;
	letter-spacing: 0.011em;
	line-height: 1.2;
}
.headline-hero { 
	font-size: clamp(28px, 6vw, 56px); 
	letter-spacing: -0.04em; 
	margin: 6px 0 0; 
	font-weight: 700; 
}

/* Enhanced Responsive Video Container */
.inline-media-component-container {
	position: relative;
	width: 100%;
	height: 100vh;
	min-height: 600px;
	background: #000;
}

.video-wrapper {
	position: relative;
	width: 100%;
	height: 100%;
	overflow: hidden;
}

.video-wrapper video {
	width: 100%;
	height: 100%;
	object-fit: cover;
	position: absolute;
	top: 0;
	left: 0;
}

/* Responsive Video Sizing */
@media (max-width: 1024px) {
	.inline-media-component-container {
		height: 80vh;
		min-height: 500px;
	}
}

@media (max-width: 768px) {
	.inline-media-component-container {
		height: 70vh;
		min-height: 400px;
	}
}

@media (max-width: 480px) {
	.inline-media-component-container {
		height: 60vh;
		min-height: 300px;
	}
}

/* Welcome Video Responsive */
.welcome-video {
	width: 100%;
	height: 100%;
	object-fit: cover;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

@media (max-width: 768px) {
	.welcome-video {
		object-fit: cover;
		object-position: center;
	}
}

@media (max-width: 480px) {
	.welcome-video {
		object-fit: cover;
		object-position: center top;
	}
}

.overview-welcome-hero-startframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: 1;
}

.overview-welcome-hero-startframe img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
/* Apple Official Play Button */
.inline-media-ui {
	position: absolute;
	right: 50px;
	bottom: 50px;
	z-index: 10;
	pointer-events: auto;
}

.play-pause-button {
	width: 80px;
	height: 80px;
	border-radius: 50%;
	border: 2px solid rgba(255,255,255,0.3);
	background: rgba(0,0,0,0.4);
	backdrop-filter: blur(20px);
	cursor: pointer;
	box-shadow: 0 8px 32px rgba(0,0,0,0.3);
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	color: white;
	border: none;
}

.play-pause-button:hover {
	transform: translateY(-2px) scale(1.05);
	background: rgba(0,0,0,0.8);
	border-color: rgba(255,255,255,1);
	box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

.play-pause-button::before {
	content: '';
	width: 0;
	height: 0;
	border-left: 20px solid white;
	border-top: 12px solid transparent;
	border-bottom: 12px solid transparent;
	margin-left: 4px;
}

/* Pause state - show two vertical bars */
.play-pause-button.playing::before {
	content: '';
	width: 6px;
	height: 20px;
	border: none;
	background: white;
	margin: 0 2px;
	box-shadow: 6px 0 0 white;
}

/* Apple Official Pricing and Buy Button */
.marquee-detail {
	text-align: center;
}

.detail-inner-group {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 20px;
}

.typography-welcome-pricing {
	font-size: 18px;
	color: #fff;
	margin: 0;
	font-weight: 400;
	line-height: 1.2;
}

.marquee-ctas-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 12px 24px;
	background: #007AFF;
	color: #fff;
	text-decoration: none;
	border-radius: 980px;
	font-weight: 500;
	font-size: 17px;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	box-shadow: 0 4px 14px rgba(0,122,255,0.25);
}

.marquee-ctas-link:hover {
	background: #0056b3;
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(0,122,255,0.35);
}

.footnote {
	font-size: 12px;
	color: #8e8e93;
	text-decoration: none;
}

.footnote-supglyph {
	vertical-align: super;
}
.welcome-control:hover { 
	transform: translateY(-2px) scale(1.05);
	background: rgba(0,0,0,0.8);
	border-color: rgba(255,255,255,1);
	box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}
.welcome-control[aria-pressed="true"] { 
	background: rgba(0,0,0,0.7); 
	border-color: rgba(255,255,255,0.9);
}
.welcome-control[aria-pressed="true"] .play-icon {
	transform: scale(0.8);
}

.play-icon {
	width: 32px;
	height: 32px;
	transition: transform 0.3s ease;
}

.visually-hidden { 
	position: absolute !important; 
	height: 1px; 
	width: 1px; 
	overflow: hidden; 
	clip: rect(1px, 1px, 1px, 1px); 
	white-space: nowrap; 
}

/* Configurator */
.configure { 
	display: none; /* Hidden initially, shown only when user is eligible */
	opacity: 0;
	transform: translateY(20px);
	transition: opacity 0.6s ease, transform 0.6s ease;
	background: var(--gradient-surface);
	border-radius: var(--radius-3xl);
	padding: var(--spacing-3xl);
	margin: var(--spacing-2xl) 0;
	border: 0.5px solid var(--border);
	box-shadow: var(--shadow-lg);
	position: relative;
	overflow: hidden;
}

.configure::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: var(--gradient-primary);
}

.configure.visible {
	opacity: 1;
	transform: translateY(0);
}

.configure .configurator { 
	display: grid; 
	grid-template-columns: 1.5fr 1fr; 
	gap: var(--spacing-xl); 
	align-items: start; 
}

.configure .gallery { 
	border: 0.5px solid var(--border); 
	border-radius: var(--radius-2xl); 
	overflow: hidden; 
	background: var(--surface-elevated); 
	box-shadow: var(--shadow-md);
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	margin: 0;
	padding: 0;
}

.configure .gallery:hover {
	box-shadow: var(--shadow-lg);
	transform: translateY(-2px);
	border-color: var(--button-primary);
}
/* (revert) using default slide layout; visibility handled in JS */
.configure .dotnav { 
	list-style: none; 
	display: flex; 
	gap: 8px; 
	justify-content: center; 
	padding: 8px; 
	margin: 0; 
	border-top: 1px solid var(--border); 
	background: rgba(255, 255, 255, 0.9);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
}

.configure .dot { 
	width: 6px; 
	height: 6px; 
	border-radius: 50%; 
	background: #c7c7cc; 
	border: none; 
	cursor: pointer; 
	transition: all 0.2s ease;
	min-height: 6px !important;
	min-width: 6px !important;
}

.configure .dot:hover {
	background: #999;
	transform: scale(1.1);
}

.configure .dot.current { 
	background: #000; 
	transform: scale(1.1);
}

.configure .options fieldset { 
	border: 0.5px solid var(--border); 
	border-radius: var(--radius-xl); 
	padding: var(--spacing-2xl); 
	margin: 0 0 var(--spacing-2xl);
	background: var(--surface-elevated);
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	box-shadow: var(--shadow);
}

.configure .options fieldset.storage { 
	opacity: 0;
	transform: translateY(-20px) scale(0.98);
	transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
	pointer-events: none;
	box-shadow: 0 2px 4px rgba(0,0,0,0.1);
	margin-top: -10px;
	overflow: hidden;
}

.configure .options fieldset.storage.show {
	opacity: 1;
	transform: translateY(0) scale(1);
	pointer-events: auto;
	box-shadow: 0 8px 25px rgba(0,0,0,0.15), 0 3px 10px rgba(0,0,0,0.1);
	margin-top: 0;
}

.configure .options fieldset:hover {
	border-color: var(--button-primary);
	box-shadow: var(--shadow-md), 0 0 0 1px rgba(0,122,255,0.1);
	background: var(--accent-light);
}

.configure .options legend { 
	font-weight: 700; 
	font-size: 14px; 
	color: var(--text);
	text-transform: uppercase;
	letter-spacing: 0.5px;
	padding: 0 var(--spacing-sm);
}

/* Show only color circle in swatches */
.configure .swatch { 
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: var(--spacing-md); 
	border: 0.5px solid var(--border);
	border-radius: var(--radius-lg);
	cursor: pointer;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	position: relative;
	overflow: hidden;
	background: var(--surface-elevated);
	box-shadow: var(--shadow);
}

.configure .swatch::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(0,113,227,0.1), transparent);
	transition: left 0.5s ease;
}

.configure .swatch:hover::before {
	left: 100%;
}

.configure .swatch span { display: none; }
.configure .swatch img { 
	width: 40px; 
	height: 40px; 
	border-radius: 50%;
	transition: transform 0.3s ease;
}
.configure .swatch input { 
	position: absolute; 
	opacity: 0; 
	pointer-events: none; 
}

.configure .swatch:has(input:checked) { 
	border-color: var(--button-primary); 
	box-shadow: 0 4px 14px rgba(0,122,255,0.25), 0 0 0 4px rgba(0,122,255,0.1);
	background: var(--accent-light);
	transform: translateY(-2px);
}

.configure .swatch:has(input:checked) img {
	transform: scale(1.1);
}

.configure .storage-option { 
	display: inline-flex; 
	align-items: center; 
	gap: var(--spacing-sm); 
	padding: var(--spacing-lg) var(--spacing-xl); 
	border: 0.5px solid var(--border); 
	border-radius: var(--radius-lg); 
	margin: var(--spacing-xs); 
	cursor: pointer;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	background: var(--surface-elevated);
	position: relative;
	overflow: hidden;
	box-shadow: var(--shadow);
}

.configure .storage-option::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(0,113,227,0.1), transparent);
	transition: left 0.5s ease;
}

.configure .storage-option:hover::before {
	left: 100%;
}

.configure .storage-option:hover {
	border-color: var(--button-primary);
	box-shadow: 0 4px 14px rgba(0,122,255,0.2), 0 0 0 1px rgba(0,122,255,0.1);
	transform: translateY(-2px);
	background: var(--accent-light);
}

.configure .storage-option input { 
	accent-color: var(--accent);
	margin-right: var(--spacing-sm);
}

.configure .storage-option:has(input:checked) {
	border-color: var(--button-primary);
	background: var(--accent-light);
	box-shadow: 0 4px 14px rgba(0,122,255,0.25), 0 0 0 4px rgba(0,122,255,0.1);
	transform: translateY(-2px);
}

.configure fieldset[disabled] { 
	opacity: 0.6; 
	cursor: not-allowed;
}

@media (max-width: 980px) {
	.configure .configurator { grid-template-columns: 1fr; }
}

/* Configurator swipe transitions */
.configure .slides { 
	position: relative; 
	overflow: hidden; 
	min-height: 180px; 
	margin: 0;
	padding: 0;
}
.configure .slide { 
	position: absolute; 
	inset: 0; 
	transition: transform .35s ease; 
	margin: 0;
	padding: 0;
}
.configure .slide img { 
	width: 100%; 
	height: auto; 
	display: block; 
	margin: 0;
	padding: 0;
	object-fit: cover;
}

@media (min-width: 768px) {
	.configure .slides { min-height: 360px; }
}

/* Mobile specific fixes for gallery spacing */
@media (max-width: 767px) {
	.configure .slides { 
		min-height: 120px; 
		margin-bottom: 0;
	}
	
	.configure .dotnav { 
		padding: 4px; 
		margin-top: 0;
	}
	
	.configure .gallery {
		margin-bottom: 0;
	}
	
	.configure .dot {
		width: 5px !important;
		height: 5px !important;
		min-height: 5px !important;
		min-width: 5px !important;
	}
}

/* Horizontal, compact color swatches */
.configure .colors { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; }
.configure .swatch { display: inline-grid; grid-template-rows: auto; padding: 6px; margin: 0; border-radius: 10px; }
.configure .swatch img { width: 28px; height: 28px; }
.configure .swatch span { display: none; }

@media (min-width: 768px) {
	.configure .swatch img { width: 34px; height: 34px; }
}

/* Get iPhone Button Section */
.get-iphone-section {
	margin-top: var(--spacing-2xl);
	text-align: center;
	padding: var(--spacing-3xl);
	background: var(--gradient-surface);
	border-radius: var(--radius-2xl);
	border: 0.5px solid var(--border);
	box-shadow: var(--shadow-lg);
	position: relative;
	overflow: hidden;
}

.get-iphone-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: var(--gradient-primary);
}

.get-iphone-btn {
	font-size: 18px;
	padding: var(--spacing-xl) var(--spacing-3xl);
	box-shadow: 0 6px 20px rgba(0,122,255,0.3);
	position: relative;
	overflow: hidden;
	width: 100%;
	max-width: 320px;
	font-weight: 500;
	background: var(--button-primary);
	border-radius: 980px;
}

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

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

.get-iphone-btn:hover {
	background: var(--button-primary-hover);
	box-shadow: 0 8px 25px rgba(0,122,255,0.4);
	transform: translateY(-2px);
}

.get-iphone-btn:disabled {
	opacity: 0.4;
	cursor: not-allowed;
	transform: none !important;
	background: #d1d1d6 !important;
	color: #8e8e93 !important;
	box-shadow: none !important;
}

.get-iphone-btn:disabled::before {
	display: none;
}

/* Steps Section */
.steps {
	background: var(--gradient-surface);
	border-radius: var(--radius-3xl);
	margin: var(--spacing-2xl) 0;
	padding: var(--spacing-3xl) var(--spacing-2xl);
	opacity: 0;
	transform: translateY(20px);
	transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
	border: 0.5px solid var(--border);
	box-shadow: var(--shadow-lg);
	position: relative;
	overflow: hidden;
}

.steps::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: var(--gradient-primary);
}

.steps.visible {
	opacity: 1;
	transform: translateY(0);
}

.steps-container {
	display: grid;
	gap: 24px;
	margin-top: 32px;
}

.step-card {
	background: var(--surface-elevated);
	border: 0.5px solid var(--border);
	border-radius: var(--radius-2xl);
	padding: var(--spacing-2xl);
	box-shadow: var(--shadow-md);
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	position: relative;
	overflow: hidden;
}

.step-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 0;
	height: 4px;
	background: var(--gradient-primary);
	transition: width 0.4s ease;
}

.step-card.active {
	border-color: var(--button-primary);
	box-shadow: var(--shadow-lg), 0 0 0 1px rgba(0,122,255,0.1);
	transform: translateY(-4px);
	background: var(--accent-light);
}

.step-card.active::before {
	width: 100%;
}

.step-card.completed {
	background: var(--success-light);
	border-color: var(--button-success);
	box-shadow: var(--shadow-md), 0 0 0 1px rgba(52,199,89,0.1);
}

.step-card.completed::before {
	width: 100%;
	background: var(--button-success);
}

.step-card.completed::after {
	content: "✓";
	position: absolute;
	top: 20px;
	right: 20px;
	width: 32px;
	height: 32px;
	background: var(--button-success);
	color: white;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: bold;
	font-size: 16px;
	box-shadow: 0 4px 14px rgba(52,199,89,0.3);
}

.step-header {
	display: flex;
	align-items: center;
	gap: 16px;
	margin-bottom: 16px;
}

.step-number {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	background: var(--button-primary);
	color: white;
	border-radius: 50%;
	font-weight: 600;
	font-size: 17px;
	box-shadow: 0 4px 14px rgba(0,122,255,0.25);
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	position: relative;
	overflow: hidden;
}

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

.step-card.active .step-number::before {
	left: 100%;
}

.step-card.completed .step-number {
	background: var(--button-success);
	transform: scale(1.1);
	box-shadow: 0 6px 20px rgba(52,199,89,0.3);
}

.step-header h3 {
	margin: 0;
	font-size: 20px;
	font-weight: 600;
}

.step-content p {
	margin: 0 0 16px;
	color: var(--muted);
}

.step-status {
	margin-top: 12px;
	font-size: 14px;
	font-weight: 500;
}

.step-status.success {
	color: #06c167;
}

.step-status.error {
	color: #ff3b30;
}

/* Loading Spinner */
.loading-spinner {
	display: flex;
	align-items: center;
	gap: 12px;
	margin: 16px 0;
}

.spinner {
	width: 20px;
	height: 20px;
	border: 2px solid var(--border);
	border-top: 2px solid var(--accent);
	border-radius: 50%;
	animation: spin 1s linear infinite;
}

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

.eligibility-result {
	margin: 16px 0;
}

.eligibility-result .success {
	color: #06c167;
	font-weight: 500;
	margin: 0;
}

.eligibility-result .error {
	color: #ff3b30;
	font-weight: 500;
	margin: 0 0 8px 0;
}

.eligibility-result .error-detail {
	color: #ff3b30;
	font-weight: 400;
	font-size: 14px;
	margin: 0;
	opacity: 0.8;
}

.eligibility-result .success-detail {
	color: #06c167;
	font-weight: 400;
	font-size: 14px;
	margin: 0;
	opacity: 0.8;
}

/* Video Error Styles */
.video-error {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background: rgba(0,0,0,0.9);
	color: white;
	padding: 16px 24px;
	border-radius: 12px;
	font-size: 14px;
	text-align: center;
	z-index: 10;
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255,255,255,0.1);
	box-shadow: 0 8px 32px rgba(0,0,0,0.3);
	animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
	from {
		opacity: 0;
		transform: translate(-50%, -50%) scale(0.9);
	}
	to {
		opacity: 1;
		transform: translate(-50%, -50%) scale(1);
	}
}

/* Enhanced Loading States */
.loading-spinner {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	margin: 16px 0;
	padding: 20px;
	background: var(--surface-elevated);
	border-radius: var(--radius-lg);
	border: 1px solid var(--border);
}

.spinner {
	width: 24px;
	height: 24px;
	border: 3px solid var(--border);
	border-top: 3px solid var(--accent);
	border-radius: 50%;
	animation: spin 1s linear infinite;
}

.loading-spinner p {
	margin: 0;
	color: var(--muted);
	font-weight: 500;
	font-size: 14px;
}

/* Secondary CTA Button */
.cta.secondary {
	background: transparent;
	color: var(--accent);
	border: 2px solid var(--accent);
	box-shadow: none;
}

.cta.secondary:hover {
	background: var(--accent);
	color: white;
	transform: translateY(-2px);
	box-shadow: 0 8px 16px rgba(0,113,227,0.2);
}

.cta:disabled {
	opacity: 0.5;
	cursor: not-allowed;
	transform: none !important;
	box-shadow: none !important;
}

/* Enhanced Responsive Modals */
.confirmation-modal {
	position: fixed !important;
	top: 0 !important;
	left: 0 !important;
	width: 100vw !important;
	height: 100vh !important;
	background: rgba(0, 0, 0, 0.95);
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 9999;
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	padding: var(--spacing-lg);
	overflow: hidden !important;
}

/* Prevent body scroll when modal is open */
body.modal-open {
	overflow: hidden !important;
	position: fixed !important;
	width: 100% !important;
	height: 100% !important;
}

/* Prevent any scrolling within the modal */
.confirmation-modal * {
	overscroll-behavior: none !important;
}

/* Lock modal in place - prevent any movement */
.confirmation-modal {
	position: fixed !important;
	top: 0 !important;
	left: 0 !important;
	right: 0 !important;
	bottom: 0 !important;
	width: 100vw !important;
	height: 100vh !important;
	overflow: hidden !important;
	overscroll-behavior: none !important;
	pointer-events: auto;
	transform: none !important;
	will-change: auto !important;
}

/* Prevent interaction with background when modal is open */
.confirmation-modal::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.9);
	z-index: 1;
	pointer-events: auto;
}

/* Mobile Content Locker - Full Screen Fixed Modal */
@media (max-width: 768px) {
	.confirmation-modal {
		position: fixed !important;
		top: 0 !important;
		left: 0 !important;
		right: 0 !important;
		bottom: 0 !important;
		width: 100vw !important;
		height: 100vh !important;
		overflow: hidden !important;
		overscroll-behavior: none !important;
		transform: none !important;
		will-change: auto !important;
		touch-action: pan-y !important;
		-webkit-overflow-scrolling: touch !important;
		background: rgba(0, 0, 0, 0.98) !important;
		z-index: 99999 !important;
	}
	
	body.modal-open {
		overflow: hidden !important;
		position: fixed !important;
		width: 100% !important;
		height: 100% !important;
		touch-action: pan-y !important;
		-webkit-overflow-scrolling: touch !important;
		overscroll-behavior: none !important;
	}
	
	/* Allow scrolling within modal content */
	.modal-content {
		overflow-y: auto !important;
		-webkit-overflow-scrolling: touch !important;
		touch-action: pan-y !important;
	}
	
	/* Prevent any scrolling on the page when modal is open */
	body.modal-open * {
		overscroll-behavior: none !important;
	}
}

.modal-content {
	background: white;
	border-radius: 18px;
	padding: 32px;
	max-width: 400px;
	width: 100%;
	text-align: center;
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
	animation: modalSlideIn 0.3s ease;
	max-height: 80vh;
	overflow-y: auto;
	position: relative;
	z-index: 10000;
	pointer-events: auto;
}

/* Mobile Modal Content */
@media (max-width: 768px) {
	.confirmation-modal {
		padding: var(--spacing-md);
		align-items: center;
		justify-content: center;
		padding-top: 0;
		padding-bottom: 0;
	}
	
	.modal-content {
		padding: var(--spacing-xl);
		border-radius: 16px;
		max-width: 95%;
		width: 95%;
		max-height: 90vh;
		margin: 0 auto;
		overflow-y: auto;
		position: relative;
		z-index: 100000;
		background: white;
		box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
	}
	
	.modal-content h4 {
		font-size: 18px;
		margin-bottom: var(--spacing-md);
	}
	
	.modal-content p {
		font-size: 14px;
		margin-bottom: var(--spacing-lg);
	}
	
	.modal-buttons {
		flex-direction: column;
		gap: var(--spacing-md);
	}
	
	.modal-buttons .cta {
		width: 100%;
		padding: var(--spacing-lg) var(--spacing-xl);
		font-size: 16px;
		min-height: 48px;
	}
}

@media (max-width: 480px) {
	.confirmation-modal {
		padding: var(--spacing-sm);
		align-items: center;
		justify-content: center;
		padding-top: 0;
		padding-bottom: 0;
		position: fixed !important;
		top: 0 !important;
		left: 0 !important;
		width: 100vw !important;
		height: 100vh !important;
		overflow: hidden !important;
		overscroll-behavior: none !important;
		transform: none !important;
		touch-action: none !important;
		background: rgba(0, 0, 0, 0.98) !important;
		z-index: 99999 !important;
	}
	
	.modal-content {
		padding: var(--spacing-lg);
		border-radius: 12px;
		max-height: 90vh;
		max-width: 98%;
		width: 98%;
		margin: 0 auto;
		overflow-y: auto;
		position: relative;
		z-index: 100000;
		background: white;
		box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
	}
}
	
	.modal-content h4 {
		font-size: 16px;
	}
}

/* Extra small mobile screens - Content Locker */
@media (max-width: 375px) {
	.confirmation-modal {
		position: fixed !important;
		top: 0 !important;
		left: 0 !important;
		right: 0 !important;
		bottom: 0 !important;
		width: 100vw !important;
		height: 100vh !important;
		overflow: hidden !important;
		overscroll-behavior: none !important;
		transform: none !important;
		touch-action: none !important;
		background: rgba(0, 0, 0, 0.98) !important;
		z-index: 99999 !important;
		padding: var(--spacing-xs);
		align-items: center;
		justify-content: center;
	}
	
	.modal-content {
		max-width: 98%;
		width: 98%;
		margin: 0 auto;
		overflow-y: auto;
		max-height: 90vh;
		position: relative;
		z-index: 100000;
		background: white;
		box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
		border-radius: 12px;
		padding: var(--spacing-lg);
	}
}
	
	.modal-content p {
		font-size: 13px;
	}
	
	.modal-buttons .cta {
		padding: var(--spacing-md) var(--spacing-lg);
		font-size: 15px;
		min-height: 44px;
	}
}


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

.modal-content h4 {
	margin: 0 0 12px;
	font-size: 20px;
	font-weight: 600;
}

.modal-content p {
	margin: 0 0 24px;
	color: var(--muted);
}

.modal-buttons {
	display: flex;
	gap: 12px;
	justify-content: center;
}

.modal-buttons .cta {
	padding: 12px 24px;
	font-size: 14px;
}

/* Timer Display */
.timer-display {
	margin-top: 20px;
	padding: 16px;
	background: #f8f9fa;
	border-radius: 12px;
	border: 1px solid var(--border);
}

/* Modal Download Section */
.modal-download-section {
	margin-top: 20px;
	padding: 20px;
	background: #f8f9fa;
	border-radius: 12px;
	border: 1px solid var(--border);
}

.modal-download-section p {
	margin: 0 0 16px;
	color: var(--muted);
	font-size: 14px;
}

.modal-download-section .cta {
	margin: 8px;
}

.timer-display p {
	margin: 0 0 12px;
	font-size: 14px;
	color: var(--muted);
}

.timer-bar {
	width: 100%;
	height: 6px;
	background: #e5e5ea;
	border-radius: 3px;
	overflow: hidden;
	margin-bottom: 8px;
}

.timer-progress {
	height: 100%;
	background: linear-gradient(90deg, #ff9500, #ff6b00);
	border-radius: 3px;
	width: 100%;
	animation: timerProgress 15s linear;
}

@keyframes timerProgress {
	from { width: 100%; }
	to { width: 0%; }
}

.timer-count {
	font-weight: 600;
	font-size: 16px;
	color: #ff9500;
}

.timer-text {
	margin: 8px 0 0;
	font-size: 14px;
	color: var(--muted);
	font-weight: 500;
}

/* Thank You Page Styles */
.thank-you-content {
	text-align: center;
}

.success-icon {
	width: 80px;
	height: 80px;
	background: #06c167;
	color: white;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 40px;
	font-weight: bold;
	margin: 0 auto 24px;
}

.thank-you-content h4 {
	margin: 0 0 16px;
	font-size: 24px;
	color: var(--text);
}

.thank-you-content p {
	margin: 0 0 16px;
	color: var(--muted);
	line-height: 1.5;
}

.contact-info {
	font-size: 16px;
	color: var(--text) !important;
	font-weight: 500;
}

.order-note {
	font-size: 14px;
	color: var(--muted);
	font-style: italic;
}

/* Responsive Design for Steps */
@media (max-width: 768px) {
	.steps {
		padding: 32px 20px;
		margin: 24px 0;
	}
	
	.step-card {
		padding: 20px;
	}
	
	.step-header {
		flex-direction: column;
		align-items: flex-start;
		gap: 12px;
	}
	
	.step-number {
		width: 36px;
		height: 36px;
		font-size: 16px;
	}
	
	.modal-content {
		padding: 24px;
		margin: 20px;
	}
	
	.modal-buttons {
		flex-direction: column;
	}
}

/* Apple Official Responsive Design */
@media (max-width: 1068px) {
	.inline-media-component-container {
		height: 80vh;
		min-height: 500px;
	}
	
	.marquee-top {
		padding-top: 60px;
	}
	
	.marquee-bottom {
		padding-bottom: 60px;
	}
	
	.inline-media-ui {
		right: 30px;
		bottom: 30px;
	}
	
	.play-pause-button {
		width: 60px;
		height: 60px;
	}
	
	.play-pause-button::before {
		border-left: 16px solid white;
		border-top: 10px solid transparent;
		border-bottom: 10px solid transparent;
	}
}

@media (max-width: 734px) {
	.inline-media-component-container {
		height: 70vh;
		min-height: 400px;
	}
	
	.marquee-top {
		padding-top: 40px;
	}
	
	.marquee-bottom {
		padding-bottom: 40px;
	}
	
	.viewport-content {
		padding: 0 16px;
	}
	
	.inline-media-ui {
		right: 20px;
		bottom: 20px;
	}
	
	.play-pause-button {
		width: 50px;
		height: 50px;
	}
	
	.play-pause-button::before {
		border-left: 14px solid white;
		border-top: 8px solid transparent;
		border-bottom: 8px solid transparent;
	}
	
	.typography-welcome-pricing {
		font-size: 16px;
	}
	
	.marquee-ctas-link {
		padding: 10px 20px;
		font-size: 16px;
	}
	
	.partnership-badge {
		margin-bottom: var(--spacing-xl);
		padding: var(--spacing-md);
		text-align: center;
	}
	
	.partnership-content {
		justify-content: center;
	}
	
	.welcome-control {
		right: 12px;
		bottom: 12px;
		width: 40px;
		height: 40px;
	}
	
	.welcome-control::before {
		border-left: 10px solid #000;
		border-top: 6px solid transparent;
		border-bottom: 6px solid transparent;
	}
}

/* Enhanced Responsive Welcome Section */
.welcome {
	position: relative;
	height: 100vh;
	min-height: 600px;
	overflow: hidden;
	background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #e8f4fd 100%);
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
	padding: var(--spacing-lg);
	width: 100%;
	max-width: 100vw;
}

.welcome-head {
	position: relative;
	z-index: 2;
	margin-bottom: 40px;
	max-width: 100%;
	width: 100%;
}

.welcome-head .eyebrow {
	font-size: clamp(24px, 8vw, 56px);
	color: #1d1d1f;
	margin: 0 0 16px;
	letter-spacing: -0.003em;
	font-weight: 600;
	line-height: 1.05;
	text-shadow: 0 1px 2px rgba(255,255,255,0.8);
}

.welcome-head .headline-hero {
	font-size: clamp(36px, 10vw, 80px);
	color: #1d1d1f;
	margin: 0 0 30px 0;
	letter-spacing: -0.02em;
	font-weight: 600;
	line-height: 1.05;
	text-shadow: 0 1px 2px rgba(255,255,255,0.8);
}

.welcome-cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 16px 32px;
	background: #007AFF;
	color: #fff;
	text-decoration: none;
	border-radius: 980px;
	font-weight: 500;
	font-size: 18px;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	box-shadow: 0 4px 14px rgba(0,122,255,0.25);
	min-height: 48px;
	min-width: 120px;
}

.welcome-cta:hover {
	background: #0056b3;
	transform: translateY(-2px);
	box-shadow: 0 8px 25px rgba(0,122,255,0.4);
}

.welcome-media {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	overflow: hidden;
	z-index: 1;
	max-width: 100vw;
}

.welcome-media::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, rgba(248, 249, 250, 0.3) 0%, rgba(255, 255, 255, 0.2) 50%, rgba(232, 244, 253, 0.3) 100%);
	z-index: 2;
	pointer-events: none;
}

.welcome-video {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transform: translate(-50%, -50%);
}

.welcome-control {
	position: absolute;
	right: 16px;
	bottom: 16px;
	width: 48px;
	height: 48px;
	border-radius: 50%;
	border: none;
	background: #1d1d1f;
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	cursor: pointer;
	box-shadow: 0 4px 20px rgba(0,0,0,0.3);
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	z-index: 3;
}

.welcome-control:hover {
	background: #000000;
	transform: scale(1.05);
	box-shadow: 0 6px 25px rgba(0,0,0,0.4);
}

.welcome-control::before {
	content: '';
	width: 0;
	height: 0;
	border-left: 14px solid transparent;
	border-top: 10px solid transparent;
	border-bottom: 10px solid transparent;
	margin-left: 2px;
}

/* Pause state - show two vertical bars */
.welcome-control[aria-pressed="true"]::before {
	content: '';
	width: 4px;
	height: 16px;
	border: none;
	margin: 0 2px;
	background: transparent;
	box-shadow: 4px 0 0 transparent;
}

.welcome-fallback {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.welcome-fallback img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* Responsive Welcome Section Breakpoints */

/* Extra Large Screens (1400px+) */
@media (min-width: 1400px) {
	.welcome {
		padding: var(--spacing-2xl);
	}
	
	.welcome-head {
		max-width: 1200px;
	}
	
	.welcome-head .eyebrow {
		font-size: clamp(48px, 4vw, 64px);
	}
	
	.welcome-head .headline-hero {
		font-size: clamp(64px, 6vw, 96px);
	}
	
	.welcome-cta {
		font-size: 20px;
		padding: 20px 40px;
		min-height: 56px;
	}
	
	.welcome-control {
		width: 56px;
		height: 56px;
		right: 24px;
		bottom: 24px;
	}
	
	.welcome-control::before {
		border-left: 18px solid #fff;
		border-top: 12px solid transparent;
		border-bottom: 12px solid transparent;
	}
}

/* Large Screens (1200px - 1399px) */
@media (min-width: 1200px) and (max-width: 1399px) {
	.welcome {
		padding: var(--spacing-xl);
	}
	
	.welcome-head {
		max-width: 1000px;
	}
	
	.welcome-head .eyebrow {
		font-size: clamp(40px, 5vw, 56px);
	}
	
	.welcome-head .headline-hero {
		font-size: clamp(56px, 7vw, 80px);
	}
	
	.welcome-cta {
		font-size: 19px;
		padding: 18px 36px;
		min-height: 52px;
	}
	
	.welcome-control {
		width: 52px;
		height: 52px;
		right: 20px;
		bottom: 20px;
	}
}

/* Desktop Screens (1024px - 1199px) */
@media (min-width: 1024px) and (max-width: 1199px) {
	.welcome {
		padding: var(--spacing-lg);
	}
	
	.welcome-head {
		max-width: 900px;
	}
	
	.welcome-head .eyebrow {
		font-size: clamp(32px, 6vw, 48px);
	}
	
	.welcome-head .headline-hero {
		font-size: clamp(48px, 8vw, 72px);
	}
	
	.welcome-cta {
		font-size: 18px;
		padding: 16px 32px;
		min-height: 50px;
	}
	
	.welcome-control {
		width: 50px;
		height: 50px;
		right: 18px;
		bottom: 18px;
	}
}

/* Tablet Screens (768px - 1023px) */
@media (min-width: 768px) and (max-width: 1023px) {
	.welcome {
		height: 90vh;
		min-height: 500px;
		padding: var(--spacing-lg);
	}
	
	.welcome-head {
		margin-bottom: 32px;
		max-width: 100%;
	}
	
	.welcome-head .eyebrow {
		font-size: clamp(28px, 7vw, 44px);
		margin-bottom: 12px;
	}
	
	.welcome-head .headline-hero {
		font-size: clamp(40px, 9vw, 64px);
		margin-bottom: 24px;
	}
	
	.welcome-cta {
		font-size: 17px;
		padding: 14px 28px;
		min-height: 48px;
	}
	
	.welcome-control {
		width: 48px;
		height: 48px;
		right: 16px;
		bottom: 16px;
	}
	
	.welcome-control::before {
		border-left: 14px solid #fff;
		border-top: 10px solid transparent;
		border-bottom: 10px solid transparent;
	}
}

/* Mobile Screens (481px - 767px) */
@media (min-width: 481px) and (max-width: 767px) {
	.welcome {
		height: 80vh;
		min-height: 400px;
		padding: var(--spacing-md);
	}
	
	.welcome-head {
		margin-bottom: 24px;
	}
	
	.welcome-head .eyebrow {
		font-size: clamp(24px, 8vw, 36px);
		margin-bottom: 8px;
	}
	
	.welcome-head .headline-hero {
		font-size: clamp(32px, 10vw, 48px);
		margin-bottom: 20px;
	}
	
	.welcome-cta {
		font-size: 16px;
		padding: 12px 24px;
		min-height: 44px;

		max-width: 200px;
	}
	
	.welcome-control {
		width: 44px;
		height: 44px;
		right: 12px;
		bottom: 12px;
	}
	
	.welcome-control::before {
		border-left: 12px solid #fff;
		border-top: 8px solid transparent;
		border-bottom: 8px solid transparent;
	}
}

/* Small Mobile Screens (320px - 480px) */
@media (max-width: 480px) {
	.welcome {
		height: 70vh;
		min-height: 350px;
		padding: var(--spacing-sm);
	}
	
	.welcome-head {
		margin-bottom: 20px;
	}
	
	.welcome-head .eyebrow {
		font-size: clamp(20px, 10vw, 28px);
		margin-bottom: 6px;
	}
	
	.welcome-head .headline-hero {
		font-size: clamp(28px, 12vw, 40px);
		margin-bottom: 16px;
	}
	
	.welcome-cta {
		font-size: 15px;
		padding: 10px 20px;
		min-height: 40px;

		max-width: 180px;
	}
	
	.welcome-control {
		width: 40px;
		height: 40px;
		right: 8px;
		bottom: 8px;
	}
	
	.welcome-control::before {
		border-left: 10px solid #fff;
		border-top: 6px solid transparent;
		border-bottom: 6px solid transparent;
	}
}

/* Extra Small Mobile Screens (320px - 375px) */
@media (max-width: 375px) {
	.welcome {
		height: 60vh;
		min-height: 300px;
		padding: var(--spacing-xs);
	}
	
	.welcome-head {
		margin-bottom: 16px;
	}
	
	.welcome-head .eyebrow {
		font-size: clamp(18px, 12vw, 24px);
		margin-bottom: 4px;
	}
	
	.welcome-head .headline-hero {
		font-size: clamp(24px, 14vw, 32px);
		margin-bottom: 12px;
	}
	
	.welcome-cta {
		font-size: 14px;
		padding: 8px 16px;
		min-height: 36px;
		max-width: 160px;
	}
	
	.welcome-control {
		width: 36px;
		height: 36px;
		right: 6px;
		bottom: 6px;
	}
	
	.welcome-control::before {
		border-left: 8px solid #fff;
		border-top: 5px solid transparent;
		border-bottom: 5px solid transparent;
	}
}

/* Landscape Mobile Orientation */
@media (max-width: 768px) and (orientation: landscape) {
	.welcome {
		height: 100vh;
		flex-direction: row;
		align-items: center;
		text-align: left;
		padding: var(--spacing-md);
	}
	
	.welcome-head {
		flex: 1;
		margin-bottom: 0;
		margin-right: var(--spacing-lg);
		max-width: 50%;
	}
	
	.welcome-head .eyebrow {
		font-size: clamp(20px, 6vw, 32px);
	}
	
	.welcome-head .headline-hero {
		font-size: clamp(28px, 8vw, 48px);
	}
	
	.welcome-cta {
		width: auto;
		max-width: none;
	}
	
	.welcome-media {
		flex: 1;
		position: relative;
		height: 80%;
		width: 50%;
	}
}

/* Touch Device Optimizations */
@media (hover: none) and (pointer: coarse) {
	.welcome-cta {
		min-height: 48px;
		padding: 16px 32px;
	}
	
	.welcome-control {
		min-height: 48px;
		min-width: 48px;
		background: #1d1d1f;
	}
	
	.welcome-control:hover {
		transform: none;
		background: #000000;
	}
}

.visually-hidden {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}
	
	.program-details {
		grid-template-columns: 1fr;
		gap: var(--spacing-lg);
		margin: var(--spacing-xl) 0;
	}
	
	.detail-item {
		padding: var(--spacing-lg);
		text-align: center;
	}
	
	.detail-item h3 {
		font-size: 16px;
	}
	
	.detail-item p {
		font-size: 14px;
	}
	
	.reviews-grid {
		grid-template-columns: 1fr;
		gap: var(--spacing-lg);
	}
	
	.review-card {
		padding: var(--spacing-lg);
	}
	
	.review-header {
		flex-direction: column;
		align-items: center;
		text-align: center;
		gap: var(--spacing-sm);
	}
	
	.review-avatar {
		width: 40px;
		height: 40px;
	}
	
	.social-proof {
		grid-template-columns: 1fr;
		gap: var(--spacing-lg);
		padding: var(--spacing-lg);
		text-align: center;
	}
	
	.proof-stat h3 {
		font-size: 28px;
	}
	
	.important-notice {
		margin: var(--spacing-lg) 0;
		padding: var(--spacing-lg);
	}
	
	.important-notice h3 {
		font-size: 16px;
	}
	
	.important-notice ul {
		padding-left: var(--spacing-md);
	}
	
	.important-notice li {
		font-size: 14px;
	}
}

@media (max-width: 768px) {
	.simple-steps {
		grid-template-columns: 1fr;
		gap: var(--spacing-lg);
		margin: var(--spacing-2xl) 0;
		padding: var(--spacing-lg);
	}
	
	.step-item {
		flex-direction: column;
		text-align: center;
		gap: var(--spacing-md);
		padding: var(--spacing-lg);
	}
	
	.step-icon {
		width: 40px;
		height: 40px;
		font-size: 18px;
		margin: 0 auto;
	}
	
	.step-text h3 {
		font-size: 16px;
	}
	
	.step-text p {
		font-size: 14px;
	}
	
	.cta-button {
		font-size: 16px;
		padding: var(--spacing-lg) var(--spacing-2xl);
		max-width: 100%;
	}
	
	.benefits-grid {
		grid-template-columns: 1fr;
		gap: var(--spacing-lg);
		margin: var(--spacing-2xl) 0;
	}
	
	.benefit-item {
		padding: var(--spacing-xl);
	}
	
	.benefit-icon {
		font-size: 40px;
		margin-bottom: var(--spacing-md);
	}
	
	.benefit-item h3 {
		font-size: 18px;
	}
	
	.benefit-item p {
		font-size: 14px;
	}
}

@media (max-width: 480px) {
	.welcome-media {
		margin: 0 8px;
		border-radius: 12px;
	}
	
	.welcome-control {
		width: 36px;
		height: 36px;
		right: 8px;
		bottom: 8px;
	}
	
	.welcome-control::before {
		border-left: 8px solid #000;
		border-top: 5px solid transparent;
		border-bottom: 5px solid transparent;
	}
	
	.play-icon {
		width: 16px;
		height: 16px;
	}
	
	.partnership-badge {
		padding: var(--spacing-sm);
		margin-bottom: var(--spacing-lg);
	}
	
	.partnership-text {
		font-size: 14px;
	}
	
	.partnership-description {
		font-size: 12px;
	}
	
	.simple-steps {
		padding: var(--spacing-md);
		margin: var(--spacing-lg) 0;
	}
	
	.step-item {
		padding: var(--spacing-md);
	}
	
	.step-icon {
		width: 36px;
		height: 36px;
		font-size: 16px;
	}
	
	.step-text h3 {
		font-size: 15px;
	}
	
	.step-text p {
		font-size: 13px;
	}
	
	.cta-button {
		font-size: 15px;
		padding: var(--spacing-md) var(--spacing-lg);
	}
	
	.benefits-grid {
		gap: var(--spacing-md);
		margin: var(--spacing-lg) 0;
	}
	
	.benefit-item {
		padding: var(--spacing-lg);
	}
	
	.benefit-icon {
		font-size: 36px;
		margin-bottom: var(--spacing-sm);
	}
	
	.benefit-item h3 {
		font-size: 16px;
	}
	
	.benefit-item p {
		font-size: 13px;
	}
	
	.program-details {
		gap: var(--spacing-md);
		margin: var(--spacing-lg) 0;
	}
	
	.detail-item {
		padding: var(--spacing-md);
	}
	
	.detail-item h3 {
		font-size: 14px;
		margin-bottom: var(--spacing-sm);
	}
	
	.detail-item p {
		font-size: 13px;
		line-height: 1.5;
	}
	
	.review-card {
		padding: var(--spacing-md);
	}
	
	.review-text {
		font-size: 14px;
	}
	
	.social-proof {
		padding: var(--spacing-md);
		gap: var(--spacing-md);
	}
	
	.proof-stat h3 {
		font-size: 24px;
	}
	
	.proof-stat p {
		font-size: 12px;
	}
}