/* ===================================================================
   TABLE OF CONTENTS
   ===================================================================
   1.  :root ................ Custom Properties (Variables)
   2.  Global Styles ........ Resets, Body, Typography, Utilities
   3.  Reusable Components .. Buttons, Cards, Grids
   
   -------------------------------------------------------------------
   
   4.  LANDING PAGE STYLES
       4.1. Header & Navbar
       4.2. Hero Section
       4.3. About Us Section
       4.4. Partners Section
       4.5. What We Do Section
       4.6. AI Modules (Tabs) Section
       4.7. How It Works Section
       4.8. Pricing Plan Section
       4.9. FAQ Section
       4.10. Feature Marquee Section
       4.11. Footer Section
       
   -------------------------------------------------------------------
   
   5.  LOGIN PAGE STYLES
       5.1. Main Layout
       5.2. Form Styles
       5.3. Image Panel
       5.4. Responsive
   =================================================================== */


/* =============================================
   1. :root - Custom Properties (Variables)
   ============================================= */
:root {
	/* Colors */
	--color-primary: #5D69E9;
	--color-secondary: #D44C6C;
	--color-accent: #d9534f;
	--color-text-dark: #1a202c;
	--color-text-medium: #4a5568;
	--color-text-light: #a0aec0;
	--color-bg-light: #f4f6f9;
	--color-bg-white: #fff;
	--color-bg-dark: #1a202c;
	--color-border: #e2e8f0;
	--color-login-accent: #6b46c1;
	/* Gradients */
	--gradient-main: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
	--gradient-stat-button: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
	--gradient-login: linear-gradient(to right, #8b5cf6, var(--color-login-accent));
	/* Typography */
	--font-main: 'Poppins', sans-serif;
	/* Spacing & Radii */
	--radius-sm: 8px;
	--radius-md: 12px;
	--radius-lg: 16px;
	--radius-xl: 24px;
	--radius-pill: 50px;
	/* Shadows */
	--shadow-sm: 0 4px 20px rgba(0, 0, 0, 0.05);
	--shadow-md: 0 10px 40px rgba(0, 0, 0, 0.05);
	--shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.07);
}


/* =============================================
   2. Global Styles
   ============================================= */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: var(--font-main);
	background-color: var(--color-bg-light);
	color: var(--color-text-medium);
	position: relative;
}

	/* Specific body styles for the landing page */
	body:not(.login-page) {
		padding-top: 1rem;
	}

.login-page .header-container, .login-page .footer {
	display: none;
}

a {
	text-decoration: none;
	color: inherit;
}

ul {
	list-style-type: none;
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}


/* =============================================
   3. Reusable Components & Utilities
   ============================================= */
.container {
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 1.5rem;
}

.text-center {
	text-align: center;
}

	/* MODIFIED: This rule now centers any .pre-headline inside a .text-center container */
	.text-center .pre-headline {
		justify-content: center;
	}

.gradient-text {
	background: var(--gradient-main);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	text-fill-color: transparent;
}

.pre-headline {
	font-size: 0.9rem;
	font-weight: 600;
	color: var(--color-text-dark);
	margin-bottom: 1rem;
	display: flex;
	align-items: center;
	gap: 0.5rem;
	letter-spacing: 1px;
	text-transform: uppercase;
}

	.pre-headline .sparkle {
		color: var(--color-accent);
		font-size: 1.1rem;
	}

.section-headline {
	font-size: 2.8rem;
	font-weight: 700;
	color: var(--color-text-dark);
	line-height: 1.3;
	margin-bottom: 1.5rem;
}

.close-icon {
	display: inline-block;
	width: 20px;
	height: 20px;
	background-color: rgba(255, 255, 255, 0.2);
	border-radius: var(--radius-pill);
	text-align: center;
	line-height: 20px;
	font-size: 1rem;
	font-weight: bold;
}


/*=============================================
=            LANDING PAGE STYLES            =
=============================================*/

/* --- 4.1. Header & Navbar --- */
.header-container {
	padding: 0 1.5rem;
	position: absolute;
	width: 100%;
	top: 1rem;
	left: 0;
	z-index: 1000;
}

