/* ============================================
   EDT Theme - Main Stylesheet
   ============================================ */

/* CSS Variables */
:root {
	--primary-color: #6366f1;
	--primary-dark: #4f46e5;
	--primary-light: #818cf8;
	--secondary-color: #8b5cf6;
	--accent-color: #ec4899;
	--text-dark: #1f2937;
	--text-medium: #4b5563;
	--text-light: #6b7280;
	--bg-light: #f9fafb;
	--bg-white: #ffffff;
	--border-color: #e5e7eb;
	--success-color: #10b981;
	--shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
	--shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
	--shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
	--shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
	--font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	--transition: all 0.3s ease;
}

/* Reset & Base Styles */
* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

body {
	font-family: var(--font-primary);
	font-size: 16px;
	line-height: 1.6;
	color: var(--text-dark);
	background-color: var(--bg-white);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
	font-weight: 700;
	line-height: 1.2;
	margin-bottom: 1rem;
	color: var(--text-dark);
}

h1 { font-size: 3rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 2rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

p {
	margin-bottom: 1rem;
	color: var(--text-medium);
}

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

a:hover {
	color: var(--primary-dark);
}

/* Header */
.site-header {
	background: var(--text-dark);
	box-shadow: var(--shadow-sm);
	position: sticky;
	top: 0;
	z-index: 1000;
}

.header-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 1rem 20px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.header-right {
	display: flex;
	align-items: center;
	gap: 2rem;
}

.header-actions {
	display: flex;
	align-items: center;
	gap: 2rem;
}

.site-header .btn-outline {
	background: var(--primary-color);
	color: white;
	border-color: var(--primary-color);
}

.site-header .btn-outline:hover {
	background: var(--primary-light);
	border-color: var(--primary-light);
	color: white;
	transform: translateY(-2px);
	box-shadow: var(--shadow-md);
}

.site-header .header-account-link {
	color: rgba(255, 255, 255, 0.8);
	text-decoration: none;
	font-weight: 500;
	font-size: 1rem;
	padding: 0.5rem 0;
	transition: var(--transition);
}

.site-header .header-account-link:hover {
	color: white;
}

.site-branding .site-title {
	font-size: 1.5rem;
	font-weight: 800;
	margin: 0;
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.site-branding .site-title a {
	color: white;
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.site-title-icon {
	flex-shrink: 0;
	width: 24px;
	height: 24px;
}

.beta-badge {
	font-size: 0.625rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	padding: 0.125rem 0.375rem;
	background: rgba(255, 255, 255, 0.2);
	border-radius: 0.25rem;
	margin-left: 0.375rem;
	vertical-align: middle;
}

.site-branding .site-title a:hover {
	color: var(--primary-light);
}

.main-navigation ul {
	list-style: none;
	display: flex;
	gap: 2rem;
	align-items: center;
}

.main-navigation a {
	color: rgba(255, 255, 255, 0.8);
	font-weight: 500;
}

.main-navigation a:hover {
	color: white;
}

.menu-toggle {
	display: none;
	background: none;
	border: none;
	cursor: pointer;
	padding: 0.5rem;
}

.menu-icon {
	display: block;
	width: 24px;
	height: 2px;
	background: white;
	position: relative;
}

.menu-icon::before,
.menu-icon::after {
	content: '';
	position: absolute;
	width: 24px;
	height: 2px;
	background: white;
	left: 0;
	transition: var(--transition);
}

.menu-icon::before {
	top: -8px;
}

.menu-icon::after {
	bottom: -8px;
}

/* Buttons */
.btn {
	display: inline-block;
	padding: 0.75rem 1.5rem;
	font-size: 1rem;
	font-weight: 600;
	border-radius: 0.5rem;
	transition: var(--transition);
	cursor: pointer;
	border: 2px solid transparent;
	text-align: center;
}

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

.btn-primary:hover {
	background: var(--primary-dark);
	color: white;
	transform: translateY(-2px);
	box-shadow: var(--shadow-md);
}

.btn-secondary {
	background: transparent;
	color: var(--primary-color);
	border-color: var(--primary-color);
}

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

.btn-outline {
	background: transparent;
	color: var(--text-dark);
	border-color: var(--border-color);
}

.btn-outline:hover {
	background: var(--bg-light);
	border-color: var(--text-dark);
}

.btn-white {
	background: white;
	color: var(--primary-color);
	border: 2px solid white;
}

.btn-white:hover {
	background: rgba(255, 255, 255, 0.9);
	color: var(--primary-dark);
	border-color: white;
}

.btn-large {
	padding: 1rem 2rem;
	font-size: 1.125rem;
}

/* Hero Section */
.hero-section {
	padding: 6rem 0;
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	color: white;
}

.hero-section .container {
	display: grid;
	grid-template-columns: 1.3fr 0.7fr;
	gap: 6rem;
	align-items: center;
	max-width: 1000px;
}

.hero-title {
	font-size: 3.5rem;
	font-weight: 800;
	margin-bottom: 1.5rem;
	color: white;
	line-height: 1.1;
}

.hero-subtitle {
	font-size: 1.25rem;
	margin-bottom: 2rem;
	color: rgba(255, 255, 255, 0.9);
	line-height: 1.6;
}

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

.hero-buttons .btn-primary {
	background: white;
	color: var(--primary-color);
}

.hero-buttons .btn-primary:hover {
	background: rgba(255, 255, 255, 0.9);
	transform: translateY(-2px);
}

.hero-buttons .btn-secondary {
	border-color: white;
	color: white;
}

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

.hero-image {
	display: flex;
	justify-content: center;
	align-items: center;
	overflow: visible;
}

.hero-video {
	width: 120%;
	height: auto;
	max-width: none;
	border-radius: 0.5rem;
	box-shadow: var(--shadow-xl);
	background: rgba(255, 255, 255, 0.1);
	margin: 0 -10%;
	display: block;
}

.hero-preview-image {
	width: 100%;
	height: auto;
	max-width: 600px;
	border-radius: 0.5rem;
	box-shadow: var(--shadow-xl);
	background: rgba(255, 255, 255, 0.1);
	margin: 0 auto;
	display: block;
}

.hero-placeholder {
	width: 100%;
	height: 400px;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 1rem;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5rem;
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Section Styles */
section {
	padding: 5rem 0;
}

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

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

.section-subtitle {
	font-size: 1.25rem;
	color: var(--text-light);
	max-width: 600px;
	margin: 0 auto;
}

/* Features Section */
.features-section {
	background: var(--bg-white);
}

.features-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
}

.feature-card {
	background: var(--bg-white);
	padding: 2.5rem;
	border-radius: 1rem;
	box-shadow: var(--shadow-md);
	border: 1px solid var(--border-color);
}

.feature-icon {
	width: 64px;
	height: 64px;
	background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
	border-radius: 1rem;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 1.5rem;
	color: white;
}

.feature-title {
	font-size: 1.5rem;
	margin-bottom: 1rem;
}

.feature-description {
	color: var(--text-medium);
	line-height: 1.7;
}

/* Problem Section */
.problem-section {
	background: var(--bg-light);
	padding: 6rem 0;
	border-top: 1px solid var(--border-color);
}

.problem-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 2rem;
	margin-top: 3rem;
	max-width: 1200px;
	margin-left: auto;
	margin-right: auto;
}

.problem-item {
	text-align: center;
	padding: 2rem;
	background: var(--bg-white);
	border-radius: 1rem;
	border: 1px solid var(--border-color);
}

.problem-icon {
	width: 64px;
	height: 64px;
	margin: 0 auto 1rem;
	color: #ef4444;
	display: flex;
	align-items: center;
	justify-content: center;
}

.problem-title {
	font-size: 1.125rem;
	font-weight: 600;
	margin-bottom: 0.75rem;
	color: var(--text-dark);
	text-wrap: pretty;
}

.problem-description {
	color: var(--text-medium);
	font-size: 0.95rem;
	line-height: 1.6;
	margin: 0;
	text-wrap: pretty;
}

.problem-solution {
	text-align: center;
	margin-top: 4rem;
	padding: 2.5rem;
	background: var(--bg-white);
	border-radius: 1rem;
	border: 2px solid var(--primary-color);
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
}

.solution-icon {
	width: 64px;
	height: 64px;
	margin: 0 auto 1rem;
	color: var(--success-color, #10b981);
	display: flex;
	align-items: center;
	justify-content: center;
}

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

.solution-description {
	color: var(--text-medium);
	font-size: 1rem;
	line-height: 1.6;
	margin: 0;
	text-wrap: pretty;
}

@media (max-width: 768px) {
	.problem-grid {
		grid-template-columns: 1fr;
		gap: 1.5rem;
	}
	
	.problem-solution {
		padding: 2rem 1.5rem;
	}
}

/* How It Works Section */
.how-it-works-section {
	background: var(--bg-white);
	padding: 6rem 0;
	border-top: 1px solid var(--border-color);
}

.how-it-works-section .section-header {
	margin-bottom: 4rem;
}

.how-it-works-video {
	width: 100%;
	margin: 5rem auto 0;
	max-width: 900px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.how-it-works-video .preview-video,
.how-it-works-video .preview-image {
	width: 100%;
	height: auto;
	border: 4px solid #000;
	box-shadow: var(--shadow-xl);
	background: var(--bg-light);
	display: block;
}

.steps-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 2.5rem;
	max-width: 1200px;
	margin: 0 auto;
}

.step-item {
	background: var(--bg-white);
	border: 2px solid var(--border-color);
	border-radius: 1.25rem;
	padding: 2rem;
	text-align: center;
	position: relative;
	box-shadow: var(--shadow-sm);
	transition: var(--transition);
	display: flex;
	flex-direction: column;
	align-items: center;
}


.step-number {
	width: 48px;
	height: 48px;
	background: var(--primary-color);
	color: white;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.375rem;
	font-weight: 700;
	margin: 0 auto 1.75rem;
	box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
	flex-shrink: 0;
}

.step-title {
	font-size: 1.375rem;
	font-weight: 700;
	margin-bottom: 1.25rem;
	color: var(--text-dark);
	line-height: 1.3;
}

.step-description {
	color: var(--text-medium);
	line-height: 1.7;
	font-size: 1rem;
	margin: 0;
}

/* Pricing Section */
.pricing-section {
	background: var(--bg-light);
	border-top: 1px solid var(--border-color);
}

.pricing-features-list {
	text-align: center;
	margin-bottom: 3rem;
	max-width: 100%;
	margin-left: auto;
	margin-right: auto;
	overflow-x: auto;
}

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

.pricing-features-items {
	list-style: none;
	display: flex;
	flex-wrap: nowrap;
	justify-content: center;
	gap: 1rem;
	margin: 0;
	padding: 0;
	white-space: nowrap;
}

.pricing-features-items li {
	color: var(--text-medium);
	position: relative;
	padding: 1rem 1.5rem 1rem 2.75rem;
	white-space: nowrap;
	flex-shrink: 0;
	background: var(--bg-white);
	border: 1px solid var(--border-color);
	border-radius: 0.5rem;
	box-shadow: var(--shadow-sm);
}

.pricing-features-items li::before {
	content: '';
	position: absolute;
	left: 1rem;
	top: 50%;
	transform: translateY(-50%);
	width: 20px;
	height: 20px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.pricing-features-items li.feature-post-fields::before {
	content: '';
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%2310b981' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8z'/%3E%3Cpolyline points='14 2 14 8 20 8'/%3E%3Cline x1='16' y1='13' x2='8' y2='13'/%3E%3Cline x1='16' y1='17' x2='8' y2='17'/%3E%3Cpolyline points='10 9 9 9 8 9'/%3E%3C/svg%3E");
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
}

.pricing-features-items li.feature-acf-fields::before {
	content: '';
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%2310b981' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='3' width='18' height='18' rx='2' ry='2'/%3E%3Cline x1='9' y1='3' x2='9' y2='21'/%3E%3Cline x1='9' y1='9' x2='21' y2='9'/%3E%3C/svg%3E");
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
}

.pricing-features-items li.feature-support::before {
	content: '';
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%2310b981' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 2L2 7l10 5 10-5-10-5z'/%3E%3Cpath d='M2 17l10 5 10-5'/%3E%3Cpath d='M2 12l10 5 10-5'/%3E%3C/svg%3E");
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
}

.pricing-features-items li.feature-updates::before {
	content: '';
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%2310b981' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='23 6 13.5 15.5 8.5 10.5 1 18'/%3E%3Cpolyline points='17 6 23 6 23 12'/%3E%3C/svg%3E");
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
}

.pricing-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 2rem;
	max-width: 1200px;
	margin: 0 auto;
}

.pricing-card {
	background: var(--bg-white);
	border-radius: 1rem;
	padding: 2rem 2.5rem;
	box-shadow: var(--shadow-md);
	position: relative;
	border: 1px solid var(--border-color);
}

.pricing-card-basic {
	border: 1px solid var(--border-color);
}

.pricing-card-pro {
	border: 2px solid var(--primary-color);
	box-shadow: var(--shadow-lg);
	transform: scale(1.02);
}

.pricing-card-premium {
	border: 3px solid var(--primary-color);
	background: var(--primary-color);
	color: white;
	box-shadow: var(--shadow-xl);
	transform: scale(1.05);
}

.pricing-card-premium .pricing-title {
	color: white;
}


.pricing-card-premium .price-amount {
	color: white;
}

.pricing-card-premium .price-period {
	color: rgba(255, 255, 255, 0.8);
}


.pricing-card-premium .btn {
	background: white;
	color: var(--primary-color);
	border-color: white;
}

.pricing-card-premium .btn:hover {
	background: rgba(255, 255, 255, 0.9);
	color: var(--primary-dark);
}

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

.pricing-header {
	text-align: center;
	margin-bottom: 0.75rem;
	padding-bottom: 0;
}

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

.pricing-price {
	display: flex;
	align-items: baseline;
	justify-content: center;
	gap: 0.5rem;
}

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

.price-period {
	color: var(--text-light);
	font-size: 1rem;
}

.pricing-plan-details {
	text-align: center;
	margin-bottom: 2rem;
	padding: 0.25rem 0;
}

.pricing-activations {
	font-size: 1.125rem;
	margin-bottom: 0.5rem;
	color: var(--text-dark);
}

.pricing-card-premium .pricing-activations {
	color: white;
}

.pricing-activations strong {
	font-size: 1.25rem;
	font-weight: 700;
}

.pricing-includes {
	color: var(--text-medium);
	font-size: 0.95rem;
	margin: 0;
}

.pricing-card-premium .pricing-includes {
	color: rgba(255, 255, 255, 0.9);
}

.pricing-action {
	text-align: center;
}

/* Style buttons in pricing cards */
.pricing-action {
	text-align: center;
}

.pricing-action .btn {
	width: 100%;
	display: block;
}

.pricing-free-option {
	background: var(--bg-white) !important;
	text-align: center;
	margin-top: 3rem;
	padding: 2.5rem;
	background: var(--bg-light);
	border-radius: 1rem;
	border: 1px solid var(--border-color);
}

.pricing-free-text {
	font-size: 1.125rem;
	margin-bottom: 1.5rem;
	color: var(--text-medium);
	line-height: 1.6;
}

.pricing-free-button {
	margin-top: 1rem;
}

.pricing-note {
	text-align: center;
	margin-top: 2rem;
}

.pricing-note a {
	color: var(--primary-color);
	font-weight: 600;
}

/* ACF Field Types Support Modal */
.acf-fields-modal {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 10000;
}

.acf-fields-modal.active {
	display: flex;
	align-items: center;
	justify-content: center;
}

.acf-fields-modal-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.7);
	backdrop-filter: blur(4px);
	animation: overlayFadeIn 0.3s ease;
}

.acf-fields-modal-content {
	position: relative;
	background: var(--bg-white);
	border-radius: 1rem;
	padding: 2.5rem;
	max-width: 900px;
	width: 90%;
	max-height: 90vh;
	overflow-y: auto;
	box-shadow: var(--shadow-xl);
	z-index: 10001;
	animation: modalFadeIn 0.3s ease;
}

.acf-fields-modal-close {
	position: absolute;
	top: 0.25rem;
	right: 0.25rem;
	background: transparent;
	border: none;
	font-size: 1rem;
	color: var(--text-medium);
	cursor: pointer;
	line-height: 1;
	padding: 0;
	width: 36px;
	height: 36px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	transition: var(--transition);
	z-index: 10002;
	font-weight: 300;
}

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

.acf-fields-modal-header {
	text-align: center;
	margin-bottom: 2rem;
}

.acf-fields-modal-title {
	font-size: 2rem;
	font-weight: 700;
	margin-bottom: 0.75rem;
	color: var(--text-dark);
}

.acf-fields-modal-subtitle {
	color: var(--text-medium);
	font-size: 1rem;
	line-height: 1.6;
}

.acf-fields-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
	gap: 1rem;
	margin-top: 2rem;
}

