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

body {
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
	line-height: 1.6;
	color: #1e293b;
	background-color: #ffffff;
	overflow-x: hidden;
}

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

/* Cookie Popup */
.cookie-popup {
	position: fixed;
	bottom: 20px;
	right: 20px;
	width: 400px;
	max-width: calc(100vw - 40px);
	background: #1e293b;
	color: #ffffff;
	padding: 20px;
	z-index: 1000;
	transform: translateX(100%);
	transition: transform 0.3s ease;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
	border-radius: 12px;
	border: 2px solid #ea3333;
}

.cookie-popup.show {
	transform: translateX(0);
}

.cookie-popup[style*='display: none'] {
	display: none !important;
	visibility: hidden;
	opacity: 0;
	pointer-events: none;
}

.cookie-content {
	display: flex;
	flex-direction: column;
	gap: 15px;
}

.cookie-buttons {
	display: flex;
	gap: 10px;
	align-items: center;
	justify-content: space-between;
}

.cookie-link {
	color: #ea3333;
	text-decoration: underline;
	font-size: 0.9rem;
	transition: color 0.3s ease;
}

.cookie-link:hover {
	color: #3a1212;
}

.cookie-accept {
	background: #ea3333;
	color: white;
	border: none;
	padding: 10px 20px;
	border-radius: 8px;
	cursor: pointer;
	transition: all 0.3s ease;
	font-weight: 500;
	font-size: 0.9rem;
	flex-shrink: 0;
}

.cookie-accept:hover {
	background: #330b0b;
	transform: translateY(-1px);
	box-shadow: 0 4px 12px rgba(147, 51, 234, 0.3);
}

/* Header */
.header {
	background: #ffffff;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 999;
}

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

.nav-brand {
	display: flex;
	align-items: center;
	gap: 12px;
}

.logo {
	width: 40px;
	height: 40px;
	transition: transform 0.3s ease;
}

.logo:hover {
	transform: scale(1.1);
}

.brand-link {
	text-decoration: none;
	color: #ea3333;
	transition: color 0.3s ease;
}

.brand-link:hover {
	color: #391212;
}

.nav-brand h1 {
	color: #ea3333;
	font-size: 2rem;
	font-weight: bold;
	margin: 0;
}

.nav-link {
	display: flex;
	align-items: center;
	gap: 8px;
	text-decoration: none;
	color: #1e293b;
	font-weight: 500;
	transition: all 0.3s ease;
	position: relative;
	padding: 8px 12px;
	border-radius: 8px;
}

.nav-icon {
	width: 20px;
	height: 20px;
	opacity: 0.7;
	transition: opacity 0.3s ease;
}

.nav-link:hover .nav-icon {
	opacity: 1;
}

.nav-link.active {
	background: rgba(147, 51, 234, 0.1);
	color: #ea3333;
}

.nav-link.active .nav-icon {
	opacity: 1;
}

.nav-menu {
	display: flex;
	list-style: none;
	gap: 1rem;
}

.nav-link:hover {
	color: #331111;
	background: rgba(147, 51, 234, 0.05);
}

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

.nav-link:hover::after,
.nav-link.active::after {
	width: 80%;
}

.hamburger {
	display: none;
	flex-direction: column;
	cursor: pointer;
}

.hamburger span {
	width: 25px;
	height: 3px;
	background: #1e293b;
	margin: 3px 0;
	transition: 0.3s;
}

/* Hero Section */
.hero {
	background: url('../images/gornoe-ozero.jpg') no-repeat center center;
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	background-size: cover;
	padding-top: 80px;
	position: relative;
}

.hero::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.5);
	z-index: 1;
}

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

.hero-content h1 {
	font-size: 3.5rem;
	color: #ffffff;
	margin-bottom: 1rem;
	font-weight: bold;
}

.hero-content p {
	font-size: 1.2rem;
	color: #ffffff;
	margin-bottom: 2rem;
	max-width: 700px;
	margin-left: auto;
	margin-right: auto;
}

.hero-features {
	display: flex;
	justify-content: center;
	gap: 2rem;
	margin: 2rem 0;
	flex-wrap: wrap;
}

