/* ============================================
   PROMO TOPBAR WITH COUNTDOWN
   ============================================ */
.promo-topbar {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 9999;
	background: #000000;
	padding: 10px 20px;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.promo-topbar-content {
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.promo-timer-text {
	color: #ffffff;
	font-size: 0.95rem;
	font-weight: 600;
	white-space: nowrap;
}

.promo-timer-text #countdown-timer {
	font-family: 'Courier New', monospace;
	font-weight: 700;
	letter-spacing: 1px;
}

.promo-topbar-btn {
	background: linear-gradient(135deg, var(--accent-primary), var(--accent-light));
	color: #ffffff;
	padding: 10px 24px;
	border-radius: 8px;
	font-size: 0.9rem;
	font-weight: 700;
	text-decoration: none;
	white-space: nowrap;
	transition: all 0.2s ease;
	box-shadow: 0 4px 15px rgba(223, 16, 140, 0.4);
}

.promo-topbar-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(223, 16, 140, 0.5);
	color: #ffffff;
}

/* Mobile responsive for topbar */
@media (max-width: 768px) {
	.promo-topbar {
		padding: 8px 15px;
	}

	.promo-topbar-content {
		gap: 12px;
	}

	.promo-timer-text {
		font-size: 0.85rem;
	}

	.promo-topbar-btn {
		padding: 8px 16px;
		font-size: 0.8rem;
	}
}

@media (max-width: 480px) {
	.promo-topbar {
		padding: 6px 10px;
	}

	.promo-topbar-content {
		gap: 8px;
	}

	.promo-timer-text {
		font-size: 0.8rem;
	}

	.promo-topbar-btn {
		padding: 6px 12px;
		font-size: 0.75rem;
	}
}

:root {
	--dark-primary: #161515;
	--dark-secondary: #1a1a1a;
	--dark-elevated: #2d2d2d;
	--accent-primary: #df108c;
	--accent-light: #ff730f;
	--accent-dark: #b70d73;
	--text-primary: #ffffff;
	--text-secondary: #e5e5e5;
	--text-tertiary: #b0b0b0;
	--border-primary: #404040;
}

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

body {
	font-family: 'Inter', sans-serif;
	background-color: var(--dark-primary);
	color: var(--text-primary);
	line-height: 1.6;
	overflow-x: hidden;
}

/* Navigation */
.top-bar {
	background-color: var(--dark-secondary);
	border-bottom: 1px solid var(--border-primary);
	padding: 1rem 0;
	position: fixed;
	width: 100%;
	top: 0;
	z-index: 1000;
	backdrop-filter: blur(10px);
	background-color: rgba(26, 26, 26, 0.95);
}

.logo {
	font-size: 2rem;
	font-weight: 800;
	color: var(--text-primary);
	text-decoration: none;
	letter-spacing: -0.02em;
}

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

.btn-members {
	background: linear-gradient(135deg, var(--accent-primary), var(--accent-light));
	color: var(--text-primary);
	border: none;
	padding: 0.75rem 2rem;
	border-radius: 8px;
	font-weight: 600;
	text-decoration: none;
	transition: all 0.3s ease;
	display: inline-block;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	font-size: 0.9rem;
}

.btn-members:hover {
	background: linear-gradient(135deg, var(--accent-light), var(--accent-primary));
	transform: translateY(-2px);
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
	color: var(--text-primary);
}

/* Hero Section */
.hero-section {
	margin-top: 0;
	padding: 120px 0 100px;
	position: relative;
	overflow: hidden;
	min-height: 100vh;
	display: flex;
	align-items: center;
}

.hero-background {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 0;
	background-color: var(--dark-primary);
}

.hero-grid-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image:
		linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
	background-size: 40px 40px;
	z-index: 1;
}

.hero-content {
	position: relative;
	z-index: 2;
	width: 100%;
}

.hero-title {
	font-size: 4.5rem;
	font-weight: 800;
	line-height: 1.1;
	margin-bottom: 2rem;
	letter-spacing: -0.03em;
	position: relative;
	display: block;
	width: 100%;
    color: #fff;
}

