@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap');

:root {
	--text-color: #f0f0f0;
	--background-color: #121212;
	--primary-color: #6200ea;
	--secondary-color: white;
	--accent-color: #ff4081;
	--success-color: #00e676;
	--warning-color: #ffab00;
	--dark-gradient: linear-gradient(135deg, #1a1a1a, #0a0a0a);
	--primary-gradient: linear-gradient(135deg, #6200ea, #3700b3);
	--accent-gradient: linear-gradient(135deg, #ff4081, #c51162);
}

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

a {
	text-decoration: none !important;
}

body {
	font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
	background-color: var(--background-color);
	color: var(--text-color);
	line-height: 1.6;
	overflow-x: hidden;
}

header {
	padding: 1rem 5%;
	position: fixed;
	width: 100%;
	top: 0;
	z-index: 1000;
	backdrop-filter: blur(20px) saturate(1.5) brightness(0.5);
	-webkit-backdrop-filter: blur(20px) saturate(1.5) brightness(0.5);
	border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

nav {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.logo {
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--text-color);
	text-decoration: none;
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.logo img {
	filter: invert(1);
	height: 32px;
}

.nav-links {
	display: flex;
	gap: 2rem;
}

.nav-links a {
	color: var(--text-color);
	text-decoration: none;
	font-weight: 500;
	transition: color 0.3s ease;
	font-size: 0.95rem;
	position: relative;
}

.nav-links a:after {
	content: '';
	position: absolute;
	width: 0;
	height: 2px;
	bottom: -4px;
	left: 0;
	background-color: var(--primary-color);
	transition: width 0.3s ease;
}

.nav-links a:hover:after {
	width: 100%;
}

.nav-links a:hover {
	color: var(--secondary-color);
}

.nav-buttons {
	display: flex;
	gap: 1rem;
	align-items: center;
}

.login-button {
	color: var(--text-color);
	text-decoration: none;
	font-weight: 600;
	transition: color 0.3s ease;
	font-size: 0.95rem;
}

.signup-button {
	background: var(--primary-gradient);
	color: var(--text-color);
	padding: 0.6rem 1.2rem;
	border-radius: 8px;
	font-size: 0.95rem;
	font-weight: 600;
	text-decoration: none;
	transition: all 0.2s linear;
	display: inline-block;
	border: none;
	cursor: pointer;
}

.signup-button:hover {
	box-shadow: 0 5px 15px rgba(98, 0, 234, 0.4);
	transform: translateY(-2px);
}

.hamburger {
	display: none;
	cursor: pointer;
	width: 24px;
	height: 24px;
	position: relative;
}

.hamburger span {
	display: block;
	position: absolute;
	height: 2px;
	width: 100%;
	background: var(--text-color);
	border-radius: 9px;
	left: 0;
	transform: rotate(0deg);
	transition: .25s ease-in-out;
}

.hamburger span:nth-child(1) {
	top: 6px;
}

.hamburger span:nth-child(2) {
	top: 12px;
}

.hamburger span:nth-child(3) {
	top: 18px;
}

.hamburger.open span:nth-child(1) {
	top: 12px;
	transform: rotate(135deg);
}

.hamburger.open span:nth-child(2) {
	opacity: 0;
	left: -60px;
}

.hamburger.open span:nth-child(3) {
	top: 12px;
	transform: rotate(-135deg);
}

.hero {
	background: linear-gradient(135deg, #000000, #0a0a0a);
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0 5%;
	position: relative;
	overflow: hidden;
}

.hero-content {
	text-align: left;
	width: 100%;
	max-width: 650px;
	flex-shrink: 0;
	z-index: 2;
	padding: 6rem 0;
}

.hero-badge {
	background-color: rgba(98, 0, 234, 0.2);
	color: var(--primary-color);
	padding: 0.5rem 1rem;
	border-radius: 50px;
	display: inline-block;
	font-weight: 600;
	font-size: 0.9rem;
	margin-bottom: 1.5rem;
	border: 1px solid rgba(98, 0, 234, 0.3);
}

h1 {
	font-size: clamp(2.5rem, 5vw, 4rem);
	margin-bottom: 1.5rem;
	line-height: 1.1;
	font-weight: 800;
}

h1 .highlight {
	background: linear-gradient(135deg, #6200ea, #b388ff);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	text-fill-color: transparent;
}

.hero p {
	font-size: 1.1rem;
	margin-bottom: 2.5rem;
	opacity: 0.9;
	line-height: 1.7;
}

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

.cta-button {
	background: var(--primary-gradient);
	color: var(--text-color);
	padding: 0.9rem 2rem;
	border-radius: 10px;
	font-size: 1rem;
	font-weight: 600;
	text-decoration: none;
	transition: all 0.2s linear;
	display: inline-block;
	border: none;
	cursor: pointer;
}

.cta-button:hover {
	box-shadow: 0 5px 15px rgba(98, 0, 234, 0.4);
	transform: translateY(-2px);
}

.alt-button {
	background: transparent;
	color: var(--text-color);
	padding: 0.8rem 1.9rem;
	border-radius: 10px;
	font-size: 1rem;
	font-weight: 600;
	text-decoration: none;
	transition: all 0.2s linear;
	display: inline-block;
	border: 1px solid rgba(255, 255, 255, 0.2);
}

.alt-button:hover {
	background: rgba(255, 255, 255, 0.05);
}

.stat-container {
	display: flex;
	gap: 2.5rem;
	margin-top: 1rem;
}

.stat-item {
	display: flex;
	flex-direction: column;
}

.stat-value {
	font-size: 2rem;
	font-weight: 700;
	margin-bottom: 0.25rem;
	background: linear-gradient(135deg, #6200ea, #b388ff);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	text-fill-color: transparent;
}

.stat-label {
	font-size: 0.9rem;
	opacity: 0.7;
}

.hero-video-wrapper {
	width: 50%;
	position: relative;
	z-index: 2;
	display: flex;
	justify-content: center;
	align-items: center;
}

.hero-video {
	width: 100%;
	max-width: 600px;
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
	position: relative;
	z-index: 3;
}

.hero-video-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, rgba(0, 0, 0, 0.5), rgba(98, 0, 234, 0.3));
	z-index: 2;
	pointer-events: none;
}

.hero-video video {
	width: 100%;
	display: block;
}

.floating-blob {
	position: absolute;
	right: 14%;
	top: 51%;
	transform: translateY(-50%);
	width: 450px;
	height: 450px;
	background: radial-gradient(circle, rgba(98, 0, 234, 0.2) 0%, rgba(3, 218, 198, 0.1) 100%);
	border-radius: 50%;
	filter: blur(70px);
	animation: float 10s ease-in-out infinite;
	mix-blend-mode: screen;
	z-index: 1;
	opacity: 0.7;
}

.floating-blob-2 {
	position: absolute;
	left: 10%;
	top: 30%;
	transform: translateY(-50%);
	width: 350px;
	height: 350px;
	background: radial-gradient(circle, rgba(255, 64, 129, 0.15) 0%, rgba(140, 20, 252, 0.1) 100%);
	border-radius: 50%;
	filter: blur(70px);
	animation: float 12s ease-in-out infinite alternate;
	mix-blend-mode: screen;
	z-index: 1;
	opacity: 0.6;
}

@keyframes float {
	0% {
		transform: translateY(-50%) translateX(0) scale(1);
	}

	50% {
		transform: translateY(-60%) translateX(-20px) scale(1.05);
	}

	100% {
		transform: translateY(-50%) translateX(0) scale(1);
	}
}

.hero-bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0.1;
	pointer-events: none;
	z-index: 0;
}

.wave {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	overflow: hidden;
	line-height: 0;
	z-index: 4;
}

.wave svg {
	position: relative;
	display: block;
	width: calc(100% + 1.3px);
	height: 150px;
}

.wave .shape-fill {
	fill: var(--background-color);
}

.section {
	padding: 6rem 5%;
}

.dark-section {
	background-color: #0a0a0a;
}

.gradient-background {
	background: linear-gradient(45deg, rgba(0, 255, 241, 0.03), rgba(0, 3, 255, 0.02), var(--background-color), var(--background-color), var(--background-color), var(--background-color), rgba(255, 161, 66, 0.01), rgba(193, 109, 255, 0.04)),
		repeating-linear-gradient(90deg,
			var(--background-color),
			var(--background-color) 30px,
			rgba(255, 255, 255, 0.03) 30px,
			rgba(255, 255, 255, 0.03) 30.5px);
	background-blend-mode: overlay;
}

.section-header {
	text-align: center;
	max-width: 800px;
	margin: 0 auto 4rem auto;
}

.section-badge {
	background-color: rgba(98, 0, 234, 0.1);
	color: var(--primary-color);
	padding: 0.5rem 1rem;
	border-radius: 50px;
	display: inline-block;
	font-weight: 600;
	font-size: 0.85rem;
	margin-bottom: 1rem;
	border: 1px solid rgba(98, 0, 234, 0.2);
}

.section-title {
	font-size: 2.5rem;
	margin-bottom: 1.5rem;
	line-height: 1.2;
}

.section-description {
	font-size: 1.1rem;
	opacity: 0.8;
	max-width: 700px;
	margin: 0 auto;
}

.section-content {
	max-width: 1900px;
	margin: 0 auto;
}

.feature-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
	gap: 2rem;
	margin-top: 3rem;
}

.feature-item {
	background-color: rgba(255, 255, 255, 0.03);
	padding: 2.5rem;
	border-radius: 16px;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	backdrop-filter: blur(20px) saturate(2);
	-webkit-backdrop-filter: blur(20px) saturate(2);
	border: 1px solid rgba(255, 255, 255, 0.05);
	position: relative;
	overflow: hidden;
}

.feature-item:hover {
	transform: translateY(-5px);
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.feature-item:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, rgba(98, 0, 234, 0.1), transparent);
	opacity: 0;
	transition: opacity 0.3s ease;
}

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

.feature-icon {
	width: 60px;
	height: 60px;
	background: var(--primary-gradient);
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 1.5rem;
}

.feature-icon i {
	font-size: 1.8rem;
	color: var(--secondary-color);
}

.feature-item h3 {
	font-size: 1.5rem;
	margin-bottom: 1rem;
	font-weight: 700;
}

.feature-item p {
	font-size: 1rem;
	opacity: 0.8;
	line-height: 1.7;
}

.tabs-container {
	max-width: 1200px;
	margin: 4rem auto 0;
}

.tabs-header {
	display: flex;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	margin-bottom: 2rem;
	overflow-x: auto;
	padding-bottom: 0.5rem;
}

.tab-button {
	padding: 1rem 1.5rem;
	background: transparent;
	border: none;
	color: var(--text-color);
	opacity: 0.6;
	font-size: 1rem;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
	white-space: nowrap;
}

.tab-button.active {
	opacity: 1;
	position: relative;
}

.tab-button.active:after {
	content: '';
	position: absolute;
	bottom: -0.5rem;
	left: 0;
	width: 100%;
	height: 3px;
	background: var(--primary-gradient);
	border-radius: 3px;
}

.tab-content {
	display: none;
	animation: fadeIn 0.6s ease;
}

.tab-content.active {
	display: block;
}

@keyframes fadeIn {
	from {
		opacity: 0;
		transform: translateY(10px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

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

.use-case-item {
	background-color: rgba(255, 255, 255, 0.03);
	padding: 2rem;
	border-radius: 12px;
	border: 1px solid rgba(255, 255, 255, 0.05);
}

.use-case-item h4 {
	font-size: 1.2rem;
	margin-bottom: 1rem;
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.use-case-item h4 i {
	color: var(--primary-color);
}

.use-case-item p {
	font-size: 0.95rem;
	opacity: 0.8;
	line-height: 1.7;
}

.use-case-image {
	margin-bottom: 2rem;
	position: relative;
	overflow: hidden;
	border-radius: 16px;
	box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
}

.use-case-image img {
	width: 100%;
	height: auto;
	display: block;
}

.how-it-works-wrapper {
	max-width: 1000px;
	margin: 3rem auto 0;
	position: relative;
}

.how-it-works-line {
	position: absolute;
	top: 5rem;
	left: 4%;
	transform: translateX(-50%);
	width: 2px;
	height: calc(100% - 10rem);
	background: linear-gradient(to bottom, rgba(98, 0, 234, 0.7), rgba(98, 0, 234, 0.2));
	z-index: 1;
}

.how-it-works-steps {
	display: flex;
	flex-direction: column;
	gap: 5rem;
	position: relative;
	z-index: 2;
}

.step {
	display: flex;
	align-items: flex-start;
	gap: 2rem;
}

.step-number-container {
	flex-shrink: 0;
	width: 80px;
	height: 80px;
	background: var(--primary-gradient);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 10px 30px rgba(98, 0, 234, 0.3);
}

.step-number {
	font-size: 2rem;
	font-weight: bold;
	color: var(--text-color);
}

.step-content {
	background-color: rgba(255, 255, 255, 0.03);
	padding: 2rem;
	border-radius: 12px;
	border: 1px solid rgba(255, 255, 255, 0.05);
	flex-grow: 1;
}

.step-content h3 {
	font-size: 1.5rem;
	margin-bottom: 1rem;
	font-weight: 700;
}

.step-content p {
	font-size: 1rem;
	opacity: 0.8;
	line-height: 1.7;
}

.testimonials-container {
	margin-top: 4rem;
}

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

.testimonial-item {
	background-color: rgba(255, 255, 255, 0.03);
	padding: 2.5rem;
	border-radius: 16px;
	transition: transform 0.3s ease;
	border: 1px solid rgba(255, 255, 255, 0.05);
	height: 100%;
	display: flex;
	flex-direction: column;
}

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

.testimonial-stars {
	margin-bottom: 1.5rem;
	color: #FFC107;
	font-size: 1.2rem;
}

.testimonial-content {
	font-size: 1.1rem;
	line-height: 1.7;
	margin-bottom: 2rem;
	flex-grow: 1;
}

.testimonial-author {
	display: flex;
	align-items: center;
	gap: 1rem;
	margin-top: auto;
}

.testimonial-avatar {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background-color: var(--primary-color);
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: bold;
	font-size: 1.2rem;
	color: white;
}

.testimonial-info h4 {
	font-size: 1.1rem;
	margin-bottom: 0.25rem;
}

.testimonial-info p {
	font-size: 0.9rem;
	opacity: 0.7;
}

.logo-cloud {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 3rem;
	margin-top: 3rem;
	margin-bottom: 2rem;
}

.logo-item {
	max-width: 120px;
	height: 60px;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0.6;
	transition: opacity 0.3s ease;
}

.logo-item:hover {
	opacity: 1;
}

.logo-item img {
	max-width: 100%;
	max-height: 100%;
	filter: grayscale(100%) brightness(10);
}

.pricing-container {
	display: flex;
	flex-wrap: wrap;
	gap: 2rem;
	justify-content: center;
	margin-top: 4rem;
}

.pricing-card {
	background-color: rgba(255, 255, 255, 0.03);
	border-radius: 16px;
	border: 1px solid rgba(255, 255, 255, 0.05);
	padding: 3rem 2rem;
	max-width: 350px;
	width: 100%;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	position: relative;
	overflow: hidden;
	backdrop-filter: blur(50px) saturate(2.5);
}

.pricing-card.popular {
	border: 1px solid rgba(98, 0, 234, 0.3);
	transform: scale(1.05);
}

.pricing-card.popular:before {
	content: 'Most Popular';
	position: absolute;
	top: 12px;
	right: -24px;
	background: var(--primary-gradient);
	padding: 0.3rem 2rem;
	font-size: 0.8rem;
	font-weight: bold;
	transform: rotate(45deg);
}

.pricing-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.pricing-card.popular:hover {
	transform: translateY(-5px) scale(1.05);
}

.pricing-header {
	text-align: center;
	margin-bottom: 2rem;
}

.pricing-title {
	font-size: 1.3rem;
	margin-bottom: 0.5rem;
	font-weight: 700;
}

.pricing-subtitle {
	font-size: 0.9rem;
	opacity: 0.7;
	margin-bottom: 1.5rem;
}

.pricing-price {
	font-size: 2.5rem;
	font-weight: 800;
	margin-bottom: 0.5rem;
	color: var(--text-color);
}

.pricing-price span {
	font-size: 1rem;
	font-weight: normal;
	opacity: 0.7;
}

.pricing-duration {
	font-size: 0.9rem;
	opacity: 0.7;
	margin-bottom: 1rem;
}

.pricing-features {
	margin-bottom: 2rem;
}

.pricing-feature {
	display: flex;
	align-items: flex-start;
	gap: 0.75rem;
	margin-bottom: 1rem;
	font-size: 0.95rem;
}

.pricing-feature i {
	color: var(--primary-color);
	margin-top: 0.2rem;
}

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

.pricing-button {
	display: inline-block;
	width: 100%;
	padding: 0.9rem 0;
	text-align: center;
	border-radius: 10px;
	font-weight: 600;
	transition: all 0.2s ease;
	text-decoration: none;
}

.pricing-primary {
	background: var(--primary-gradient);
	color: var(--text-color);
	border: none;
	box-shadow: 0 5px 15px rgba(98, 0, 234, 0.2);
}

.pricing-primary:hover {
	box-shadow: 0 8px 25px rgba(98, 0, 234, 0.4);
	transform: translateY(-2px);
}

.pricing-secondary {
	background: transparent;
	color: var(--text-color);
	border: 1px solid rgba(255, 255, 255, 0.2);
}

.pricing-secondary:hover {
	background: rgba(255, 255, 255, 0.05);
}

.pricing-badge {
	display: inline-block;
	background-color: rgba(255, 64, 129, 0.15);
	color: var(--accent-color);
	padding: 0.3rem 0.8rem;
	border-radius: 50px;
	font-size: 0.8rem;
	font-weight: 600;
	margin-left: 0.5rem;
	border: 1px solid rgba(255, 64, 129, 0.3);
}

.faq-list {
	max-width: 800px;
	margin: 4rem auto 0;
}

.faq-item {
	background-color: rgba(255, 255, 255, 0.03);
	border-radius: 12px;
	padding: 1.5rem;
	margin-bottom: 1.5rem;
	border: 1px solid rgba(255, 255, 255, 0.05);
}

.faq-question {
	font-size: 1.2rem;
	font-weight: 600;
	color: var(--secondary-color);
	cursor: pointer;
	padding-right: 2.5rem;
	position: relative;
}

.faq-question::after {
	content: '+';
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	font-size: 1.5rem;
	transition: transform 0.3s ease;
}

.faq-question.active::after {
	transform: translateY(-50%) rotate(45deg);
}

.faq-answer {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease-out, opacity 0.3s ease-out, margin 0.3s ease-out;
	opacity: 0;
	margin-top: 0;
	font-size: 1rem;
	line-height: 1.7;
}

.faq-question.active+.faq-answer {
	opacity: 1;
	margin-top: 1rem;
	max-height: 1000px;
}

.email-signup {
	padding: 8rem 5%;
	text-align: center;
	position: relative;
	overflow: hidden;
}

.email-signup-content {
	position: relative;
	z-index: 2;
	max-width: 700px;
	margin: 0 auto;
}

.email-signup h2 {
	font-size: 2.5rem;
	margin-bottom: 1.5rem;
	font-weight: 800;
}

.email-signup p {
	font-size: 1.1rem;
	margin-bottom: 2.5rem;
	opacity: 0.9;
}

.waitlist-form {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
	margin-top: 2.5rem;
	max-width: 500px;
	margin-left: auto;
	margin-right: auto;
}

.form-group {
	text-align: left;
}

.form-label {
	display: block;
	margin-bottom: 0.5rem;
	font-size: 0.9rem;
	font-weight: 500;
}

.form-control {
	width: 100%;
	padding: 1rem 1.25rem;
	border-radius: 10px;
	border: 1px solid rgba(255, 255, 255, 0.1);
	font-size: 1rem;
	background-color: rgba(255, 255, 255, 0.05);
	color: var(--text-color);
	font-family: 'Inter', sans-serif;
	transition: border-color 0.3s ease, box-shadow 0.3s ease;
	backdrop-filter: blur(10px) saturate(2.5) brightness(0.5);
}

.form-control:focus {
	outline: none;
	border-color: var(--primary-color);
	box-shadow: 0 0 0 3px rgba(98, 0, 234, 0.2);
}

.select-wrapper {
	position: relative;
}

.select-wrapper:after {
	content: '▼';
	position: absolute;
	right: 1.25rem;
	top: 50%;
	transform: translateY(-50%);
	font-size: 0.8rem;
	opacity: 0.7;
	pointer-events: none;
}

select.form-control {
	appearance: none;
	cursor: pointer;
}

.form-submit {
	margin-top: 1rem;
}

.submit-button {
	width: 100%;
	background: var(--primary-gradient);
	color: var(--text-color);
	padding: 1rem 1.5rem;
	border-radius: 10px;
	font-size: 1rem;
	font-weight: 600;
	border: none;
	cursor: pointer;
	transition: all 0.2s linear;
	font-family: 'Inter', sans-serif;
}

.submit-button:hover {
	box-shadow: 0 5px 15px rgba(98, 0, 234, 0.4);
	transform: translateY(-2px);
}

.form-message {
	margin-top: 1.5rem;
	font-size: 0.95rem;
	padding: 1rem;
	border-radius: 10px;
	display: none;
}

.success-message {
	background-color: rgba(0, 230, 118, 0.1);
	color: var(--success-color);
	border: 1px solid rgba(0, 230, 118, 0.3);
	backdrop-filter: blur(9px);
}

.error-message {
	background-color: rgba(255, 23, 68, 0.1);
	color: #ff1744;
	border: 1px solid rgba(255, 23, 68, 0.3);
}

.integration-section {
	text-align: center;
	padding: 6rem 5%;
}

.integration-badge {
	background-color: rgba(255, 64, 129, 0.1);
	color: var(--accent-color);
	padding: 0.5rem 1rem;
	border-radius: 50px;
	display: inline-block;
	font-weight: 600;
	font-size: 0.85rem;
	margin-bottom: 1rem;
	border: 1px solid rgba(255, 64, 129, 0.2);
}

.integration-icons {
	display: flex;
	justify-content: center;
	gap: 3rem;
	flex-wrap: wrap;
	margin-top: 3rem;
}

.integration-icon {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1rem;
	transition: transform 0.3s ease;
}

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

.integration-icon i {
	font-size: 2.5rem;
	color: var(--text-color);
	transition: color 0.3s ease;
}

.integration-icon:hover i {
	color: var(--primary-color);
}

.integration-icon span {
	font-size: 0.9rem;
	opacity: 0.8;
}

.partners-section {
	text-align: center;
	padding: 6rem 5%;
}

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

.partner-item {
	background-color: rgba(255, 255, 255, 0.03);
	padding: 2rem;
	border-radius: 12px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1.5rem;
	transition: transform 0.3s ease;
	border: 1px solid rgba(255, 255, 255, 0.05);
}

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

.partner-logo {
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.partner-logo img {
	max-height: 100%;
	filter: grayscale(100%) brightness(10);
	transition: filter 0.3s ease;
}

.partner-item:hover .partner-logo img {
	filter: grayscale(0) brightness(1);
}

.partner-name {
	font-size: 1.2rem;
	font-weight: 600;
}

.partner-description {
	font-size: 0.9rem;
	opacity: 0.8;
	line-height: 1.7;
}

.cta-section {
	background: var(--primary-gradient);
	padding: 6rem 5%;
	text-align: center;
	position: relative;
	overflow: hidden;
}

.cta-content {
	max-width: 700px;
	margin: 0 auto;
	position: relative;
	z-index: 2;
}

.cta-section h2 {
	font-size: 2.5rem;
	margin-bottom: 1.5rem;
	font-weight: 800;
}

.cta-section p {
	font-size: 1.1rem;
	margin-bottom: 2.5rem;
	opacity: 0.9;
}

.cta-button {
	background: white;
	color: var(--primary-color);
	padding: 1rem 2.5rem;
	border-radius: 10px;
	font-size: 1rem;
	font-weight: 600;
	text-decoration: none;
	transition: all 0.2s linear;
	display: inline-block;
}

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

.cta-bg-shape {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	opacity: 0.1;
	pointer-events: none;
	background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100'%3E%3Cg fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.4'%3E%3Cpath opacity='.5' d='M96 95h4v1h-4v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h4v1h-4v9h4v1h-4v9h4v1h-4v9h4v1h-4v9h4v1h-4v9h4v1h-4v9h4v1h-4v9h4v1h-4v9zm-1 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-9-10h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm9-10v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-9-10h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm9-10v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-9-10h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm9-10v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-9-10h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

footer {
	background-color: #000;
	color: var(--text-color);
	padding: 5rem 5% 2rem;
}

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

.footer-column h3 {
	font-size: 1.2rem;
	margin-bottom: 1.5rem;
	font-weight: 700;
}

.footer-links {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.footer-links a {
	color: var(--text-color);
	opacity: 0.7;
	text-decoration: none;
	transition: all 0.3s ease;
	font-size: 0.95rem;
}

.footer-links a:hover {
	opacity: 1;
	color: var(--primary-color);
}

.footer-newsletter p {
	font-size: 0.95rem;
	opacity: 0.7;
	margin-bottom: 1.5rem;
	line-height: 1.7;
}

.footer-newsletter-form {
	display: flex;
	gap: 0.5rem;
}

.footer-newsletter-form input {
	flex-grow: 1;
	padding: 0.8rem 1rem;
	border-radius: 8px;
	border: 1px solid rgba(255, 255, 255, 0.1);
	background-color: rgba(255, 255, 255, 0.05);
	color: var(--text-color);
	font-family: 'Inter', sans-serif;
	font-size: 0.9rem;
}

.footer-newsletter-form input:focus {
	outline: none;
	border-color: var(--primary-color);
}

.footer-newsletter-form button {
	background: var(--primary-gradient);
	color: var(--text-color);
	padding: 0.8rem 1.2rem;
	border-radius: 8px;
	font-size: 0.9rem;
	font-weight: 600;
	border: none;
	cursor: pointer;
	transition: all 0.2s linear;
}

.footer-social {
	display: flex;
	gap: 1rem;
	margin-top: 1.5rem;
}

.footer-social a {
	width: 40px;
	height: 40px;
	background-color: rgba(255, 255, 255, 0.05);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--text-color);
	transition: all 0.3s ease;
}

.footer-social a:hover {
	background-color: var(--primary-color);
	transform: translateY(-3px);
}

.footer-bottom {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-top: 2rem;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	flex-wrap: wrap;
	gap: 1rem;
}

.footer-bottom-links {
	display: flex;
	gap: 1.5rem;
}

.footer-bottom-links a {
	color: var(--text-color);
	opacity: 0.7;
	text-decoration: none;
	transition: opacity 0.3s ease;
	font-size: 0.9rem;
}

.footer-bottom-links a:hover {
	opacity: 1;
}

.footer-copyright {
	font-size: 0.9rem;
	opacity: 0.7;
}

.cookie-banner {
	position: fixed;
	bottom: 20px;
	left: 50%;
	transform: translateX(-50%);
	background-color: rgba(0, 0, 0, 0.9);
	padding: 1.5rem;
	border-radius: 10px;
	z-index: 1000;
	width: 90%;
	max-width: 1200px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
	border: 1px solid rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(10px);
	display: none;
}

.cookie-text {
	flex-grow: 1;
	padding-right: 2rem;
}

.cookie-text p {
	font-size: 0.95rem;
	opacity: 0.9;
	margin-bottom: 0;
}

.cookie-buttons {
	display: flex;
	gap: 1rem;
	flex-shrink: 0;
}

.cookie-button {
	padding: 0.7rem 1.5rem;
	border-radius: 8px;
	font-size: 0.9rem;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.2s ease;
	border: none;
	font-family: 'Inter', sans-serif;
}

.cookie-accept {
	background: var(--primary-gradient);
	color: var(--text-color);
}

.cookie-decline {
	background: transparent;
	color: var(--text-color);
	border: 1px solid rgba(255, 255, 255, 0.2);
}

.back-to-top {
	position: fixed;
	bottom: 30px;
	right: 30px;
	width: 50px;
	height: 50px;
	background: var(--primary-gradient);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--text-color);
	text-decoration: none;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease;
	z-index: 999;
}

.back-to-top.visible {
	opacity: 1;
	visibility: visible;
}

.back-to-top:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 25px rgba(98, 0, 234, 0.3);
}

@media (max-width: 1200px) {
	.hero-video-wrapper {
		display: none;
	}

	.hero-content {
		max-width: 800px;
		margin: 0 auto;
		text-align: center;
	}

	.hero-buttons {
		justify-content: center;
	}

	.stat-container {
		justify-content: center;
	}
}

@media (max-width: 768px) {

	.nav-links,
	.nav-buttons {
		display: none;
	}

	.hamburger {
		display: block;
	}

	.hero {
		padding-top: 2rem;
		min-height: auto;
	}

	.hero-content {
		padding: 6rem 0 3rem;
	}

	h1 {
		font-size: 2.5rem;
	}

	.section {
		padding: 4rem 5%;
	}

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

	.tab-button {
		padding: 0.8rem 1rem;
		font-size: 0.9rem;
	}

	.step {
		flex-direction: column;
		text-align: center;
		align-items: center;
	}

	.how-it-works-line {
		display: none;
	}

	.step-number-container {
		margin-bottom: 1.5rem;
	}

	.pricing-card.popular {
		transform: scale(1);
	}

	.pricing-card.popular:hover {
		transform: translateY(-5px) scale(1);
	}

	.waitlist-form {
		padding: 0 1rem;
	}

	.footer-bottom {
		flex-direction: column;
		align-items: center;
		text-align: center;
	}

	.cookie-banner {
		flex-direction: column;
		gap: 1.5rem;
	}

	.cookie-text {
		padding-right: 0;
		text-align: center;
	}
}

.mobile-menu {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: var(--background-color);
	z-index: 999;
	padding: 2rem;
	transform: translateX(-100%);
	transition: transform 0.3s ease;
}

.mobile-menu.open {
	transform: translateX(0);
}

.mobile-menu-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 2rem;
}

.mobile-menu-close {
	background: none;
	border: none;
	color: var(--text-color);
	font-size: 1.5rem;
	cursor: pointer;
}

.mobile-menu-links {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.mobile-menu-link {
	color: var(--text-color);
	text-decoration: none;
	font-size: 1.2rem;
	font-weight: 600;
	transition: color 0.3s ease;
}

.mobile-menu-link:hover {
	color: var(--primary-color);
}

.mobile-menu-buttons {
	margin-top: 2rem;
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.mobile-menu-button {
	width: 100%;
	padding: 1rem;
	text-align: center;
	border-radius: 10px;
	font-weight: 600;
	transition: all 0.2s ease;
	text-decoration: none;
	font-size: 1rem;
}

.mobile-primary {
	background: var(--primary-gradient);
	color: var(--text-color);
	border: none;
}

.mobile-secondary {
	background: transparent;
	color: var(--text-color);
	border: 1px solid rgba(255, 255, 255, 0.2);
}