/*--------------
Adminty Landing Page - Modern 2025 Design
--------------*/

/*-----------------
1. CSS Variables & Reset
2. Typography & Base
3. Navbar
4. Hero Section
5. Services Section
6. Features Split
7. Testimonials
8. Counter Section
9. Feature Big
10. Pricing Section
11. Client Logos
12. CTA Subscribe
13. Footer
14. Utilities & Responsive
------------------*/


/* ===== 1. CSS Variables & Reset ===== */

:root {
	/* Modern gradient colors */
	--primary: #6366f1;
	--primary-dark: #4f46e5;
	--primary-light: #818cf8;
	--secondary: #06b6d4;
	--accent: #f43f5e;
	--success: #10b981;

	/* Neutrals */
	--gray-50: #f9fafb;
	--gray-100: #f3f4f6;
	--gray-200: #e5e7eb;
	--gray-300: #d1d5db;
	--gray-400: #9ca3af;
	--gray-500: #6b7280;
	--gray-600: #4b5563;
	--gray-700: #374151;
	--gray-800: #1f2937;
	--gray-900: #111827;

	/* Gradients */
	--gradient-primary: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #d946ef 100%);
	--gradient-hero: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	--gradient-card: linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(99,102,241,0.05) 100%);

	/* Shadows */
	--shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
	--shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1);
	--shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
	--shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
	--shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
	--shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
	--shadow-glow: 0 0 40px rgba(99, 102, 241, 0.3);

	/* Border radius */
	--radius-sm: 0.375rem;
	--radius: 0.5rem;
	--radius-md: 0.75rem;
	--radius-lg: 1rem;
	--radius-xl: 1.5rem;
	--radius-2xl: 2rem;
	--radius-full: 9999px;

	/* Transitions */
	--transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
	--transition: 300ms cubic-bezier(0.4, 0, 0.2, 1);
	--transition-slow: 500ms cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset */
*, *::before, *::after {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

body {
	font-family: 'Inter', 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	line-height: 1.6;
	color: var(--gray-700);
	background: var(--gray-50);
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

a {
	text-decoration: none;
	color: inherit;
	transition: var(--transition);
}

ul, ol {
	list-style: none;
}

.img-circle {
	border-radius: var(--radius-full);
}


/* ===== 2. Typography & Base ===== */

h1, h2, h3, h4, h5, h6 {
	font-weight: 700;
	line-height: 1.2;
	color: var(--gray-900);
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.5rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 3vw, 1.75rem); }
h4 { font-size: 1.25rem; }

p {
	font-size: 1rem;
	line-height: 1.7;
	color: var(--gray-600);
}

::selection {
	color: #fff;
	background: var(--primary);
}

/* Container */
.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 1.5rem;
}


/* ===== 3. Navbar ===== */

.navbar {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	padding: 1.25rem 0;
	transition: var(--transition);
	background: transparent;
}

.navbar-default {
	border: none;
	background: transparent;
}

.navbar.past-main {
	padding: 0.75rem 0;
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	box-shadow: var(--shadow-md);
}

.navbar-brand {
	padding: 0;
}

.navbar-brand img {
	height: 40px;
	width: auto;
	transition: var(--transition);
}

.navbar-nav {
	gap: 0.5rem;
}

.navbar-nav .nav-link {
	font-size: 0.875rem;
	font-weight: 600;
	color: var(--gray-600);
	padding: 0.5rem 1rem;
	border-radius: var(--radius);
	transition: var(--transition);
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.navbar-nav .nav-link:hover {
	color: var(--primary);
	background: rgba(99, 102, 241, 0.1);
}

.navbar-toggler {
	border: none;
	padding: 0.5rem;
	border-radius: var(--radius);
}

.navbar-toggler:focus {
	box-shadow: none;
}

@media (max-width: 991px) {
	.navbar {
		padding: 0.75rem 0;
		background: rgba(255, 255, 255, 0.98);
	}

	.navbar-collapse {
		background: white;
		padding: 1rem;
		border-radius: var(--radius-lg);
		margin-top: 1rem;
		box-shadow: var(--shadow-xl);
	}

	.navbar-nav .nav-link {
		padding: 0.75rem 1rem;
	}
}


/* ===== 4. Hero Section ===== */

#main {
	min-height: 100vh;
}