.navbar {
	max-width: 1280px;
	margin: 0 auto;
	background-color: var(--color-bg-white);
	border-radius: var(--radius-lg);
	box-shadow: 0 4px 30px rgba(0, 0, 0, 0.06);
	padding: 1rem 2rem;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.navbar-logo {
	display: flex;
	align-items: center;
	font-size: 1.5rem;
	font-weight: 600;
	color: var(--color-text-dark);
}

.logo-icon-wrapper {
	margin-right: 12px;
}

.logo-icon {
	height: 40px;
}

.logo-dot {
	color: var(--color-accent);
}

.nav-menu {
	display: flex;
	align-items: center;
	gap: 2rem;
}

.navbar ul {
	margin-bottom: 0rem;
	padding-left: 0rem;
}

.nav-link {
	font-size: 1rem;
	font-weight: 500;
	color: var(--color-text-medium);
	transition: color 0.3s ease;
}

	.nav-link:hover {
		color: var(--color-text-dark);
	}

	.nav-link i {
		font-size: 0.7rem;
		margin-left: 4px;
		opacity: 0.7;
	}

/* MODIFIED: Added background-size and updated transition for gradient animation */
.cta-button {
	background: var(--gradient-main);
	background-size: 200% auto;
	color: #fff;
	padding: 12px 24px;
	border-radius: var(--radius-sm);
	font-weight: 500;
	display: flex;
	align-items: center;
	gap: 12px;
	transition: transform 0.3s ease, box-shadow 0.3s ease, background-position 0.4s ease;
}

	/* MODIFIED: Added background-position for hover animation */
	.cta-button:hover {
		transform: translateY(-2px);
		box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
		background-position: right center;
	}

.hamburger {
	display: none;
	cursor: pointer;
}

.bar {
	display: block;
	width: 25px;
	height: 3px;
	margin: 5px auto;
	transition: all 0.3s ease-in-out;
	background-color: var(--color-text-dark);
	border-radius: 2px;
}


/* --- 4.2. Hero Section --- */
.hero-section {
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 150px 1.5rem 50px;
	text-align: center;
	position: relative;
	overflow: hidden;
}

.hero-content {
	max-width: 800px;
	position: relative;
	z-index: 1;
}

.social-proof-badge {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	background-color: var(--color-bg-white);
	padding: 8px 16px;
	border-radius: var(--radius-pill);
	box-shadow: var(--shadow-sm);
	margin-bottom: 2rem;
	font-size: 0.9rem;
	font-weight: 500;
	color: #555;
}

.avatars {
	height: 24px;
}

.hero-headline {
	font-size: 4rem;
	font-weight: 800;
	line-height: 1.2;
	color: var(--color-text-dark);
	margin-bottom: 1.5rem;
}

.hero-description {
	font-size: 1.1rem;
	max-width: 600px;
	margin: 0 auto 2.5rem;
	line-height: 1.7;
}

.hero-buttons {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 1rem;
}

/* MODIFIED: Added background-size and updated transition for gradient animation */
.hero-cta-primary {
	background: var(--gradient-main);
	background-size: 200% auto;
	color: #fff;
	padding: 14px 28px;
	border-radius: var(--radius-md);
	font-weight: 500;
	display: flex;
	align-items: center;
	gap: 12px;
	transition: transform 0.3s ease, box-shadow 0.3s ease, background-position 0.4s ease;
}

	/* MODIFIED: Added background-position for hover animation */
	.hero-cta-primary:hover {
		transform: translateY(-3px);
		box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
		background-position: right center;
	}

.hero-cta-secondary {
	background-color: var(--color-bg-white);
	border: 1px solid var(--color-border);
	padding: 14px 28px;
	border-radius: var(--radius-md);
	font-weight: 500;
	display: flex;
	align-items: center;
	gap: 12px;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

	.hero-cta-secondary:hover {
		transform: translateY(-3px);
		box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
	}

@keyframes float {
	0% {
		transform: translateY(0px);
	}

	50% {
		transform: translateY(-20px);
	}

	100% {
		transform: translateY(0px);
	}
}

.robot-left,
.robot-right {
	position: absolute;
	width: 150px;
	z-index: 0;
	animation: float 6s ease-in-out infinite;
}

.robot-left {
	bottom: 15%;
	left: 10%;
}

.robot-right {
	top: 20%;
	right: 10%;
	animation-delay: 1s;
}


/* --- 4.3. About Us Section --- */
.about-section {
	padding: 6rem 0;
	position: relative;
	overflow: hidden;
	background-color: var(--color-bg-white);
}

.about-robot {
	position: absolute;
	bottom: -50px;
	left: -50px;
	width: 250px;
	z-index: 1;
}

.about-grid {
	display: grid;
	grid-template-columns: 1fr 1.5fr;
	gap: 4rem;
	align-items: center;
	position: relative;
	z-index: 2;
}

.about-left-col {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 2rem;
}

.about-text-small {
	line-height: 1.7;
	max-width: 350px;
}

.rotating-badge-wrapper {
	position: relative;
	width: 180px;
	height: 180px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-left: 2rem;
}

.rotating-badge-svg {
	width: 100%;
	height: 100%;
	animation: rotate 20s linear infinite;
}

@keyframes rotate {
	from {
		transform: rotate(0deg);
	}

	to {
		transform: rotate(360deg);
	}
}

.rotating-badge-wrapper i {
	position: absolute;
	color: white;
	font-size: 2rem;
	transform: rotate(-45deg);
}

.highlight-word {
	position: relative;
	display: inline-block;
}

.highlight-bg {
	position: absolute;
	bottom: 5px;
	left: -5px;
	right: -5px;
	height: 15px;
	background-color: #eef0f3;
	border-radius: 4px;
	z-index: -1;
}

.about-text-large {
	line-height: 1.8;
	margin-bottom: 3rem;
}

.stats-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.5rem;
}

.stat-card {
	background-color: #f8f9fa;
	padding: 2rem 1.5rem;
	border-radius: 20px;
	position: relative;
	overflow: hidden;
}

	.stat-card h3 {
		font-size: 3rem;
		font-weight: 700;
		color: var(--color-text-dark);
		margin-bottom: 0.5rem;
	}

	.stat-card p {
		font-size: 0.9rem;
		line-height: 1.4;
	}

.stat-button {
	position: absolute;
	bottom: -15px;
	right: -15px;
	width: 50px;
	height: 50px;
	background: var(--gradient-stat-button);
	border-radius: var(--radius-pill);
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-size: 1rem;
	transition: transform 0.3s ease;
}

	.stat-button:hover {
		transform: scale(1.1);
	}


/* --- 4.4. Partners Section --- */
.partners-section {
	padding: 4rem 0;
	border-top: 1px solid var(--color-border);
	background-color: var(--color-bg-white);
}

.partners-container {
	display: flex;
	justify-content: space-around;
	align-items: center;
	flex-wrap: wrap;
	gap: 2rem;
}

	.partners-container img {
		height: 25px;
		opacity: 0.7;
		transition: opacity 0.3s ease;
	}

		.partners-container img:hover {
			opacity: 1;
		}


/* --- 4.5. What We Do Section --- */
.what-we-do-section {
	padding: 6rem 0;
}

	.what-we-do-section .section-headline {
		margin-bottom: 4rem;
	}

.features-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
	margin-bottom: 3rem;
}