.hero-feature {
	display: flex;
	align-items: center;
	gap: 8px;
	background: rgba(255, 255, 255, 0.1);
	padding: 12px 20px;
	border-radius: 25px;
	backdrop-filter: blur(10px);
	transition: transform 0.3s ease;
}

.hero-feature:hover {
	transform: translateY(-2px);
}

.hero-icon {
	width: 24px;
	height: 24px;
	filter: brightness(0) invert(1);
}

.hero-feature span {
	color: #ffffff;
	font-weight: 500;
	font-size: 0.9rem;
}

.cta-button {
	background: #ffffff;
	color: #ea3333;
	padding: 15px 30px;
	border: none;
	border-radius: 50px;
	font-size: 1.1rem;
	font-weight: bold;
	cursor: pointer;
	transition: all 0.3s ease;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

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

/* Sections */
.section {
	padding: 80px 0;
}

/* Ensure first section after hero doesn't overlap */
#personnalite {
	margin-top: 0;
	padding-top: 100px;
	position: relative;
	z-index: 3;
}

.section-alt {
	background: #ede9fe;
}

.section-header {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 15px;
	margin-bottom: 2rem;
}

.section-icon {
	width: 48px;
	height: 48px;
}

.section h2 {
	font-size: 2.5rem;
	color: #1e293b;
	text-align: center;
	margin: 0;
}

.section p {
	text-align: center;
	font-size: 1.1rem;
	margin-bottom: 3rem;
	max-width: 900px;
	margin-left: auto;
	margin-right: auto;
	line-height: 1.7;
}

/* Intro Blocks */
.personality-intro,
.confidence-intro,
.practice-intro,
.growth-philosophy {
	margin: 3rem 0;
}

.intro-block,
.philosophy-block {
	background: rgba(147, 51, 234, 0.05);
	padding: 2rem;
	border-radius: 15px;
	border-left: 4px solid #ea3333;
	max-width: 800px;
	margin: 0 auto;
}

.intro-block h3,
.philosophy-block h3 {
	color: #ea3333;
	margin-bottom: 1rem;
	font-size: 1.4rem;
}

.intro-block p,
.philosophy-block p {
	text-align: left;
	margin-bottom: 0;
	color: #1e293b;
}

/* Features Grid */
.features-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
	margin-top: 3rem;
}

.feature-card {
	background: #ffffff;
	padding: 2rem;
	border-radius: 15px;
	text-align: center;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
	transition: all 0.3s ease;
	border: 1px solid rgba(147, 51, 234, 0.1);
}

.feature-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 8px 25px rgba(147, 51, 234, 0.15);
}

.card-icon {
	width: 48px;
	height: 48px;
	margin: 0 auto 1.5rem;
	display: block;
}

.feature-card h3 {
	color: #ea3333;
	margin-bottom: 1rem;
	font-size: 1.4rem;
}

.feature-card p {
	text-align: left;
	margin-bottom: 1.5rem;
	line-height: 1.6;
}

.feature-list {
	list-style: none;
	padding: 0;
	text-align: left;
}

.feature-list li {
	padding: 0.5rem 0;
	border-bottom: 1px solid rgba(147, 51, 234, 0.1);
	position: relative;
	padding-left: 1.5rem;
}

.feature-list li:before {
	content: '✓';
	position: absolute;
	left: 0;
	color: #ea3333;
	font-weight: bold;
}

.feature-list li:last-child {
	border-bottom: none;
}

/* Growth Steps */
.growth-steps {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 2rem;
	margin-top: 3rem;
}

.step {
	text-align: center;
	padding: 2rem;
	background: #ffffff;
	border-radius: 15px;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
	transition: transform 0.3s ease;
	position: relative;
}

.step:hover {
	transform: translateY(-5px);
}

.step-number {
	width: 60px;
	height: 60px;
	background: #ea3333;
	color: #ffffff;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5rem;
	font-weight: bold;
	margin: 0 auto 1rem;
	position: relative;
	z-index: 2;
}

.step-icon {
	width: 32px;
	height: 32px;
	margin: 1rem auto;
	display: block;
	filter: opacity(0.8);
}

.step h3 {
	color: #1e293b;
	margin-bottom: 1rem;
	font-size: 1.3rem;
}

