*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
	background: linear-gradient(135deg, #6b46c1 0%, #9333ea 100%);
	color: #fff;
	overflow-x: hidden;
}

.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

.poiret-one-regular {
  font-family: "Poiret One", sans-serif;
  font-weight: 400;
  font-style: normal;
}

/* Header */
header {
	padding: 20px 0;
	position: fixed;
	width: 100%;
	top: 0;
	z-index: 1000;
	background: rgba(107, 70, 193, 0.95);
	backdrop-filter: blur(10px);
	animation: slideDown 0.5s ease-out;
}

@keyframes slideDown {
	from {
		transform: translateY(-100%);
		opacity: 0;
	}
	to {
		transform: translateY(0);
		opacity: 1;
	}
}

nav {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.logo {
	font-size: 28px;
	font-weight: bold;
	background: linear-gradient(45deg, #fff, #e9d5ff);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.nav-links {
	display: flex;
	gap: 30px;
	list-style: none;
}

.nav-links a {
	color: #fff;
	text-decoration: none;
	transition: all 0.3s;
	position: relative;
}

.nav-links a:after {
	content: '';
	position: absolute;
	bottom: -5px;
	left: 0;
	width: 0;
	height: 2px;
	background: #e9d5ff;
	transition: width 0.3s;
}

.nav-links a:hover:after {
	width: 100%;
}

/* Hero Section */
.hero {
	min-height: 100vh;
	display: flex;
	align-items: center;
	padding-top: 80px;
	position: relative;
	overflow: hidden;
}

.hero-content {
	flex: 1;
	z-index: 2;
	animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

h1 {
	font-size: 56px;
	margin-bottom: 20px;
	line-height: 1.2;
	animation: fadeInUp 1s ease-out 0.2s both;
}

.gradient-text {
	background: linear-gradient(45deg, #e9d5ff, #fff, #c4b5fd);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	background-size: 200% auto;
	animation: shine 3s linear infinite;
}

@keyframes shine {
	to {
		background-position: 200% center;
	}
}

.hero p {
	font-size: 20px;
	margin-bottom: 30px;
	opacity: 0.9;
	animation: fadeInUp 1s ease-out 0.4s both;
}

.cta-buttons {
	display: flex;
	gap: 20px;
	animation: fadeInUp 1s ease-out 0.6s both;
}

.btn {
	padding: 15px 40px;
	border: none;
	border-radius: 50px;
	font-size: 16px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s;
	text-decoration: none;
	display: inline-block;
}

.btn-primary {
	background: linear-gradient(45deg, #e9d5ff, #c4b5fd);
	color: #6b46c1;
	box-shadow: 0 10px 30px rgba(233, 213, 255, 0.3);
}

.btn-primary:hover {
	transform: translateY(-3px);
	box-shadow: 0 15px 40px rgba(233, 213, 255, 0.4);
}

.btn-secondary {
	background: transparent;
	color: #fff;
	border: 2px solid #fff;
}

.btn-secondary:hover {
	background: #fff;
	color: #6b46c1;
}

/* Floating Animation */
.hero-visual {
	position: absolute;
	right: 5%;
	top: 50%;
	transform: translateY(-50%);
	width: 400px;
	height: 400px;
	animation: float 6s ease-in-out infinite;
}

@keyframes float {
	0%, 100% {
		transform: translateY(-50%) translateX(0);
	}
	50% {
		transform: translateY(-50%) translateX(20px);
	}
}

.circle {
	position: absolute;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(5px);
}

.circle-1 {
	width: 300px;
	height: 300px;
	top: 0;
	left: 0;
	animation: pulse 4s ease-in-out infinite;
}

.circle-2 {
	width: 200px;
	height: 200px;
	bottom: 0;
	right: 0;
	animation: pulse 4s ease-in-out infinite 1s;
}

.circle-3 {
	width: 150px;
	height: 150px;
	top: 50%;
	right: 10%;
	animation: pulse 4s ease-in-out infinite 2s;
}

@keyframes pulse {
	0%, 100% {
		transform: scale(1);
		opacity: 0.3;
	}
	50% {
		transform: scale(1.1);
		opacity: 0.5;
	}
}

/* Features Section */
.features {
	padding: 100px 0;
	background: linear-gradient(135deg, #9333ea 0%, #6b46c1 100%);
}

.section-title {
	text-align: center;
	font-size: 42px;
	margin-bottom: 60px;
}

.features-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 40px;
}

.feature-card {
	background: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(10px);
	padding: 40px;
	border-radius: 20px;
	transition: all 0.3s;
	border: 1px solid rgba(255, 255, 255, 0.2);
}

.feature-card:hover {
	transform: translateY(-10px);
	background: rgba(255, 255, 255, 0.15);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.feature-icon {
	font-size: 48px;
	margin-bottom: 20px;
	display: block;
}

.feature-card h3 {
	font-size: 24px;
	margin-bottom: 15px;
}

.feature-card p {
	opacity: 0.9;
	line-height: 1.6;
}

/* How It Works */
.how-it-works {
	padding: 100px 0;
	background: #fff;
	color: #333;
}

.steps {
	display: flex;
	justify-content: space-between;
	gap: 40px;
	margin-top: 60px;
}

.step {
	flex: 1;
	text-align: center;
	position: relative;
}

.step-number {
	width: 80px;
	height: 80px;
	background: linear-gradient(135deg, #6b46c1, #9333ea);
	color: #fff;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 32px;
	font-weight: bold;
	margin: 0 auto 20px;
	box-shadow: 0 10px 30px rgba(107, 70, 193, 0.3);
}

.step h3 {
	font-size: 22px;
	margin-bottom: 15px;
	color: #6b46c1;
}

/* Updated Pricing Styles */
.pricing {
	padding: 100px 0;
	background: linear-gradient(135deg, #6b46c1 0%, #9333ea 100%);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    border: 2px solid rgba(255, 255, 255, 0.2);
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.5);
}

.pricing-card.featured {
    border: 2px solid #e9d5ff;
    background: rgba(107, 70, 193, 0.3);
    position: relative;
    transform: scale(1.05);
}

.badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #e9d5ff;
    color: #6b46c1;
    padding: 5px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: bold;
}

.price {
    font-size: 48px;
    font-weight: bold;
    margin: 15px 0;
}

.price span { font-size: 20px; opacity: 0.7; }

.features-list {
    text-align: left;
    margin: 25px 0;
    flex-grow: 1;
    list-style: none;
}

.features-list li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 14px;
    line-height: 1.4;
}

/* CTA Section */
.cta-section {
	padding: 100px 0;
	text-align: center;
	background: #fff;
	color: #333;
}

.cta-section h2 {
	font-size: 42px;
	margin-bottom: 20px;
	color: #6b46c1;
}

/* Interest Form Section */
.interest-form-section {
	padding: 100px 0;
	background: linear-gradient(135deg, #7c3aed 0%, #6b46c1 100%);
}

.form-container {
	max-width: 600px;
	margin: 0 auto;
	background: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(10px);
	padding: 50px;
	border-radius: 20px;
	border: 1px solid rgba(255, 255, 255, 0.2);
}

.form-group {
	margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
	width: 100%;
	padding: 15px;
	border: 2px solid rgba(255, 255, 255, 0.3);
	border-radius: 10px;
	font-size: 16px;
	background: rgba(255, 255, 255, 0.9);
	color: #333;
	transition: all 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
	outline: none;
	border-color: #e9d5ff;
	background: #fff;
	box-shadow: 0 0 0 3px rgba(233, 213, 255, 0.2);
}

.form-group textarea {
	resize: vertical;
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.form-message {
	margin-top: 20px;
	padding: 15px;
	border-radius: 10px;
	text-align: center;
	font-weight: 600;
	display: none;
}

.form-message.success {
	background: rgba(34, 197, 94, 0.2);
	border: 2px solid #22c55e;
	color: #fff;
	display: block;
}

.form-message.error {
	background: rgba(239, 68, 68, 0.2);
	border: 2px solid #ef4444;
	color: #fff;
	display: block;
}

/* Footer */
footer {
	padding: 40px 0;
	text-align: center;
	background: #1a1a2e;
}

.footer-content {
	display: flex;
	flex-direction: column;
	gap: 30px;
	align-items: center;
}

.social-links {
	display: flex;
	gap: 20px;
	justify-content: center;
	flex-wrap: wrap;
}

.social-link {
	width: 45px;
	height: 45px;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	text-decoration: none;
	font-size: 20px;
	transition: all 0.3s;
	border: 2px solid transparent;
}

.social-link:hover {
	background: linear-gradient(45deg, #6b46c1, #9333ea);
	border-color: #e9d5ff;
	transform: translateY(-3px) scale(1.1);
	box-shadow: 0 8px 20px rgba(107, 70, 193, 0.4);
}

.social-link svg {
	width: 22px;
	height: 22px;
	fill: currentColor;
}

.footer-text {
	font-size: 14px;
	opacity: 0.8;
	line-height: 1.6;
}

@media (max-width: 768px) {
	h1 {
		font-size: 36px;
	}

	.hero-visual {
		display: none;
	}

	.steps {
		flex-direction: column;
	}

	.nav-links {
		display: none;
	}

	.social-links {
		gap: 15px;
	}

	.social-link {
		width: 40px;
		height: 40px;
	}

	.footer-text {
		font-size: 12px;
	}
}