.acf-field-item {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	padding: 0.75rem 1rem;
	background: var(--bg-white);
	border-radius: 0.5rem;
	border: 1px solid var(--border-color);
}

.acf-field-item .field-status {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 24px;
	height: 24px;
	flex-shrink: 0;
}

.acf-field-item .check-icon {
	color: var(--success-color, #10b981);
	font-weight: 700;
	font-size: 1.125rem;
}

.acf-field-item .cross-icon {
	color: var(--text-light, #9ca3af);
	font-weight: 700;
	font-size: 1.125rem;
}

.acf-field-item .field-name {
	font-size: 0.95rem;
	color: var(--text-dark);
	font-weight: 500;
}

.acf-fields-note {
	text-align: center;
	margin-top: 2rem;
	padding: 0;
	color: var(--text-medium);
	font-size: 0.875rem;
	line-height: 1.6;
}

.acf-fields-note p {
	margin: 0;
	padding: 0;
}

.acf-fields-note a {
	color: var(--primary-color);
	text-decoration: none;
	font-weight: 600;
	transition: var(--transition);
}

.acf-fields-note a:hover {
	color: var(--primary-dark);
	text-decoration: underline;
}

@media (max-width: 768px) {
	.acf-fields-modal-content {
		padding: 2rem 1.5rem;
		max-width: 95%;
	}
	
	.acf-fields-modal-title {
		font-size: 1.5rem;
	}
	
	.acf-fields-modal-subtitle {
		font-size: 0.875rem;
	}
	
	.acf-fields-grid {
		grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
		gap: 0.75rem;
	}
	
	.acf-field-item {
		padding: 0.625rem 0.875rem;
	}
	
	.acf-field-item .field-name {
		font-size: 0.875rem;
	}
}

/* CTA Section */
.cta-section {
	background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
	color: white;
	text-align: center;
	padding: 6rem 0;
	margin-bottom: 0;
}

.cta-title {
	font-size: 2.5rem;
	margin-bottom: 1rem;
	color: white;
}

.cta-subtitle {
	font-size: 1.25rem;
	margin-bottom: 2rem;
	color: rgba(255, 255, 255, 0.9);
	max-width: 700px;
	margin-left: auto;
	margin-right: auto;
	text-wrap: balance;
}

.cta-buttons {
	display: flex;
	gap: 1rem;
	justify-content: center;
	flex-wrap: wrap;
}

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

.cta-buttons .btn-primary:hover {
	background: rgba(255, 255, 255, 0.9);
}

/* Comparison Page */
.comparison-page {
	padding: 4rem 0;
}

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

.page-title {
	font-size: 3rem;
	margin-bottom: 1rem;
}

.page-subtitle {
	font-size: 1.25rem;
	color: var(--text-light);
}

.comparison-table-wrapper {
	overflow-x: auto;
	margin: 3rem 0;
	box-shadow: var(--shadow-lg);
	border-radius: 1rem;
}

.comparison-table {
	width: 100%;
	border-collapse: collapse;
	background: var(--bg-white);
}

.comparison-table thead {
	background: var(--bg-light);
}

.comparison-table th {
	padding: 1.5rem;
	text-align: left;
	font-weight: 600;
	border-bottom: 2px solid var(--border-color);
}

.comparison-table th.featured {
	background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
	color: white;
}

.comparison-table th.featured .plan-header h3 {
	color: white;
}

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

.plan-header h3 {
	font-size: 1.5rem;
	margin-bottom: 0.5rem;
}

.plan-badge {
	display: inline-block;
	padding: 0.25rem 0.75rem;
	border-radius: 1rem;
	font-size: 0.875rem;
	font-weight: 600;
}

.plan-badge.free {
	background: var(--bg-light);
	color: var(--text-dark);
}

.plan-badge.pro {
	background: rgba(255, 255, 255, 0.2);
	color: white;
}

.comparison-table td {
	padding: 1rem 1.5rem;
	border-bottom: 1px solid var(--border-color);
}

.comparison-table tr.section-header td {
	background: var(--bg-light);
	font-weight: 700;
	padding: 1.5rem;
	border-bottom: 2px solid var(--border-color);
}

.comparison-table tr.section-header td h3 {
	margin: 0;
	font-size: 1.25rem;
}

.comparison-table .feature-column {
	font-weight: 600;
	width: 40%;
}

.comparison-table .plan-column {
	text-align: center;
	width: 30%;
}

.comparison-table .check {
	color: var(--success-color);
	font-size: 1.5rem;
	font-weight: 700;
}

.comparison-table .cross {
	color: #ef4444;
	font-size: 1.5rem;
	font-weight: 700;
}

.comparison-cta {
	margin-top: 4rem;
	text-align: center;
	padding: 3rem;
	background: var(--bg-light);
	border-radius: 1rem;
}

.comparison-cta h2 {
	font-size: 2rem;
	margin-bottom: 1rem;
}

.comparison-cta p {
	font-size: 1.125rem;
	margin-bottom: 2rem;
	color: var(--text-medium);
}

/* Footer */
.site-footer {
	background: var(--text-dark);
	color: rgba(255, 255, 255, 0.8);
	padding: 4rem 0 2rem;
	margin-top: 0;
}

.footer-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

.footer-content {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 3rem;
	margin-bottom: 3rem;
}

.footer-section {
	display: flex;
	flex-direction: column;
}

.footer-title {
	font-size: 1.5rem;
	font-weight: 800;
	color: white;
	margin-bottom: 1rem;
}

.footer-description {
	color: rgba(255, 255, 255, 0.7);
	line-height: 1.6;
	margin-bottom: 0;
}

.footer-heading {
	font-size: 1rem;
	font-weight: 600;
	color: white;
	margin-bottom: 1rem;
}

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

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

.footer-links a {
	color: rgba(255, 255, 255, 0.7);
	text-decoration: none;
	transition: var(--transition);
}

.footer-links a:hover {
	color: white;
}

.footer-bottom {
	padding-top: 2rem;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	text-align: center;
}

.site-info {
	color: rgba(255, 255, 255, 0.6);
	font-size: 0.875rem;
	margin: 0;
}

/* Free Download Modal */
.free-download-modal {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 10000;
}

.free-download-modal.active {
	display: flex;
	align-items: center;
	justify-content: center;
}

.free-download-modal-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.7);
	backdrop-filter: blur(4px);
}