.step p {
	text-align: left;
	margin-bottom: 1.5rem;
	line-height: 1.6;
}

.step-details {
	text-align: left;
	margin-top: 1rem;
}

.step-details span {
	display: block;
	padding: 0.3rem 0;
	color: #6b7280;
	font-size: 0.9rem;
	border-left: 2px solid #ede9fe;
	padding-left: 1rem;
	margin-bottom: 0.5rem;
}

/* Confidence Benefits */
.confidence-benefits {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
	gap: 2rem;
	margin-top: 3rem;
}

.benefit {
	background: #ffffff;
	padding: 2rem;
	border-radius: 15px;
	text-align: center;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
	transition: transform 0.3s ease;
	border: 1px solid rgba(147, 51, 234, 0.1);
}

.benefit:hover {
	transform: translateY(-5px);
}

.benefit-icon {
	width: 48px;
	height: 48px;
	margin: 0 auto 1.5rem;
	display: block;
}

.benefit h3 {
	color: #ea3333;
	margin-bottom: 1rem;
	font-size: 1.4rem;
}

.benefit p {
	text-align: left;
	margin-bottom: 1.5rem;
	line-height: 1.6;
}

.benefit-practices {
	text-align: left;
	margin-top: 1.5rem;
	background: rgba(147, 51, 234, 0.05);
	padding: 1.5rem;
	border-radius: 10px;
}

.benefit-practices h4 {
	color: #ea3333;
	margin-bottom: 1rem;
	font-size: 1.1rem;
}

.benefit-practices ul {
	list-style: none;
	padding: 0;
}

.benefit-practices li {
	padding: 0.4rem 0;
	position: relative;
	padding-left: 1.5rem;
	color: #1e293b;
}

.benefit-practices li:before {
	content: '•';
	position: absolute;
	left: 0;
	color: #ea3333;
	font-weight: bold;
}

/* Practices Grid */
.practices-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	gap: 2rem;
	margin-top: 3rem;
}

.practice {
	background: #ffffff;
	padding: 2rem;
	border-radius: 15px;
	text-align: center;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
	transition: all 0.3s ease;
	border: 1px solid rgba(147, 51, 234, 0.1);
}

.practice:hover {
	transform: translateY(-8px);
	box-shadow: 0 8px 25px rgba(147, 51, 234, 0.15);
}

.practice-icon {
	width: 48px;
	height: 48px;
	margin: 0 auto 1.5rem;
	display: block;
}

.practice h3 {
	color: #ea3333;
	margin-bottom: 1rem;
	font-size: 1.4rem;
}

.practice p {
	text-align: left;
	margin-bottom: 1.5rem;
	line-height: 1.6;
}

.practice-details {
	text-align: left;
	margin-top: 1.5rem;
	background: rgba(147, 51, 234, 0.05);
	padding: 1.5rem;
	border-radius: 10px;
}

.practice-details h4 {
	color: #ea3333;
	margin-bottom: 1rem;
	font-size: 1.1rem;
}

.practice-details ul {
	list-style: none;
	padding: 0;
	margin-bottom: 1rem;
}

.practice-details li {
	padding: 0.4rem 0;
	position: relative;
	padding-left: 1.5rem;
	color: #1e293b;
}

.practice-details li:before {
	content: '→';
	position: absolute;
	left: 0;
	color: #ea3333;
	font-weight: bold;
}

.practice-duration {
	background: #ea3333;
	color: white;
	padding: 0.8rem;
	border-radius: 8px;
	font-size: 0.9rem;
	margin-top: 1rem;
}

.practice-duration strong {
	display: block;
	margin-bottom: 0.3rem;
}

/* Pricing */
.pricing-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
	margin-top: 3rem;
}

.pricing-card {
	background: #ffffff;
	padding: 2rem;
	border-radius: 15px;
	text-align: center;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
	transition: transform 0.3s ease;
	position: relative;
}

.pricing-card:hover {
	transform: translateY(-10px);
}

.pricing-card.featured {
	border: 3px solid #ea3333;
	transform: scale(1.05);
}

.pricing-card.featured::before {
	content: 'Populaire';
	position: absolute;
	top: -15px;
	left: 50%;
	transform: translateX(-50%);
	background: #ea3333;
	color: white;
	padding: 5px 20px;
	border-radius: 20px;
	font-size: 0.9rem;
}

