/* ============================================
   AltTextify Landing Page - Professional & Vibrant Design
   ============================================ */

/* ===== Color Variables - Professional & Vibrant ===== */
:root {
	/* Primary Colors - Professional Blue */
	--primary-color: rgb(52, 108, 179); /* #346cb3 */
	--primary-hover: rgb(42, 88, 159); /* #2a589f */
	--primary-light: rgba(52, 108, 179, 0.15);
	--primary-dark: rgb(35, 70, 125); /* #23467d */
	
	/* Accent Colors */
	--accent-blue: #3b82f6;
	--accent-cyan: #06b6d4;
	--accent-teal: #14b8a6;
	--accent-green: #10b981;
	--accent-yellow: #f59e0b;
	--accent-orange: #f97316;
	
	/* Text Colors */
	--text-primary: #0f172a;
	--text-secondary: #475569;
	--text-muted: #64748b;
	
	/* Background Colors */
	--bg-primary: #ffffff;
	--bg-secondary: #f8fafc;
	--bg-tertiary: #f1f5f9;
	
	/* Border Colors */
	--border-color: #e2e8f0;
	--border-light: #e5e7eb;
	
	/* Status Colors */
	--success-color: #10b981;
	--warning-color: #f59e0b;
	--error-color: #ef4444;
	
	/* Professional Gradients */
	--gradient-primary: linear-gradient(135deg, rgb(52, 108, 179) 0%, rgb(70, 130, 200) 100%);
	--gradient-hero: linear-gradient(135deg, rgb(52, 108, 179) 0%, rgb(70, 130, 200) 100%);
	--gradient-card: linear-gradient(135deg, rgba(52, 108, 179, 0.1) 0%, rgba(52, 108, 179, 0.05) 100%);
	--gradient-button: linear-gradient(135deg, rgb(52, 108, 179) 0%, rgb(70, 130, 200) 100%);
	--gradient-accent: linear-gradient(135deg, rgb(70, 130, 200) 0%, rgb(52, 108, 179) 100%);
	--gradient-rainbow: linear-gradient(135deg, rgb(52, 108, 179) 0%, rgb(70, 130, 200) 50%, rgb(52, 108, 179) 100%);
	
	/* Professional Shadows */
	--shadow-sm: 0 2px 8px rgba(52, 108, 179, 0.1);
	--shadow-md: 0 4px 16px rgba(52, 108, 179, 0.15);
	--shadow-lg: 0 8px 32px rgba(52, 108, 179, 0.2);
	--shadow-xl: 0 20px 40px rgba(52, 108, 179, 0.25);
	--shadow-primary: 0 8px 24px rgba(52, 108, 179, 0.3);
	--shadow-glow: 0 0 20px rgba(52, 108, 179, 0.4);
}

/* ===== Global Styles ===== */
body,
.landing-page,
[data-bs-spy="scroll"] {
	font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

.landing-page {
	color: var(--text-primary);
	line-height: 1.6;
}

/* ===== Hero Section ===== */
.hero-section {
	background: linear-gradient(135deg, #ffffff 0%, #f8fafc 30%, #f0f4ff 70%, #e8f0ff 100%);
	position: relative;
	overflow: hidden;
	padding: 100px 0 80px;
	min-height: 90vh;
	display: flex;
	align-items: center;
}

.hero-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-image: 
		linear-gradient(rgba(52, 108, 179, 0.08) 1px, transparent 1px),
		linear-gradient(90deg, rgba(52, 108, 179, 0.08) 1px, transparent 1px);
	background-size: 60px 60px;
	pointer-events: none;
	opacity: 1;
}

.hero-section::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: 
		radial-gradient(circle at 20% 50%, rgba(52, 108, 179, 0.05) 0%, transparent 50%),
		radial-gradient(circle at 80% 80%, rgba(70, 130, 200, 0.05) 0%, transparent 50%);
	pointer-events: none;
}


.hero-badge {
	background: #dbeafe;
	border: none;
	border-radius: 8px;
	padding: 8px 16px;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 24px;
	font-size: 13px;
	font-weight: 600;
	color: rgb(52, 108, 179);
	transition: all 0.3s ease;
	box-shadow: 0 2px 8px rgba(52, 108, 179, 0.1);
}

.hero-badge:hover {
	background: #bfdbfe;
	box-shadow: 0 4px 12px rgba(52, 108, 179, 0.15);
	transform: translateY(-2px);
}

.hero-badge svg {
	color: rgb(52, 108, 179);
	width: 14px;
	height: 14px;
}

.hero-title {
	font-size: 3.5rem;
	font-weight: 800;
	line-height: 1.1;
	margin-bottom: 1.5rem;
	letter-spacing: -0.02em;
	display: flex;
	flex-direction: column;
}