.free-download-modal-content {
	position: relative;
	background: var(--bg-white);
	border-radius: 1rem;
	padding: 2.5rem;
	max-width: 500px;
	width: 90%;
	max-height: 90vh;
	overflow-y: auto;
	box-shadow: var(--shadow-xl);
	z-index: 10001;
	animation: modalFadeIn 0.3s ease;
}

@keyframes modalFadeIn {
	from {
		opacity: 0;
		transform: scale(0.9);
	}
	to {
		opacity: 1;
		transform: scale(1);
	}
}

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

.free-download-modal-close {
	position: absolute;
	top: 1rem;
	right: 1rem;
	background: none;
	border: none;
	font-size: 2rem;
	color: var(--text-medium);
	cursor: pointer;
	line-height: 1;
	padding: 0;
	width: 32px;
	height: 32px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	transition: var(--transition);
}

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

.free-download-modal-title {
	font-size: 1.75rem;
	font-weight: 700;
	margin-bottom: 0.75rem;
	color: var(--text-dark);
	text-align: center;
}

.free-download-modal-description {
	color: var(--text-medium);
	text-align: center;
	margin-bottom: 2rem;
	line-height: 1.6;
}

.free-download-form {
	margin-top: 1.5rem;
}

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

.free-download-input {
	width: 100%;
	padding: 0.875rem 1rem;
	font-size: 1rem;
	border: 2px solid var(--border-color);
	border-radius: 0.5rem;
	transition: var(--transition);
	font-family: var(--font-primary);
}