.pricing-card h3 {
	color: #1e293b;
	font-size: 1.5rem;
	margin-bottom: 1rem;
}

.price {
	font-size: 3rem;
	color: #ea3333;
	font-weight: bold;
	margin-bottom: 1.5rem;
}

.pricing-card ul {
	list-style: none;
	margin-bottom: 2rem;
}

.pricing-card li {
	padding: 0.5rem 0;
	border-bottom: 1px solid #ede9fe;
}

.pricing-btn {
	background: #ea3333;
	color: white;
	padding: 12px 30px;
	border: none;
	border-radius: 25px;
	font-weight: bold;
	cursor: pointer;
	transition: background 0.3s ease;
	width: 100%;
}

.pricing-btn:hover {
	background: #3e0f0f;
}

/* Testimonials */
.testimonials-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
	margin-top: 3rem;
}

.testimonial {
	background: #ffffff;
	padding: 2rem;
	border-radius: 10px;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.testimonial p {
	font-style: italic;
	margin-bottom: 1rem;
	text-align: left;
}

.testimonial-author {
	text-align: left;
}

.testimonial-author strong {
	color: #ea3333;
	display: block;
}

/* Contact Form */
.contact-form {
	max-width: 600px;
	margin: 0 auto;
	background: #ffffff;
	padding: 2rem;
	border-radius: 15px;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

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

.form-group label {
	display: block;
	margin-bottom: 0.5rem;
	color: #1e293b;
	font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
	width: 100%;
	padding: 12px;
	border: 2px solid #ede9fe;
	border-radius: 8px;
	font-size: 1rem;
	transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
	outline: none;
	border-color: #ea3333;
}

.form-group.error input,
.form-group.error select {
	border-color: #ef4444;
}

.error-message {
	color: #ef4444;
	font-size: 0.9rem;
	margin-top: 0.5rem;
	display: block;
}

.submit-btn {
	background: #ea3333;
	color: white;
	padding: 15px 30px;
	border: none;
	border-radius: 25px;
	font-size: 1.1rem;
	font-weight: bold;
	cursor: pointer;
	transition: background 0.3s ease;
	width: 100%;
}

.submit-btn:hover {
	background: #3b0b0b;
}

.submit-btn:disabled {
	background: #9ca3af;
	cursor: not-allowed;
}

/* Contact Info */
.contact-info {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 2rem;
	margin-top: 3rem;
}

.contact-item {
	text-align: center;
	padding: 2rem;
	background: #ffffff;
	border-radius: 15px;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
	border: 1px solid rgba(147, 51, 234, 0.1);
	transition: all 0.3s ease;
}

.contact-item:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 25px rgba(147, 51, 234, 0.15);
}

.contact-header {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	margin-bottom: 1rem;
}

.contact-icon {
	width: 32px;
	height: 32px;
	transition: all 0.3s ease;
}

.contact-item:hover .contact-icon {
	transform: scale(1.1) rotate(5deg);
	filter: drop-shadow(0 4px 8px rgba(147, 51, 234, 0.3));
}

.contact-item h3 {
	color: #ea3333;
	margin: 0;
	font-size: 1.3rem;
}

.contact-item p {
	margin: 0;
	color: #1e293b;
	font-weight: 500;
}

.contact-item a {
	color: #ea3333;
	text-decoration: none;
	font-weight: 600;
	transition: all 0.3s ease;
}

.contact-item a:hover {
	color: #370f0f;
	text-decoration: underline;
	transform: scale(1.05);
}

/* Footer */
.footer {
	background: #1e293b;
	color: #ffffff;
	padding: 3rem 0 1rem;
}

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

.footer-section h3 {
	color: #ea3333;
	margin-bottom: 1rem;
}

.footer-section ul {
	list-style: none;
}

.footer-section ul li {
	margin-bottom: 0.5rem;
}

.footer-section ul li a {
	color: #ffffff;
	text-decoration: none;
	transition: color 0.3s ease;
}

.footer-section ul li a:hover {
	color: #3c1111;
}

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

/* Responsive Design */
@media (max-width: 936px) {
	.hamburger {
		display: flex;
	}

	.nav-menu {
		position: fixed;
		left: -100%;
		top: 70px;
		flex-direction: column;
		background-color: #ffffff;
		width: 100%;
		text-align: center;
		transition: 0.3s;
		box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
		padding: 2rem 0;
		z-index: 998;
	}

	.nav-menu.active {
		left: 0;
	}

	.nav-menu li {
		margin: 1rem 0;
	}

	.nav-link {
		padding: 12px 20px;
		justify-content: center;
	}

	.hamburger.active span:nth-child(2) {
		opacity: 0;
	}

	.hamburger.active span:nth-child(1) {
		transform: translateY(8px) rotate(45deg);
	}

	.hamburger.active span:nth-child(3) {
		transform: translateY(-8px) rotate(-45deg);
	}

	.hero-content h1 {
		font-size: 2.5rem;
	}

	.hero-content p {
		font-size: 1rem;
		padding: 0 1rem;
	}

	.hero-features {
		flex-direction: column;
		gap: 1rem;
		align-items: center;
	}

	.section {
		padding: 60px 0;
	}

	.section h2 {
		font-size: 2rem;
	}

	.section-header {
		flex-direction: column;
		gap: 10px;
	}

	.container {
		padding: 0 15px;
	}

	.pricing-card.featured {
		transform: none;
	}

	/* Mobile-optimized hover effects */
	.feature-card:hover {
		transform: translateY(-8px) scale(1.01);
		box-shadow: 0 15px 30px rgba(147, 51, 234, 0.2);
	}

	.pricing-card:hover {
		transform: translateY(-8px) scale(1.02);
		box-shadow: 0 20px 35px rgba(147, 51, 234, 0.25);
	}

	.testimonial:hover {
		transform: translateY(-5px);
		box-shadow: 0 10px 20px rgba(147, 51, 234, 0.15);
	}

	.gallery-item:hover {
		transform: translateY(-8px);
		box-shadow: 0 15px 30px rgba(147, 51, 234, 0.2);
	}

	.step:hover {
		transform: translateY(-5px) scale(1.01);
		box-shadow: 0 12px 25px rgba(147, 51, 234, 0.18);
	}

	.benefit:hover {
		transform: translateY(-5px);
		box-shadow: 0 12px 25px rgba(147, 51, 234, 0.18);
	}

	.practice:hover {
		transform: translateY(-6px) scale(1.01);
		box-shadow: 0 15px 28px rgba(147, 51, 234, 0.2);
	}

	/* Disable complex animations on mobile for performance */
	.feature-card::before,
	.cta-button::before,
	.pricing-btn::before {
		display: none;
	}

	/* Simplified icon hover effects for mobile */
	.nav-link:hover .nav-icon {
		transform: scale(1.1);
		filter: drop-shadow(0 2px 4px rgba(147, 51, 234, 0.3));
	}

	.section-icon:hover {
		transform: scale(1.05);
		filter: drop-shadow(0 3px 6px rgba(147, 51, 234, 0.4));
	}

	.card-icon:hover,
	.practice-icon:hover,
	.benefit-icon:hover {
		transform: scale(1.1) translateY(-2px);
		filter: drop-shadow(0 4px 8px rgba(147, 51, 234, 0.3));
	}

	.cookie-popup {
		bottom: 10px;
		right: 10px;
		width: 320px;
		max-width: calc(100vw - 20px);
	}

	.cookie-content {
		gap: 12px;
	}

	.cookie-content p {
		font-size: 0.85rem;
		line-height: 1.4;
	}

	.cookie-buttons {
		flex-direction: column;
		gap: 8px;
	}

	.cookie-accept {
		width: 100%;
		padding: 12px;
	}

	.cookie-link {
		text-align: center;
		font-size: 0.85rem;
	}

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

	.transformation-stats {
		grid-template-columns: repeat(2, 1fr);
		gap: 1rem;
		padding: 2rem 1rem;
	}

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

	.growth-steps {
		grid-template-columns: 1fr;
	}

	.confidence-benefits {
		grid-template-columns: 1fr;
	}

	.practices-grid {
		grid-template-columns: 1fr;
	}

	/* Reduce animation intensity on mobile */
	.fade-in {
		animation-duration: 0.6s;
	}

	.gallery-content.fade-in {
		animation-duration: 0.7s;
	}

	.testimonial.fade-in {
		animation-duration: 0.7s;
	}

	.pricing-card.fade-in {
		animation-duration: 0.6s;
	}

	.feature-card.fade-in {
		animation-duration: 0.5s;
	}

	.step.fade-in {
		animation-duration: 0.6s;
	}
}

@media (max-width: 480px) {
	.hero-content h1 {
		font-size: 2rem;
	}

	.navbar {
		padding: 1rem;
	}

	.nav-brand h1 {
		font-size: 1.5rem;
	}

	.features-grid,
	.practices-grid,
	.pricing-grid,
	.testimonials-grid {
		grid-template-columns: 1fr;
	}

	.growth-steps {
		grid-template-columns: 1fr;
	}

	.contact-form {
		padding: 1.5rem;
		margin: 0 1rem;
	}
}

/* Smooth Scrolling */
html {
	scroll-behavior: smooth;
}

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

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

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

@keyframes fadeInScale {
	from {
		opacity: 0;
		transform: scale(0.7) rotate(-5deg);
	}
	to {
		opacity: 1;
		transform: scale(1) rotate(0deg);
	}
}

@keyframes fadeInRotate {
	from {
		opacity: 0;
		transform: rotate(-10deg) scale(0.8);
	}
	to {
		opacity: 1;
		transform: rotate(0deg) scale(1);
	}
}

@keyframes fadeInBounce {
	0% {
		opacity: 0;
		transform: translateY(50px) scale(0.8);
	}
	50% {
		opacity: 0.8;
		transform: translateY(-10px) scale(1.05);
	}
	100% {
		opacity: 1;
		transform: translateY(0) scale(1);
	}
}

@keyframes slideInFromBottom {
	from {
		opacity: 0;
		transform: translateY(60px) rotateX(20deg);
	}
	to {
		opacity: 1;
		transform: translateY(0) rotateX(0deg);
	}
}

@keyframes slideInFromTop {
	from {
		opacity: 0;
		transform: translateY(-60px) rotateX(-20deg);
	}
	to {
		opacity: 1;
		transform: translateY(0) rotateX(0deg);
	}
}

@keyframes zoomIn {
	from {
		opacity: 0;
		transform: scale(0.5) rotate(180deg);
	}
	to {
		opacity: 1;
		transform: scale(1) rotate(0deg);
	}
}

@keyframes flipIn {
	from {
		opacity: 0;
		transform: rotateY(90deg) scale(0.8);
	}
	to {
		opacity: 1;
		transform: rotateY(0deg) scale(1);
	}
}

.fade-in {
	animation: fadeInUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
	opacity: 1 !important;
	transform: translateY(0) !important;
}

.gallery-content.fade-in {
	animation: fadeInLeft 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
	opacity: 1 !important;
	transform: translateX(0) !important;
}

.gallery-item.fade-in {
	animation: slideInFromBottom 0.9s cubic-bezier(0.175, 0.885, 0.32, 1.275)
		forwards;
	opacity: 1 !important;
	transform: translateY(0) rotateX(0deg) !important;
}

.testimonial.fade-in {
	animation: fadeInBounce 0.9s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
	opacity: 1 !important;
	transform: translateY(0) scale(1) !important;
}

.pricing-card.fade-in {
	animation: fadeInScale 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
	opacity: 1 !important;
	transform: scale(1) rotate(0deg) !important;
}

.feature-card.fade-in {
	animation: slideInFromBottom 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94)
		forwards;
	opacity: 1 !important;
	transform: translateY(0) rotateX(0deg) !important;
}