.hero-title .title-highlight {
	font-size: 4rem;
	font-weight: 800;
	display: block;
	line-height: 1.1;
	background: linear-gradient(135deg, rgb(92, 146, 216) 0%, #086464 50%, #056847 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.hero-title .title-normal {
	font-size: 4rem;
	color: #0f172a;
	font-weight: 800;
	display: block;
	line-height: 1.1;
}

.hero-title .title-normal-2 {
    font-size: 4rem;
	color: #0f172a;
	font-weight: 800;
	display: block;
	line-height: 1.1;
}

.hero-subtitle {
	font-size: 1.1rem;
	line-height: 1.6;
	color: #475569;
	margin-bottom: 2rem;
	max-width: 500px;
}

.hero-benefit-item {
	display: flex;
	align-items: center;
	margin-bottom: 12px;
}

.hero-benefit-icon {
	width: 8px;
	height: 8px;
	background: rgb(52, 108, 179);
	border-radius: 50%;
	margin-right: 12px;
	flex-shrink: 0;
}

.hero-benefit-icon svg {
	display: none;
}

.hero-benefit-text {
	font-weight: 500;
	color: #475569;
	font-size: 15px;
}

/* ===== CTA Buttons ===== */
.btn-primary-custom {
	background: var(--gradient-button);
	color: white;
	border: none;
	padding: 18px 36px;
	border-radius: 14px;
	font-weight: 700;
	font-size: 16px;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	gap: 10px;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	box-shadow: var(--shadow-primary);
	position: relative;
	overflow: hidden;
}

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

.btn-primary-custom:hover::before {
	left: 100%;
}

.btn-primary-custom:hover {
	transform: translateY(-3px) scale(1.02);
	box-shadow: var(--shadow-glow);
	color: white;
}

.btn-primary-custom:active {
	transform: translateY(-1px) scale(0.98);
}

.btn-secondary-custom {
	background: white;
	color: #0f172a;
	border: 2px solid #cbd5e1;
	padding: 16px 36px;
	border-radius: 14px;
	font-weight: 600;
	font-size: 16px;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	gap: 10px;
	transition: all 0.3s ease;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.btn-secondary-custom:hover {
	border-color: #94a3b8;
	background: #f8fafc;
	color: #0f172a;
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.btn-secondary-custom svg {
	color: #0f172a;
}

/* ===== Trust Indicators ===== */
.trust-indicators {
	display: flex;
	align-items: center;
	gap: 24px;
	flex-wrap: wrap;
	margin-top: 32px;
}

.trust-indicator {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 14px;
	font-weight: 500;
	color: #475569;
	transition: all 0.3s ease;
}

.trust-indicator:hover {
	transform: translateX(3px);
}

.trust-indicator svg {
	color: rgb(52, 108, 179);
	width: 16px;
	height: 16px;
}

/* ===== Demo Section ===== */
.demo-container {
	position: relative;
	background: white;
	border-radius: 16px;
	box-shadow: var(--shadow-xl);
	border: 1px solid var(--bg-tertiary);
	overflow: hidden;
}

.demo-header {
	background: var(--bg-secondary);
	padding: 16px 24px;
	border-bottom: 1px solid var(--border-color);
	display: flex;
	align-items: center;
	gap: 12px;
}

.demo-dots {
	display: flex;
	gap: 8px;
}

.demo-dot {
	width: 12px;
	height: 12px;
	border-radius: 50%;
}

.demo-dot-red {
	background: #ef4444;
}

.demo-dot-yellow {
	background: #f59e0b;
}

.demo-dot-green {
	background: #10b981;
}

.demo-content {
	padding: 32px;
}

.upload-area {
	background: #ffffff;
	border: 2px dashed #d1d5db;
	border-radius: 16px;
	padding: 32px;
	text-align: center;
	margin-bottom: 24px;
	transition: all 0.3s ease;
	cursor: pointer;
}

.upload-area:hover {
	border-color: var(--primary-color);
	background: var(--bg-secondary);
	transform: translateY(-2px);
	box-shadow: var(--shadow-md);
}

.upload-icon-wrapper {
	width: 64px;
	height: 64px;
	background: #f3f4f6;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 16px;
}

.upload-icon-wrapper svg {
	width: 32px;
	height: 32px;
	color: var(--text-secondary);
}

.upload-text {
	font-size: 12px;
	color: #9ca3af;
	margin-bottom: 20px;
}

.btn-upload {
	background: white;
	color: #374151;
	border: 1px solid #d1d5db;
	padding: 12px 24px;
	border-radius: 8px;
	font-weight: 600;
	font-size: 14px;
	cursor: pointer;
	transition: all 0.3s ease;
	display: inline-block;
}

.btn-upload:hover {
	border-color: var(--primary-color);
	color: var(--primary-color);
	transform: translateY(-1px);
}

.btn-generate {
	background: var(--primary-color);
	color: white;
	border: none;
	padding: 14px 32px;
	border-radius: 8px;
	font-weight: 600;
	font-size: 16px;
	cursor: pointer;
	transition: all 0.3s ease;
	width: 100%;
	margin-bottom: 24px;
}

.btn-generate:hover {
	background: var(--primary-hover);
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(52, 108, 179, 0.3);
}

.btn-generate:disabled {
	opacity: 0.6;
	cursor: not-allowed;
}

.alttext-result {
	background: #f0fdf4;
	border: 1px solid #bbf7d0;
	border-radius: 12px;
	padding: 20px;
	text-align: left;
	display: none;
}

.alttext-result-header {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 12px;
}

.alttext-result-header svg {
	color: var(--success-color);
	width: 16px;
	height: 16px;
}

.alttext-result-title {
	font-size: 14px;
	font-weight: 600;
	color: #065f46;
}

.alttext-result-text {
	font-size: 14px;
	line-height: 1.6;
	color: #065f46;
	margin: 0;
	min-height: 20px;
}

/* ===== SEO Control Section ===== */
.seo-control-section {
	background: var(--bg-secondary);
	border: 1px solid var(--border-color);
	border-radius: 12px;
	padding: 12px 16px;
	transition: all 0.3s ease;
}

.seo-control-section:hover {
	border-color: var(--primary-color);
	box-shadow: var(--shadow-sm);
}

.seo-control-header {
	display: flex;
	align-items: center;
	gap: 12px;
	cursor: pointer;
	user-select: none;
}

.seo-toggle-wrapper {
	flex-shrink: 0;
}

.seo-toggle {
	position: relative;
	display: inline-block;
	width: 44px;
	height: 24px;
	border: none;
	background: transparent;
	padding: 0;
	cursor: pointer;
	outline: none;
}

.seo-toggle:focus {
	outline: 2px solid var(--primary-color);
	outline-offset: 2px;
	border-radius: 12px;
}

.seo-toggle-slider {
	position: absolute;
	cursor: pointer;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: #d1d5db;
	transition: 0.3s;
	border-radius: 24px;
}

.seo-toggle-slider:before {
	position: absolute;
	content: "";
	height: 18px;
	width: 18px;
	left: 3px;
	bottom: 3px;
	background-color: white;
	transition: 0.3s;
	border-radius: 50%;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.seo-control-section[data-open="true"] .seo-toggle-slider {
	background-color: var(--primary-color);
}

.seo-control-section[data-open="true"] .seo-toggle-slider:before {
	transform: translateX(20px);
}

.seo-control-label {
	flex: 1;
}

.seo-control-title {
	font-size: 14px;
	font-weight: 600;
	color: var(--text-primary);
	line-height: 1.4;
}

.seo-control-optional {
	margin-left: auto;
}

.seo-optional-text {
	font-size: 12px;
	color: var(--text-muted);
	font-weight: 500;
}

.seo-control-content {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease, opacity 0.3s ease, margin-top 0.3s ease;
	opacity: 0;
	margin-top: 0;
}

.seo-control-section[data-open="true"] .seo-control-content {
	max-height: 200px;
	opacity: 1;
	margin-top: 12px;
}

.seo-control-section[data-open="false"] .seo-control-content {
	max-height: 0;
	opacity: 0;
	margin-top: 0;
}

.seo-keywords-input {
	width: 100%;
	padding: 10px 14px;
	border: 1px solid var(--border-color);
	border-radius: 8px;
	font-size: 14px;
	color: var(--text-primary);
	background: var(--bg-primary);
	transition: all 0.3s ease;
	resize: none;
	font-family: inherit;
}

.seo-keywords-input:focus {
	outline: none;
	border-color: var(--primary-color);
	box-shadow: 0 0 0 3px rgba(52, 108, 179, 0.1);
}

.seo-keywords-input::placeholder {
	color: var(--text-muted);
}

/* ===== Integrations Section ===== */
.integrations-section {
	background: #fafbfc;
	border-top: 1px solid var(--border-light);
	padding: 60px 0;
}

.section-header {
	text-align: center;
	margin-bottom: 48px;
}

.section-badge {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	background: rgba(255, 255, 255, 0.9);
	border: 2px solid rgba(52, 108, 179, 0.3);
	border-radius: 16px;
	padding: 10px 24px;
	margin-bottom: 24px;
	font-size: 14px;
	font-weight: 700;
	color: var(--primary-color);
	backdrop-filter: blur(10px);
	box-shadow: 0 4px 12px rgba(52, 108, 179, 0.15);
	transition: all 0.3s ease;
}

.section-badge:hover {
	background: white;
	border-color: var(--primary-color);
	transform: translateY(-2px) scale(1.05);
	box-shadow: 0 8px 24px rgba(52, 108, 179, 0.25);
}

.section-badge svg {
	color: var(--primary-color);
	transition: transform 0.3s ease;
}

.section-badge:hover svg {
	transform: rotate(15deg) scale(1.1);
}

.section-title {
	font-size: 2.5rem;
	font-weight: 800;
	color: var(--text-primary);
	margin-bottom: 16px;
	letter-spacing: -0.02em;
	background: var(--gradient-accent);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.section-subtitle {
	font-size: 1.125rem;
	color: var(--text-secondary);
	max-width: 600px;
	margin: 0 auto;
	line-height: 1.6;
}

.integration-category {
	background: white;
	border: 2px solid var(--border-light);
	border-radius: 20px;
	padding: 32px 24px;
	height: 100%;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	position: relative;
	overflow: hidden;
}

.integration-category::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: var(--gradient-accent);
	transform: scaleX(0);
	transition: transform 0.4s ease;
}

.integration-category:hover::before {
	transform: scaleX(1);
}

.integration-category:hover {
	border-color: var(--primary-color);
	box-shadow: var(--shadow-primary);
	transform: translateY(-6px) scale(1.02);
	background: linear-gradient(135deg, #ffffff 0%, #faf5ff 100%);
}

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

.integration-category-icon {
	width: 56px;
	height: 56px;
	border-radius: 14px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	border: 2px solid rgba(52, 108, 179, 0.2);
}

.integration-category:hover .integration-category-icon {
	background: var(--gradient-accent);
	border-color: var(--primary-color);
	transform: scale(1.1) rotate(-5deg);
	box-shadow: 0 4px 12px rgba(52, 108, 179, 0.3);
}

.integration-category-icon svg {
	width: 24px;
	height: 24px;
	color: var(--primary-color);
	transition: color 0.4s ease;
}

.integration-category:hover .integration-category-icon svg {
	color: white;
}

.integration-category-title {
	font-size: 20px;
	font-weight: 700;
	color: var(--text-primary);
	margin: 0;
	transition: all 0.4s ease;
}

.integration-category:hover .integration-category-title {
	color: var(--primary-color);
	transform: translateX(4px);
}

.integration-category-text {
	font-size: 14px;
	color: var(--text-secondary);
	margin: 0;
	line-height: 1.5;
}

.integrations-list {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	gap: 20px;
	padding: 40px 0;
}

.integrations-label {
	display: flex;
	align-items: center;
	padding: 12px 16px;
	border-bottom: 2px solid var(--primary-color);
	font-weight: 700;
	color: var(--text-primary);
}

.company-logo-item {
	transition: all 0.3s ease;
	border-radius: 0.75rem;
	background: #fff;
	box-shadow: var(--shadow-sm);
	padding: 12px 16px;
	display: flex;
	align-items: center;
}

.company-logo-item:hover {
	box-shadow: var(--shadow-md);
	transform: translateY(-2px) scale(1.04);
	background: #eef2ff;
}

.company-logo-item a {
	text-decoration: none;
	display: flex;
	align-items: center;
	color: var(--text-primary);
}

.company-logo-item img {
	width: 16px;
	height: 16px;
	margin-right: 8px;
}

.company-logo-item span {
	font-size: 12px;
	font-weight: 700;
}

/* ===== Benefits Section ===== */
.benefits-section {
	background: var(--bg-secondary);
	padding: 80px 0;
}

.benefit-card {
	background: white;
	border: 2px solid var(--border-light);
	border-radius: 20px;
	padding: 40px 32px;
	height: 100%;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	text-align: center;
	position: relative;
	overflow: hidden;
}

.benefit-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: var(--gradient-accent);
	transform: scaleX(0);
	transition: transform 0.4s ease;
}

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

.benefit-card:hover {
	border-color: var(--primary-color);
	box-shadow: var(--shadow-primary);
	transform: translateY(-8px) scale(1.02);
	background: linear-gradient(135deg, #ffffff 0%, #faf5ff 100%);
}

.benefit-icon {
	width: 80px;
	height: 80px;
	border-radius: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 24px;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	position: relative;
	background: var(--gradient-card);
	border: 2px solid rgba(52, 108, 179, 0.2);
}

.benefit-icon::after {
	content: '';
	position: absolute;
	inset: -6px;
	border-radius: 26px;
	background: var(--gradient-accent);
	opacity: 0;
	transition: opacity 0.4s ease;
	z-index: -1;
	filter: blur(8px);
}

.benefit-card:hover .benefit-icon::after {
	opacity: 0.4;
}

.benefit-card:hover .benefit-icon {
	transform: scale(1.15) rotate(8deg);
	background: var(--gradient-accent);
	border-color: var(--primary-color);
	box-shadow: 0 8px 24px rgba(52, 108, 179, 0.3);
}

.benefit-icon svg {
	width: 40px;
	height: 40px;
	color: var(--primary-color);
	transition: color 0.4s ease;
	filter: drop-shadow(0 4px 8px rgba(52, 108, 179, 0.2));
}

.benefit-card:hover .benefit-icon svg {
	color: white;
	filter: drop-shadow(0 4px 12px rgba(255, 255, 255, 0.3));
}

.benefit-title {
	font-size: 22px;
	font-weight: 800;
	color: var(--text-primary);
	margin-bottom: 12px;
	background: var(--gradient-accent);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	transition: all 0.4s ease;
}

.benefit-card:hover .benefit-title {
	background: var(--gradient-rainbow);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

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

/* ===== Features Section ===== */
.features-section {
	background: #ffffff;
	padding: 80px 0;
}

.feature-card {
	background: white;
	border: 2px solid var(--border-light);
	border-radius: 16px;
	padding: 32px 24px;
	height: 100%;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	position: relative;
	overflow: hidden;
}

.feature-card::before {
	content: '';
	position: absolute;
	top: -50%;
	left: -50%;
	width: 200%;
	height: 200%;
	background: radial-gradient(circle, rgba(52, 108, 179, 0.1) 0%, transparent 70%);
	opacity: 0;
	transition: opacity 0.4s ease;
}

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

.feature-card:hover {
	border-color: var(--primary-color);
	box-shadow: var(--shadow-primary);
	transform: translateY(-6px) scale(1.02);
	background: linear-gradient(135deg, #ffffff 0%, #faf5ff 100%);
}

.feature-icon {
	width: 64px;
	height: 64px;
	background: var(--gradient-card);
	border: 2px solid rgba(52, 108, 179, 0.2);
	border-radius: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 24px;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card:hover .feature-icon {
	background: var(--gradient-accent);
	border-color: var(--primary-color);
	transform: scale(1.1) rotate(-5deg);
}

.feature-icon svg {
	width: 28px;
	height: 28px;
	color: var(--primary-color);
	transition: color 0.4s ease;
}

.feature-card:hover .feature-icon svg {
	color: white;
}

.feature-title {
	font-size: 18px;
	font-weight: 700;
	color: var(--text-primary);
	margin-bottom: 10px;
}

.feature-text {
	font-size: 14px;
	color: var(--text-secondary);
	line-height: 1.5;
	margin: 0;
}

/* ===== AltEdge Section ===== */
.altedge-section {
	background: linear-gradient(135deg, #f8fafc 0%, #e0e7ff 50%, #faf5ff 100%);
	padding: 80px 0;
	position: relative;
	overflow: hidden;
}

.altedge-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	opacity: 0.05;
	background-image: 
		radial-gradient(circle at 20% 50%, rgba(52, 108, 179, 0.2) 0%, transparent 50%),
		radial-gradient(circle at 80% 80%, rgba(59, 130, 246, 0.2) 0%, transparent 50%),
		radial-gradient(circle at 50% 20%, rgba(6, 182, 212, 0.15) 0%, transparent 50%);
	pointer-events: none;
	animation: gradientShift 20s ease infinite;
}

.altedge-badge {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	background: rgba(255, 255, 255, 0.95);
	border: 2px solid rgba(52, 108, 179, 0.3);
	border-radius: 16px;
	padding: 10px 24px;
	margin-bottom: 24px;
	backdrop-filter: blur(10px);
	box-shadow: 0 4px 12px rgba(52, 108, 179, 0.2);
	transition: all 0.3s ease;
}

.altedge-badge:hover {
	background: white;
	border-color: var(--primary-color);
	transform: translateY(-2px) scale(1.05);
	box-shadow: 0 8px 24px rgba(52, 108, 179, 0.3);
}

.altedge-badge svg {
	color: var(--primary-color);
	width: 22px;
	height: 22px;
	transition: transform 0.3s ease;
}

.altedge-badge:hover svg {
	transform: rotate(15deg) scale(1.1);
}

.altedge-badge span {
	font-size: 14px;
	font-weight: 700;
	color: var(--primary-color);
}

.altedge-title {
	font-size: 3rem;
	font-weight: 900;
	color: var(--text-primary);
	margin-bottom: 24px;
	letter-spacing: -0.03em;
	line-height: 1.1;
	display: flex;
	align-items: center;
	gap: 16px;
	justify-content: center;
	flex-wrap: wrap;
	background: var(--gradient-rainbow);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	filter: drop-shadow(0 2px 10px rgba(52, 108, 179, 0.2));
}

.altedge-logo {
	width: 56px;
	height: 56px;
	color: var(--primary-color);
	filter: drop-shadow(0 4px 12px rgba(52, 108, 179, 0.3));
	transition: all 0.4s ease;
	animation: logoFloat 3s ease-in-out infinite;
}

@keyframes logoFloat {
	0%, 100% {
		transform: translateY(0) rotate(0deg);
	}
	50% {
		transform: translateY(-8px) rotate(5deg);
	}
}

.altedge-subtitle {
	font-size: 1.75rem;
	font-weight: 700;
	color: var(--text-primary);
	margin-bottom: 20px;
	background: var(--gradient-accent);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.altedge-description {
	font-size: 1.125rem;
	color: var(--text-secondary);
	max-width: 700px;
	margin: 0 auto 32px;
	line-height: 1.6;
	font-weight: 500;
}

.altedge-description span {
	background: var(--gradient-accent);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.altedge-feature-card {
	background: white;
	border: 2px solid var(--border-color);
	border-radius: 20px;
	padding: 40px 32px;
	text-align: center;
	height: 100%;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	position: relative;
	overflow: hidden;
}

.altedge-feature-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: var(--gradient-accent);
	transform: scaleX(0);
	transition: transform 0.4s ease;
}

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

.altedge-feature-card:hover {
	border-color: var(--primary-color);
	box-shadow: var(--shadow-primary);
	transform: translateY(-8px) scale(1.02);
	background: linear-gradient(135deg, #ffffff 0%, #faf5ff 100%);
}

.altedge-feature-icon {
	width: 80px;
	height: 80px;
	background: var(--gradient-card);
	border: 2px solid rgba(52, 108, 179, 0.2);
	border-radius: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 24px;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	position: relative;
}

.altedge-feature-icon::after {
	content: '';
	position: absolute;
	inset: -6px;
	border-radius: 26px;
	background: var(--gradient-accent);
	opacity: 0;
	transition: opacity 0.4s ease;
	z-index: -1;
	filter: blur(8px);
}

.altedge-feature-card:hover .altedge-feature-icon::after {
	opacity: 0.4;
}

.altedge-feature-card:hover .altedge-feature-icon {
	background: var(--gradient-accent);
	border-color: var(--primary-color);
	transform: scale(1.15) rotate(8deg);
	box-shadow: 0 8px 24px rgba(52, 108, 179, 0.3);
}

.altedge-feature-icon svg {
	width: 36px;
	height: 36px;
	color: var(--primary-color);
	transition: color 0.4s ease;
	filter: drop-shadow(0 4px 8px rgba(52, 108, 179, 0.2));
}

.altedge-feature-card:hover .altedge-feature-icon svg {
	color: white;
	filter: drop-shadow(0 4px 12px rgba(255, 255, 255, 0.3));
}

.altedge-feature-title {
	font-size: 22px;
	font-weight: 800;
	color: var(--text-primary);
	margin-bottom: 12px;
	background: var(--gradient-accent);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	transition: all 0.4s ease;
}

.altedge-feature-card:hover .altedge-feature-title {
	background: var(--gradient-rainbow);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.altedge-feature-text {
	font-size: 15px;
	color: var(--text-secondary);
	line-height: 1.6;
	margin: 0;
}

/* ===== Testimonials Section ===== */
.testimonials-section {
	background: var(--bg-secondary);
	padding: 80px 0;
	position: relative;
	overflow: hidden;
}

.testimonials-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-image: 
		linear-gradient(rgba(52, 108, 179, 0.03) 1px, transparent 1px),
		linear-gradient(90deg, rgba(52, 108, 179, 0.03) 1px, transparent 1px);
	background-size: 60px 60px;
	pointer-events: none;
	opacity: 0.3;
}

.testimonial-card {
	background: white;
	border-radius: 20px;
	padding: 32px;
	box-shadow: var(--shadow-md);
	border: 2px solid rgba(52, 108, 179, 0.1);
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	height: 100%;
	display: flex;
	flex-direction: column;
	position: relative;
	overflow: hidden;
}

.testimonial-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: var(--gradient-accent);
	transform: scaleX(0);
	transition: transform 0.4s ease;
}

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

.testimonial-card:hover {
	border-color: var(--primary-color);
	box-shadow: var(--shadow-primary);
	transform: translateY(-8px);
}

.testimonial-rating {
	display: flex;
	gap: 4px;
	margin-bottom: 20px;
}

.testimonial-rating svg {
	color: #fbbf24;
	width: 18px;
	height: 18px;
	filter: drop-shadow(0 2px 4px rgba(251, 191, 36, 0.3));
}

.testimonial-text {
	font-size: 16px;
	line-height: 1.7;
	color: var(--text-secondary);
	margin-bottom: 24px;
	flex-grow: 1;
	font-style: italic;
	position: relative;
	padding-left: 24px;
}

.testimonial-text::before {
	content: '"';
	position: absolute;
	left: 0;
	top: -8px;
	font-size: 48px;
	color: rgba(52, 108, 179, 0.2);
	font-family: Georgia, serif;
	line-height: 1;
}

.testimonial-author {
	display: flex;
	align-items: center;
	gap: 16px;
	margin-top: auto;
	padding-top: 20px;
	border-top: 1px solid var(--border-color);
}

.testimonial-avatar {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background: var(--gradient-accent);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	box-shadow: 0 4px 12px rgba(52, 108, 179, 0.2);
	transition: all 0.3s ease;
}

.testimonial-card:hover .testimonial-avatar {
	transform: scale(1.1);
	box-shadow: 0 6px 16px rgba(52, 108, 179, 0.3);
}

.testimonial-avatar svg {
	color: white;
	width: 24px;
	height: 24px;
}

.testimonial-info {
	flex: 1;
}

.testimonial-name {
	font-size: 16px;
	font-weight: 700;
	color: var(--text-primary);
	margin-bottom: 4px;
}

.testimonial-role {
	font-size: 14px;
	color: var(--text-muted);
	font-weight: 500;
}

/* ===== Customer Logos Section ===== */
.customer-logos-section {
	background: var(--bg-secondary);
	padding: 80px 0;
	position: relative;
}

.customer-logos-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
	gap: 32px;
	align-items: center;
	justify-items: center;
	max-width: 1000px;
	margin: 0 auto;
}

.customer-logo-item {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 60px;
	transition: all 0.3s ease;
	opacity: 0.6;
	filter: grayscale(100%);
}

.customer-logo-item:hover {
	opacity: 1;
	filter: grayscale(0%);
	transform: scale(1.05);
}

.customer-logo-placeholder {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.customer-logo-placeholder svg {
	width: 100%;
	height: 100%;
	max-width: 150px;
	transition: all 0.3s ease;
}

.customer-logo-item:hover .customer-logo-placeholder svg {
	transform: scale(1.1);
}

/* Responsive adjustments */
@media (max-width: 768px) {
	.customer-logos-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 24px;
	}
	
	.customer-logo-item {
		height: 50px;
	}
}

/* ===== Pricing Section ===== */
.pricing-section {
	background: #ffffff;
	padding: 80px 0;
	position: relative;
}

.pricing-toggle-wrapper {
	display: inline-flex;
	align-items: center;
	gap: 16px;
	background: var(--bg-secondary);
	border: 1px solid var(--border-color);
	border-radius: 12px;
	padding: 4px;
}

.pricing-toggle-label {
	font-size: 14px;
	font-weight: 600;
	color: #374151;
	padding: 8px 16px;
}

.pricing-toggle {
	position: relative;
	display: inline-block;
	width: 48px;
	height: 24px;
}

.pricing-toggle input {
	opacity: 0;
	width: 0;
	height: 0;
}

.pricing-toggle-slider {
	position: absolute;
	cursor: pointer;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: #d1d5db;
	transition: 0.4s;
	border-radius: 24px;
}

.pricing-toggle-slider:before {
	position: absolute;
	content: "";
	height: 18px;
	width: 18px;
	left: 3px;
	bottom: 3px;
	background-color: white;
	transition: 0.4s;
	border-radius: 50%;
}

.pricing-toggle input:checked + .pricing-toggle-slider {
	background-color: var(--primary-color);
}

.pricing-toggle input:checked + .pricing-toggle-slider:before {
	transform: translateX(24px);
}

.pricing-savings-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: #fef3c7;
	border: 1px solid #fbbf24;
	border-radius: 8px;
	padding: 4px 12px;
	margin-left: 12px;
}

.pricing-savings-badge svg {
	color: var(--warning-color);
	width: 16px;
	height: 16px;
}

.pricing-savings-badge span {
	font-size: 12px;
	font-weight: 600;
	color: #92400e;
}

.pricing-card {
	background: white;
	border: 2px solid var(--border-light);
	border-radius: 20px;
	padding: 28px 20px;
	height: 100%;
	position: relative;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	box-shadow: var(--shadow-sm);
	overflow: hidden;
}

.pricing-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: var(--gradient-accent);
	transform: scaleX(0);
	transition: transform 0.4s ease;
}

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

.pricing-card:hover {
	border-color: var(--primary-color);
	box-shadow: var(--shadow-primary);
	transform: translateY(-8px) scale(1.02);
	background: linear-gradient(135deg, #ffffff 0%, #faf5ff 100%);
}

.pricing-card-popular {
	position: absolute;
	top: -10px;
	left: 50%;
	transform: translateX(-50%);
	background: var(--gradient-button);
	color: white;
	padding: 6px 16px;
	border-radius: 16px;
	font-size: 11px;
	font-weight: 700;
	box-shadow: 0 4px 12px rgba(52, 108, 179, 0.4);
	text-transform: uppercase;
	letter-spacing: 0.5px;
	animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
	0%, 100% {
		transform: translateX(-50%) scale(1);
	}
	50% {
		transform: translateX(-50%) scale(1.05);
	}
}

.pricing-card-header {
	text-align: center;
	margin-bottom: 20px;
}

.pricing-card-title {
	font-size: 18px;
	font-weight: 600;
	color: var(--text-primary);
	margin-bottom: 12px;
}

.pricing-card-price {
	display: flex;
	align-items: baseline;
	justify-content: center;
	gap: 2px;
	margin-bottom: 16px;
}

.pricing-card-price-currency {
	font-size: 16px;
	font-weight: 600;
	color: #6b7280;
}

.pricing-card-price-amount {
	font-size: 36px;
	font-weight: 800;
	background: var(--gradient-accent);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	line-height: 1;
}

.pricing-card-price-period {
	font-size: 14px;
	font-weight: 500;
	color: #6b7280;
}

.pricing-savings-badge {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
	border: 2px solid #fbbf24;
	border-radius: 10px;
	padding: 6px 12px;
	margin-bottom: 16px;
	box-shadow: 0 2px 8px rgba(251, 191, 36, 0.2);
	transition: all 0.3s ease;
}

.pricing-card:hover .pricing-savings-badge {
	background: linear-gradient(135deg, #fde68a 0%, #fcd34d 100%);
	transform: scale(1.05);
	box-shadow: 0 4px 12px rgba(251, 191, 36, 0.3);
}

.pricing-savings-badge svg {
	color: #f59e0b;
	width: 14px;
	height: 14px;
	filter: drop-shadow(0 2px 4px rgba(245, 158, 11, 0.3));
}

.pricing-savings-badge span {
	font-size: 12px;
	font-weight: 700;
	color: #92400e;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.pricing-card-savings {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	background: #fef3c7;
	border: 1px solid #fbbf24;
	border-radius: 6px;
	padding: 4px 8px;
	margin-bottom: 16px;
}

.pricing-card-savings svg {
	color: var(--warning-color);
	width: 12px;
	height: 12px;
}

.pricing-card-savings span {
	font-size: 12px;
	font-weight: 600;
	color: #92400e;
}

.pricing-feature {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 12px;
}

.pricing-feature svg {
	color: var(--success-color);
	width: 16px;
	height: 16px;
	flex-shrink: 0;
}

.pricing-feature span {
	font-size: 14px;
	color: #374151;
}

.pricing-card-cta {
	background: transparent;
	color: var(--primary-color);
	border: 2px solid var(--primary-color);
	padding: 14px 24px;
	border-radius: 12px;
	font-weight: 700;
	font-size: 15px;
	text-decoration: none;
	display: block;
	text-align: center;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	margin-top: 24px;
	position: relative;
	overflow: hidden;
}

.pricing-card-cta::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: var(--gradient-button);
	transition: left 0.4s ease;
	z-index: -1;
}

.pricing-card-cta:hover::before {
	left: 0;
}

.pricing-card-cta:hover {
	color: white;
	transform: translateY(-2px);
	box-shadow: var(--shadow-primary);
	border-color: transparent;
}

.pricing-card-cta-primary {
	background: var(--gradient-button);
	color: white;
	border: none;
	box-shadow: var(--shadow-sm);
}

.pricing-card-cta-primary::before {
	background: var(--gradient-rainbow);
}

.pricing-card-cta-primary:hover {
	box-shadow: var(--shadow-glow);
	transform: translateY(-3px) scale(1.02);
}

.payg-section {
	background: linear-gradient(135deg, #f8fafc 0%, #e0e7ff 50%, #faf5ff 100%);
	border: 2px solid rgba(52, 108, 179, 0.2);
	border-radius: 24px;
	padding: 48px 40px;
	text-align: center;
	margin-top: 60px;
	position: relative;
	overflow: hidden;
	box-shadow: var(--shadow-md);
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.payg-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: var(--gradient-accent);
	transform: scaleX(0);
	transition: transform 0.4s ease;
}

.payg-section:hover::before {
	transform: scaleX(1);
}

.payg-section:hover {
	border-color: var(--primary-color);
	box-shadow: var(--shadow-primary);
	transform: translateY(-4px);
	background: linear-gradient(135deg, #ffffff 0%, #e0e7ff 50%, #faf5ff 100%);
}

.payg-title {
	font-size: 28px;
	font-weight: 800;
	color: var(--text-primary);
	margin-bottom: 16px;
	background: var(--gradient-accent);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.payg-subtitle {
	font-size: 18px;
	color: var(--text-secondary);
	margin-bottom: 40px;
	max-width: 500px;
	margin-left: auto;
	margin-right: auto;
	font-weight: 500;
	line-height: 1.6;
}

.payg-select-wrapper {
	max-width: 400px;
	margin: 0 auto;
	position: relative;
}

.payg-select-wrapper::after {
	content: '';
	position: absolute;
	top: 50%;
	right: 20px;
	transform: translateY(-50%);
	width: 0;
	height: 0;
	border-left: 8px solid transparent;
	border-right: 8px solid transparent;
	border-top: 10px solid var(--primary-color);
	pointer-events: none;
	transition: all 0.3s ease;
}

.payg-select-wrapper:hover::after {
	border-top-color: var(--primary-dark);
	transform: translateY(-50%) scale(1.1);
}

.payg-select {
	border: 2px solid rgba(52, 108, 179, 0.3);
	border-radius: 16px;
	padding: 18px 24px;
	font-size: 17px;
	font-weight: 700;
	background: white;
	width: 100%;
	color: var(--text-primary);
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	cursor: pointer;
	box-shadow: var(--shadow-sm);
}

.payg-select:focus {
	outline: none;
	border-color: var(--primary-color);
	box-shadow: 0 0 0 4px rgba(52, 108, 179, 0.1), var(--shadow-md);
	transform: translateY(-2px);
}

.payg-select:hover {
	border-color: var(--primary-color);
	box-shadow: var(--shadow-md);
	transform: translateY(-2px);
	background: linear-gradient(135deg, #ffffff 0%, #faf5ff 100%);
}

.payg-select option {
	padding: 12px;
	font-weight: 600;
	color: var(--text-primary);
	background: white;
}

.payg-notice {
	background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
	border: 2px solid #fbbf24;
	border-radius: 16px;
	padding: 20px 24px;
	margin-top: 32px;
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	box-shadow: 0 4px 12px rgba(251, 191, 36, 0.2);
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.payg-section:hover .payg-notice {
	background: linear-gradient(135deg, #fde68a 0%, #fcd34d 100%);
	transform: scale(1.02);
	box-shadow: 0 6px 20px rgba(251, 191, 36, 0.3);
	border-color: #f59e0b;
}

.payg-notice svg {
	color: #f59e0b;
	width: 20px;
	height: 20px;
	flex-shrink: 0;
	filter: drop-shadow(0 2px 4px rgba(245, 158, 11, 0.3));
	animation: noticePulse 2s ease-in-out infinite;
}

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

.payg-notice-text {
	font-size: 15px;
	color: #92400e;
	margin: 0;
	font-weight: 600;
	line-height: 1.5;
}

/* ===== Free Trial Section ===== */
.free-trial-section {
	background: var(--gradient-hero);
	padding: 80px 0;
	position: relative;
	overflow: hidden;
}

.free-trial-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	opacity: 0.05;
	background-image: 
		radial-gradient(circle at 20% 50%, rgba(52, 108, 179, 0.2) 0%, transparent 50%),
		radial-gradient(circle at 80% 80%, rgba(59, 130, 246, 0.2) 0%, transparent 50%),
		radial-gradient(circle at 50% 20%, rgba(6, 182, 212, 0.15) 0%, transparent 50%);
	pointer-events: none;
	animation: gradientShift 20s ease infinite;
}

.free-trial-content {
	padding-right: 30px;
}

.free-trial-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
	border: 2px solid #fbbf24;
	border-radius: 16px;
	padding: 8px 16px;
	margin-bottom: 24px;
	box-shadow: 0 4px 12px rgba(251, 191, 36, 0.2);
	transition: all 0.3s ease;
}

.free-trial-badge:hover {
	background: linear-gradient(135deg, #fde68a 0%, #fcd34d 100%);
	transform: translateY(-2px) scale(1.05);
	box-shadow: 0 6px 20px rgba(251, 191, 36, 0.3);
	border-color: #f59e0b;
}

.free-trial-badge svg {
	color: #f59e0b;
	width: 16px;
	height: 16px;
	filter: drop-shadow(0 2px 4px rgba(245, 158, 11, 0.3));
	transition: transform 0.3s ease;
}

.free-trial-badge:hover svg {
	transform: rotate(15deg) scale(1.1);
}

.free-trial-badge span {
	font-size: 13px;
	font-weight: 700;
	color: #92400e;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.free-trial-title {
	font-size: 42px;
	font-weight: 900;
	color: white;
	margin-bottom: 16px;
	line-height: 1.1;
	text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
	background: linear-gradient(135deg, #ffffff 0%, #f0f0ff 50%, #e0e0ff 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	filter: drop-shadow(0 2px 10px rgba(255, 255, 255, 0.3));
}

.free-trial-highlight {
	color: #f4f1e7;
	font-weight: 900;
	/* text-shadow: 0 2px 12px rgba(254, 243, 199, 0.6), 0 4px 20px rgba(251, 191, 36, 0.4); */
	background: #ffffff;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	/* filter: drop-shadow(0 2px 8px rgba(251, 191, 36, 0.5)); */
}

.free-trial-title-highlight {
	color: var(--primary-color);
}

.free-trial-description {
	font-size: 18px;
	color: rgba(255, 255, 255, 0.95);
	margin-bottom: 32px;
	line-height: 1.6;
	font-weight: 500;
	text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.free-trial-features {
	margin-bottom: 32px;
}

.free-trial-feature {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 16px;
	transition: all 0.3s ease;
}

.free-trial-feature:hover {
	transform: translateX(8px);
}

.free-trial-feature-icon {
	width: 28px;
	height: 28px;
	background: rgba(255, 255, 255, 0.2);
	backdrop-filter: blur(10px);
	border: 2px solid rgba(255, 255, 255, 0.3);
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	transition: all 0.3s ease;
}

.free-trial-feature:hover .free-trial-feature-icon {
	background: rgba(255, 255, 255, 0.3);
	border-color: rgba(255, 255, 255, 0.5);
	transform: scale(1.1) rotate(5deg);
	box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2);
}

.free-trial-feature-icon svg {
	color: white;
	width: 16px;
	height: 16px;
	filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
	transition: transform 0.3s ease;
}

.free-trial-feature:hover .free-trial-feature-icon svg {
	transform: scale(1.1);
}

.free-trial-feature-text {
	font-size: 16px;
	color: rgba(255, 255, 255, 0.95);
	font-weight: 600;
	text-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.free-trial-illustration {
	text-align: center;
	position: relative;
}

.free-trial-illustration-container {
	position: relative;
	display: inline-block;
}

.free-trial-circle {
	width: 260px;
	height: 260px;
	background: var(--gradient-button);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto;
	position: relative;
	box-shadow: var(--shadow-glow);
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	animation: circlePulse 3s ease-in-out infinite;
}

@keyframes circlePulse {
	0%, 100% {
		transform: scale(1);
		box-shadow: var(--shadow-glow);
	}
	50% {
		transform: scale(1.05);
		box-shadow: 0 20px 60px rgba(52, 108, 179, 0.5);
	}
}

.free-trial-circle:hover {
	transform: scale(1.08);
	box-shadow: 0 24px 72px rgba(52, 108, 179, 0.6);
}

.free-trial-circle-inner {
	width: 200px;
	height: 200px;
	background: rgba(255, 255, 255, 0.15);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	backdrop-filter: blur(15px);
	border: 2px solid rgba(255, 255, 255, 0.3);
	transition: all 0.4s ease;
}

.free-trial-circle:hover .free-trial-circle-inner {
	background: rgba(255, 255, 255, 0.2);
	border-color: rgba(255, 255, 255, 0.4);
	transform: rotate(5deg);
}

.free-trial-circle-content {
	text-align: center;
	color: white;
}

.free-trial-circle-icon {
	width: 72px;
	height: 72px;
	background: rgba(255, 255, 255, 0.25);
	border: 2px solid rgba(255, 255, 255, 0.3);
	border-radius: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 16px;
	backdrop-filter: blur(15px);
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.free-trial-circle:hover .free-trial-circle-icon {
	background: rgba(255, 255, 255, 0.35);
	border-color: rgba(255, 255, 255, 0.5);
	transform: scale(1.1) rotate(-10deg);
	box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

.free-trial-circle-icon svg {
	width: 36px;
	height: 36px;
	color: white;
	filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
	transition: transform 0.4s ease;
}

.free-trial-circle:hover .free-trial-circle-icon svg {
	transform: scale(1.1);
}

.free-trial-circle-title {
	font-size: 24px;
	font-weight: 800;
	margin: 0 0 8px 0;
	text-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
	filter: drop-shadow(0 2px 8px rgba(255, 255, 255, 0.3));
}

.free-trial-circle-subtitle {
	font-size: 14px;
	margin: 0;
	opacity: 0.95;
	font-weight: 600;
	text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.free-trial-float {
	position: absolute;
	background: rgba(255, 255, 255, 0.95);
	border: 2px solid rgba(255, 255, 255, 0.5);
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
	animation: float 3s ease-in-out infinite;
	backdrop-filter: blur(10px);
	transition: all 0.3s ease;
}

.free-trial-float:hover {
	background: white;
	border-color: rgba(255, 255, 255, 0.8);
	transform: scale(1.1);
	box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

.free-trial-float svg {
	width: 24px;
	height: 24px;
	color: var(--primary-color);
	filter: drop-shadow(0 2px 4px rgba(52, 108, 179, 0.3));
	transition: transform 0.3s ease;
}

.free-trial-float:hover svg {
	transform: scale(1.1) rotate(5deg);
	color: var(--primary-dark);
}

.free-trial-float-1 {
	top: 15px;
	right: 15px;
	width: 50px;
	height: 50px;
}

.free-trial-float-2 {
	bottom: 20px;
	left: 15px;
	width: 45px;
	height: 45px;
	animation-delay: 1.5s;
}

.free-trial-float-2 svg {
	color: #f59e0b;
	filter: drop-shadow(0 2px 4px rgba(245, 158, 11, 0.3));
}

.free-trial-float-2:hover svg {
	color: #d97706;
}

@keyframes float {
	0%, 100% {
		transform: translateY(0px);
	}
	50% {
		transform: translateY(-12px);
	}
}

/* ===== FAQ Section ===== */
.faq-section {
	background: var(--bg-secondary);
	padding: 80px 0;
}

.faq-card {
	background: white;
	border: 2px solid var(--border-color);
	border-radius: 20px;
	padding: 32px 24px;
	height: 100%;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	box-shadow: var(--shadow-sm);
	position: relative;
	overflow: hidden;
}

.faq-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: var(--gradient-accent);
	transform: scaleX(0);
	transition: transform 0.4s ease;
}

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

.faq-card:hover {
	border-color: var(--primary-color);
	box-shadow: var(--shadow-primary);
	transform: translateY(-6px) scale(1.01);
	background: linear-gradient(135deg, #ffffff 0%, #faf5ff 100%);
}

.faq-card-header {
	display: flex;
	align-items: flex-start;
	gap: 16px;
}

.faq-card-icon {
	width: 48px;
	height: 48px;
	background: var(--gradient-card);
	border: 2px solid rgba(52, 108, 179, 0.2);
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-card:hover .faq-card-icon {
	background: var(--gradient-accent);
	border-color: var(--primary-color);
	transform: scale(1.1) rotate(-5deg);
	box-shadow: 0 4px 12px rgba(52, 108, 179, 0.3);
}

.faq-card-icon svg {
	width: 24px;
	height: 24px;
	color: var(--primary-color);
	transition: color 0.4s ease;
}

.faq-card:hover .faq-card-icon svg {
	color: white;
}

.faq-card-title {
	font-size: 20px;
	font-weight: 700;
	color: var(--text-primary);
	margin-bottom: 12px;
	transition: all 0.4s ease;
}

.faq-card:hover .faq-card-title {
	color: var(--primary-color);
	transform: translateX(4px);
}

.faq-card-text {
	font-size: 15px;
	color: var(--text-secondary);
	line-height: 1.6;
	margin: 0;
}

/* ===== Contact Section ===== */
.contact-section {
	background: var(--bg-secondary);
	padding: 80px 0;
}

.contact-form-wrapper {
	background: #ffffff;
	border: 1px solid var(--border-color);
	border-radius: 20px;
	padding: 40px;
	box-shadow: var(--shadow-md);
}

.contact-form-group {
	margin-bottom: 24px;
}

.contact-form-label {
	display: block;
	font-size: 14px;
	font-weight: 600;
	color: #374151;
	margin-bottom: 8px;
}

.contact-form-input {
	width: 100%;
	padding: 12px 16px;
	border: 1px solid #d1d5db;
	border-radius: 8px;
	font-size: 14px;
	color: #374151;
	background: #ffffff;
	transition: all 0.3s ease;
}

.contact-form-input:focus {
	outline: none;
	border-color: var(--primary-color);
	box-shadow: 0 0 0 3px rgba(52, 108, 179, 0.1);
}

.contact-form-textarea {
	width: 100%;
	padding: 12px 16px;
	border: 1px solid #d1d5db;
	border-radius: 8px;
	font-size: 14px;
	color: #374151;
	background: #ffffff;
	transition: all 0.3s ease;
	resize: vertical;
	min-height: 120px;
}

.contact-form-textarea:focus {
	outline: none;
	border-color: var(--primary-color);
	box-shadow: 0 0 0 3px rgba(52, 108, 179, 0.1);
}

.contact-info-card {
	text-align: center;
	padding: 24px;
}

.contact-info-icon {
	width: 64px;
	height: 64px;
	background: var(--gradient-card);
	border: 2px solid rgba(52, 108, 179, 0.2);
	border-radius: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 20px;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-info-card:hover .contact-info-icon {
	background: var(--gradient-accent);
	border-color: var(--primary-color);
	transform: scale(1.1) rotate(5deg);
	box-shadow: 0 8px 24px rgba(52, 108, 179, 0.3);
}

.contact-info-icon svg {
	width: 28px;
	height: 28px;
	color: var(--primary-color);
	transition: color 0.4s ease;
}

.contact-info-card:hover .contact-info-icon svg {
	color: white;
}

.contact-info-title {
	font-size: 20px;
	font-weight: 700;
	color: var(--text-primary);
	margin-bottom: 12px;
	transition: all 0.4s ease;
}

.contact-info-card:hover .contact-info-title {
	color: var(--primary-color);
	transform: translateY(-2px);
}

.contact-info-text {
	font-size: 15px;
	color: var(--text-secondary);
	margin: 0;
	font-weight: 500;
}

/* ===== AltEdge Floating Widget ===== */
.altedge-widget {
	position: fixed;
	bottom: 20px;
	left: 20px;
	z-index: 9999;
	display: none;
}

@media (min-width: 768px) {
	.altedge-widget {
		display: block;
	}
}

.altedge-widget-link {
	text-decoration: none;
	display: block;
	transition: all 0.3s ease;
}

.altedge-widget-link:hover {
	transform: translateY(-2px);
	box-shadow: var(--shadow-xl);
}

.altedge-widget-card {
	background: var(--gradient-button);
	border-radius: 16px;
	padding: 14px 18px;
	box-shadow: var(--shadow-glow);
	border: 2px solid rgba(255, 255, 255, 0.3);
	backdrop-filter: blur(10px);
	max-width: 260px;
	position: relative;
	overflow: hidden;
	cursor: pointer;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.altedge-widget-card:hover {
	transform: scale(1.05);
	box-shadow: 0 12px 40px rgba(52, 108, 179, 0.5);
	border-color: rgba(255, 255, 255, 0.5);
}

.altedge-widget-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	opacity: 0.2;
	background-image: 
		radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.4) 0%, transparent 50%),
		radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.4) 0%, transparent 50%);
	animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
	0%, 100% {
		opacity: 0.2;
	}
	50% {
		opacity: 0.3;
	}
}

.altedge-widget-content {
	position: relative;
	z-index: 2;
	display: flex;
	align-items: center;
	gap: 12px;
}

.altedge-widget-badge {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	background: rgba(255, 255, 255, 0.2);
	padding: 2px 6px;
	border-radius: 12px;
	font-size: 9px;
	font-weight: 600;
	color: white;
	margin-bottom: 4px;
}

.altedge-widget-badge svg {
	width: 8px;
	height: 8px;
}

.altedge-widget-title {
	margin: 0;
	color: white;
	font-size: 13px;
	font-weight: 700;
	line-height: 1.2;
}

.altedge-widget-subtitle {
	margin: 0;
	color: rgba(255, 255, 255, 0.8);
	font-size: 11px;
	line-height: 1.3;
}

.altedge-widget-arrow {
	flex-shrink: 0;
	margin-left: auto;
	transition: all 0.3s ease;
}

.altedge-widget-arrow svg {
	width: 16px;
	height: 16px;
	color: rgba(255, 255, 255, 0.7);
}

.altedge-widget-link:hover .altedge-widget-arrow svg {
	color: white;
	transform: translateX(2px);
}

/* ===== Image Preview ===== */
.image-preview {
	max-width: 200px;
	max-height: 150px;
	object-fit: cover;
	display: none;
	border-radius: 8px;
	margin: 0 auto 24px;
}

/* ===== Responsive Design ===== */
@media (min-width: 768px) {
	.altedge-widget {
		display: block;
	}
	
	.hero-section {
		padding: 120px 0 100px;
	}
	
	.hero-title {
		font-size: 4rem;
	}
}

@media (min-width: 992px) {
	.hero-section {
		min-height: 100vh;
	}
	
	.hero-title {
		font-size: 4.5rem;
	}
}

@media (max-width: 767px) {
	.hero-title {
		font-size: 2.5rem;
	}
	
	.hero-subtitle {
		font-size: 1.125rem;
	}
	
	.section-title {
		font-size: 2rem;
	}
	
	.altedge-title {
		font-size: 2rem;
	}
	
	.trust-indicators {
		flex-direction: column;
		align-items: flex-start;
		gap: 16px;
	}
	
	.integrations-list {
		flex-direction: column;
		align-items: stretch;
	}
	
	.integrations-label {
		width: 100%;
		justify-content: center;
	}
}

/* ===== Animations ===== */
@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.fade-in-up {
	animation: fadeInUp 0.6s ease-out;
}

/* ===== Utility Classes ===== */
.text-gradient {
	background: linear-gradient(135deg, var(--text-primary) 0%, var(--primary-color) 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.shadow-custom {
	box-shadow: var(--shadow-lg);
}

.border-gradient {
	border: 2px solid transparent;
	background: linear-gradient(white, white) padding-box,
		linear-gradient(135deg, var(--primary-color), var(--primary-hover)) border-box;
}