.free-download-input:focus {
	outline: none;
	border-color: var(--primary-color);
	box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.free-download-submit {
	width: 100%;
}

.free-download-message {
	margin-top: 1rem;
	padding: 0.75rem;
	border-radius: 0.5rem;
	text-align: center;
	display: none;
}

.free-download-message.success {
	background: rgba(16, 185, 129, 0.1);
	color: var(--success-color);
	border: 1px solid rgba(16, 185, 129, 0.2);
	display: block;
}

.free-download-message.error {
	background: rgba(239, 68, 68, 0.1);
	color: #ef4444;
	border: 1px solid rgba(239, 68, 68, 0.2);
	display: block;
}

@media (max-width: 768px) {
	.free-download-modal-content {
		padding: 2rem 1.5rem;
		max-width: 95%;
	}
	
	.free-download-modal-title {
		font-size: 1.5rem;
	}
	
	.free-download-modal-description {
		font-size: 0.875rem;
	}
}

/* EDD Free Downloads Extension Modal Styling */
.edd-free-downloads-modal-wrapper {
	position: fixed !important;
	top: 0 !important;
	left: 0 !important;
	width: 100% !important;
	height: 100% !important;
	z-index: 10000 !important;
	display: none !important;
	align-items: center !important;
	justify-content: center !important;
	background: rgba(0, 0, 0, 0.7) !important;
	backdrop-filter: blur(4px) !important;
	animation: overlayFadeIn 0.3s ease !important;
}

.edd-free-downloads-modal-wrapper.edd-free-downloads-modal--active {
	display: flex !important;
}

.edd-free-downloads-modal-wrapper .edd-loading {
	display: none !important;
}

#edd-free-downloads-modal {
	position: relative !important;
	background: var(--bg-white) !important;
	border-radius: 1rem !important;
	padding: 2.5rem !important;
	max-width: 500px !important;
	width: 90% !important;
	max-height: 90vh !important;
	overflow-y: auto !important;
	box-shadow: var(--shadow-xl) !important;
	z-index: 10001 !important;
	animation: modalFadeIn 0.3s ease !important;
	margin: 0 !important;
	display: none !important;
}