.step.fade-in {
	animation: fadeInRight 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
	opacity: 1 !important;
	transform: translateX(0) !important;
}

.benefit.fade-in {
	animation: flipIn 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
	opacity: 1 !important;
	transform: rotateY(0deg) scale(1) !important;
}

.practice.fade-in {
	animation: zoomIn 0.9s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
	opacity: 1 !important;
	transform: scale(1) rotate(0deg) !important;
}

.stat-item.fade-in {
	animation: fadeInBounce 0.7s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
	opacity: 1 !important;
	transform: translateY(0) scale(1) !important;
}

.hero-feature.fade-in {
	animation: slideInFromTop 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
	opacity: 1 !important;
	transform: translateY(0) rotateX(0deg) !important;
}

/* Staggered animations for multiple elements */
.testimonial.fade-in:nth-child(1) {
	animation-delay: 0.1s;
}

.testimonial.fade-in:nth-child(2) {
	animation-delay: 0.2s;
}

.testimonial.fade-in:nth-child(3) {
	animation-delay: 0.3s;
}

.pricing-card.fade-in:nth-child(1) {
	animation-delay: 0.1s;
}

.pricing-card.fade-in:nth-child(2) {
	animation-delay: 0.2s;
}

.pricing-card.fade-in:nth-child(3) {
	animation-delay: 0.3s;
}