.hero-title::after {
    content: '';
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    width: 70%;
    max-width: 810px;
    height: 50px;
    background: linear-gradient(129deg, #ffffff, #ffffff);
    filter: blur(50px);
    opacity: 0.3;
    z-index: -1;
}

.hero-subtitle {
	font-size: 1.5rem;
	color: var(--text-secondary);
	margin-bottom: 3rem;
	line-height: 1.6;
	max-width: 700px;
}

.btn-hero {
	background: linear-gradient(135deg, var(--accent-primary), var(--accent-light));
	color: var(--text-primary);
	border: none;
	padding: 1.25rem 3rem;
	border-radius: 12px;
	font-weight: 700;
	font-size: 1.2rem;
	text-decoration: none;
	transition: all 0.3s ease;
	display: inline-flex;
	align-items: center;
	gap: 0.75rem;
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
	position: relative;
}

.btn-hero:hover {
	transform: translateY(-3px);
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
	background: linear-gradient(135deg, var(--accent-light), var(--accent-primary));
	color: var(--text-primary);
}

.pricing-link {
	color: var(--text-tertiary);
	text-decoration: none;
	font-size: 0.95rem;
	transition: all 0.3s ease;
	display: inline-block;
}

.pricing-link:hover {
	color: var(--accent-primary);
	transform: translateX(5px);
}

.hero-stats {
	margin-top: 4rem;
	display: flex;
	gap: 4rem;
}

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

.stat-number {
	font-size: 3rem;
	font-weight: 800;
	color: var(--accent-primary);
	line-height: 1;
}

.stat-label {
	color: var(--text-tertiary);
	font-size: 1rem;
	margin-top: 0.5rem;
}

/* Hero Benefits */
.hero-benefits {
	margin-top: 3rem;
	display: flex;
	justify-content: center;
	gap: 2.5rem;
	flex-wrap: wrap;
}

.hero-benefit-item {
	display: flex;
	align-items: center;
	gap: 0.75rem;
}

.hero-benefit-check {
	width: 28px;
	height: 28px;
	background-color: #dc2626;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.hero-benefit-check .material-icons {
	font-size: 18px;
	color: #ffffff;
}

.hero-benefit-text {
	font-size: 1.1rem;
	font-weight: 500;
	color: var(--text-secondary);
}

/* Speed & Dominance Section (Grant Cardone) */
.speed-section {
	padding: 80px 0;
	background-color: #fafafa;
}

.speed-content {
	max-width: 900px;
	margin: 0 auto;
}

.speed-title {
	font-size: 3rem;
	font-weight: 800;
	color: #0a0a0a;
	margin-bottom: 2rem;
	letter-spacing: -0.02em;
	line-height: 1.2;
}

.speed-title strong {
	color: #dc2626;
}

.speed-highlight {
	color: #dc2626;
}

.speed-quote {
	font-size: 1.35rem;
	color: #444444;
	line-height: 1.8;
	max-width: 800px;
	margin: 0 auto 1rem auto;
}

.speed-quote:last-child {
	margin-bottom: 0;
}

.speed-quote strong {
	color: #dc2626;
	font-weight: 700;
}

.speed-image {
	margin-top: 3rem;
}

.speed-image img {
	max-width: 100%;
	height: auto;
	border-radius: 12px;
}

/* Speed Section Responsive */
@media (max-width: 768px) {
	.speed-section {
		padding: 60px 0;
	}

	.speed-title {
		font-size: 2rem;
		line-height: 1.3;
	}

	.speed-quote {
		font-size: 1.125rem;
		line-height: 1.7;
		padding: 0 1rem;
	}
}

@media (max-width: 480px) {
	.speed-section {
		padding: 50px 0;
	}

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

	.speed-quote {
		font-size: 1.0625rem;
	}
}

/* Pain Points Section */
.pain-section {
	padding: 80px 0;
	background-color: #0a0a0a;
}

.pain-content {
	max-width: 1000px;
	margin: 0 auto;
	text-align: center;
}

.pain-title {
	font-size: 3.5rem;
	font-weight: 800;
	color: #ffffff;
	margin-bottom: 1rem;
	letter-spacing: -0.02em;
}

.pain-highlight {
	color: #dc2626;
}

.pain-subtitle {
	font-size: 1.5rem;
	color: #b0b0b0;
	margin-bottom: 3rem;
	line-height: 1.7;
	max-width: 800px;
	margin-left: auto;
	margin-right: auto;
}

.pain-list {
	margin-bottom: 0;
}

.pain-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1.25rem;
	background-color: #1a1a1a;
	border: 1px solid #404040;
	border-radius: 16px;
	padding: 2rem 1.5rem;
	text-align: center;
	height: 100%;
}

.pain-icon-wrapper {
	width: 70px;
	height: 70px;
	background-color: #2d2d2d;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.pain-icon {
	width: 36px;
	height: 36px;
	color: #ffffff;
}

.pain-item span {
	font-size: 1.35rem;
	color: #ffffff;
	font-weight: 500;
	line-height: 1.5;
}

/* Solution Section */
.solution-section {
	padding: 80px 0;
	background-color: #0a0a0a;
}

.solution-content {
	text-align: center;
}

.solution-title {
	font-size: 3.5rem;
	font-weight: 800;
	color: #ffffff;
	margin-bottom: 1rem;
	letter-spacing: -0.02em;
}