.edd-free-downloads-modal-wrapper.edd-free-downloads-modal--active #edd-free-downloads-modal:not(:empty) {
	display: block !important;
}

.edd-free-downloads-modal-wrapper .edd-loading {
	display: none !important;
}

#edd-free-downloads-modal .edd-free-downloads-modal-close {
	position: absolute !important;
	top: .25rem !important;
	right: .25rem !important;
	background: transparent !important;
	border: none !important;
	font-size: 1rem !important;
	color: var(--text-medium) !important;
	cursor: pointer !important;
	line-height: 1 !important;
	padding: 0 !important;
	width: 36px !important;
	height: 36px !important;
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	border-radius: 50% !important;
	transition: var(--transition) !important;
	z-index: 10002 !important;
	font-weight: 300 !important;
}

#edd-free-downloads-modal .edd-free-downloads-modal-close:hover,
#edd-free-downloads-modal .edd-free-downloads-modal-close:focus {
	background: var(--bg-light) !important;
	color: var(--text-dark) !important;
	outline: none !important;
}

#edd-free-downloads-modal .edd-free-downloads-modal-close:active {
	transform: scale(0.95) !important;
}

#edd-free-downloads-modal h2,
#edd-free-downloads-modal .edd-free-downloads-modal-title {
	font-size: 1.75rem;
	font-weight: 700;
	margin-bottom: 0.75rem;
	color: var(--text-dark);
	text-align: center;
}