.feature-card.fade-in:nth-child(1) {
	animation-delay: 0.1s;
}

.feature-card.fade-in:nth-child(2) {
	animation-delay: 0.2s;
}

.feature-card.fade-in:nth-child(3) {
	animation-delay: 0.3s;
}

.step.fade-in:nth-child(1) {
	animation-delay: 0.1s;
}

.step.fade-in:nth-child(2) {
	animation-delay: 0.2s;
}

.step.fade-in:nth-child(3) {
	animation-delay: 0.3s;
}

.step.fade-in:nth-child(4) {
	animation-delay: 0.4s;
}

/* Gallery Section */
.gallery-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
	gap: 3rem;
	margin: 3rem 0;
}

.gallery-item {
	background: #ffffff;
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
	transition: all 0.3s ease;
	border: 1px solid rgba(147, 51, 234, 0.1);
}

.gallery-item:hover {
	transform: translateY(-10px);
	box-shadow: 0 15px 35px rgba(147, 51, 234, 0.2);
}

.gallery-image {
	position: relative;
	overflow: hidden;
	height: 200px;
}

.gallery-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-img {
	transform: scale(1.05);
}

.gallery-content {
	padding: 2rem;
}

.gallery-content h3 {
	color: #ea3333;
	margin-bottom: 1rem;
	font-size: 1.4rem;
}

