:root {
	--primary: #2563eb;
	--primary-dark: #1d4ed8;
	--primary-light: #3b82f6;
	--secondary: #f59e0b;
	--secondary-dark: #d97706;
	--accent: #8b5cf6;
	--accent-light: #a78bfa;
	--success: #10b981;
	--warning: #f59e0b;
	--error: #ef4444;
	--text: #1f2937;
	--text-light: #6b7280;
	--text-muted: #9ca3af;
	--bg: #ffffff;
	--bg-light: #f9fafb;
	--bg-dark: #111827;
	--bg-card: #ffffff;
	--border: #e5e7eb;
	--border-light: #f3f4f6;
	--shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
	--shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
	--shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
	--gradient-primary: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
	--gradient-secondary: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-dark) 100%);
	--gradient-hero: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 50%, #f0f9ff 100%);
	--gradient-premium: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	--gradient-gold: linear-gradient(135deg, #f6d365 0%, #fda085 100%);
}

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

html {
	scroll-behavior: smooth;
}

body {
	font-family: 'Inter', system-ui, -apple-system, sans-serif;
	line-height: 1.6;
	color: var(--text);
	background: var(--bg);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

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

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

@keyframes slideInLeft {
	from {
		opacity: 0;
		transform: translateX(-50px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

@keyframes slideInRight {
	from {
		opacity: 0;
		transform: translateX(50px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

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

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

@keyframes shimmer {
	0% {
		background-position: -200px 0;
	}
	100% {
		background-position: calc(200px + 100%) 0;
	}
}

/* Premium Header */
.premium-header {
	background: rgba(255, 255, 255, 0.98);
	backdrop-filter: blur(20px);
	border-bottom: 1px solid var(--border-light);
	position: sticky;
	top: 0;
	z-index: 100;
	transition: all 0.3s ease;
	box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

.header-inner {
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	align-items: center;
	padding: 20px 0;
	gap: 32px;
}

.brand {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-self: start;
}

.brand-name {
	font-size: 36px;
	font-weight: 900;
	color: var(--text);
	text-decoration: none;
	transition: all 0.3s ease;
	background: var(--gradient-primary);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	letter-spacing: -0.8px;
	line-height: 1;
}

.brand-name:hover {
	transform: scale(1.02);
}

.brand-tagline {
	font-size: 14px;
	color: var(--text-light);
	font-weight: 500;
	margin-top: 2px;
	letter-spacing: 0.5px;
	text-transform: uppercase;
}

.header-contact {
	justify-self: center;
}

.header-phone {
	display: flex;
	align-items: center;
	gap: 8px;
	background: var(--bg-light);
	padding: 12px 20px;
	border-radius: 50px;
	text-decoration: none;
	color: var(--text);
	font-weight: 600;
	border: 2px solid var(--border-light);
	transition: all 0.3s ease;
}

.header-phone:hover {
	background: var(--primary);
	color: white;
	border-color: var(--primary);
	transform: translateY(-1px);
	box-shadow: var(--shadow);
}

.phone-icon {
	font-size: 16px;
}

.nav {
	display: flex;
	align-items: center;
	gap: 32px;
	justify-self: end;
}

.nav a {
	color: var(--text-light);
	text-decoration: none;
	font-weight: 600;
	transition: all 0.3s ease;
	position: relative;
	padding: 8px 16px;
	border-radius: 8px;
	font-size: 16px;
}

.nav a:hover {
	color: var(--primary);
	background: rgba(37, 99, 235, 0.05);
}

.nav a::after {
	content: '';
	position: absolute;
	bottom: 2px;
	left: 50%;
	width: 0;
	height: 2px;
	background: var(--gradient-primary);
	transition: all 0.3s ease;
	transform: translateX(-50%);
	border-radius: 1px;
}

.nav a:hover::after {
	width: 80%;
}

.premium-cta {
	background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
	color: white;
	padding: 14px 32px;
	border-radius: 50px;
	font-weight: 700;
	font-size: 16px;
	transition: all 0.3s ease;
	box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
	border: none;
	cursor: pointer;
	position: relative;
	overflow: hidden;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.premium-cta::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.6s;
}

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

.premium-cta:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 25px rgba(255, 107, 107, 0.4);
	background: linear-gradient(135deg, #ff5252 0%, #d63031 100%);
}

/* Hero Section */
.hero {
	padding: 80px 0;
	background: var(--gradient-hero);
	position: relative;
	overflow: hidden;
}

.hero::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: 
		radial-gradient(circle at 20% 80%, rgba(37, 99, 235, 0.15) 0%, transparent 50%),
		radial-gradient(circle at 80% 20%, rgba(139, 92, 246, 0.15) 0%, transparent 50%),
		radial-gradient(circle at 40% 40%, rgba(245, 158, 11, 0.1) 0%, transparent 50%);
	pointer-events: none;
}

.hero-inner {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 48px;
	align-items: center;
	position: relative;
	z-index: 1;
}

.hero-badge {
	display: inline-block;
	background: rgba(37, 99, 235, 0.1);
	color: var(--primary);
	padding: 8px 20px;
	border-radius: 50px;
	font-size: 14px;
	font-weight: 600;
	margin-bottom: 20px;
	border: 1px solid rgba(37, 99, 235, 0.2);
}

.hero-content h1 {
	font-size: 56px;
	font-weight: 900;
	line-height: 1.1;
	margin-bottom: 20px;
	color: var(--text);
	background: linear-gradient(135deg, var(--text) 0%, var(--primary) 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.hero-subtitle {
	font-size: 22px;
	color: var(--text-light);
	margin-bottom: 28px;
	line-height: 1.6;
	font-weight: 400;
}

.hero-stats-inline {
	display: flex;
	gap: 28px;
	margin-bottom: 28px;
}

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

.stat-inline .stat-number {
	display: block;
	font-size: 32px;
	font-weight: 800;
	color: var(--primary);
	margin-bottom: 4px;
}

.stat-inline .stat-label {
	font-size: 14px;
	color: var(--text-light);
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.hero-cta-buttons {
	display: flex;
	gap: 16px;
	flex-wrap: wrap;
}

/* Premium Form Card */
.hero-form-card {
	background: white;
	padding: 32px;
	border-radius: 24px;
	box-shadow: var(--shadow-xl);
	border: 1px solid var(--border-light);
	position: relative;
}

.hero-form-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: var(--gradient-primary);
	border-radius: 24px 24px 0 0;
}

.hero-form-card h3 {
	font-size: 28px;
	font-weight: 700;
	margin-bottom: 10px;
	color: var(--text);
}

.hero-form-card p {
	color: var(--text-light);
	margin-bottom: 24px;
	font-size: 16px;
	line-height: 1.6;
}

.premium-form .form-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 12px;
	margin-bottom: 16px;
}

.premium-form .form-group {
	margin-bottom: 16px;
}

.premium-form input,
.premium-form select {
	width: 100%;
	padding: 16px 20px;
	border: 2px solid var(--border);
	border-radius: 12px;
	font-size: 16px;
	transition: all 0.3s ease;
	background: var(--bg-light);
	font-weight: 500;
}

.premium-form input:focus,
.premium-form select:focus {
	outline: none;
	border-color: var(--primary);
	background: white;
	box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
	transform: translateY(-1px);
}

.trust-indicators {
	display: flex;
	justify-content: space-between;
	margin-top: 20px;
	padding-top: 20px;
	border-top: 1px solid var(--border-light);
}

.trust-item {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 14px;
	color: var(--text-light);
	font-weight: 600;
}

.trust-icon {
	font-size: 16px;
}

/* Stats Section */
.stats-section {
	padding: 50px 0;
	background: white;
}

.stats-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
}

.stat-card.premium {
	background: white;
	padding: 40px 24px;
	border-radius: 20px;
	text-align: center;
	box-shadow: var(--shadow-lg);
	border: 1px solid var(--border-light);
	transition: all 0.4s ease;
	position: relative;
	overflow: hidden;
}

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

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

.stat-card.premium:hover {
	transform: translateY(-8px);
	box-shadow: var(--shadow-xl);
}

.stat-card .stat-icon {
	font-size: 48px;
	margin-bottom: 16px;
	display: block;
}

.stat-card .stat-number {
	font-size: 48px;
	font-weight: 900;
	color: var(--primary);
	margin-bottom: 8px;
	display: block;
}

.stat-card .stat-label {
	font-size: 16px;
	color: var(--text-light);
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 1px;
}

/* Buttons */
.btn {
	display: inline-block;
	padding: 16px 32px;
	border-radius: 12px;
	text-decoration: none;
	font-weight: 700;
	text-align: center;
	transition: all 0.3s ease;
	border: none;
	cursor: pointer;
	font-size: 16px;
	position: relative;
	overflow: hidden;
	line-height: 1.2;
}

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

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

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

.btn.primary:hover {
	transform: translateY(-2px);
	box-shadow: var(--shadow-lg);
}

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

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

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

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

.btn.large {
	padding: 20px 40px;
	font-size: 18px;
	border-radius: 16px;
}

.btn.extra-large {
	padding: 24px 48px;
	font-size: 20px;
	border-radius: 20px;
	font-weight: 800;
}

.btn.full-width {
	width: 100%;
}

/* Value Proposition */
.value-prop {
	padding: 80px 0;
	background: var(--bg-light);
}

.value-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
}

.value-text h2 {
	font-size: 48px;
	font-weight: 800;
	margin-bottom: 20px;
	color: var(--text);
	line-height: 1.2;
}

.value-subtitle {
	font-size: 20px;
	color: var(--text-light);
	margin-bottom: 40px;
	line-height: 1.6;
}

.value-points {
	margin-bottom: 40px;
}

.value-point {
	display: flex;
	gap: 16px;
	margin-bottom: 24px;
	align-items: flex-start;
}

.value-icon {
	font-size: 32px;
	flex-shrink: 0;
	width: 60px;
	height: 60px;
	background: var(--gradient-primary);
	border-radius: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.value-info h4 {
	font-size: 20px;
	font-weight: 700;
	margin-bottom: 8px;
	color: var(--text);
}

.value-info p {
	color: var(--text-light);
	line-height: 1.6;
}

.value-cta {
	display: flex;
	gap: 16px;
	flex-wrap: wrap;
}

.feature-showcase {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 24px;
}

.feature-item {
	background: white;
	padding: 32px 24px;
	border-radius: 16px;
	box-shadow: var(--shadow);
	text-align: center;
	transition: all 0.3s ease;
	border: 1px solid var(--border-light);
}

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

.feature-badge {
	display: inline-block;
	background: var(--gradient-secondary);
	color: white;
	padding: 4px 12px;
	border-radius: 20px;
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1px;
	margin-bottom: 12px;
}

.feature-item h5 {
	font-size: 16px;
	font-weight: 600;
	color: var(--text);
}

/* Premium Services */
.premium-services {
	padding: 80px 0;
	background: white;
}

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

.section-header h2 {
	font-size: 48px;
	font-weight: 800;
	margin-bottom: 20px;
	color: var(--text);
}

.section-header p {
	font-size: 20px;
	color: var(--text-light);
	max-width: 600px;
	margin: 0 auto;
	line-height: 1.6;
}

.services-grid.premium {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
	margin-bottom: 60px;
}

.service-card.premium {
	background: white;
	padding: 48px 32px;
	border-radius: 24px;
	box-shadow: var(--shadow-lg);
	transition: all 0.4s ease;
	border: 1px solid var(--border-light);
	position: relative;
	overflow: hidden;
}

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

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

.service-card.premium:hover {
	transform: translateY(-8px);
	box-shadow: var(--shadow-xl);
}

.service-header {
	text-align: center;
	margin-bottom: 24px;
}

.service-icon {
	font-size: 64px;
	margin-bottom: 20px;
	display: block;
}

.service-card h3 {
	font-size: 24px;
	font-weight: 700;
	margin-bottom: 16px;
	color: var(--text);
}

.service-card p {
	color: var(--text-light);
	line-height: 1.6;
	margin-bottom: 24px;
	font-size: 16px;
}

.service-features ul {
	list-style: none;
	margin-bottom: 24px;
}

.service-features li {
	padding: 8px 0;
	color: var(--text-light);
	position: relative;
	padding-left: 24px;
}

.service-features li::before {
	content: '✓';
	position: absolute;
	left: 0;
	color: var(--success);
	font-weight: 700;
}

.service-cta {
	color: var(--primary);
	text-decoration: none;
	font-weight: 700;
	transition: all 0.3s ease;
	display: inline-flex;
	align-items: center;
	gap: 8px;
}

.service-cta:hover {
	color: var(--primary-dark);
	transform: translateX(4px);
}

.services-bottom-cta {
	text-align: center;
	background: var(--bg-light);
	padding: 60px 40px;
	border-radius: 24px;
	border: 1px solid var(--border-light);
}

.services-bottom-cta h3 {
	font-size: 32px;
	font-weight: 700;
	margin-bottom: 16px;
	color: var(--text);
}

.services-bottom-cta p {
	font-size: 18px;
	color: var(--text-light);
	margin-bottom: 32px;
	max-width: 500px;
	margin-left: auto;
	margin-right: auto;
}

/* Premium Testimonials */
.premium-testimonials {
	padding: 80px 0;
	background: var(--bg-light);
}

.testimonial-grid.premium {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
	margin-bottom: 60px;
}

.testimonial-card.premium {
	background: white;
	padding: 40px;
	border-radius: 24px;
	box-shadow: var(--shadow-lg);
	transition: all 0.4s ease;
	border: 1px solid var(--border-light);
	position: relative;
}

.testimonial-card.premium:hover {
	transform: translateY(-8px);
	box-shadow: var(--shadow-xl);
}

.testimonial-rating {
	color: var(--secondary);
	font-size: 20px;
	margin-bottom: 20px;
}

.testimonial-card blockquote {
	font-size: 18px;
	font-style: italic;
	margin-bottom: 32px;
	color: var(--text);
	line-height: 1.6;
	position: relative;
}

.testimonial-card blockquote::before {
	content: '"';
	font-size: 80px;
	color: var(--primary);
	position: absolute;
	top: -20px;
	left: -10px;
	opacity: 0.2;
	font-family: serif;
}

.testimonial-author {
	display: flex;
	align-items: center;
	gap: 16px;
}

.author-avatar {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background: var(--gradient-primary);
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-weight: 700;
	font-size: 18px;
}

.author-info strong {
	display: block;
	font-weight: 700;
	color: var(--text);
	margin-bottom: 4px;
}

.author-info span {
	color: var(--text-light);
	font-size: 14px;
}

.testimonials-cta {
	text-align: center;
}

.testimonials-cta h3 {
	font-size: 32px;
	font-weight: 700;
	margin-bottom: 24px;
	color: var(--text);
}

/* CTA Banner */
.cta-banner {
	padding: 60px 0;
	background: var(--gradient-primary);
	color: white;
	text-align: center;
}

.cta-content h2 {
	font-size: 42px;
	font-weight: 800;
	margin-bottom: 20px;
}

.cta-content p {
	font-size: 20px;
	margin-bottom: 40px;
	opacity: 0.9;
	max-width: 700px;
	margin-left: auto;
	margin-right: auto;
}

.cta-buttons {
	display: flex;
	gap: 20px;
	justify-content: center;
	flex-wrap: wrap;
}

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

.cta-banner .btn.secondary {
	background: transparent;
	color: white;
	border-color: white;
}

/* Premium FAQ */
.premium-faq {
	padding: 80px 0;
	background: white;
}

.faq-container {
	display: grid;
	grid-template-columns: 2fr 1fr;
	gap: 60px;
	align-items: start;
}

.faq-item.premium {
	border-bottom: 1px solid var(--border);
	margin-bottom: 8px;
}

.faq-question {
	width: 100%;
	padding: 32px 0;
	background: none;
	border: none;
	text-align: left;
	font-size: 20px;
	font-weight: 700;
	color: var(--text);
	cursor: pointer;
	transition: all 0.3s ease;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

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

.faq-icon {
	font-size: 28px;
	font-weight: 300;
	transition: transform 0.3s ease;
	color: var(--primary);
	width: 32px;
	height: 32px;
	border-radius: 50%;
	border: 2px solid var(--primary);
	display: flex;
	align-items: center;
	justify-content: center;
}

.faq-question.active .faq-icon {
	transform: rotate(45deg);
	background: var(--primary);
	color: white;
}

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

.faq-answer.active {
	max-height: 300px;
	opacity: 1;
	padding-bottom: 32px;
}

.faq-answer p {
	color: var(--text-light);
	line-height: 1.7;
	font-size: 16px;
}

.faq-cta-sidebar {
	position: sticky;
	top: 120px;
}

.faq-cta-card {
	background: var(--bg-light);
	padding: 40px;
	border-radius: 24px;
	border: 1px solid var(--border-light);
	text-align: center;
}

.faq-cta-card h3 {
	font-size: 24px;
	font-weight: 700;
	margin-bottom: 16px;
	color: var(--text);
}

.faq-cta-card p {
	color: var(--text-light);
	margin-bottom: 32px;
	line-height: 1.6;
}

.faq-cta-card .btn {
	margin-bottom: 16px;
}

/* Final CTA */
.premium-final {
	padding: 80px 0;
	background: var(--gradient-premium);
	color: white;
	text-align: center;
	position: relative;
	overflow: hidden;
}

.premium-final::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: radial-gradient(circle at 30% 70%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
	pointer-events: none;
}

.final-cta-content {
	position: relative;
	z-index: 1;
}

.final-cta-content h2 {
	font-size: 48px;
	font-weight: 900;
	margin-bottom: 24px;
}

.final-cta-content > p {
	font-size: 22px;
	margin-bottom: 48px;
	opacity: 0.95;
	max-width: 800px;
	margin-left: auto;
	margin-right: auto;
	line-height: 1.6;
}

.final-cta-features {
	display: flex;
	justify-content: center;
	gap: 40px;
	margin-bottom: 48px;
	flex-wrap: wrap;
}

.cta-feature {
	display: flex;
	align-items: center;
	gap: 12px;
	font-size: 18px;
	font-weight: 600;
}

.cta-feature-icon {
	font-size: 20px;
	color: var(--success);
}

.final-cta-buttons {
	display: flex;
	gap: 24px;
	justify-content: center;
	margin-bottom: 32px;
	flex-wrap: wrap;
}

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

.premium-final .btn.secondary {
	background: transparent;
	color: white;
	border-color: white;
}

.final-cta-guarantee {
	font-size: 16px;
	opacity: 0.8;
	font-style: italic;
}

/* Clean Footer */
.site-footer {
	background: var(--bg-dark);
	color: white;
	padding: 60px 0 30px 0;
}

.footer-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	margin-bottom: 40px;
	align-items: start;
}

.footer-brand {
	max-width: 400px;
}

.footer-brand-name {
	font-size: 36px;
	font-weight: 900;
	color: white;
	margin: 0 0 8px 0;
	letter-spacing: -0.8px;
	line-height: 1;
	background: var(--gradient-primary);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.footer-tagline {
	color: #9ca3af;
	margin: 0 0 20px 0;
	font-size: 16px;
	line-height: 1.5;
	font-weight: 500;
}

.footer-rating {
	display: flex;
	align-items: center;
	gap: 12px;
}

.footer-rating .stars {
	color: var(--secondary);
	font-size: 18px;
	letter-spacing: 1px;
}

.footer-rating .rating-text {
	color: #d1d5db;
	font-size: 14px;
	font-weight: 500;
}

.footer-links {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 40px;
}

.footer-column h4 {
	font-size: 18px;
	font-weight: 700;
	margin-bottom: 16px;
	color: white;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.footer-column {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.footer-column a {
	color: #d1d5db;
	text-decoration: none;
	transition: all 0.3s ease;
	font-size: 15px;
	font-weight: 500;
	padding: 4px 0;
}

.footer-column a:hover {
	color: white;
	padding-left: 8px;
}

.footer-cta {
	background: var(--gradient-primary);
	color: white;
	border: none;
	padding: 12px 24px;
	border-radius: 8px;
	font-weight: 600;
	font-size: 14px;
	cursor: pointer;
	transition: all 0.3s ease;
	margin-top: 8px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.footer-cta:hover {
	transform: translateY(-2px);
	box-shadow: var(--shadow-lg);
}

.footer-bottom {
	border-top: 1px solid #374151;
	padding-top: 24px;
	text-align: center;
}

.footer-bottom p {
	color: #9ca3af;
	margin: 0;
	font-size: 14px;
}

/* Professional Notification Modal */
.professional-notification-modal {
	background: white;
	border-radius: 20px;
	max-width: 500px;
	width: 90%;
	box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
	overflow: hidden;
	transform: scale(0.9);
	transition: transform 0.3s ease;
}

.professional-notification-overlay[style*="opacity: 1"] .professional-notification-modal {
	transform: scale(1);
}

.notification-header {
	background: linear-gradient(135deg, var(--success) 0%, #059669 100%);
	color: white;
	padding: 30px;
	text-align: center;
	position: relative;
}

.success-icon {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.2);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 28px;
	font-weight: 700;
	margin: 0 auto 16px auto;
	border: 3px solid rgba(255, 255, 255, 0.3);
}

.notification-header h3 {
	font-size: 28px;
	font-weight: 700;
	margin: 0;
}

.notification-body {
	padding: 40px 30px;
}

.main-message {
	font-size: 18px;
	color: var(--text-light);
	margin-bottom: 32px;
	text-align: center;
}

.timeline-info {
	margin-bottom: 32px;
}

.timeline-item {
	display: flex;
	align-items: center;
	gap: 16px;
	margin-bottom: 20px;
	padding: 16px;
	background: var(--bg-light);
	border-radius: 12px;
	border-left: 4px solid var(--primary);
}

.timeline-icon {
	font-size: 24px;
	width: 40px;
	text-align: center;
}

.timeline-content {
	flex: 1;
}

.timeline-content strong {
	display: block;
	font-size: 16px;
	font-weight: 600;
	color: var(--text);
	margin-bottom: 4px;
}

.timeline-content span {
	font-size: 14px;
	color: var(--text-light);
}

.contact-info {
	text-align: center;
	padding: 20px;
	background: var(--bg-light);
	border-radius: 12px;
	border: 1px solid var(--border-light);
}

.contact-info p {
	margin: 0 0 8px 0;
	color: var(--text-light);
	font-size: 14px;
}

.contact-link {
	font-size: 20px;
	font-weight: 700;
	color: var(--primary);
	text-decoration: none;
	transition: color 0.2s ease;
}

.contact-link:hover {
	color: var(--primary-dark);
}

.notification-footer {
	padding: 20px 30px 30px 30px;
	text-align: center;
}

.close-notification-btn {
	background: var(--gradient-primary);
	color: white;
	border: none;
	padding: 14px 32px;
	border-radius: 50px;
	font-size: 16px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
	box-shadow: var(--shadow);
}

.close-notification-btn:hover {
	transform: translateY(-2px);
	box-shadow: var(--shadow-lg);
}

/* Responsive Design */
@media (max-width: 1024px) {
	.hero-inner,
	.value-content {
		grid-template-columns: 1fr;
		gap: 40px;
	}
	
	.stats-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 16px;
	}
	
	.services-grid.premium {
		grid-template-columns: repeat(2, 1fr);
		gap: 16px;
	}
	
	.faq-container {
		grid-template-columns: 1fr;
		gap: 40px;
	}
	
	.hero {
		padding: 60px 0;
	}
	
	.premium-services,
	.premium-testimonials,
	.premium-faq,
	.premium-final,
	.value-prop {
		padding: 50px 0;
	}
	
	.stats-section {
		padding: 40px 0;
	}
	
	.section-header {
		margin-bottom: 40px;
	}
}

@media (max-width: 768px) {
	.container {
		padding: 0 20px;
	}
	
	.header-inner {
		grid-template-columns: 1fr;
		gap: 16px;
		text-align: center;
		padding: 16px 0;
	}
	
	.brand {
		align-items: center;
		justify-self: center;
	}
	
	.brand-name {
		font-size: 32px;
	}
	
	.header-contact {
		justify-self: center;
		order: -1;
	}
	
	.nav {
		justify-self: center;
		gap: 16px;
		flex-wrap: wrap;
		justify-content: center;
	}
	
	.hero {
		padding: 50px 0;
	}
	
	.hero-inner {
		gap: 32px;
	}
	
	.hero-content h1 {
		font-size: 40px;
		margin-bottom: 20px;
	}
	
	.hero-subtitle {
		margin-bottom: 24px;
	}
	
	.hero-stats-inline {
		flex-direction: column;
		gap: 16px;
		margin-bottom: 24px;
	}
	
	.hero-cta-buttons {
		flex-direction: column;
		gap: 12px;
	}
	
	.premium-form .form-row {
		grid-template-columns: 1fr;
	}
	
	.stats-grid,
	.services-grid.premium,
	.testimonial-grid.premium {
		grid-template-columns: 1fr;
		gap: 20px;
	}
	
	.premium-services,
	.premium-testimonials,
	.premium-faq,
	.premium-final,
	.value-prop {
		padding: 50px 0;
	}
	
	.stats-section,
	.cta-banner {
		padding: 32px 0;
	}
	
	.section-header {
		margin-bottom: 40px;
	}
	
	.value-points {
		margin-bottom: 32px;
	}
	
	.value-point {
		flex-direction: column;
		text-align: center;
		gap: 12px;
		margin-bottom: 20px;
	}
	
	.feature-showcase {
		grid-template-columns: 1fr;
		gap: 16px;
	}
	
	.final-cta-features {
		flex-direction: column;
		gap: 16px;
	}
	
	.final-cta-buttons {
		flex-direction: column;
		gap: 12px;
	}
	
	.footer-content {
		grid-template-columns: 1fr;
		gap: 32px;
		text-align: center;
	}
	
	.footer-brand {
		max-width: none;
	}
	
	.footer-links {
		grid-template-columns: 1fr;
		gap: 24px;
	}
	
	.footer-column {
		align-items: center;
	}
	
	.section-header h2,
	.value-text h2,
	.final-cta-content h2 {
		font-size: 36px;
	}
}

@media (max-width: 480px) {
	.container {
		padding: 0 16px;
	}
	
	.hero {
		padding: 40px 0;
	}
	
	.hero-content h1 {
		font-size: 32px;
		margin-bottom: 16px;
	}
	
	.hero-subtitle {
		font-size: 18px;
		margin-bottom: 20px;
	}
	
	.hero-stats-inline {
		margin-bottom: 20px;
	}
	
	.hero-form-card,
	.services-bottom-cta,
	.faq-cta-card {
		padding: 24px 16px;
	}
	
	.service-card.premium,
	.testimonial-card.premium {
		padding: 24px 16px;
	}
	
	.premium-services,
	.premium-testimonials,
	.premium-faq,
	.premium-final,
	.value-prop {
		padding: 32px 0;
	}
	
	.stats-section,
	.cta-banner {
		padding: 24px 0;
	}
	
	.section-header {
		margin-bottom: 32px;
	}
	
	.section-header h2,
	.value-text h2,
	.final-cta-content h2 {
		font-size: 28px;
		margin-bottom: 16px;
	}
	
	.btn {
		padding: 14px 24px;
		font-size: 14px;
	}
	
	.btn.large {
		padding: 16px 32px;
		font-size: 16px;
	}
	
	.btn.extra-large {
		padding: 18px 36px;
		font-size: 18px;
	}
	
	.trust-indicators {
		flex-direction: column;
		gap: 8px;
		text-align: center;
	}
	
	.value-points {
		margin-bottom: 24px;
	}
	
	.value-point {
		margin-bottom: 16px;
	}
	
	/* Professional notification mobile styles */
	.professional-notification-modal {
		margin: 20px;
		max-width: none;
	}
	
	.notification-header {
		padding: 20px;
	}
	
	.notification-header h3 {
		font-size: 24px;
	}
	
	.notification-body {
		padding: 30px 20px;
	}
	
	.timeline-item {
		padding: 12px;
	}
	
	.timeline-content strong {
		font-size: 14px;
	}
	
	.contact-link {
		font-size: 18px;
	}
}