#edd-free-downloads-modal p,
#edd-free-downloads-modal .edd-free-downloads-modal-description {
	color: var(--text-medium);
	text-align: center;
	margin-bottom: 2rem;
	line-height: 1.6;
}

#edd_free_download_form {
	margin: 0 !important;
}

#edd_free_download_form p {
	margin-bottom: 1.5rem !important;
}

#edd_free_download_form .edd-free-downloads-label,
#edd_free_download_form label {
	font-weight: 600 !important;
	display: block !important;
	margin-bottom: 0.5rem !important;
	color: var(--text-dark) !important;
	font-size: 0.95rem !important;
	font-family: var(--font-primary) !important;
	text-align: left !important;
}

#edd_free_download_form .edd-free-downloads-required {
	color: #ef4444 !important;
}

#edd_free_download_email,
#edd_free_download_form .edd-free-download-field,
#edd_free_download_form input[type="email"],
#edd_free_download_form input[type="text"] {
	width: 100% !important;
	padding: 0.875rem 1rem !important;
	font-size: 1rem !important;
	border: 2px solid var(--border-color) !important;
	border-radius: 0.5rem !important;
	transition: var(--transition) !important;
	font-family: var(--font-primary) !important;
	background: var(--bg-white) !important;
	color: var(--text-dark) !important;
	box-sizing: border-box !important;
}

#edd_free_download_email:focus,
#edd_free_download_form .edd-free-download-field:focus,
#edd_free_download_form input[type="email"]:focus,
#edd_free_download_form input[type="text"]:focus {
	outline: none !important;
	border-color: var(--primary-color) !important;
	box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1) !important;
}

#edd_free_download_form .edd-free-download-submit,
#edd_free_download_form button[name="edd_free_download_submit"],
#edd_free_download_form .edd-submit.button,
#edd_free_download_form button[type="submit"] {
	width: 100% !important;
	padding: 0.875rem 1.5rem !important;
	font-size: 1rem !important;
	font-weight: 600 !important;
	background: var(--primary-color) !important;
	color: white !important;
	border: none !important;
	border-radius: 0.5rem !important;
	cursor: pointer !important;
	transition: var(--transition) !important;
	font-family: var(--font-primary) !important;
	margin-top: 0.5rem !important;
	display: block !important;
}

#edd_free_download_form .edd-free-download-submit:hover,
#edd_free_download_form button[name="edd_free_download_submit"]:hover,
#edd_free_download_form .edd-submit.button:hover,
#edd_free_download_form button[type="submit"]:hover {
	background: var(--primary-color-dark, #4f46e5) !important;
	transform: translateY(-1px) !important;
	box-shadow: var(--shadow-md) !important;
}

#edd_free_download_form .edd-free-download-submit span,
#edd_free_download_form button[name="edd_free_download_submit"] span {
	color: white !important;
}

/* Override EDD's default button styles */
#edd_free_download_form .edd-submit.button.blue {
	background: var(--primary-color) !important;
	border: none !important;
	color: white !important;
}

#edd_free_download_form .edd-submit.button.blue:hover {
	background: var(--primary-color-dark, #4f46e5) !important;
}

#edd-free-downloads-modal .edd-free-download-errors {
	margin-top: 1rem !important;
}

#edd-free-downloads-modal .edd-free-download-errors p {
	display: none !important;
	margin-bottom: 0.75rem !important;
	padding: 0.75rem !important;
	border-radius: 0.5rem !important;
	text-align: center !important;
	font-size: 0.875rem !important;
}

#edd-free-downloads-modal .edd-free-download-errors p:not(:empty) {
	display: block !important;
	background: rgba(239, 68, 68, 0.1) !important;
	color: #ef4444 !important;
	border: 1px solid rgba(239, 68, 68, 0.2) !important;
}

#edd-free-downloads-modal .edd-free-download-errors p strong {
	font-weight: 600 !important;
}

@media (max-width: 768px) {
	#edd-free-downloads-modal {
		padding: 2rem 1.5rem;
		max-width: 95%;
	}
	
	#edd-free-downloads-modal h2,
	#edd-free-downloads-modal .edd-free-downloads-modal-title {
		font-size: 1.5rem;
	}
	
	#edd-free-downloads-modal p,
	#edd-free-downloads-modal .edd-free-downloads-modal-description {
		font-size: 0.875rem;
	}
}

/* Error 404 Page */
.error-404-page {
	padding: 6rem 0;
	text-align: center;
}

.error-content {
	max-width: 600px;
	margin: 0 auto;
}

.error-title {
	font-size: 8rem;
	font-weight: 800;
	color: var(--primary-color);
	line-height: 1;
	margin-bottom: 1rem;
}

.error-subtitle {
	font-size: 2rem;
	margin-bottom: 1rem;
}

.error-description {
	font-size: 1.125rem;
	color: var(--text-medium);
	margin-bottom: 2rem;
}

.error-actions {
	margin-top: 2rem;
}

/* Content Area */
.content-area {
	padding: 4rem 0;
	background: var(--bg-white);
}

.content-area .container {
	max-width: 800px;
}

.edd-history-page .container,
.content-area.edd-history-page .container {
	max-width: 1200px;
}

.entry-header {
	margin-bottom: 3rem;
	text-align: center;
	padding-bottom: 2rem;
	border-bottom: 1px solid var(--border-color);
}

.entry-title {
	font-size: 2.5rem;
	margin-bottom: 0.5rem;
	color: var(--text-dark);
}