.feature-card {
	background-color: var(--color-bg-white);
	padding: 2.5rem 2rem;
	text-align: left;
	border-radius: var(--radius-xl) var(--radius-xl) 80px var(--radius-xl);
	box-shadow: var(--shadow-md);
	position: relative;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

	.feature-card:hover {
		transform: translateY(-10px);
		box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
	}

.feature-icon-wrapper {
	margin-bottom: 1.5rem;
}

	.feature-icon-wrapper i {
		font-size: 2rem;
		color: var(--color-accent);
	}

.feature-card h3 {
	font-size: 1.4rem;
	font-weight: 600;
	color: var(--color-text-dark);
	margin-bottom: 1rem;
	line-height: 1.4;
}

.feature-card p {
	line-height: 1.7;
	padding-bottom: 50px;
}

.feature-button {
	position: absolute;
	bottom: 30px;
	right: 25px;
	width: 50px;
	height: 50px;
	background: var(--gradient-stat-button);
	border-radius: var(--radius-pill);
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-size: 1.2rem;
	transition: transform 0.3s ease;
}

	.feature-button:hover {
		transform: scale(1.1) rotate(45deg);
	}

	.feature-button i {
		transform: rotate(45deg);
	}

.feature-tags {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 1rem;
}

.tag {
	background-color: var(--color-bg-white);
	border: 1px solid var(--color-border);
	padding: 10px 20px;
	border-radius: var(--radius-pill);
	font-size: 0.9rem;
	font-weight: 500;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	transition: all 0.3s ease;
}

	.tag:hover {
		background-color: #e2e8f0;
		border-color: #cbd5e0;
		cursor: pointer;
	}

	.tag i {
		color: var(--color-accent);
	}


/* --- 4.6. AI Modules (Tabs) Section --- */
.ai-modules-section {
	padding: 6rem 0;
	position: relative;
	overflow: hidden;
	background-color: var(--color-bg-light);
}

.ai-module-robot {
	position: absolute;
	top: 0;
	right: 0;
	width: 200px;
	transform: scaleX(-1);
	opacity: 0.5;
}

.ai-modules-section .section-headline {
	margin-bottom: 3rem;
}

.tabs-container {
	background-color: var(--color-bg-white);
	padding: 2rem;
	border-radius: var(--radius-xl);
	box-shadow: var(--shadow-lg);
	text-align: left;
}

.tabs-nav {
	display: flex;
	justify-content: center;
	gap: 1rem;
	flex-wrap: wrap;
	border-bottom: 1px solid #eef0f3;
	padding-bottom: 1.5rem;
	margin-bottom: 2rem;
}

.tab-button {
	background-color: #f8f9fa;
	border: 1px solid transparent;
	border-radius: var(--radius-pill);
	padding: 10px 20px;
	font-family: var(--font-main);
	font-size: 0.9rem;
	font-weight: 500;
	color: var(--color-text-medium);
	cursor: pointer;
	display: flex;
	align-items: center;
	gap: 8px;
	transition: all 0.3s ease;
}

	.tab-button:hover {
		background-color: #eef0f3;
	}

	.tab-button.active {
		background: var(--gradient-main);
		color: #fff;
	}

		.tab-button.active i,
		.tab-button i {
			transition: color 0.3s ease;
		}

	.tab-button i {
		color: var(--color-primary);
	}

	.tab-button.active i {
		color: #fff;
	}

.tab-content {
	display: none;
	animation: fadeIn 0.5s ease-in-out;
}

	.tab-content.active {
		display: block;
	}

@keyframes fadeIn {
	from {
		opacity: 0;
		transform: translateY(10px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.tab-content-grid {
	display: grid;
	grid-template-columns: 1.2fr 1fr;
	gap: 2rem;
	align-items: center;
}

.tab-text-content h3 {
	font-size: 1.2rem;
	font-weight: 700;
	color: var(--color-text-dark);
	margin-bottom: 1rem;
}

.tab-text-content p {
	line-height: 1.8;
	margin-bottom: 2rem;
	max-width: 500px;
}

.tab-stats-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1.5rem;
	max-width: 500px;
}

.tab-image-content img {
	border-radius: 20px;
}

.bottom-cta {
	margin-top: 2rem;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 10px;
	font-size: 0.9rem;
}

	.bottom-cta a {
		color: var(--color-accent);
		font-weight: 500;
		text-decoration: underline;
		transition: color 0.3s ease;
	}

		.bottom-cta a:hover {
			color: var(--color-primary);
		}


/* --- 4.7. How It Works Section --- */
.how-it-works-section {
	padding: 6rem 0;
}

	.how-it-works-section .section-headline {
		margin-bottom: 4rem;
	}

.steps-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 2rem;
	margin-bottom: 3rem;
}

.step-card {
	background-color: var(--color-bg-white);
	padding: 2.5rem 2rem;
	border-radius: var(--radius-xl) var(--radius-xl) 80px var(--radius-xl);
	box-shadow: var(--shadow-md);
	text-align: left;
	position: relative;
	overflow: hidden;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

	.step-card:hover {
		transform: translateY(-10px);
		box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
	}

.step-icon-wrapper {
	margin-bottom: 1.5rem;
}

	.step-icon-wrapper i {
		font-size: 2.5rem;
		color: var(--color-accent);
	}

.step-card h3 {
	font-size: 1.4rem;
	font-weight: 600;
	color: var(--color-text-dark);
	margin-bottom: 1rem;
}

.step-card p {
	line-height: 1.7;
	margin-bottom: 1.5rem;
}

.step-card ul {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

	.step-card ul li {
		display: flex;
		align-items: center;
		gap: 10px;
		font-weight: 500;
	}

		.step-card ul li i.fa-check {
			background: linear-gradient(135deg, #5D69E9, #8c5de9);
			color: #fff;
			width: 20px;
			height: 20px;
			border-radius: var(--radius-pill);
			display: flex;
			align-items: center;
			justify-content: center;
			font-size: 0.7rem;
		}

.step-number-badge {
	position: absolute;
	bottom: -20px;
	right: -20px;
	width: 70px;
	height: 70px;
	background: var(--gradient-stat-button);
	border-radius: var(--radius-pill);
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5rem;
	font-weight: 600;
}

.how-it-works-cta {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 1rem;
}

.free-badge {
	background: var(--gradient-main);
	color: #fff;
	padding: 6px 14px;
	border-radius: var(--radius-sm);
	font-size: 0.9rem;
	font-weight: 500;
}

.how-it-works-cta p {
	margin: 0;
}

.how-it-works-cta a {
	color: var(--color-accent);
	font-weight: 500;
	text-decoration: underline;
}


/* --- 4.8. Pricing Plan Section --- */
.pricing-section {
	padding: 6rem 0;
	background-color: var(--color-bg-light);
}

	.pricing-section .section-headline {
		margin-bottom: 2rem;
	}

.pricing-toggle-container {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 1rem;
	margin-bottom: 3rem;
	font-weight: 500;
}

.toggle-switch {
	position: relative;
	display: inline-block;
	width: 60px;
	height: 34px;
}

	.toggle-switch input {
		opacity: 0;
		width: 0;
		height: 0;
	}

.slider {
	position: absolute;
	cursor: pointer;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: #ccc;
	transition: .4s;
	border-radius: 34px;
}

	.slider:before {
		position: absolute;
		content: "";
		height: 26px;
		width: 26px;
		left: 4px;
		bottom: 4px;
		background-color: white;
		transition: .4s;
		border-radius: var(--radius-pill);
	}

input:checked + .slider {
	background: var(--gradient-main);
}

	input:checked + .slider:before {
		transform: translateX(26px);
	}

.pricing-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
	margin-bottom: 3rem;
}

.pricing-card {
	background-color: var(--color-bg-white);
	border: 1px solid var(--color-border);
	border-radius: 20px;
	padding: 2rem;
	text-align: left;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

	.pricing-card.popular {
		border: 2px solid var(--color-primary);
		transform: translateY(-10px);
	}

	.pricing-card:hover {
		transform: translateY(-10px);
		box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
	}

.popular-banner {
	position: absolute;
	top: -1px;
	right: -1px;
	width: 150px;
	height: 150px;
	overflow: hidden;
}

	.popular-banner::before {
		content: 'POPULAR';
		position: absolute;
		width: 200px;
		background: var(--gradient-stat-button);
		color: white;
		font-size: 0.8rem;
		font-weight: 600;
		text-align: center;
		padding: 6px 0;
		transform: rotate(45deg) translateY(-20px);
		right: -35px;
		top: 40px;
		box-shadow: var(--shadow-sm);
	}

.pricing-card .card-header h3 {
	font-size: 1.5rem;
	font-weight: 600;
	color: var(--color-text-dark);
}

.pricing-card .card-header p {
	font-size: 0.9rem;
}

.price {
	font-size: 1.5rem;
	font-weight: 400;
	margin: 1.5rem 0;
}

	.price .price-value {
		font-size: 3.5rem;
		font-weight: 700;
		color: var(--color-text-dark);
	}

	.price .del-price-value {
		font-size: 2rem;
		font-weight: 600;
		color: var(--color-text-light);
	}

/* MODIFIED: Added background-size and updated transition for gradient animation */
.pricing-button {
	display: block;
	width: 100%;
	background: var(--gradient-main);
	background-size: 200% auto;
	color: #fff;
	padding: 14px;
	border-radius: var(--radius-md);
	text-align: center;
	font-weight: 500;
	transition: transform 0.3s ease, box-shadow 0.3s ease, background-position 0.4s ease;
}

	/* MODIFIED: Added background-position for hover animation */
	.pricing-button:hover {
		transform: translateY(-3px);
		box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
		background-position: right center;
	}

.features-section {
	background-color: #f8f9fa;
	margin: 2rem -2rem -2rem;
	padding: 2rem;
	border-radius: 0 0 20px 20px;
}

	.features-section h4 {
		font-size: 1.2rem;
		font-weight: 600;
		margin-bottom: 1.5rem;
	}

	.features-section ul {
		display: flex;
		flex-direction: column;
		gap: 1rem;
	}

		.features-section ul li {
			display: flex;
			align-items: center;
			gap: 10px;
		}

			.features-section ul li i {
				color: var(--color-accent);
				border: 1px solid #f2d7d5;
				width: 24px;
				height: 24px;
				border-radius: var(--radius-sm);
				display: flex;
				align-items: center;
				justify-content: center;
				font-size: 0.8rem;
			}

.pricing-benefits {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 2rem;
	font-size: 0.9rem;
}

	.pricing-benefits span {
		display: flex;
		align-items: center;
		gap: 8px;
	}

	.pricing-benefits i {
		color: var(--color-accent);
	}


/* --- 4.9. FAQ Section --- */
.faq-section {
	padding: 6rem 0;
	background-color: var(--color-bg-white);
}

.faq-grid {
	display: grid;
	grid-template-columns: 1fr 1.5fr;
	gap: 4rem;
	align-items: flex-start;
}

.faq-left-col .section-headline {
	margin-bottom: 2rem;
}

.faq-contact-card {
	background: linear-gradient(135deg, #f3e7e9, #e3e6f8);
	border-radius: 20px;
	padding: 2rem;
	position: relative;
	overflow: hidden;
}

	.faq-contact-card .card-content {
		position: relative;
		z-index: 2;
	}

	.faq-contact-card h4 {
		font-size: 1.5rem;
		font-weight: 600;
		color: var(--color-text-dark);
		margin-bottom: 1.5rem;
		max-width: 200px;
	}

.faq-robot {
	position: absolute;
	bottom: 0;
	right: 0;
	width: 180px;
	z-index: 1;
}

.accordion {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.accordion-item {
	background-color: var(--color-bg-white);
	border: 1px solid var(--color-border);
	border-radius: var(--radius-md);
	transition: all 0.3s ease;
}

	.accordion-item.active {
		box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
	}

.accordion-header {
	padding: 1.5rem;
	cursor: pointer;
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-weight: 600;
	color: var(--color-text-dark);
}

	.accordion-header i {
		transition: transform 0.3s ease;
	}

.accordion-item.active .accordion-header i {
	transform: rotate(180deg);
}

.accordion-body {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.4s ease-out, padding 0.4s ease-out;
}

.accordion-body {
	padding: 0rem;
}

.accordion-item.active .accordion-body {
	max-height: 200px;
}

.accordion-body p {
	padding: 1.5rem 1.5rem 1.5rem 1.5rem;
	background-color: #f8f9fa;
	line-height: 1.7;
	margin: 0;
	border-top: 1px solid var(--color-border);
}


/* --- 4.10. Feature Marquee Section --- */
.feature-marquee-section {
	padding: 6rem 0;
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
	background-color: var(--color-bg-white);
}

.marquee-wrapper {
	overflow: hidden;
}

.marquee-row {
	display: flex;
	flex-shrink: 0;
	gap: 1.5rem;
	align-items: center;
}

.feature-pill {
	background-color: #f8f9fa;
	padding: 12px 24px;
	border-radius: var(--radius-pill);
	display: flex;
	align-items: center;
	gap: 10px;
	font-weight: 500;
	white-space: nowrap;
	border: 1px solid #eef0f3;
}

	.feature-pill i {
		color: var(--color-accent);
		font-size: 1.1rem;
	}

@keyframes scrollLeft {
	from {
		transform: translateX(0);
	}

	to {
		transform: translateX(-50%);
	}
}

@keyframes scrollRight {
	from {
		transform: translateX(-50%);
	}

	to {
		transform: translateX(0);
	}
}

.scroll-left {
	animation: scrollLeft 40s linear infinite;
}

.scroll-right {
	animation: scrollRight 40s linear infinite;
}

.marquee-wrapper:hover .marquee-row {
	animation-play-state: paused;
}


/* --- 4.11. Footer Section --- */
.footer {
	background-color: var(--color-bg-dark);
	color: var(--color-text-light);
	padding: 6rem 0 2rem;
}

	.footer .navbar-logo {
		color: #fff;
		font-size: 1.8rem;
	}

.footer-description {
	margin: 1.5rem 0;
	line-height: 1.7;
	max-width: 300px;
}

.social-icons {
	display: flex;
	gap: 1rem;
}

	.social-icons a {
		width: 40px;
		height: 40px;
		border-radius: var(--radius-pill);
		border: 1px solid rgba(255, 255, 255, 0.2);
		color: #fff;
		display: flex;
		align-items: center;
		justify-content: center;
		transition: all 0.3s ease;
	}

		.social-icons a:hover {
			background: var(--gradient-stat-button);
			border-color: transparent;
		}

.footer-grid {
	display: grid;
	grid-template-columns: 3fr 3fr 1fr 0fr;
	gap: 3rem;
}

.footer-col h4 {
	color: #fff;
	font-size: 1.2rem;
	font-weight: 600;
	margin-bottom: 1.5rem;
}

.footer-col ul {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	padding-left: 0px;
}

	.footer-col ul a:hover {
		color: #fff;
	}

.contact-list li {
	display: flex;
	align-items: flex-start;
	gap: 12px;
}

.contact-list i {
	color: var(--color-accent);
	margin-top: 5px;
}

.footer-subscribe {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 1.5rem;
	padding-top: 2.5rem;
	margin-top: 2.5rem;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.subscribe-form {
	position: relative;
	width: 400px;
	max-width: 100%;
}

	.subscribe-form input {
		width: 100%;
		background-color: transparent;
		border: 1px solid rgba(255, 255, 255, 0.2);
		border-radius: var(--radius-pill);
		padding: 14px 150px 14px 24px;
		color: #fff;
		font-family: var(--font-main);
	}

		.subscribe-form input::placeholder {
			color: var(--color-text-light);
		}

	/* MODIFIED: Added background-size for gradient animation */
	.subscribe-form button {
		position: absolute;
		right: 6px;
		top: 6px;
		bottom: 6px;
		background: var(--gradient-main);
		background-size: 200% auto;
		border: none;
		border-radius: var(--radius-pill);
		padding: 0 30px;
		color: #fff;
		font-weight: 500;
		cursor: pointer;
		transition: all 0.3s ease, background-position 0.4s ease;
	}

		/* MODIFIED: Added background-position for hover animation */
		.subscribe-form button:hover {
			opacity: 0.9;
			background-position: right center;
		}

.footer-copyright {
	background-color: #2d3748;
	border-radius: var(--radius-md);
	padding: 1.5rem;
	text-align: center;
	margin-top: 3rem;
}

	.footer-copyright p {
		margin: 0;
		font-size: 0.9rem;
	}


/* --- Landing Page Responsive Media Queries --- */
@media (max-width: 1024px) {
	.nav-menu {
		gap: 1.5rem;
	}

	.navbar {
		padding: 1rem 1.5rem;
	}

	.about-grid,
	.faq-grid {
		grid-template-columns: 1fr;
		text-align: center;
	}

	.about-left-col {
		align-items: center;
		order: 2;
	}

	.about-right-col {
		order: 1;
	}

	.faq-left-col {
		text-align: center;
	}

		.faq-left-col .pre-headline {
			justify-content: center;
		}

	.about-robot {
		display: none;
	}

	.steps-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.footer-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 992px) {
	.hamburger {
		display: block;
	}

	.navbar {
		position: relative;
	}

	.hamburger.active .bar:nth-child(2) {
		opacity: 0;
	}

	.hamburger.active .bar:nth-child(1) {
		transform: translateY(8px) rotate(45deg);
	}

	.hamburger.active .bar:nth-child(3) {
		transform: translateY(-8px) rotate(-45deg);
	}

	.nav-menu {
		position: absolute;
		top: calc(100% + 10px);
		left: 0;
		width: 100%;
		flex-direction: column;
		background-color: var(--color-bg-white);
		border-radius: var(--radius-lg);
		box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
		opacity: 0;
		visibility: hidden;
		transform: translateY(-10px);
		transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
		gap: 0;
		padding: 0.5rem 0;
	}

		.nav-menu.active {
			opacity: 1;
			visibility: visible;
			transform: translateY(0);
		}

	.nav-item {
		width: 100%;
	}

	.nav-link {
		display: block;
		padding: 1rem 1.5rem;
		text-align: left;
	}

	.cta-button {
		display: none;
	}

	.hero-headline {
		font-size: 3rem;
	}

	.robot-left,
	.robot-right {
		width: 120px;
	}

	.features-grid,
	.pricing-grid {
		grid-template-columns: 1fr;
	}

	.pricing-grid {
		max-width: 450px;
		margin-left: auto;
		margin-right: auto;
	}

	.pricing-card.popular,
	.pricing-card:hover {
		transform: translateY(0);
	}

	.tab-content-grid {
		grid-template-columns: 1fr;
	}

	.tab-image-content {
		order: -1;
		margin-bottom: 2rem;
	}
}

@media (max-width: 768px) {

	.section-headline,
	.ai-modules-section .section-headline {
		font-size: 2.2rem;
	}

	.hero-headline {
		font-size: 2.5rem;
	}

	.hero-buttons {
		flex-direction: column;
		width: 100%;
		max-width: 300px;
		margin: 0 auto;
	}

	.hero-cta-primary,
	.hero-cta-secondary {
		width: 100%;
		justify-content: center;
	}

	.robot-left,
	.robot-right,
	.ai-module-robot {
		display: none;
	}

	.about-section,
	.what-we-do-section,
	.ai-modules-section,
	.how-it-works-section,
	.faq-section {
		padding: 4rem 0;
	}

	.stats-grid,
	.steps-grid,
	.tab-stats-grid {
		grid-template-columns: 1fr;
	}

	.footer-grid {
		grid-template-columns: 1fr;
	}

	.footer-subscribe {
		flex-direction: column;
		align-items: flex-start;
	}
}



/*=============================================
=              LOGIN PAGE STYLES              =
=============================================*/
body.login-page {
	background-color: var(--color-bg-white);
}

/* --- 5.1. Main Layout --- */
.login-container {
	display: grid;
	grid-template-columns: 1fr 1fr;
	min-height: 100vh;
}

.login-form-wrapper {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 2rem;
}

.login-form {
	width: 100%;
	max-width: 400px;
}


/* --- 5.2. Form Styles --- */
.form-header h1 {
	font-size: 2rem;
	font-weight: 600;
	margin-bottom: 0.5rem;
	color: var(--color-text-dark);
}

.form-header p {
	color: #718096;
	margin-bottom: 2rem;
}

.social-login {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.social-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	padding: 12px;
	border-radius: var(--radius-sm);
	border: 1px solid var(--color-border);
	background-color: var(--color-bg-white);
	font-size: 1rem;
	font-weight: 500;
	cursor: pointer;
	transition: background-color 0.3s;
}

	.social-btn:hover {
		background-color: #f7fafc;
	}

	.social-btn img {
		width: 20px;
		height: 20px;
	}

.apple-btn {
	background-color: var(--color-text-dark);
	color: #fff;
	border-color: var(--color-text-dark);
}

	.apple-btn:hover {
		background-color: #2d3748;
	}

.separator {
	display: flex;
	align-items: center;
	text-align: center;
	color: var(--color-text-light);
	margin: 2rem 0;
}

	.separator::before,
	.separator::after {
		content: '';
		flex: 1;
		border-bottom: 1px solid var(--color-border);
	}

	.separator:not(:empty)::before {
		margin-right: .5em;
	}

	.separator:not(:empty)::after {
		margin-left: .5em;
	}

.form-group {
	margin-bottom: 1.5rem;
}

	.form-group label {
		display: block;
		margin-bottom: 0.5rem;
		font-weight: 500;
		color: var(--color-text-medium);
	}

.label-row {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.forgot-password {
	font-size: 0.9rem;
	color: var(--color-login-accent);
	text-decoration: none;
}

	.forgot-password:hover {
		text-decoration: underline;
	}

.form-group input {
	width: 100%;
	padding: 12px 16px;
	border: 1px solid var(--color-border);
	border-radius: var(--radius-sm);
	font-size: 1rem;
	font-family: var(--font-main);
}

	.form-group input:focus {
		outline: none;
		border-color: var(--color-login-accent);
		box-shadow: 0 0 0 2px rgba(107, 70, 193, 0.2);
	}

.login-btn {
	width: 100%;
	padding: 14px;
	border: none;
	border-radius: var(--radius-sm);
	background-image: var(--gradient-login);
	color: #fff;
	font-size: 1rem;
	font-weight: 600;
	cursor: pointer;
	transition: opacity 0.3s;
}

	.login-btn:hover {
		opacity: 0.9;
	}

.form-footer {
	text-align: center;
	margin-top: 2rem;
}

	.form-footer a {
		color: var(--color-login-accent);
		font-weight: 500;
		text-decoration: none;
	}

		.form-footer a:hover {
			text-decoration: underline;
		}


/* --- 5.3. Image Panel --- */
.image-panel {
	background-color: #f8f9fa;
	background-image: url('https://i.imgur.com/kS5kQ2j.png');
	background-size: cover;
	background-position: center;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	padding: 2rem;
}

.image-content {
	position: relative;
}

.dashboard-image {
	border-radius: var(--radius-md);
	box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
	transform: perspective(1500px) rotateY(-15deg) rotateX(5deg) scale(0.9);
}

.callout {
	position: absolute;
	background-color: var(--color-text-medium);
	color: #fff;
	padding: 8px 16px;
	border-radius: var(--radius-sm);
	font-size: 0.9rem;
	font-weight: 500;
}

.new-badge {
	top: -20px;
	right: 50px;
	transform: rotate(10deg);
	display: flex;
	flex-direction: column;
	align-items: center;
	background-color: transparent;
	color: var(--color-text-medium);
}

	.new-badge span {
		font-weight: 600;
	}

.dashboard-badge {
	bottom: 15%;
	left: -60px;
	box-shadow: var(--shadow-sm);
}

	.dashboard-badge::after {
		content: '';
		position: absolute;
		bottom: 15px;
		right: -10px;
		width: 0;
		height: 0;
		border-top: 10px solid transparent;
		border-bottom: 10px solid transparent;
		border-left: 10px solid var(--color-text-medium);
	}


/* --- 5.4. Login Page Responsive --- */
@media (max-width: 992px) {
	.login-container {
		grid-template-columns: 1fr;
	}

	.image-panel {
		display: none;
	}

	.login-form-wrapper {
		min-height: 100vh;
	}
}

.alert-dismissible .btn-close{
	font-size:12px;
}