.gallery-content p {
	text-align: left;
	margin-bottom: 1.5rem;
	line-height: 1.6;
	color: #1e293b;
}

.gallery-features {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
}

.feature-tag {
	background: rgba(147, 51, 234, 0.1);
	color: #ea3333;
	padding: 0.4rem 0.8rem;
	border-radius: 15px;
	font-size: 0.8rem;
	font-weight: 500;
	border: 1px solid rgba(147, 51, 234, 0.2);
}

/* Transformation Stats */
.transformation-stats {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 2rem;
	margin: 4rem 0 2rem;
	padding: 3rem 0;
	background: rgba(147, 51, 234, 0.05);
	border-radius: 20px;
	border: 1px solid rgba(147, 51, 234, 0.1);
}

.stat-item {
	text-align: center;
	padding: 1rem;
}

.stat-number {
	font-size: 3rem;
	font-weight: bold;
	color: #ea3333;
	margin-bottom: 0.5rem;
	display: block;
}

.stat-label {
	color: #1e293b;
	font-weight: 500;
	font-size: 1rem;
}

/* Enhanced Hover Effects */
.feature-card {
	transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
	position: relative;
	overflow: hidden;
}

.feature-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(
		90deg,
		transparent,
		rgba(147, 51, 234, 0.1),
		transparent
	);
	transition: left 0.6s ease;
}

.feature-card:hover::before {
	left: 100%;
}

.feature-card:hover {
	transform: translateY(-12px) scale(1.02);
	box-shadow: 0 20px 40px #ea3333;
}

.pricing-card {
	transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
	position: relative;
}

.pricing-card:hover {
	transform: translateY(-15px) scale(1.03);
	box-shadow: 0 25px 50px #ea3333;
}

.pricing-card:hover .price {
	transform: scale(1.1);
	color: #ea3333;
}

.testimonial {
	transition: all 0.3s ease;
	position: relative;
}

.testimonial:hover {
	transform: translateY(-8px);
	box-shadow: 0 15px 30px #ea3333;
}