.entry-content {
	line-height: 1.8;
	color: var(--text-medium);
	font-size: 1.0625rem;
}

.entry-content h2 {
	font-size: 1.75rem;
	margin-top: 3rem;
	margin-bottom: 1rem;
	color: var(--text-dark);
	font-weight: 700;
}

.entry-content h3 {
	font-size: 1.5rem;
	margin-top: 2rem;
	margin-bottom: 0.75rem;
	color: var(--text-dark);
	font-weight: 700;
}

.entry-content ul,
.entry-content ol {
	margin: 1.5rem 0;
	padding-left: 2rem;
}

.entry-content li {
	margin-bottom: 0.75rem;
	color: var(--text-medium);
}

.entry-content p {
	margin-bottom: 1.5rem;
}

.entry-content a {
	color: var(--primary-color);
	text-decoration: underline;
}

.entry-content a:hover {
	color: var(--primary-dark);
}

.entry-content img {
	max-width: 100%;
	height: auto;
	border-radius: 0.5rem;
	margin: 2rem 0;
}

/* Purchase History / EDD Tables */
.edd-history-page table,
.edd-history-page .edd-table,
.edd-history-page table.edd-table,
.edd-history-page #edd_sl_license_keys,
.edd-history-page .edd_sl_table {
	width: 100%;
	border-collapse: collapse;
	background: var(--bg-white);
	border-radius: 0.5rem;
	overflow: hidden;
	box-shadow: var(--shadow-md);
	margin: 2rem 0;
	border: 1px solid var(--border-color);
}

.edd-history-page table thead,
.edd-history-page .edd-table thead,
.edd-history-page #edd_sl_license_keys thead,
.edd-history-page .edd_sl_table thead {
	background: var(--bg-light);
}

.edd-history-page table th,
.edd-history-page .edd-table th,
.edd-history-page #edd_sl_license_keys th,
.edd-history-page .edd_sl_table th {
	padding: 1.25rem 1.5rem;
	text-align: left;
	font-weight: 600;
	font-size: 0.875rem;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	color: var(--text-dark);
	border-bottom: 2px solid var(--border-color);
	white-space: nowrap;
}

.edd-history-page table th:first-child,
.edd-history-page .edd-table th:first-child {
	padding-left: 2rem;
}

.edd-history-page table th:last-child,
.edd-history-page .edd-table th:last-child {
	padding-right: 2rem;
}

.edd-history-page table td,
.edd-history-page .edd-table td,
.edd-history-page #edd_sl_license_keys td,
.edd-history-page .edd_sl_table td {
	padding: 1.5rem 1.5rem;
	border-bottom: 1px solid var(--border-color);
	color: var(--text-medium);
	vertical-align: middle;
	line-height: 1.6;
}

.edd-history-page table td:first-child,
.edd-history-page .edd-table td:first-child {
	padding-left: 2rem;
}

.edd-history-page table td:last-child,
.edd-history-page .edd-table td:last-child {
	padding-right: 2rem;
}

.edd-history-page table tbody tr:last-child td,
.edd-history-page .edd-table tbody tr:last-child td {
	border-bottom: none;
}

.edd-history-page table tbody tr:hover,
.edd-history-page .edd-table tbody tr:hover {
	background: var(--bg-light);
}

.edd-history-page table a,
.edd-history-page .edd-table a {
	color: var(--primary-color);
	text-decoration: none;
	font-weight: 500;
}

.edd-history-page table a:hover,
.edd-history-page .edd-table a:hover {
	color: var(--primary-dark);
	text-decoration: underline;
}

.edd-history-page .edd-status,
.edd-history-page .edd-license-status {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	font-weight: 500;
}

.edd-history-page .edd-status.expired,
.edd-history-page .edd-license-status.expired,
.edd-history-page .edd-sl-expired,
.edd-history-page .edd_sl_license_status.edd-sl-expired {
	color: #ef4444;
	font-weight: 500;
}

.edd-history-page .edd-status.active,
.edd-history-page .edd-license-status.active {
	color: var(--success-color);
}

.edd-history-page .edd-status.inactive,
.edd-history-page .edd-license-status.inactive {
	color: var(--text-light);
}

.edd-history-page button,
.edd-history-page .button,
.edd-history-page .edd-button,
.edd-history-page .edd-manage-license-back,
.edd-history-page .edd-submit.button {
	padding: 0.75rem 1.5rem;
	font-size: 1rem;
	font-weight: 600;
	border-radius: 0.5rem;
	border: 2px solid transparent;
	background: transparent;
	color: var(--text-dark);
	cursor: pointer;
	transition: var(--transition);
	text-decoration: none;
	display: inline-block;
	font-family: var(--font-primary);
}

.edd-history-page button:hover,
.edd-history-page .button:hover,
.edd-history-page .edd-button:hover,
.edd-history-page .edd-manage-license-back:hover,
.edd-history-page .edd-submit.button:hover {
	background: var(--bg-light);
	border-color: var(--border-color);
	color: var(--text-dark);
	transform: translateY(-1px);
	box-shadow: var(--shadow-sm);
}

.edd-history-page .button.gray,
.edd-history-page .edd-submit.button.gray {
	background: var(--bg-light);
	border-color: var(--border-color);
	color: var(--text-dark);
}

.edd-history-page .button.gray:hover,
.edd-history-page .edd-submit.button.gray:hover {
	background: var(--bg-white);
	border-color: var(--text-dark);
}