.solution-highlight {
	background: linear-gradient(135deg, var(--accent-primary), var(--accent-light));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.solution-subtitle {
	font-size: 1.5rem;
	color: #b0b0b0;
	margin-bottom: 3rem;
	line-height: 1.7;
	max-width: 800px;
	margin-left: auto;
	margin-right: auto;
}

.slider-wrapper {
    background-color: #060606;
    border: 1px solid #404040;
    border-radius: 16px;
    padding: 1.5rem;
    overflow: hidden;
    max-width: 900px;
    margin: 0 auto;
    box-shadow: inset 2px 4px 20px rgba(0, 0, 0, 0.5);
}

.slider-track {
	display: flex;
	width: fit-content;
	animation: slide 60s linear infinite;
}

.slider-track img {
	width: 1000px;
	height: auto;
	flex-shrink: 0;
}

@keyframes slide {
	0% {
		transform: translateX(0);
	}
	100% {
		transform: translateX(-1000px);
	}
}

/* Solution Light Section */
.solution-section-light {
	padding: 80px 0;
	background-color: #ffffff;
}

.solution-content-light {
	text-align: center;
}

.solution-title-light {
	font-size: 3.5rem;
	font-weight: 800;
	color: #0a0a0a;
	margin-bottom: 1rem;
	letter-spacing: -0.02em;
}

.solution-highlight-light {
	background: linear-gradient(135deg, var(--accent-primary), var(--accent-light));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.solution-subtitle-light {
	font-size: 1.5rem;
	color: #555555;
	margin-bottom: 3rem;
	line-height: 1.7;
	max-width: 800px;
	margin-left: auto;
	margin-right: auto;
}

.slider-wrapper-light {
background-color: #ffffff;
    border: 1px solid #d0d0d0;
    border-radius: 16px;
    padding: 1.5rem;
    overflow: hidden;
    max-width: 900px;
    margin: 0 auto;
    box-shadow: inset 1px 4px 20px rgb(0 0 0 / 22%);
}

.slider-track-reverse {
	animation: slide-reverse 60s linear infinite;
}

@keyframes slide-reverse {
	0% {
		transform: translateX(-1000px);
	}
	100% {
		transform: translateX(0);
	}
}

/* Features Section */
.features-section {
	padding: 120px 0;
	background-color: var(--dark-primary);
}

.section-title {
	font-size: 3rem;
	font-weight: 800;
	text-align: center;
	margin-bottom: 1.5rem;
	letter-spacing: -0.02em;
	position: relative;
	display: inline-block;
	width: 100%;
    color: #fff;
}

.section-title::after {
	content: '';
	position: absolute;
	bottom: -15px;
	left: 50%;
	transform: translateX(-50%);
	width: 60%;
	height: 30px;
	background: linear-gradient(90deg, var(--accent-primary), var(--accent-light));
	filter: blur(35px);
	opacity: 0.5;
	z-index: -1;
}

.section-subtitle {
	text-align: center;
	color: var(--text-tertiary);
	font-size: 1.25rem;
	margin-bottom: 5rem;
	max-width: 700px;
	margin-left: auto;
	margin-right: auto;
}

.feature-card {
	background-color: var(--dark-secondary);
	border: 1px solid var(--border-primary);
	border-radius: 16px;
	padding: 3rem 2.5rem;
	height: 100%;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.feature-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(90deg, var(--accent-primary), var(--accent-light));
	transform: scaleX(0);
	transition: transform 0.3s ease;
}

.feature-card:hover {
	transform: translateY(-5px);
	border-color: var(--accent-primary);
	box-shadow: 0 20px 40px rgba(255, 107, 53, 0.2);
}

.feature-card:hover::before {
	transform: scaleX(1);
}

.feature-icon {
	width: 70px;
	height: 70px;
	background: linear-gradient(135deg, var(--accent-primary), var(--accent-light));
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 2rem;
}

.feature-icon .material-icons {
	font-size: 36px;
	color: var(--text-primary);
}

/* Individual icon colors */
.feature-icon-1 {
	background: linear-gradient(135deg, #ff6b35, #ff8c42);
}

.feature-icon-2 {
	background: linear-gradient(135deg, #4CAF50, #66BB6A);
}

.feature-icon-3 {
	background: linear-gradient(135deg, #2196F3, #42A5F5);
}

.feature-icon-4 {
	background: linear-gradient(135deg, #9C27B0, #BA68C8);
}

.feature-icon-5 {
	background: linear-gradient(135deg, #FF5722, #FF7043);
}

.feature-icon-6 {
	background: linear-gradient(135deg, #00BCD4, #26C6DA);
}

.feature-icon-7 {
	background: linear-gradient(135deg, #FFC107, #FFD54F);
}

.feature-icon-8 {
	background: linear-gradient(135deg, #E91E63, #F06292);
}

.feature-icon-9 {
	background: linear-gradient(135deg, #3F51B5, #5C6BC0);
}

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

.feature-description {
	color: var(--text-tertiary);
	font-size: 1rem;
	line-height: 1.7;
}

/* How It Works Section */
.how-it-works-section {
	padding: 120px 0;
	background-color: var(--dark-secondary);
}

.steps-grid {
	display: flex;
	flex-direction: column;
	gap: 6rem;
	max-width: 900px;
	margin: 0 auto;
	position: relative;
}

.steps-grid::before {
	content: '';
	position: absolute;
	left: 45px;
	top: 90px;
	bottom: 90px;
	width: 2px;
	background: linear-gradient(180deg,
		var(--accent-primary) 0%,
		rgba(255, 107, 53, 0.3) 50%,
		var(--accent-primary) 100%);
	opacity: 0.5;
}

.step-item {
	display: grid;
	grid-template-columns: 90px 1fr;
	gap: 3rem;
	align-items: center;
	position: relative;
}

.step-number {
	width: 90px;
	height: 90px;
	background: linear-gradient(135deg, var(--accent-primary), var(--accent-light));
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 2rem;
	font-weight: 800;
	box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
	position: relative;
	z-index: 2;
	transition: all 0.3s ease;
}

.step-item:hover .step-number {
	transform: scale(1.1);
	box-shadow: 0 15px 40px rgba(255, 107, 53, 0.6);
}

.step-content {
	background-color: var(--dark-elevated);
	border: 1px solid var(--border-primary);
	border-radius: 16px;
	padding: 3rem;
	transition: all 0.3s ease;
}

.step-content:hover {
	border-color: var(--accent-primary);
	transform: translateX(10px);
	box-shadow: 0 10px 30px rgba(255, 107, 53, 0.2);
}

.step-content h3 {
	font-size: 1.75rem;
	font-weight: 700;
	margin-bottom: 1rem;
	color: var(--text-primary);
}

.step-content p {
	color: var(--text-tertiary);
	line-height: 1.7;
	font-size: 1.1rem;
	margin: 0;
}

/* Responsive adjustments for steps */
@media (max-width: 768px) {
	.steps-grid {
		gap: 4rem;
	}

	.steps-grid::before {
		left: 35px;
		top: 70px;
		bottom: 70px;
	}

	.step-item {
		grid-template-columns: 70px 1fr;
		gap: 1.5rem;
	}

	.step-number {
		width: 70px;
		height: 70px;
		font-size: 1.5rem;
	}

	.step-content {
		padding: 2rem;
	}

	.step-content h3 {
		font-size: 1.4rem;
	}

	.step-content p {
		font-size: 1rem;
	}
}

/* Legacy styles for backwards compatibility */
.step-card {
	background-color: var(--dark-elevated);
	border: 1px solid var(--border-primary);
	border-radius: 16px;
	padding: 3rem 2.5rem;
	height: 100%;
	position: relative;
	transition: all 0.3s ease;
}

.step-card:hover {
	border-color: var(--accent-primary);
	transform: translateY(-3px);
}

.step-title {
	font-size: 1.5rem;
	font-weight: 700;
	margin-bottom: 1rem;
	margin-top: 1.5rem;
}

.step-description {
	color: var(--text-tertiary);
	line-height: 1.7;
}

/* CTA Section */
.cta-section {
	padding: 100px 0;
	background: linear-gradient(135deg, var(--dark-primary) 0%, var(--dark-secondary) 100%);
	position: relative;
	overflow: hidden;
}

.cta-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: radial-gradient(circle at 80% 50%, rgba(255, 107, 53, 0.15) 0%, transparent 50%);
	pointer-events: none;
}

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

.cta-title {
	font-size: 3rem;
	font-weight: 800;
	margin-bottom: 1.5rem;
}

.cta-subtitle {
	font-size: 1.25rem;
	color: var(--text-secondary);
	margin-bottom: 3rem;
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
}

/* Pricing Section */
.pricing-section {
	padding: 100px 0;
	background: linear-gradient(135deg, var(--dark-primary) 0%, var(--dark-secondary) 100%);
	position: relative;
	overflow: hidden;
}

.pricing-section .container {
	max-width: 500px;
	margin: 0 auto;
}

.early-bird-badge {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	background: linear-gradient(135deg, var(--accent-pink), var(--accent-pink-light));
	color: var(--text-primary);
	padding: 0.75rem 1.5rem;
	border-radius: 50px;
	font-weight: 600;
	font-size: 0.9rem;
	margin-bottom: 2rem;
	text-align: center;
	margin-left: auto;
	margin-right: auto;
	display: flex;
	justify-content: center;
}

.early-bird-badge .material-icons {
	font-size: 20px;
}

.pricing-card {
	background-color: var(--dark-elevated);
	border: 1px solid var(--border-primary);
	border-radius: 20px;
	padding: 3rem 2.5rem;
	position: relative;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
	transition: all 0.3s ease;
}

.pricing-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 20px 60px rgba(223, 16, 140, 0.3);
	border-color: var(--accent-pink);
}

.card-tag {
	position: absolute;
	top: -15px;
	left: 50%;
	transform: translateX(-50%);
	background: linear-gradient(135deg, var(--accent-pink), var(--accent-pink-light));
	color: var(--text-primary);
	padding: 0.5rem 1.5rem;
	border-radius: 50px;
	font-weight: 700;
	font-size: 0.75rem;
	letter-spacing: 1px;
}

.lifetime-label {
	display: inline-block;
	background: linear-gradient(135deg, #4CAF50, #66BB6A);
	color: #ffffff;
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 1.5px;
	padding: 0.5rem 1.25rem;
	border-radius: 50px;
	margin-bottom: 1rem;
	text-transform: uppercase;
}

.pricing-header {
	text-align: center;
	margin-bottom: 2rem;
}

.pricing-header h3 {
	font-size: 2rem;
	font-weight: 800;
	margin-bottom: 0.5rem;
	color: var(--text-primary);
}

.price-sub {
	color: var(--text-tertiary);
	font-size: 1rem;
	margin-bottom: 1.5rem;
}

.price-before {
	text-align: center;
	margin-bottom: 0.5rem;
}

.price-before-text {
	font-size: 1.5rem;
	font-weight: 600;
	color: #dc2626;
}

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

.currency {
	font-size: 2rem;
	font-weight: 700;
	color: var(--accent-primary);
	margin-top: 0.5rem;
}

.amount {
	font-size: 4rem;
	font-weight: 800;
	color: var(--text-primary);
	line-height: 1;
}

.old-price {
	font-size: 1.5rem;
	color: var(--text-tertiary);
	text-decoration: line-through;
	margin-top: 0.5rem;
	opacity: 0.6;
}

.payment-note {
	color: var(--text-tertiary);
	font-size: 0.9rem;
}

.divider {
	border: none;
	border-top: 1px solid var(--border-primary);
	margin: 2rem 0;
}

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

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

.check-icon {
	color: var(--accent-pink);
	font-size: 24px;
	flex-shrink: 0;
}

.checkout-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.75rem;
	width: 100%;
	background: linear-gradient(135deg, var(--accent-primary), var(--accent-light));
	color: var(--text-primary);
	border: none;
	padding: 1.25rem 2rem;
	border-radius: 12px;
	font-weight: 700;
	font-size: 1.1rem;
	text-decoration: none;
	transition: all 0.3s ease;
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
	position: relative;
	margin-top: 1rem;
}

.checkout-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
	background: linear-gradient(135deg, var(--accent-light), var(--accent-primary));
	color: var(--text-primary);
}

.checkout-btn .material-icons {
	font-size: 24px;
}

/* Checkout info text */
.checkout-info-text {
	margin-top: 1.5rem;
	text-align: center;
}

.checkout-info-text p {
	color: var(--text-tertiary);
	font-size: 0.9rem;
	margin: 0.25rem 0;
}

.trial-fee-info {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.35rem;
	flex-wrap: wrap;
}

.info-icon-wrapper {
	position: relative;
	display: inline-flex;
	align-items: center;
	cursor: pointer;
}

.info-icon {
	font-size: 16px !important;
	color: var(--text-tertiary);
	opacity: 0.7;
	transition: opacity 0.2s ease, color 0.2s ease;
}

.info-icon-wrapper:hover .info-icon {
	opacity: 1;
	color: var(--accent-primary);
}

.info-tooltip {
	position: absolute;
	bottom: calc(100% + 10px);
	left: 50%;
	transform: translateX(-50%);
	width: 280px;
	padding: 12px 16px;
	background: var(--dark-elevated);
	border: 1px solid var(--border-primary);
	border-radius: 8px;
	font-size: 0.85rem;
	line-height: 1.5;
	color: var(--text-secondary);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.2s ease, visibility 0.2s ease;
	z-index: 100;
	pointer-events: none;
}

.info-tooltip::after {
	content: '';
	position: absolute;
	top: 100%;
	left: 50%;
	transform: translateX(-50%);
	border: 8px solid transparent;
	border-top-color: var(--border-primary);
}

.info-icon-wrapper:hover .info-tooltip,
.info-icon-wrapper:focus .info-tooltip,
.info-icon-wrapper:active .info-tooltip {
	opacity: 1;
	visibility: visible;
}

/* Mobile touch support */
@media (max-width: 768px) {
	.info-tooltip {
		width: 250px;
		left: auto;
		right: -20px;
		transform: none;
	}

	.info-tooltip::after {
		left: auto;
		right: 28px;
		transform: none;
	}
}

/* AI Models Header in Pricing */
.ai-models-header {
	font-size: 0.8rem;
	font-weight: 600;
	color: var(--text-tertiary);
	text-transform: uppercase;
	letter-spacing: 0.5px;
	margin-top: 1.5rem;
	margin-bottom: 0.5rem;
	padding-top: 1rem;
	border-top: 1px solid var(--border-primary);
}

.pricing-features-ai li {
	padding: 0.75rem 0;
}

.ai-check-icon {
	width: 22px;
	height: 22px;
	color: var(--accent-primary);
	flex-shrink: 0;
}

.guarantee-badge {
	display: flex;
	align-items: center;
	gap: 1.5rem;
	background-color: var(--dark-elevated);
	border: 1px solid var(--border-primary);
	border-radius: 12px;
	padding: 1.5rem 2rem;
	margin-top: 2rem;
}

.shield-icon-box {
	flex-shrink: 0;
	width: 60px;
	height: 60px;
	background: linear-gradient(135deg, var(--accent-pink), var(--accent-pink-light));
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.shield-icon-box .material-icons {
	font-size: 32px;
	color: var(--text-primary);
}

.guarantee-text h4 {
	font-size: 1.25rem;
	font-weight: 700;
	margin-bottom: 0.5rem;
	color: var(--text-primary);
}

.guarantee-text p {
	color: var(--text-tertiary);
	font-size: 0.95rem;
	margin: 0;
}

.reveal-on-scroll {
	opacity: 0;
	transform: translateY(30px);
	transition: all 0.6s ease;
}

.reveal-on-scroll.is-visible {
	opacity: 1;
	transform: translateY(0);
}

/* Footer */
.footer {
	background-color: var(--dark-secondary);
	border-top: 1px solid var(--border-primary);
	padding: 2rem 0;
}

.footer-bottom {
	text-align: center;
	color: var(--text-tertiary);
	font-size: 0.9rem;
}

.footer-bottom p {
	margin: 0;
}

.footer-bottom a {
	color: var(--text-tertiary);
	text-decoration: none;
	transition: color 0.3s ease;
	margin: 0 0.5rem;
}

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

.footer-copyright {
	margin-top: 3rem;
	margin-bottom: 0.5rem;
}

.footer-merchant {
	margin: 0;
	font-size: 0.85rem;
	opacity: 0.8;
}

.footer-disclaimer {
	margin-top: 1.5rem;
	font-size: 0.75rem;
	opacity: 0.6;
	max-width: 700px;
	margin-left: auto;
	margin-right: auto;
	line-height: 1.6;
}

/* Legal Pages (Terms, Privacy, Refund) */
.legal-content {
	background-color: var(--dark-primary);
	padding: 100px 0 80px;
	min-height: 100vh;
}

.legal-container {
	max-width: 900px;
	margin: 0 auto;
	padding: 0 2rem;
}

.legal-header {
	text-align: center;
	margin-bottom: 4rem;
	padding-top: 2rem;
}

.legal-header h1 {
	font-size: 3rem;
	font-weight: 800;
	color: var(--text-primary);
	margin-bottom: 1rem;
	letter-spacing: -0.02em;
}

.legal-header .update-date {
	color: var(--text-tertiary);
	font-size: 1rem;
}

.legal-section {
	margin-bottom: 3rem;
}

.legal-section h2 {
	font-size: 1.75rem;
	font-weight: 700;
	color: var(--text-primary);
	margin-bottom: 1rem;
	margin-top: 2rem;
}

.legal-section h3 {
	font-size: 1.25rem;
	font-weight: 600;
	color: var(--text-secondary);
	margin-bottom: 0.75rem;
	margin-top: 1.5rem;
}

.legal-section p {
	color: var(--text-secondary);
	font-size: 1rem;
	line-height: 1.8;
	margin-bottom: 1rem;
}

.legal-section ul, .legal-section ol {
	color: var(--text-secondary);
	line-height: 1.8;
	margin-bottom: 1rem;
	padding-left: 2rem;
}

.legal-section ul li, .legal-section ol li {
	margin-bottom: 0.5rem;
}

.legal-section strong {
	color: var(--text-primary);
	font-weight: 600;
}

.company-info {
	background-color: var(--dark-elevated);
	border: 1px solid var(--border-primary);
	border-radius: 12px;
	padding: 2rem;
	margin: 2rem 0;
}

.company-info p {
	margin-bottom: 0.5rem;
}

.back-link {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	color: var(--accent-primary);
	text-decoration: none;
	font-weight: 600;
	margin-bottom: 2rem;
	transition: all 0.3s ease;
}

.back-link:hover {
	color: var(--accent-light);
	transform: translateX(-5px);
}

.highlight-box {
	background-color: var(--dark-elevated);
	border-left: 4px solid var(--accent-primary);
	padding: 1.5rem;
	margin: 1.5rem 0;
	border-radius: 8px;
}

.highlight-box p {
	margin-bottom: 0;
}

.success-box {
	background-color: rgba(76, 175, 80, 0.1);
	border-left: 4px solid #4caf50;
	padding: 1.5rem;
	margin: 1.5rem 0;
	border-radius: 8px;
}

.success-box p {
	margin-bottom: 0;
	color: var(--text-secondary);
}

.process-steps {
	background-color: var(--dark-elevated);
	border: 1px solid var(--border-primary);
	border-radius: 12px;
	padding: 2rem;
	margin: 2rem 0;
}

.process-steps ol {
	counter-reset: step-counter;
	list-style: none;
	padding-left: 0;
}

.process-steps ol li {
	counter-increment: step-counter;
	position: relative;
	padding-left: 3rem;
	margin-bottom: 1.5rem;
}

.process-steps ol li::before {
	content: counter(step-counter);
	position: absolute;
	left: 0;
	top: 0;
	width: 2rem;
	height: 2rem;
	background: linear-gradient(135deg, var(--accent-primary), var(--accent-light));
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	font-size: 1rem;
	color: var(--text-primary);
}

.legal-section table {
	width: 100%;
	border-collapse: collapse;
	margin: 1.5rem 0;
}

.legal-section table th,
.legal-section table td {
	padding: 1rem;
	text-align: left;
	border-bottom: 1px solid var(--border-primary);
	color: var(--text-secondary);
}

.legal-section table th {
	color: var(--text-primary);
	font-weight: 600;
	background-color: var(--dark-elevated);
}

/* Contact Page */
.contact-content {
	background-color: var(--dark-primary);
	padding: 100px 0 80px;
	min-height: 100vh;
}

.contact-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 2rem;
}

.contact-header {
	text-align: center;
	margin-bottom: 4rem;
	padding-top: 2rem;
}

.contact-header h1 {
	font-size: 3rem;
	font-weight: 800;
	color: var(--text-primary);
	margin-bottom: 1rem;
	letter-spacing: -0.02em;
}

.contact-header p {
	color: var(--text-tertiary);
	font-size: 1.1rem;
	max-width: 600px;
	margin: 0 auto;
}

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

.contact-info-section {
	background-color: var(--dark-elevated);
	border: 1px solid var(--border-primary);
	border-radius: 16px;
	padding: 3rem;
}

.contact-info-section h2 {
	font-size: 2rem;
	font-weight: 700;
	color: var(--text-primary);
	margin-bottom: 2rem;
}

.contact-method {
	display: flex;
	align-items: flex-start;
	gap: 1.5rem;
	margin-bottom: 2rem;
	padding-bottom: 2rem;
	border-bottom: 1px solid var(--border-primary);
}

.contact-method:last-child {
	border-bottom: none;
	margin-bottom: 0;
	padding-bottom: 0;
}

.contact-icon {
	flex-shrink: 0;
	width: 50px;
	height: 50px;
	background: linear-gradient(135deg, var(--accent-primary), var(--accent-light));
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.contact-icon .material-icons {
	font-size: 24px;
	color: var(--text-primary);
}

.contact-details h3 {
	font-size: 1.25rem;
	font-weight: 600;
	color: var(--text-primary);
	margin-bottom: 0.5rem;
}

.contact-details p {
	color: var(--text-secondary);
	margin-bottom: 0.25rem;
	line-height: 1.6;
}

.contact-details a {
	color: var(--accent-primary);
	text-decoration: none;
	font-weight: 500;
}

.contact-details a:hover {
	color: var(--accent-light);
}

.contact-form-section {
	background-color: var(--dark-elevated);
	border: 1px solid var(--border-primary);
	border-radius: 16px;
	padding: 3rem;
}

.contact-form-section h2 {
	font-size: 2rem;
	font-weight: 700;
	color: var(--text-primary);
	margin-bottom: 1.5rem;
}

.form-group {
	margin-bottom: 1.5rem;
}

.form-label {
	display: block;
	color: var(--text-primary);
	font-weight: 600;
	margin-bottom: 0.5rem;
	font-size: 0.95rem;
}

.form-control {
	width: 100%;
	padding: 0.875rem 1rem;
	background-color: var(--dark-primary);
	border: 1px solid var(--border-primary);
	border-radius: 8px;
	color: var(--text-primary);
	font-size: 1rem;
	transition: all 0.3s ease;
	font-family: 'Inter', sans-serif;
}

.form-control:focus {
	outline: none;
	border-color: var(--accent-primary);
	box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.form-control::placeholder {
	color: var(--text-tertiary);
}

textarea.form-control {
	resize: vertical;
	min-height: 150px;
}

.submit-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.75rem;
	width: 100%;
	background: linear-gradient(135deg, var(--accent-primary), var(--accent-light));
	color: var(--text-primary);
	border: none;
	padding: 1rem 2rem;
	border-radius: 8px;
	font-weight: 700;
	font-size: 1rem;
	cursor: pointer;
	transition: all 0.3s ease;
	box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
}

.submit-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 15px 40px rgba(255, 107, 53, 0.4);
}

.submit-btn .material-icons {
	font-size: 20px;
}

.response-time {
	background-color: var(--dark-primary);
	border-left: 4px solid var(--accent-primary);
	padding: 1.5rem;
	margin-top: 2rem;
	border-radius: 8px;
}

.response-time p {
	color: var(--text-secondary);
	margin: 0;
}

.response-time strong {
	color: var(--text-primary);
}

/* Who Is This For Section */
.who-section {
	padding: 120px 0;
	background-color: var(--dark-primary);
}

.who-card {
	background-color: var(--dark-secondary);
	border: 1px solid var(--border-primary);
	border-radius: 16px;
	padding: 2rem;
	height: 100%;
}

.who-header {
	display: flex;
	align-items: center;
	gap: 1rem;
	margin-bottom: 1.5rem;
	padding-bottom: 1.5rem;
	border-bottom: 1px solid var(--border-primary);
}

.who-icon {
	width: 28px;
	height: 28px;
	color: var(--accent-primary);
	flex-shrink: 0;
}

.who-header h3 {
	font-size: 1.25rem;
	font-weight: 700;
	color: var(--text-primary);
	margin: 0;
}

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

.who-list li {
	color: var(--text-secondary);
	padding: 0.5rem 0;
	padding-left: 1.5rem;
	position: relative;
	font-size: 0.95rem;
}

.who-list li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 6px;
	height: 6px;
	background: var(--accent-primary);
	border-radius: 50%;
}

.who-list li.who-more {
	color: var(--text-tertiary);
	font-style: italic;
}

.who-list li.who-more::before {
	background: var(--text-tertiary);
}

/* FAQ Section */
.faq-section {
	padding: 120px 0;
	background-color: var(--dark-secondary);
}

.faq-container {
	max-width: 800px;
	margin: 0 auto;
}

.faq-item {
	background-color: var(--dark-elevated);
	border: 1px solid var(--border-primary);
	border-radius: 12px;
	margin-bottom: 1rem;
	overflow: hidden;
	transition: all 0.3s ease;
}

.faq-item:hover {
	border-color: rgba(223, 16, 140, 0.5);
}

.faq-item.active {
	border-color: var(--accent-primary);
	box-shadow: 0 10px 30px rgba(223, 16, 140, 0.15);
}

.faq-question {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 1.5rem 2rem;
	background: none;
	border: none;
	cursor: pointer;
	text-align: left;
	color: var(--text-primary);
	font-size: 1.1rem;
	font-weight: 600;
	font-family: 'Inter', sans-serif;
	transition: all 0.3s ease;
	gap: 1rem;
}

.faq-question:hover {
	color: var(--accent-primary);
}

.faq-question span:first-child {
	flex: 1;
}

.faq-icon {
	flex-shrink: 0;
	font-size: 28px;
	color: var(--accent-primary);
	transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
	transform: rotate(180deg);
}

.faq-answer {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.4s ease;
}

.faq-answer p {
	padding: 0 2rem 1.5rem 2rem;
	color: var(--text-secondary);
	font-size: 1rem;
	line-height: 1.8;
	margin: 0;
}

/* ============================================
   RESPONSIVE - MOBILE STYLES
   ============================================ */

/* Large tablets and small desktops */
@media (max-width: 992px) {
	.hero-section {
		padding: 80px 0 60px;
		min-height: auto;
	}

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

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

	.pain-title,
	.solution-title {
		font-size: 2.5rem;
	}

	.pain-subtitle,
	.solution-subtitle {
		font-size: 1.25rem;
	}

	.features-section,
	.how-it-works-section,
	.who-section,
	.faq-section {
		padding: 80px 0;
	}

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

	.section-subtitle {
		font-size: 1.1rem;
		margin-bottom: 3rem;
	}
}

/* Tablets */
@media (max-width: 768px) {
	/* Hero Section */
	.hero-section {
		padding: 60px 0 50px;
	}

	.hero-title {
		font-size: 2.25rem;
		line-height: 1.2;
		margin-bottom: 1.5rem;
	}

	.hero-title::after {
        height: 65px;
        filter: blur(60px);
	}

	.hero-subtitle {
		font-size: 1.125rem;
		line-height: 1.7;
		margin-bottom: 2rem;
		padding: 0 0.5rem;
	}

	.btn-hero {
		padding: 1rem 2rem;
		font-size: 1.1rem;
		width: 100%;
		justify-content: center;
	}

	.hero-stats {
		flex-direction: column;
		gap: 1.5rem;
		margin-top: 3rem;
	}

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

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

	.hero-benefits {
		flex-direction: column;
		align-items: center;
		gap: 1rem;
		margin-top: 2rem;
	}

	.hero-benefit-text {
		font-size: 1rem;
	}

	/* Pain Section */
	.pain-section {
		padding: 60px 0;
	}

	.pain-title {
		font-size: 2rem;
		line-height: 1.2;
	}

	.pain-subtitle {
		font-size: 1.125rem;
		line-height: 1.6;
		margin-bottom: 2rem;
	}

	.pain-item {
		padding: 1.5rem 1.25rem;
	}

	.pain-icon-wrapper {
		width: 60px;
		height: 60px;
	}

	.pain-icon {
		width: 30px;
		height: 30px;
	}

	.pain-item span {
		font-size: 1.125rem;
	}

	/* Solution Section */
	.solution-section {
		padding: 60px 0;
	}

	.solution-title {
		font-size: 2rem;
		line-height: 1.2;
	}

	.solution-subtitle {
		font-size: 1.125rem;
		margin-bottom: 2rem;
	}

	.slider-wrapper {
		padding: 1rem;
		border-radius: 12px;
	}

	.slider-track img {
		width: 600px;
	}

	@keyframes slide {
		0% { transform: translateX(0); }
		100% { transform: translateX(-600px); }
	}

	/* Features Section */
	.features-section {
		padding: 60px 0;
	}

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

	.section-title::after {
		height: 20px;
		filter: blur(25px);
	}

	.section-subtitle {
		font-size: 1.125rem;
		margin-bottom: 2.5rem;
		padding: 0 0.5rem;
	}

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

	.feature-icon {
		width: 60px;
		height: 60px;
		margin-bottom: 1.5rem;
	}

	.feature-icon .material-icons {
		font-size: 30px;
	}

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

	.feature-description {
		font-size: 1rem;
		line-height: 1.6;
	}

	/* How It Works Section */
	.how-it-works-section {
		padding: 60px 0;
	}

	.steps-grid {
		gap: 3rem;
	}

	.steps-grid::before {
		left: 30px;
		top: 60px;
		bottom: 60px;
	}

	.step-item {
		grid-template-columns: 60px 1fr;
		gap: 1.25rem;
	}

	.step-number {
		width: 60px;
		height: 60px;
		font-size: 1.25rem;
	}

	.step-content {
		padding: 1.5rem;
	}

	.step-content h3 {
		font-size: 1.25rem;
	}

	.step-content p {
		font-size: 1rem;
	}

	/* Who Section */
	.who-section {
		padding: 60px 0;
	}

	.who-card {
		padding: 1.5rem;
	}

	.who-header h3 {
		font-size: 1.125rem;
	}

	.who-list li {
		font-size: 1rem;
		padding: 0.625rem 0;
		padding-left: 1.25rem;
	}

	/* FAQ Section */
	.faq-section {
		padding: 60px 0;
	}

	.faq-question {
		padding: 1.25rem 1.5rem;
		font-size: 1rem;
	}

	.faq-icon {
		font-size: 24px;
	}

	.faq-answer p {
		padding: 0 1.5rem 1.25rem 1.5rem;
		font-size: 0.9375rem;
		line-height: 1.7;
	}

	/* Pricing Section */
	.pricing-section {
		padding: 60px 0;
	}

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

	.pricing-header h3 {
		font-size: 1.75rem;
	}

	.price-sub {
		font-size: 1rem;
	}

	.amount {
		font-size: 3.5rem;
	}

	.currency {
		font-size: 1.75rem;
	}

	.pricing-features li {
		font-size: 1rem;
		padding: 0.875rem 0;
	}

	.checkout-btn {
		padding: 1.125rem 1.5rem;
		font-size: 1.05rem;
	}

	.guarantee-badge {
		flex-direction: column;
		text-align: center;
		gap: 1rem;
		padding: 1.5rem;
	}

	.guarantee-text h4 {
		font-size: 1.125rem;
	}

	.guarantee-text p {
		font-size: 1rem;
	}

	/* Footer */
	.footer {
		padding: 1.5rem 0;
	}

	.footer-bottom {
		font-size: 0.95rem;
	}

	.footer-bottom a {
		display: inline-block;
		margin: 0.25rem 0.5rem;
	}

	/* Legal & Contact Pages */
	.legal-header h1,
	.contact-header h1 {
		font-size: 2rem;
	}

	.contact-grid {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

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

/* Small phones */
@media (max-width: 480px) {
	/* Hero Section */
	.hero-section {
		padding: 50px 0 40px;
	}

	.hero-title {
		font-size: 1.875rem;
        line-height: 1.25;
        padding: 0px 25px;
	}

	.hero-subtitle {
		font-size: 1.1rem;
		line-height: 1.65;
		padding: 0px 50px;
		opacity: 0.8;
		font-weight: 200;
	}

	.btn-hero {
		padding: 1rem 1.5rem;
		font-size: 1rem;
		gap: 0.5rem;
	}

	.btn-hero .material-icons {
		font-size: 22px;
	}

	.hero-stats {
		gap: 1.25rem;
	}

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

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

	/* Pain Section */
	.pain-section {
		padding: 50px 0;
	}

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

	.pain-subtitle {
		font-size: 1.0625rem;
	}

	.pain-item {
		padding: 1.25rem 1rem;
	}

	.pain-icon-wrapper {
		width: 55px;
		height: 55px;
	}

	.pain-icon {
		width: 28px;
		height: 28px;
	}

	.pain-item span {
		font-size: 1.0625rem;
	}

	/* Solution Section */
	.solution-section {
		padding: 50px 0;
	}

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

	.solution-subtitle {
		font-size: 1.0625rem;
	}

	.slider-wrapper {
		padding: 0.75rem;
	}

	.slider-track img {
		width: 400px;
	}

	@keyframes slide {
		0% { transform: translateX(0); }
		100% { transform: translateX(-400px); }
	}

	/* Features Section */
	.features-section {
		padding: 50px 0;
	}

	.section-title {
		font-size: 1.625rem;
		padding: 0 0.5rem;
	}

	.section-subtitle {
		font-size: 1.0625rem;
		margin-bottom: 2rem;
	}

	.feature-card {
		padding: 1.75rem 1.25rem;
	}

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

	.feature-icon .material-icons {
		font-size: 28px;
	}

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

	.feature-description {
		font-size: 0.9375rem;
	}

	/* How It Works Section */
	.how-it-works-section {
		padding: 50px 0;
	}

	.steps-grid {
		gap: 2.5rem;
	}

	.steps-grid::before {
		left: 25px;
		top: 50px;
		bottom: 50px;
	}

	.step-item {
		grid-template-columns: 50px 1fr;
		gap: 1rem;
	}

	.step-number {
		width: 50px;
		height: 50px;
		font-size: 1.125rem;
	}

	.step-content {
		padding: 1.25rem;
	}

	.step-content h3 {
		font-size: 1.125rem;
		margin-bottom: 0.75rem;
	}

	.step-content p {
		font-size: 0.9375rem;
		line-height: 1.6;
	}

	/* Who Section */
	.who-section {
		padding: 50px 0;
	}

	.who-card {
		padding: 1.25rem;
	}

	.who-header {
		padding-bottom: 1.25rem;
		margin-bottom: 1.25rem;
	}

	.who-icon {
		width: 24px;
		height: 24px;
	}

	.who-header h3 {
		font-size: 1.0625rem;
	}

	.who-list li {
		font-size: 0.9375rem;
		padding: 0.5rem 0;
	}

	/* FAQ Section */
	.faq-section {
		padding: 50px 0;
	}

	.faq-item {
		border-radius: 10px;
	}

	.faq-question {
		padding: 1.125rem 1.25rem;
		font-size: 0.9375rem;
		gap: 0.75rem;
	}

	.faq-icon {
		font-size: 22px;
	}

	.faq-answer p {
		padding: 0 1.25rem 1.125rem 1.25rem;
		font-size: 0.9rem;
		line-height: 1.65;
	}

	/* Pricing Section */
	.pricing-section {
		padding: 50px 0;
	}

	.pricing-card {
		padding: 1.75rem 1.25rem;
		border-radius: 16px;
	}

	.pricing-header h3 {
		font-size: 1.5rem;
	}

	.price-sub {
		font-size: 0.9375rem;
	}

	.amount {
		font-size: 3rem;
	}

	.currency {
		font-size: 1.5rem;
	}

	.period {
		font-size: 1rem;
	}

	.payment-note {
		font-size: 0.875rem;
	}

	.pricing-features li {
		font-size: 0.9375rem;
		gap: 0.75rem;
	}

	.check-icon {
		font-size: 20px;
	}

	.checkout-btn {
		padding: 1rem 1.25rem;
		font-size: 1rem;
		border-radius: 10px;
	}

	.checkout-info-text p {
		font-size: 0.875rem;
	}

	.info-tooltip {
		width: 240px;
		font-size: 0.8rem;
		right: -10px;
	}

	.guarantee-badge {
		padding: 1.25rem;
		border-radius: 10px;
	}

	.shield-icon-box {
		width: 50px;
		height: 50px;
	}

	.shield-icon-box .material-icons {
		font-size: 26px;
	}

	.guarantee-text h4 {
		font-size: 1.0625rem;
	}

	.guarantee-text p {
		font-size: 0.9375rem;
	}

	/* Footer */
	.footer {
		padding: 1.25rem 0;
	}

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

	.footer-bottom a {
		margin: 0.375rem 0.375rem;
	}

	.footer-copyright {
		margin-top: 2rem;
	}

	.footer-merchant {
		font-size: 0.8rem;
	}

	/* Legal Pages */
	.legal-content,
	.contact-content {
		padding: 60px 0;
	}

	.legal-container,
	.contact-container {
		padding: 0 1rem;
	}

	.legal-header,
	.contact-header {
		margin-bottom: 2.5rem;
	}

	.legal-header h1,
	.contact-header h1 {
		font-size: 1.75rem;
	}

	.legal-section h2 {
		font-size: 1.375rem;
	}

	.legal-section h3 {
		font-size: 1.125rem;
	}

	.legal-section p,
	.legal-section ul,
	.legal-section ol {
		font-size: 0.9375rem;
	}

	.contact-info-section,
	.contact-form-section {
		padding: 1.5rem;
	}

	.contact-info-section h2,
	.contact-form-section h2 {
		font-size: 1.5rem;
	}
}

/* Extra small phones (iPhone SE, etc.) */
@media (max-width: 375px) {
	.hero-title {
		font-size: 1.625rem;
	}

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

	.pain-title,
	.solution-title {
		font-size: 1.5rem;
	}

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

	.pain-subtitle,
	.solution-subtitle,
	.section-subtitle {
		font-size: 1rem;
	}

	.btn-hero {
		font-size: 0.9375rem;
		padding: 0.875rem 1.25rem;
	}

	.pain-item span {
		font-size: 1rem;
	}

	.feature-title {
		font-size: 1.125rem;
	}

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

	.step-content h3 {
		font-size: 1.0625rem;
	}

	.step-content p {
		font-size: 0.9rem;
	}

	.pricing-header h3 {
		font-size: 1.375rem;
	}

	.amount {
		font-size: 2.75rem;
	}

	.checkout-btn {
		font-size: 0.9375rem;
	}
}