.gallery-item {
	transition: all 0.4s ease;
	position: relative;
}

.gallery-item:hover {
	transform: translateY(-12px);
	box-shadow: 0 20px 40px #ea3333;
}

.gallery-item:hover .gallery-img {
	transform: scale(1.08);
}

.step {
	transition: all 0.3s ease;
	position: relative;
}

.step:hover {
	transform: translateY(-8px) scale(1.02);
	box-shadow: 0 15px 30px #ea3333;
}

.step:hover .step-number {
	transform: scale(1.2) rotate(360deg);
	background: linear-gradient(45deg, #ea3333, #7c3aed);
}

.benefit {
	transition: all 0.3s ease;
	position: relative;
}

.benefit:hover {
	transform: translateY(-8px);
	box-shadow: 0 15px 30px #ea3333;
}

.practice {
	transition: all 0.4s ease;
	position: relative;
}

.practice:hover {
	transform: translateY(-10px) scale(1.02);
	box-shadow: 0 20px 35px #ea3333;
}

/* Icon Hover Effects */
.nav-icon,
.section-icon,
.card-icon,
.practice-icon,
.benefit-icon,
.hero-icon {
	transition: all 0.3s ease;
}

.nav-link:hover .nav-icon {
	transform: scale(1.2) rotate(5deg);
	filter: drop-shadow(0 4px 8px #ea3333);
}

.section-icon:hover {
	transform: scale(1.1) rotate(-5deg);
	filter: drop-shadow(0 6px 12px #ea3333);
}

.card-icon:hover,
.practice-icon:hover,
.benefit-icon:hover {
	transform: scale(1.15) translateY(-3px);
	filter: drop-shadow(0 8px 16px #ea3333);
}

/* Button Hover Effects */
.cta-button {
	transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
	position: relative;
	overflow: hidden;
}

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

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

.cta-button:hover {
	transform: translateY(-4px) scale(1.05);
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.pricing-btn {
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.pricing-btn::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 0;
	height: 0;
	background: rgba(255, 255, 255, 0.2);
	border-radius: 50%;
	transform: translate(-50%, -50%);
	transition:
		width 0.4s ease,
		height 0.4s ease;
}

.pricing-btn:hover::before {
	width: 300px;
	height: 300px;
}

.pricing-btn:hover {
	transform: translateY(-3px);
	box-shadow: 0 10px 20px rgba(147, 51, 234, 0.3);
}

.submit-btn {
	transition: all 0.3s ease;
	position: relative;
}

.submit-btn:hover {
	transform: translateY(-3px) scale(1.02);
	box-shadow: 0 12px 24px rgba(147, 51, 234, 0.3);
}

.nav-button {
	transition: all 0.3s ease;
	position: relative;
}

.nav-button:hover {
	transform: translateY(-2px) scale(1.05);
	box-shadow: 0 8px 16px rgba(147, 51, 234, 0.3);
}

.back-link {
	transition: all 0.3s ease;
	position: relative;
}

.back-link:hover {
	transform: translateY(-2px) scale(1.02);
	box-shadow: 0 6px 12px rgba(147, 51, 234, 0.2);
}

/* Feature Tags Hover */
.feature-tag {
	transition: all 0.3s ease;
	cursor: pointer;
}

.feature-tag:hover {
	background: #ea3333;
	color: white;
	transform: translateY(-2px) scale(1.05);
	box-shadow: 0 4px 8px rgba(147, 51, 234, 0.3);
}

/* Stat Items Hover */
.stat-item {
	transition: all 0.3s ease;
	cursor: pointer;
}

.stat-item:hover {
	transform: translateY(-5px) scale(1.05);
}

.stat-item:hover .stat-number {
	transform: scale(1.1);
	text-shadow: 0 4px 8px rgba(147, 51, 234, 0.3);
}

/* Loading States */
.loading {
	opacity: 0.7;
	pointer-events: none;
}

.loading::after {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 20px;
	height: 20px;
	margin: -10px 0 0 -10px;
	border: 2px solid #ea3333;
	border-radius: 50%;
	border-top-color: transparent;
	animation: spin 1s linear infinite;
}

@keyframes spin {
	to {
		transform: rotate(360deg);
	}
}