.edd-history-page input[type="text"],
.edd-history-page input[type="password"],
.edd-history-page .edd-license-key,
.edd-history-page .edd_sl_license_key {
	padding: 0.625rem 0.875rem;
	font-size: 0.875rem;
	font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', 'Consolas', 'source-code-pro', monospace;
	border: 1px solid var(--border-color);
	border-radius: 0.375rem;
	background: var(--bg-white);
	color: var(--text-dark);
	width: 100%;
	max-width: 300px;
	transition: var(--transition);
}

.edd-history-page input[type="text"]:focus,
.edd-history-page input[type="password"]:focus,
.edd-history-page .edd-license-key:focus,
.edd-history-page .edd_sl_license_key:focus {
	outline: none;
	border-color: var(--primary-color);
	box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.edd-history-page .edd-license-key-wrapper,
.edd-history-page .view-key-wrapper {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	min-height: 20px;
}

.edd-history-page .edd-license-key-wrapper svg,
.edd-history-page .edd-license-key-wrapper .dashicons,
.edd-history-page .view-key-wrapper img {
	flex-shrink: 0;
	width: 16px;
	height: 16px;
	display: block;
}

.edd-history-page .edd_sl_show_key {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 2px;
	line-height: 1;
}

.edd-history-page .edd_sl_show_key img {
	width: 16px;
	height: 16px;
	opacity: 0.7;
	transition: var(--transition);
	display: block;
	flex-shrink: 0;
}

.edd-history-page .edd_sl_show_key:hover img {
	opacity: 1;
}

/* Screen Reader Text */
.screen-reader-text {
	clip: rect(1px, 1px, 1px, 1px);
	position: absolute !important;
	height: 1px;
	width: 1px;
	overflow: hidden;
}

/* Mobile Menu */
@media (max-width: 768px) {
	.header-right {
		gap: 1rem;
	}
	
	.header-actions {
		gap: 2rem;
	}
	
	.header-actions .btn {
		padding: 0.5rem 1rem;
		font-size: 0.875rem;
	}
	
	.site-header .header-account-link {
		font-size: 0.875rem;
	}
	
	.main-navigation {
		position: relative;
	}
	
	.main-navigation ul {
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		background: var(--bg-white);
		flex-direction: column;
		padding: 1rem;
		box-shadow: var(--shadow-lg);
		border-radius: 0.5rem;
		margin-top: 1rem;
		display: none;
		gap: 0;
	}
	
	.main-navigation.menu-open ul {
		display: flex;
	}
	
	.main-navigation ul li {
		width: 100%;
	}
	
	.main-navigation ul a {
		display: block;
		padding: 0.75rem 1rem;
		border-bottom: 1px solid var(--border-color);
		color: var(--text-dark);
	}
	
	.main-navigation ul a:hover {
		color: var(--primary-color);
	}
	
	.main-navigation ul li:last-child a {
		border-bottom: none;
	}
}

/* Responsive Design */
@media (max-width: 1024px) and (min-width: 769px) {
	.steps-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 768px) {
	section {
		padding: 3rem 0;
	}
	
	.hero-section {
		padding: 4rem 0;
	}
	
	.problem-section {
		padding: 4rem 0;
	}
	
	.cta-section {
		padding: 4rem 0;
	}
	
	.hero-section .container {
		grid-template-columns: 1fr;
		text-align: center;
	}
	
	.hero-content {
		text-align: left;
	}
	
	.hero-title {
		font-size: 2.5rem;
	}
	
	.hero-video {
		width: 100%;
		max-width: 100%;
		margin: 0;
		max-height: 500px;
		object-fit: contain;
	}
	
	.menu-toggle {
		display: block;
	}
	
	.features-grid,
	.steps-grid,
	.pricing-grid {
		grid-template-columns: 1fr;
	}
	
	.feature-card {
		padding: 1.5rem;
	}
	
	.pricing-features-list {
		margin-bottom: 2rem;
	}
	
	.pricing-features-title {
		font-size: 1.125rem;
		margin-bottom: 1.25rem;
	}
	
	.pricing-features-items {
		flex-wrap: wrap;
		gap: 1rem 1.5rem;
		justify-content: center;
	}
	
	.how-it-works-section {
		padding: 4rem 0;
	}
	
	.how-it-works-section .section-header {
		margin-bottom: 3rem;
	}
	
	.how-it-works-video {
		margin-bottom: 3rem;
	}
	
	.steps-grid {
		gap: 2rem;
	}
	
	.step-item {
		padding: 1rem;
	}
	
	.step-number {
		width: 44px;
		height: 44px;
		font-size: 1.25rem;
		margin-bottom: 1.5rem;
	}
	
	.step-title {
		font-size: 1.25rem;
		margin-bottom: 1rem;
	}
	
	.step-description {
		font-size: 0.95rem;
	}
	
	.pricing-card-pro {
		transform: scale(1.01);
	}
	
	.pricing-card-premium {
		transform: scale(1.02);
	}
	
	.comparison-table {
		font-size: 0.875rem;
	}
	
	.comparison-table th,
	.comparison-table td {
		padding: 0.75rem;
	}
	
	h1 { font-size: 2rem; }
	h2 { font-size: 1.75rem; }
	h3 { font-size: 1.5rem; }
	
	.section-title {
		font-size: 2rem;
	}
	
	.cta-title {
		font-size: 2rem;
	}
	
	.footer-content {
		grid-template-columns: 1fr;
		gap: 2rem;
	}
	
	.footer-bottom {
		flex-direction: column;
		text-align: center;
	}
}

@media (max-width: 480px) {
	.hero-title {
		font-size: 2rem;
	}
	
	.hero-subtitle {
		font-size: 1rem;
	}
	
	.btn {
		width: 100%;
	}
	
	.hero-buttons {
		flex-direction: column;
	}
	
	.hero-buttons .btn {
		width: 100%;
	}
}