.hero-section {
	background: linear-gradient(180deg, #ffffff 0%, #f0f4ff 50%, #e0e7ff 100%);
	min-height: 100vh;
	position: relative;
	overflow: hidden;
}

.hero-section::before {
	content: '';
	position: absolute;
	top: 10%;
	right: -10%;
	width: 500px;
	height: 500px;
	background: radial-gradient(circle, rgba(99, 102, 241, 0.15) 0%, transparent 70%);
	border-radius: 50%;
}

.hero-section::after {
	content: '';
	position: absolute;
	bottom: 20%;
	left: -10%;
	width: 400px;
	height: 400px;
	background: radial-gradient(circle, rgba(139, 92, 246, 0.1) 0%, transparent 70%);
	border-radius: 50%;
}

.app-hero {
	background: linear-gradient(180deg, #ffffff 0%, #f8faff 50%, #f0f4ff 100%);
}

.hero-content,
.app-hero-content {
	padding: 9rem 0 4rem;
	position: relative;
	z-index: 1;
}

/* Hero Badge */
.hero-badge {
	display: inline-block;
	padding: 0.5rem 1.25rem;
	font-size: 0.75rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 1px;
	color: var(--primary);
	background: rgba(99, 102, 241, 0.1);
	border: 1px solid rgba(99, 102, 241, 0.2);
	border-radius: var(--radius-full);
	margin-bottom: 1.5rem;
}

.hero-content h1,
.app-hero-content h1 {
	font-size: clamp(2.25rem, 5vw, 3.5rem);
	font-weight: 800;
	color: var(--gray-900);
	margin-bottom: 1.5rem;
	letter-spacing: -0.02em;
	line-height: 1.1;
}

.hero-content p,
.app-hero-content p {
	font-size: 1.125rem;
	color: var(--gray-600);
	max-width: 540px;
	margin: 0 auto 2rem;
	line-height: 1.7;
}

/* Hero Buttons */
.hero-buttons {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	justify-content: center;
	margin-bottom: 3rem;
}

/* Hero Stats */
.hero-stats {
	display: flex;
	justify-content: center;
	gap: 3rem;
	padding-top: 2rem;
	border-top: 1px solid var(--gray-200);
	max-width: 400px;
	margin: 0 auto;
}

.hero-stats .stat-item {
	text-align: center;
}

.hero-stats .stat-item strong {
	display: block;
	font-size: 1.5rem;
	font-weight: 800;
	color: var(--primary);
	line-height: 1.2;
}

.hero-stats .stat-item span {
	font-size: 0.75rem;
	color: var(--gray-500);
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.hero-image {
	margin-top: 4rem;
	position: relative;
}

.hero-image::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 90%;
	height: 90%;
	background: var(--gradient-primary);
	opacity: 0.1;
	border-radius: var(--radius-2xl);
	filter: blur(60px);
	z-index: -1;
}

.hero-image img {
	margin: 0 auto;
	border-radius: var(--radius-xl);
	box-shadow:
		0 25px 50px -12px rgba(0, 0, 0, 0.15),
		0 0 0 1px rgba(0, 0, 0, 0.05);
	transition: var(--transition-slow);
}

.hero-image img:hover {
	transform: translateY(-8px);
	box-shadow:
		0 30px 60px -15px rgba(0, 0, 0, 0.2),
		0 0 0 1px rgba(0, 0, 0, 0.05),
		0 0 60px rgba(99, 102, 241, 0.15);
}

/* Buttons */
.btn-action {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	padding: 1rem 2rem;
	font-size: 0.875rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	border-radius: var(--radius-lg);
	border: 2px solid transparent;
	cursor: pointer;
	transition: var(--transition);
	background: var(--primary);
	color: white;
	box-shadow: 0 4px 15px rgba(99, 102, 241, 0.35);
}

.btn-action:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 25px rgba(99, 102, 241, 0.45);
	color: white;
	background: var(--primary-dark);
}

.btn-action.btn-outline {
	background: transparent;
	color: var(--gray-700);
	border-color: var(--gray-300);
	box-shadow: none;
}

.btn-action.btn-outline:hover {
	background: var(--gray-100);
	border-color: var(--gray-400);
	color: var(--gray-900);
	transform: translateY(-2px);
	box-shadow: var(--shadow-md);
}

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

.btn-action.btn-fill:hover {
	background: var(--primary);
	color: white;
	box-shadow: 0 4px 15px rgba(99, 102, 241, 0.4);
}

@media (max-width: 576px) {
	.hero-stats {
		gap: 1.5rem;
	}

	.hero-stats .stat-item strong {
		font-size: 1.25rem;
	}

	.hero-buttons {
		flex-direction: column;
		align-items: center;
	}

	.hero-buttons .btn-action {
		width: 100%;
		max-width: 280px;
	}
}


/* ===== 5. Services Section ===== */

.services-section {
	padding: 6rem 0;
	background: white;
}

.services-content {
	text-align: center;
	max-width: 700px;
	margin: 0 auto 4rem;
	padding: 0;
}

.services-content h1 {
	font-size: clamp(1.75rem, 4vw, 2.25rem);
	margin-bottom: 1rem;
}

.services-content p {
	font-size: 1.125rem;
}

.services {
	padding: 0;
	overflow: visible;
}

.services .col-sm-4 {
	padding: 1rem;
}

.services .services-icon {
	width: 80px;
	height: 80px;
	margin: 0 auto 1.5rem;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
	border-radius: var(--radius-xl);
	box-shadow: 0 10px 30px rgba(99, 102, 241, 0.3);
	transition: var(--transition);
	border: none;
}

.services .services-icon img {
	position: static;
	width: 40px;
	height: 40px;
	filter: brightness(0) invert(1);
}

.services .col-sm-4:hover .services-icon {
	transform: translateY(-5px) scale(1.05);
	box-shadow: 0 15px 40px rgba(99, 102, 241, 0.4);
}

.services .services-description {
	margin-bottom: 2rem;
}

.services .services-description h1 {
	font-size: 1.25rem;
	font-weight: 700;
	margin-bottom: 0.75rem;
}

.services .services-description p {
	font-size: 0.9375rem;
	line-height: 1.7;
}


/* ===== 6. Features Split ===== */

.flex-features {
	background: var(--gray-50);
	padding: 4rem 0;
}

.flex-split {
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 3rem 0;
	background: transparent;
}

@media (min-width: 768px) {
	.flex-split {
		flex-direction: row;
		gap: 4rem;
	}

	.flex-split:nth-child(even) {
		flex-direction: row-reverse;
	}
}

.flex-split .f-left,
.flex-split .f-right {
	flex: 1;
	padding: 1rem;
	background: transparent;
}

.flex-split .f-left img {
	border-radius: var(--radius-xl);
	box-shadow: var(--shadow-xl);
	transition: var(--transition);
	margin: 0;
}

.flex-split .f-left:hover img {
	transform: scale(1.02);
	box-shadow: var(--shadow-2xl);
}

.flex-split .f-right {
	padding: 2rem;
}

.flex-split .f-right h2 {
	font-size: clamp(1.5rem, 3vw, 2rem);
	margin-bottom: 1rem;
}

.flex-split .f-right p {
	font-size: 1rem;
	margin-bottom: 1.5rem;
}

.flex-split .f-right ul {
	margin-bottom: 1.5rem;
}

.flex-split .f-right li {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	font-size: 1rem;
	color: var(--gray-700);
	padding: 0.5rem 0;
}

.flex-split .f-right li i {
	color: var(--success);
	font-size: 1.25rem;
}


/* ===== 7. Testimonials ===== */

.testimonial-section {
	background: white;
	padding: 6rem 0;
}

.testimonials {
	position: relative;
	min-height: 400px;
	margin: 0 auto;
	max-width: 800px;
	overflow: hidden;
}

.testimonials .testimonial-single {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	opacity: 0;
	visibility: hidden;
	transform: translateY(20px);
	transition: opacity 0.6s ease, transform 0.6s ease, visibility 0.6s ease;
	text-align: center;
	padding: 2rem;
}

.testimonials .testimonial-single.active {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.testimonial-single img {
	width: 100px !important;
	height: 100px !important;
	margin: 0 auto 1.5rem;
	object-fit: cover;
	border: 4px solid white;
	box-shadow: var(--shadow-lg);
}

.testimonial-text {
	background: var(--gray-50);
	padding: 2rem;
	border-radius: var(--radius-xl);
	position: relative;
}

.testimonial-text::before {
	content: '"';
	position: absolute;
	top: 1rem;
	left: 1.5rem;
	font-size: 4rem;
	color: var(--primary-light);
	opacity: 0.3;
	font-family: Georgia, serif;
	line-height: 1;
}

.testimonial-text p {
	font-size: 1.125rem;
	line-height: 1.8;
	color: var(--gray-700);
	margin-bottom: 1.5rem;
	position: relative;
	z-index: 1;
}

.testimonial-text h3 {
	font-size: 1rem;
	font-weight: 600;
	color: var(--gray-800);
	margin-bottom: 0.25rem;
}

.testimonial-text .ion {
	display: inline-block;
	margin-top: 1rem;
	font-size: 1rem;
	color: #fbbf24;
}

/* Testimonial Navigation */
.testimonial-nav {
	display: flex;
	justify-content: center;
	gap: 0.75rem;
	margin-top: 2rem;
}

.testimonial-nav .nav-dot {
	width: 12px;
	height: 12px;
	border-radius: var(--radius-full);
	background: var(--gray-300);
	border: none;
	cursor: pointer;
	transition: var(--transition);
	padding: 0;
}

.testimonial-nav .nav-dot:hover {
	background: var(--gray-400);
	transform: scale(1.2);
}

.testimonial-nav .nav-dot.active {
	background: var(--primary);
	width: 24px;
}

/* Testimonial Arrows */
.testimonial-controls {
	position: absolute;
	top: 50%;
	left: 0;
	right: 0;
	transform: translateY(-50%);
	display: flex;
	justify-content: space-between;
	pointer-events: none;
	padding: 0 1rem;
}

.testimonial-controls .nav-arrow {
	width: 48px;
	height: 48px;
	border-radius: var(--radius-full);
	background: white;
	border: none;
	cursor: pointer;
	pointer-events: auto;
	transition: var(--transition);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.25rem;
	color: var(--gray-600);
	box-shadow: var(--shadow-lg);
}

.testimonial-controls .nav-arrow:hover {
	background: var(--primary);
	color: white;
	transform: scale(1.1);
}

@media (max-width: 767px) {
	.testimonial-controls {
		display: none;
	}
}


/* ===== 8. Counter Section ===== */

.counter-section {
	padding: 5rem 0;
	background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
}

.counter-up {
	text-align: center;
	padding: 1.5rem;
}

.counter-icon {
	margin-bottom: 1rem;
}

.counter-icon i {
	font-size: 2.5rem;
	color: rgba(255, 255, 255, 0.9);
}

.counter-section h3 {
	font-size: 2.5rem;
	font-weight: 800;
	color: white;
	margin-bottom: 0.5rem;
}

.counter-text h4 {
	font-size: 1rem;
	font-weight: 500;
	color: rgba(255, 255, 255, 0.8);
	text-transform: uppercase;
	letter-spacing: 1px;
}


/* ===== 9. Feature Big ===== */

.feature_huge {
	padding: 6rem 0;
	background: var(--gray-50);
}

.feature_huge > .container > .row > .col-md-12:first-child img {
	border-radius: var(--radius-xl);
	margin-bottom: 4rem;
}

.feature_list {
	margin-top: 3rem;
}

.feature_list .col-sm-4 {
	padding: 1.5rem;
	text-align: center;
}

.feature_list img {
	width: 64px !important;
	height: 64px !important;
	margin: 0 auto 1rem !important;
}

.feature_list h1 {
	font-size: 1.125rem;
	font-weight: 700;
	margin-bottom: 0.75rem;
}

.feature_list p {
	font-size: 0.9375rem;
	color: var(--gray-600);
	line-height: 1.6;
}


/* ===== 10. Features Section (CTA with background) ===== */

.features-section {
	display: flex;
	flex-direction: column;
	min-height: 400px;
}

@media (min-width: 768px) {
	.features-section {
		flex-direction: row;
	}
}

.features-section .f-left {
	flex: 1;
	background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
	padding: 4rem 3rem;
	display: flex;
	align-items: center;
}

.features-section .f-left .left-content {
	max-width: 500px;
}

.features-section .f-left h2 {
	font-size: clamp(1.5rem, 3vw, 2rem);
	color: white;
	margin-bottom: 1rem;
}

.features-section .f-left p {
	color: rgba(255, 255, 255, 0.9);
	margin-bottom: 2rem;
	font-size: 1.125rem;
}

.features-section .f-left .btn-action {
	background: white;
	color: var(--primary);
	box-shadow: var(--shadow-lg);
}

.features-section .f-left .btn-action:hover {
	transform: translateY(-2px);
	box-shadow: var(--shadow-xl);
}

.features-section .f-right {
	flex: 1;
	background: url(../images/iphone_hand_1.jpg) center/cover no-repeat;
	min-height: 300px;
}


/* ===== 11. Pricing Section ===== */

.pricing-section {
	padding: 6rem 0;
	background: var(--gray-50);
}

.pricing-intro {
	text-align: center;
	max-width: 600px;
	margin: 0 auto 3rem;
}

.pricing-intro h1 {
	font-size: clamp(1.75rem, 4vw, 2.25rem);
	margin-bottom: 1rem;
}

.pricing-intro p {
	font-size: 1.125rem;
}

.pricing-section .table-left,
.pricing-section .table-right {
	background: white;
	border-radius: var(--radius-xl);
	padding: 2.5rem;
	margin-bottom: 2rem;
	box-shadow: var(--shadow-lg);
	border: 1px solid var(--gray-200);
	transition: var(--transition);
	max-width: 100%;
}

.pricing-section .table-left:hover,
.pricing-section .table-right:hover {
	transform: translateY(-10px);
	box-shadow: var(--shadow-xl), var(--shadow-glow);
	border-color: var(--primary-light);
}

.pricing-section .table-right {
	background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
	border: none;
}

.pricing-section .table-right h2,
.pricing-section .table-right span,
.pricing-section .table-right p,
.pricing-section .table-right li {
	color: white !important;
}

.pricing-section .table-right .btn-action {
	background: white;
	color: var(--primary);
}

.table-left .icon,
.table-right .icon {
	padding: 1.5rem;
	text-align: center;
}

.table-left .icon img,
.table-right .icon img {
	width: 60px;
	height: 60px;
	margin: 0 auto;
}

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

.pricing-details h2 {
	font-size: 1.25rem;
	font-weight: 700;
	color: var(--gray-800);
	margin-bottom: 0.5rem;
}

.pricing-details span {
	display: block;
	font-size: 2.5rem;
	font-weight: 800;
	color: var(--primary);
	margin-bottom: 1rem;
}

.pricing-details p {
	font-size: 0.9375rem;
	color: var(--gray-600);
	margin-bottom: 1.5rem;
}

.pricing-details ul {
	margin: 1.5rem 0 2rem;
	text-align: left;
}

.pricing-details li {
	padding: 0.75rem 0;
	font-size: 0.9375rem;
	color: var(--gray-700);
	border-bottom: 1px solid var(--gray-100);
	display: flex;
	align-items: center;
	gap: 0.75rem;
}

.pricing-details li::before {
	content: '✓';
	color: var(--success);
	font-weight: bold;
}

.pricing-section .table-right .pricing-details li::before {
	color: rgba(255, 255, 255, 0.8);
}

.pricing-section .table-right .pricing-details li {
	border-color: rgba(255, 255, 255, 0.2);
}


/* ===== 12. Client Logos ===== */

.client-section {
	background: white;
	padding: 4rem 0;
	overflow: hidden;
}

.clients-wrapper {
	position: relative;
	width: 100%;
	overflow: hidden;
}

.clients-wrapper::before,
.clients-wrapper::after {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	width: 150px;
	z-index: 2;
	pointer-events: none;
}

.clients-wrapper::before {
	left: 0;
	background: linear-gradient(to right, white, transparent);
}

.clients-wrapper::after {
	right: 0;
	background: linear-gradient(to left, white, transparent);
}

.clients {
	display: flex;
	align-items: center;
	gap: 4rem;
	animation: scroll-logos 25s linear infinite;
	width: max-content;
}

.clients:hover {
	animation-play-state: paused;
}

@keyframes scroll-logos {
	0% { transform: translateX(0); }
	100% { transform: translateX(-50%); }
}

.clients .single {
	flex-shrink: 0;
	padding: 1rem 2rem;
}

.clients .single img,
.clients .single svg {
	filter: grayscale(100%);
	height: 60px;
	width: auto;
	opacity: 0.5;
	transition: var(--transition);
}

.clients .single img:hover,
.clients .single svg:hover {
	filter: grayscale(0%);
	opacity: 1;
	transform: scale(1.1);
}


/* ===== 13. CTA Subscribe ===== */

.cta-sub {
	padding: 6rem 0;
	background: var(--gray-50);
}

.cta-sub.no-color {
	background: white;
}

.cta-sub h1 {
	font-size: clamp(1.5rem, 4vw, 2rem);
	text-align: center;
	margin-bottom: 1rem;
}

.cta-sub p {
	text-align: center;
	font-size: 1.125rem;
	max-width: 600px;
	margin: 0 auto 2.5rem;
}

.subscribe-form {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 0;
	max-width: 500px;
	margin: 0 auto;
}

.subscribe-form .mail {
	flex: 1;
	min-width: 200px;
	padding: 1rem 1.5rem;
	font-size: 1rem;
	border: 2px solid var(--gray-200);
	border-radius: var(--radius-full) 0 0 var(--radius-full);
	background: white;
	outline: none;
	transition: var(--transition);
}

.subscribe-form .mail:focus {
	border-color: var(--primary);
	box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.subscribe-form .submit-button {
	padding: 1rem 2rem;
	font-size: 0.875rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	background: var(--gradient-primary);
	color: white;
	border: none;
	border-radius: 0 var(--radius-full) var(--radius-full) 0;
	cursor: pointer;
	transition: var(--transition);
}

.subscribe-form .submit-button:hover {
	transform: translateX(2px);
	box-shadow: 0 4px 15px rgba(99, 102, 241, 0.4);
}

.success-message {
	color: var(--success);
	text-align: center;
	margin-top: 1rem;
	font-weight: 500;
}

.error-message {
	color: var(--accent);
	text-align: center;
	margin-top: 1rem;
	font-weight: 500;
}

@media (max-width: 480px) {
	.subscribe-form .mail {
		border-radius: var(--radius-full);
		margin-bottom: 1rem;
	}

	.subscribe-form .submit-button {
		border-radius: var(--radius-full);
		width: 100%;
	}
}


/* ===== 14. Footer ===== */

.footer {
	background: var(--gray-900);
	padding: 4rem 0 2rem;
}

.footer img {
	margin: 0 auto 1.5rem;
	filter: brightness(0) invert(1);
}

.footer-menu {
	text-align: center;
	margin-bottom: 1.5rem;
}

.footer-menu li {
	display: inline-block;
	margin: 0 1rem;
}

.footer-menu li a {
	color: var(--gray-400);
	font-size: 0.875rem;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	transition: var(--transition);
}

.footer-menu li a:hover {
	color: white;
}

.footer-text {
	text-align: center;
}

.footer-text p {
	color: var(--gray-500);
	font-size: 0.875rem;
}


/* ===== 15. Back to Top ===== */

.back-to-top {
	position: fixed;
	bottom: 2rem;
	right: 2rem;
	width: 48px;
	height: 48px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--gradient-primary);
	color: white;
	border-radius: var(--radius-full);
	box-shadow: var(--shadow-lg);
	opacity: 0;
	visibility: hidden;
	transition: var(--transition);
	z-index: 100;
}

.back-to-top:hover {
	transform: translateY(-3px);
	box-shadow: var(--shadow-xl);
	color: white;
}

.back-to-top i {
	font-size: 1.25rem;
}


/* ===== 16. Utilities ===== */

.no-color {
	background: white;
}

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

.spacer {
	height: 50px;
}

.spacer-big {
	height: 100px;
}

#loading {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: white;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 10000;
}


/* ===== 17. Responsive ===== */

@media (max-width: 991px) {
	.hero-content,
	.app-hero-content {
		padding: 8rem 0 3rem;
	}

	.services-section,
	.testimonial-section,
	.pricing-section,
	.feature_huge,
	.cta-sub {
		padding: 4rem 0;
	}
}

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

	.hero-content p,
	.app-hero-content p {
		font-size: 1rem;
	}

	.flex-split {
		padding: 2rem 0;
	}

	.flex-split .f-right {
		padding: 1.5rem;
	}

	.counter-section {
		padding: 3rem 0;
	}

	.counter-section h3 {
		font-size: 2rem;
	}

	.features-section .f-left {
		padding: 3rem 1.5rem;
	}

	.pricing-section .table-left,
	.pricing-section .table-right {
		padding: 2rem;
	}
}


/* ===== Features Section 2 (if used) ===== */

.features-section-2 {
	padding: 4rem 0;
	background: linear-gradient(135deg, rgba(99, 102, 241, 0.05) 0%, rgba(139, 92, 246, 0.05) 100%);
}

.features-section-2 .features-content h2 {
	font-size: 1.5rem;
	margin-bottom: 0.5rem;
}

.features-section-2 .features-content h4 {
	font-size: 1.125rem;
	color: var(--gray-600);
	font-weight: 400;
	margin-bottom: 2rem;
}

.features-section-2 .features-content p {
	font-size: 1rem;
	color: var(--gray-600);
}
