/* Global Colors - Wandel Color Palette (Grüner Gradient) */
:root {
	/* Зеленый градиент: от более темного к более светлому/яркому */
	--accent-color-primary: #3a004d; /* Темно-зеленый (Jade) */
	--accent-color-secondary: #77388e; /* Средне-зеленый (Forest) */
	--contrast-color: #1e0025; /* Очень темно-зеленый/почти черный */

	--background-color: #f0fff0; /* Светлый кремово-зеленый (Honeydew) */
	--default-color: #1a1a1a;
	--heading-color: var(--accent-color-primary);
	--accent-color: var(--accent-color-secondary);
	--surface-color: #fcfcfc;
	--nav-color: #333333;
	--nav-hover-color: var(--accent-color-secondary);
	--nav-mobile-background-color: #ffffff;
	--nav-dropdown-background-color: #ffffff;
	--nav-dropdown-color: #1a1a1a;
	--nav-dropdown-hover-color: var(--accent-color-primary);

	--success-color: #10b981;
	--warning-color: #f59e0b;
	--danger-color: #ef4444;
	--info-color: #3b82f6;

	/* Обновленный зеленый градиент */
	--gradient-tiefer: linear-gradient(
		45deg,
		var(--accent-color-primary),
		var(--accent-color-secondary)
	);
	--gradient-wandel: var(
		--gradient-tiefer
	); /* Используем ту же переменную для удобства */
}

/* Color Presets - Light Color Palette for all Sections */

.light-background {
	/* --background-color: #3c323c; */
	--default-color: #1a1a1a;
	--heading-color: var(
		--accent-color-primary
	); /* Темно-зеленый заголовок на светлом фоне */
	--surface-color: #f8f8f8;
	--contrast-color: #000000;
}

.dark-background {
	--background-color: #3d353d;
	--default-color: #e6e6e6;
	--heading-color: #388e3c; /* Средне-зеленый заголовок на темном фоне */
	--surface-color: #333333;
	--contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
	scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
	color: var(--default-color);
	background-color: var(--background-color);
	font-family: var(--default-font);
}

.logo-text-new {
	font-family: var(--heading-font);
	font-size: 1.8rem;
	font-weight: 900;
	color: var(--accent-color-primary); /* Темно-зеленый логотип */
}

.btn-cta-new,
.pricing-btn-primary,
.pricing-cta-btn-primary a {
	/* Используем новый зеленый градиент */
	background-color: var(--accent-color-secondary);
	background-image: var(--gradient-wandel);
	border: none;
	transition: all 0.3s ease;
}

a {
	color: var(--accent-color); /* Средне-зеленый цвет ссылок */
	text-decoration: none;
	transition: 0.3s;
}

a:hover {
	/* Светлее при наведении */
	color: color-mix(in srgb, var(--accent-color), white 25%);
	text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	color: var(--heading-color);
	font-family: var(--heading-font);
}
/* ... остальной CSS без изменений ... */
.php-email-form .loading {
	display: none;
	background: var(--surface-color);
	text-align: center;
	padding: 15px;
	margin-bottom: 24px;
}

.php-email-form .loading:before {
	content: '';
	display: inline-block;
	border-radius: 50%;
	width: 24px;
	height: 24px;
	margin: 0 10px -6px 0;
	border: 3px solid var(--accent-color);
	border-top-color: var(--surface-color);
	animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
	0% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(360deg);
	}
}

/*--------------------------------------------------------------
# Modern Header
--------------------------------------------------------------*/
.header-modern {
	position: relative;
	z-index: 997;
	background: var(--background-color);
}

.header-top {
	background: rgba(58, 58, 58, 0.8);
	backdrop-filter: blur(10px);
	border-bottom: 1px solid rgba(240, 98, 146, 0.1);
	padding: 0.5rem 0;
}

.header-top-content {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 1rem;
}

.header-contact-info {
	display: flex;
	gap: 1.5rem;
	align-items: center;
}

.header-link {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	color: rgba(245, 245, 245, 0.8);
	font-size: 0.85rem;
	text-decoration: none;
	transition: all 0.3s ease;
}

.header-link:hover {
	color: var(--accent-color);
}

.header-link i {
	font-size: 0.9rem;
}

.header-social {
	display: flex;
	gap: 0.75rem;
}

.social-icon {
	width: 32px;
	height: 32px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(240, 98, 146, 0.1);
	border-radius: 8px;
	color: rgba(245, 245, 245, 0.7);
	text-decoration: none;
	transition: all 0.3s ease;
	border: 1px solid rgba(240, 98, 146, 0.2);
}

.social-icon:hover {
	background: var(--accent-color);
	color: var(--contrast-color);
	transform: translateY(-2px);
	border-color: var(--accent-color);
}

.header-main {
	background: rgba(42, 42, 42, 0.95);
	backdrop-filter: blur(20px);
	border-bottom: 1px solid rgba(240, 98, 146, 0.15);
	padding: 1rem 0;
	transition: all 0.3s ease;
}

.scrolled .header-main {
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.header-main-content {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 2rem;
}

.logo-modern {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	text-decoration: none;
	transition: all 0.3s ease;
}

.logo-modern:hover {
	transform: scale(1.05);
}

.logo-modern .logo-img {
	width: 180px;
	height: 54px;
	object-fit: contain;
}

.logo-text {
	font-size: 1.5rem;
	font-weight: 700;
	background: linear-gradient(
		135deg,
		var(--accent-color),
		var(--heading-color)
	);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	font-family: var(--heading-font);
}

.navmenu-modern {
	flex: 1;
	display: flex;
	justify-content: center;
}

.nav-menu-list {
	display: flex;
	list-style: none;
	margin: 0;
	padding: 0;
	gap: 0.5rem;
	align-items: center;
}

.nav-menu-list li {
	position: relative;
}

.nav-link {
	display: flex;
	align-items: center;
	padding: 0.75rem 1.25rem;
	color: rgba(245, 245, 245, 0.8);
	text-decoration: none;
	font-size: 0.95rem;
	font-weight: 500;
	border-radius: 8px;
	transition: all 0.3s ease;
	position: relative;
}

.nav-link:hover,
.nav-link.active {
	color: var(--accent-color);
	background: rgba(240, 98, 146, 0.1);
}

.nav-link.active::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 60%;
	height: 2px;
	background: linear-gradient(
		135deg,
		var(--accent-color),
		var(--heading-color)
	);
	border-radius: 2px;
}

.header-actions {
	display: flex;
	align-items: center;
	gap: 1rem;
}

.btn-link {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	color: rgba(245, 245, 245, 0.8);
	text-decoration: none;
	font-size: 0.9rem;
	padding: 0.5rem 1rem;
	border-radius: 8px;
	transition: all 0.3s ease;
}

.btn-link:hover {
	color: var(--accent-color);
	background: rgba(240, 98, 146, 0.1);
}

.btn-primary-modern {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	background: linear-gradient(
		135deg,
		var(--accent-color),
		var(--heading-color)
	);
	color: var(--contrast-color);
	padding: 0.75rem 1.5rem;
	border-radius: 10px;
	text-decoration: none;
	font-weight: 600;
	font-size: 0.95rem;
	transition: all 0.3s ease;
	box-shadow: 0 4px 15px rgba(233, 30, 99, 0.3);
}

.btn-primary-modern:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(233, 30, 99, 0.4);
}

.btn-primary-modern i {
	transition: transform 0.3s ease;
}

.btn-primary-modern:hover i {
	transform: translateX(3px);
}

.mobile-nav-toggle {
	display: none;
	font-size: 1.5rem;
	color: var(--default-color);
	cursor: pointer;
	transition: all 0.3s ease;
	padding: 0.5rem;
	line-height: 1;
	z-index: 1000;
}

.mobile-nav-toggle:hover {
	color: var(--accent-color);
}

@media (max-width: 1199px) {
	body {
		overflow-x: hidden;
	}

	@keyframes fadeIn {
		from {
			opacity: 0;
		}
		to {
			opacity: 1;
		}
	}

	.navmenu-modern {
		position: fixed;
		top: 0;
		right: 0;
		width: 300px;
		height: 100vh;
		background: var(--surface-color);
		padding: 2rem;
		padding-top: 4rem;
		transform: translateX(100%);
		visibility: hidden;
		opacity: 0;
		pointer-events: none;
		transition:
			transform 0.3s ease,
			visibility 0.3s ease,
			opacity 0.3s ease,
			pointer-events 0.3s ease;
		z-index: 1001;
		box-shadow: -5px 0 20px rgba(0, 0, 0, 0.3);
		flex-direction: column;
		justify-content: flex-start;
		overflow-y: auto;
		flex: none;
		display: flex;
	}

	.navmenu-modern.active {
		transform: translateX(0);
		visibility: visible;
		opacity: 1;
		pointer-events: auto;
	}

	.navmenu-modern.active,
	.navmenu-modern.active * {
		pointer-events: auto !important;
	}

	.navmenu-modern:not(.active) {
		display: none !important;
	}

	.header-main-content {
		position: relative;
	}

	.header-main-content .navmenu-modern {
		position: fixed;
		top: 0;
		right: 0;
	}

	.nav-menu-list {
		flex-direction: column;
		align-items: flex-start;
		gap: 0;
		width: 100%;
		position: relative;
		z-index: 1;
	}

	.nav-link {
		width: 100%;
		padding: 1rem;
		border-radius: 0;
		position: relative;
		z-index: 1;
	}

	.mobile-nav-toggle {
		display: block;
		order: -1;
	}

	.header-actions {
		gap: 0.75rem;
	}

	.header-top-content {
		justify-content: center;
	}

	.header-contact-info {
		display: none;
	}
}

@media (max-width: 768px) {
	.header-top {
		display: none;
	}

	.logo-modern .logo-img {
		width: 140px;
		height: 42px;
	}

	.btn-link {
		display: none;
	}

	.btn-primary-modern span {
		display: none;
	}

	.btn-primary-modern {
		padding: 0.75rem;
		width: 44px;
		height: 44px;
		justify-content: center;
	}
}

/*--------------------------------------------------------------
# Global Header (Legacy - keeping for compatibility)
--------------------------------------------------------------*/
.header {
	color: var(--default-color);
	background-color: var(--background-color);
	padding: 15px 0;
	transition: all 0.5s;
	z-index: 997;
}

.header .logo {
	line-height: 1;
}

/* Logo */
.logo-img {
	width: 240px;
	height: 70px;
	transition: all 0.3s ease;
}

.logo:hover .logo-img {
	transform: scale(1.1) rotate(5deg);
}

.header .logo h1 {
	font-size: 30px;
	margin: 0;
	font-weight: 400;
	color: var(--heading-color);
}

.header .btn-getstarted,
.header .btn-getstarted:focus {
	color: var(--contrast-color);
	background: var(--accent-color);
	font-size: 14px;
	padding: 8px 25px;
	margin: 0 0 0 30px;
	border-radius: 50px;
	transition: 0.3s;
}

.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
	color: var(--contrast-color);
	background: color-mix(in srgb, var(--accent-color), transparent 15%);
}

@media (max-width: 1200px) {
	.header .logo {
		order: 1;
	}

	.header .btn-getstarted {
		order: 2;
		margin: 0 15px 0 0;
		padding: 6px 15px;
	}

	.header .navmenu {
		order: 3;
	}
}

.scrolled .header {
	box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu - Desktop */
@media (min-width: 1200px) {
	.navmenu {
		padding: 0;
	}

	.navmenu ul {
		margin: 0;
		padding: 0;
		display: flex;
		list-style: none;
		align-items: center;
	}

	.navmenu li {
		position: relative;
	}

	.navmenu a,
	.navmenu a:focus {
		color: var(--nav-color);
		padding: 18px 15px;
		font-size: 16px;
		font-family: var(--nav-font);
		font-weight: 400;
		display: flex;
		align-items: center;
		justify-content: space-between;
		white-space: nowrap;
		transition: 0.3s;
	}

	.navmenu a i,
	.navmenu a:focus i {
		font-size: 12px;
		line-height: 0;
		margin-left: 5px;
		transition: 0.3s;
	}

	.navmenu li:last-child a {
		padding-right: 0;
	}

	.navmenu li:hover > a,
	.navmenu .active,
	.navmenu .active:focus {
		color: var(--nav-hover-color);
	}

	.navmenu .dropdown ul {
		margin: 0;
		padding: 10px 0;
		background: var(--nav-dropdown-background-color);
		display: block;
		position: absolute;
		visibility: hidden;
		left: 14px;
		top: 130%;
		opacity: 0;
		transition: 0.3s;
		border-radius: 4px;
		z-index: 99;
		box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
	}

	.navmenu .dropdown ul li {
		min-width: 200px;
	}

	.navmenu .dropdown ul a {
		padding: 10px 20px;
		font-size: 15px;
		text-transform: none;
		color: var(--nav-dropdown-color);
	}

	.navmenu .dropdown ul a i {
		font-size: 12px;
	}

	.navmenu .dropdown ul a:hover,
	.navmenu .dropdown ul .active:hover,
	.navmenu .dropdown ul li:hover > a {
		color: var(--nav-dropdown-hover-color);
	}

	.navmenu .dropdown:hover > ul {
		opacity: 1;
		top: 100%;
		visibility: visible;
	}

	.navmenu .dropdown .dropdown ul {
		top: 0;
		left: -90%;
		visibility: hidden;
	}

	.navmenu .dropdown .dropdown:hover > ul {
		opacity: 1;
		top: 0;
		left: -100%;
		visibility: visible;
	}
}

/* Navmenu - Mobile */
@media (max-width: 1199px) {
	.mobile-nav-toggle {
		color: var(--nav-color);
		font-size: 28px;
		line-height: 0;
		margin-right: 10px;
		cursor: pointer;
		transition: color 0.3s;
	}

	.navmenu {
		padding: 0;
		z-index: 9997;
	}

	.navmenu ul {
		display: none;
		list-style: none;
		position: absolute;
		inset: 60px 20px 20px 20px;
		padding: 10px 0;
		margin: 0;
		border-radius: 6px;
		background-color: var(--nav-mobile-background-color);
		overflow-y: auto;
		transition: 0.3s;
		z-index: 9998;
		box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
	}

	.navmenu a,
	.navmenu a:focus {
		color: var(--nav-dropdown-color);
		padding: 10px 20px;
		font-family: var(--nav-font);
		font-size: 17px;
		font-weight: 500;
		display: flex;
		align-items: center;
		justify-content: space-between;
		white-space: nowrap;
		transition: 0.3s;
	}

	.navmenu a i,
	.navmenu a:focus i {
		font-size: 12px;
		line-height: 0;
		margin-left: 5px;
		width: 30px;
		height: 30px;
		display: flex;
		align-items: center;
		justify-content: center;
		border-radius: 50%;
		transition: 0.3s;
		background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
	}

	.navmenu a i:hover,
	.navmenu a:focus i:hover {
		background-color: var(--accent-color);
		color: var(--contrast-color);
	}

	.navmenu a:hover,
	.navmenu .active,
	.navmenu .active:focus {
		color: var(--nav-dropdown-hover-color);
	}

	.navmenu .active i,
	.navmenu .active:focus i {
		background-color: var(--accent-color);
		color: var(--contrast-color);
		transform: rotate(180deg);
	}

	.navmenu .dropdown ul {
		position: static;
		display: none;
		z-index: 99;
		padding: 10px 0;
		margin: 10px 20px;
		background-color: var(--nav-dropdown-background-color);
		border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
		box-shadow: none;
		transition: all 0.5s ease-in-out;
	}

	.navmenu .dropdown ul ul {
		background-color: rgba(33, 37, 41, 0.1);
	}

	.navmenu .dropdown > .dropdown-active {
		display: block;
		background-color: rgba(33, 37, 41, 0.03);
	}

	.mobile-nav-active {
		overflow: hidden;
	}

	.mobile-nav-active .mobile-nav-toggle {
		color: #fff;
		position: absolute;
		font-size: 32px;
		top: 15px;
		right: 15px;
		margin-right: 0;
		z-index: 9999;
	}

	.mobile-nav-active .navmenu {
		position: fixed;
		overflow: hidden;
		inset: 0;
		background: rgba(33, 37, 41, 0.8);
		transition: 0.3s;
	}

	.mobile-nav-active .navmenu > ul {
		display: block;
	}
}

/*--------------------------------------------------------------
# Modern Footer
--------------------------------------------------------------*/
.footer-modern {
	background: linear-gradient(180deg, #2a2a2a 0%, #1a1a1a 100%);
	color: var(--default-color);
	position: relative;
	overflow: hidden;
	border-top: 1px solid rgba(240, 98, 146, 0.2);
}

.footer-modern::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: radial-gradient(
			circle at 20% 20%,
			rgba(233, 30, 99, 0.08) 0%,
			transparent 50%
		),
		radial-gradient(
			circle at 80% 80%,
			rgba(240, 98, 146, 0.05) 0%,
			transparent 50%
		);
	z-index: 1;
	pointer-events: none;
}

.footer-top {
	padding: 4rem 0 2rem;
	position: relative;
	z-index: 2;
}

.footer-brand-modern {
	margin-bottom: 2rem;
}

.footer-logo-link {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	text-decoration: none;
	margin-bottom: 1.5rem;
	transition: all 0.3s ease;
}

.footer-logo-link:hover {
	transform: scale(1.05);
}

.footer-logo-img {
	width: 50px;
	height: 50px;
	object-fit: contain;
}

.footer-logo-text {
	font-size: 1.75rem;
	font-weight: 700;
	background: linear-gradient(
		135deg,
		var(--accent-color),
		var(--heading-color)
	);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	font-family: var(--heading-font);
}

.footer-description {
	color: rgba(245, 245, 245, 0.7);
	line-height: 1.7;
	margin-bottom: 2rem;
	font-size: 0.95rem;
}

.footer-social-modern {
	display: flex;
	gap: 0.75rem;
	flex-wrap: wrap;
}

.social-btn {
	width: 44px;
	height: 44px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(58, 58, 58, 0.6);
	border: 1px solid rgba(240, 98, 146, 0.2);
	border-radius: 12px;
	color: rgba(245, 245, 245, 0.7);
	text-decoration: none;
	transition: all 0.3s ease;
	font-size: 1.1rem;
}

.social-btn:hover {
	background: var(--accent-color);
	color: var(--contrast-color);
	transform: translateY(-3px);
	border-color: var(--accent-color);
	box-shadow: 0 8px 20px rgba(233, 30, 99, 0.3);
}

.footer-column {
	margin-bottom: 2rem;
}

.footer-title {
	font-size: 1.1rem;
	font-weight: 600;
	color: var(--heading-color);
	margin-bottom: 1.5rem;
	font-family: var(--heading-font);
	text-transform: uppercase;
	letter-spacing: 0.5px;
	font-size: 0.95rem;
}

.footer-menu {
	list-style: none;
	padding: 0;
	margin: 0;
}

.footer-menu li {
	margin-bottom: 0.75rem;
}

.footer-menu a {
	color: rgba(245, 245, 245, 0.7);
	text-decoration: none;
	font-size: 0.9rem;
	transition: all 0.3s ease;
	display: inline-block;
}

.footer-menu a:hover {
	color: var(--accent-color);
	transform: translateX(5px);
}

.footer-newsletter-text {
	color: rgba(245, 245, 245, 0.7);
	font-size: 0.9rem;
	line-height: 1.6;
	margin-bottom: 1.5rem;
}

.newsletter-form-modern {
	margin-bottom: 2rem;
}

.newsletter-input-group {
	display: flex;
	background: rgba(58, 58, 58, 0.6);
	border: 1px solid rgba(240, 98, 146, 0.2);
	border-radius: 12px;
	overflow: hidden;
	transition: all 0.3s ease;
}

.newsletter-input-group:focus-within {
	border-color: var(--accent-color);
	box-shadow: 0 0 0 3px rgba(233, 30, 99, 0.1);
}

.newsletter-input {
	flex: 1;
	border: none;
	background: transparent;
	padding: 1rem 1.25rem;
	color: var(--default-color);
	font-size: 0.95rem;
	outline: none;
}

.newsletter-input::placeholder {
	color: rgba(245, 245, 245, 0.5);
}

.newsletter-btn {
	background: linear-gradient(
		135deg,
		var(--accent-color),
		var(--heading-color)
	);
	border: none;
	padding: 1rem 1.5rem;
	color: var(--contrast-color);
	cursor: pointer;
	transition: all 0.3s ease;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.1rem;
}

.newsletter-btn:hover {
	background: linear-gradient(
		135deg,
		var(--heading-color),
		var(--accent-color)
	);
	transform: scale(1.05);
}

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

.contact-row {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	color: rgba(245, 245, 245, 0.7);
	font-size: 0.9rem;
}

.contact-row i {
	color: var(--accent-color);
	font-size: 1.1rem;
}

.contact-row a {
	color: rgba(245, 245, 245, 0.7);
	text-decoration: none;
	transition: all 0.3s ease;
}

.contact-row a:hover {
	color: var(--accent-color);
}

.footer-bottom-modern {
	background: rgba(26, 26, 26, 0.8);
	border-top: 1px solid rgba(240, 98, 146, 0.1);
	padding: 1.5rem 0;
	position: relative;
	z-index: 2;
}

.footer-bottom-content {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 1rem;
}

.copyright-modern {
	color: rgba(245, 245, 245, 0.7);
	font-size: 0.9rem;
}

.copyright-modern strong {
	color: var(--accent-color);
}

.footer-legal-modern {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	flex-wrap: wrap;
}

.footer-legal-modern a {
	color: rgba(245, 245, 245, 0.7);
	text-decoration: none;
	font-size: 0.85rem;
	transition: all 0.3s ease;
}

.footer-legal-modern a:hover {
	color: var(--accent-color);
}

.footer-legal-modern .separator {
	color: rgba(245, 245, 245, 0.4);
}

@media (max-width: 768px) {
	.footer-top {
		padding: 3rem 0 1.5rem;
	}

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

	.footer-legal-modern {
		justify-content: center;
	}
}

/*--------------------------------------------------------------
# Global Footer (Legacy - keeping for compatibility)
--------------------------------------------------------------*/
.footer {
	background: linear-gradient(180deg, #1a1626 0%, #0f0d17 100%);
	color: var(--contrast-color);
	font-size: 14px;
	padding: 0;
	position: relative;
	overflow: hidden;
	border-top: 1px solid rgba(147, 51, 234, 0.2);
}

.footer::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: radial-gradient(
			circle at 20% 20%,
			rgba(147, 51, 234, 0.1) 0%,
			transparent 50%
		),
		radial-gradient(
			circle at 80% 80%,
			rgba(177, 156, 217, 0.05) 0%,
			transparent 50%
		);
	z-index: 1;
}

/* Newsletter Section */
.footer-newsletter {
	background: linear-gradient(135deg, var(--accent-color), #f59e0b);
	padding: 80px 0;
	text-align: center;
	position: relative;
	z-index: 2;
}

.newsletter-content {
	max-width: 600px;
	margin: 0 auto;
}

.newsletter-icon {
	width: 80px;
	height: 80px;
	background: rgba(255, 255, 255, 0.2);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 30px;
	backdrop-filter: blur(10px);
}

.newsletter-icon i {
	font-size: 36px;
	color: white;
}

.newsletter-content h3 {
	font-size: 2.5rem;
	font-weight: 700;
	color: white;
	margin-bottom: 20px;
	line-height: 1.2;
}

.newsletter-content p {
	font-size: 1.1rem;
	color: rgba(255, 255, 255, 0.9);
	margin-bottom: 40px;
	line-height: 1.6;
}

.newsletter-form {
	position: relative;
}

.input-group {
	display: flex;
	background: rgba(255, 255, 255, 0.15);
	border-radius: 50px;
	padding: 8px;
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.2);
	transition: all 0.3s ease;
}

.input-group:focus-within {
	background: rgba(255, 255, 255, 0.2);
	border-color: rgba(255, 255, 255, 0.4);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.newsletter-form input[type='email'] {
	flex: 1;
	border: none;
	background: transparent;
	padding: 15px 25px;
	color: white;
	font-size: 16px;
	outline: none;
}

.newsletter-form input[type='email']::placeholder {
	color: rgba(255, 255, 255, 0.7);
}

.btn-newsletter {
	background: var(--surface-color);
	border: none;
	border-radius: 50px;
	padding: 15px 25px;
	color: var(--accent-color);
	font-size: 18px;
	cursor: pointer;
	transition: all 0.3s ease;
	display: flex;
	align-items: center;
	justify-content: center;
	min-width: 60px;
}

.btn-newsletter:hover {
	background: var(--dark-background);
	color: white;
	transform: translateY(-2px);
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.form-messages {
	margin-top: 20px;
}

.form-messages > div {
	display: none;
	padding: 15px;
	border-radius: 10px;
	margin-top: 15px;
	font-weight: 500;
}

.form-messages .loading {
	background: rgba(255, 255, 255, 0.2);
	color: white;
}

.form-messages .error-message {
	background: rgba(239, 68, 68, 0.2);
	color: #fecaca;
}

.form-messages .sent-message {
	background: rgba(34, 197, 94, 0.2);
	color: #bbf7d0;
}

/* Main Footer Content */
.footer-main {
	padding: 60px 0 40px;
	position: relative;
	z-index: 2;
}

.footer-brand {
	margin-bottom: 30px;
}

.brand-logo {
	width: 200px;
	height: 60px;
	margin-bottom: 1.5rem;
	display: flex;
	align-items: center;
}

.footer-logo {
	width: 100%;
	height: 100%;
	object-fit: contain;
	transition: all 0.3s ease;
	filter: brightness(0) invert(1);
}

.brand-logo:hover .footer-logo {
	transform: scale(1.05);
	opacity: 0.9;
}

.brand-logo i {
	font-size: 28px;
	color: white;
}

.brand-name {
	font-size: 1.5rem;
	font-weight: 600;
	color: var(--heading-color);
	margin-bottom: 1rem;
	font-family: var(--heading-font);
	letter-spacing: 0.5px;
}

.brand-description {
	color: rgba(255, 255, 255, 0.8);
	line-height: 1.7;
	margin-bottom: 30px;
}

/* Footer Social */
.footer-social {
	margin-top: 2rem;
	padding-top: 2rem;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.social-icons {
	display: flex;
	gap: 0.75rem;
	flex-wrap: wrap;
}

.social-link {
	width: 44px;
	height: 44px;
	background: rgba(255, 255, 255, 0.05);
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: rgba(255, 255, 255, 0.7);
	text-decoration: none;
	transition: all 0.3s ease;
	border: 1px solid rgba(255, 255, 255, 0.08);
}

.social-link:hover {
	background: rgba(147, 51, 234, 0.2);
	color: var(--accent-color);
	transform: translateY(-3px) scale(1.05);
	box-shadow: 0 8px 20px rgba(147, 51, 234, 0.25);
	border-color: rgba(147, 51, 234, 0.4);
}

.social-link i {
	font-size: 1.1rem;
}

/* Footer Newsletter Compact */
.footer-newsletter-compact {
	margin-top: 2rem;
	padding: 1.5rem;
	background: rgba(255, 255, 255, 0.03);
	border-radius: 12px;
	border: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-newsletter-compact h5 {
	color: var(--heading-color);
	font-size: 1rem;
	font-weight: 600;
	margin-bottom: 0.5rem;
}

.footer-newsletter-compact p {
	color: rgba(255, 255, 255, 0.7);
	font-size: 0.85rem;
	margin-bottom: 1.25rem;
	line-height: 1.5;
}

.newsletter-form-compact {
	margin-top: 1rem;
}

.input-group-compact {
	display: flex;
	background: rgba(255, 255, 255, 0.05);
	border-radius: 10px;
	border: 1px solid rgba(255, 255, 255, 0.1);
	overflow: hidden;
	transition: all 0.3s ease;
	gap: 0.5rem;
}

.input-group-compact:focus-within {
	border-color: var(--accent-color);
	background: rgba(255, 255, 255, 0.08);
	box-shadow: 0 0 0 3px rgba(147, 51, 234, 0.1);
}

.input-group-compact input[type='email'] {
	flex: 1;
	border: none;
	background: transparent;
	padding: 0.875rem 1rem;
	color: var(--contrast-color);
	font-size: 0.9rem;
	outline: none;
}

.input-group-compact input[type='email']::placeholder {
	color: rgba(255, 255, 255, 0.5);
}

.btn-newsletter-compact {
	background: var(--accent-color);
	border: none;
	padding: 0.875rem 1.5rem;
	color: var(--contrast-color);
	cursor: pointer;
	transition: all 0.3s ease;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 600;
	font-size: 0.9rem;
	white-space: nowrap;
	border-radius: 8px;
}

.btn-newsletter-compact:hover {
	background: var(--heading-color);
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(147, 51, 234, 0.3);
}

/* Footer Legal */
.footer-legal {
	text-align: right;
}

.footer-legal .legal-info {
	margin-bottom: 1rem;
	padding: 1rem;
	background: rgba(255, 255, 255, 0.03);
	border-radius: 8px;
	border: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-legal .legal-info p {
	color: rgba(255, 255, 255, 0.6);
	font-size: 0.8rem;
	line-height: 1.6;
	margin: 0;
}

.footer-legal .legal-info strong {
	color: rgba(255, 255, 255, 0.9);
}

.social-links {
	display: flex;
	gap: 15px;
}

.social-link {
	width: 45px;
	height: 45px;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: rgba(255, 255, 255, 0.7);
	text-decoration: none;
	transition: all 0.3s ease;
	border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-link:hover {
	background: var(--accent-color);
	color: white;
	transform: translateY(-3px);
	border-color: var(--accent-color);
	box-shadow: 0 10px 25px rgba(217, 119, 6, 0.3);
}

.social-link i {
	font-size: 20px;
}

/* Footer Links */
.footer-links h4 {
	font-size: 1.1rem;
	font-weight: 600;
	color: var(--heading-color);
	margin-bottom: 1.5rem;
	text-transform: uppercase;
	letter-spacing: 1px;
	font-size: 0.9rem;
}

.footer-links ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.footer-links ul li {
	margin-bottom: 0.75rem;
}

.footer-links ul li a {
	color: rgba(255, 255, 255, 0.7);
	text-decoration: none;
	transition: all 0.3s ease;
	display: block;
	padding: 0.5rem 0.75rem;
	border-radius: 6px;
	background: rgba(255, 255, 255, 0.02);
	border-left: 2px solid transparent;
}

.footer-links ul li a:hover {
	color: var(--contrast-color);
	background: rgba(147, 51, 234, 0.15);
	border-left-color: var(--accent-color);
	padding-left: 1rem;
}

/* Footer Contact */
.footer-contact h4 {
	font-size: 1.1rem;
	font-weight: 600;
	color: var(--heading-color);
	margin-bottom: 1.5rem;
	text-transform: uppercase;
	letter-spacing: 1px;
	font-size: 0.9rem;
}

.contact-item {
	display: flex;
	align-items: flex-start;
	margin-bottom: 1rem;
	padding: 0.75rem;
	background: rgba(255, 255, 255, 0.03);
	border-radius: 8px;
	border: 1px solid rgba(255, 255, 255, 0.05);
	transition: all 0.3s ease;
}

.contact-item:hover {
	background: rgba(147, 51, 234, 0.15);
	border-color: rgba(147, 51, 234, 0.3);
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.contact-item i {
	color: var(--accent-color);
	font-size: 1.1rem;
	margin-right: 0.75rem;
	margin-top: 0.25rem;
	flex-shrink: 0;
	text-align: center;
}

.contact-item span,
.contact-item a {
	color: rgba(255, 255, 255, 0.8);
	font-size: 0.9rem;
	line-height: 1.5;
	flex: 1;
}

.contact-item a {
	text-decoration: none;
	transition: color 0.3s ease;
}

.contact-item:hover a,
.contact-item:hover span {
	color: var(--contrast-color);
}

/* Footer Bottom */
.footer-bottom {
	background: rgba(0, 0, 0, 0.4);
	padding: 30px 0;
	position: relative;
	z-index: 2;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-content {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 20px;
}

.copyright p {
	color: rgba(255, 255, 255, 0.8);
	margin: 0;
	font-size: 14px;
}

.copyright p strong {
	color: var(--contrast-color);
}

.footer-bottom-links {
	display: flex;
	align-items: center;
	gap: 1rem;
	flex-wrap: wrap;
	justify-content: flex-end;
}

.footer-bottom-links a {
	color: rgba(255, 255, 255, 0.7);
	text-decoration: none;
	font-size: 0.85rem;
	padding: 0.5rem 1rem;
	border-radius: 6px;
	background: rgba(255, 255, 255, 0.03);
	transition: all 0.3s ease;
	border: 1px solid transparent;
}

.footer-bottom-links a:hover {
	color: var(--contrast-color);
	background: rgba(147, 51, 234, 0.15);
	border-color: rgba(147, 51, 234, 0.3);
	transform: translateY(-2px);
}

.separator {
	color: rgba(255, 255, 255, 0.4);
	font-size: 12px;
}

/* Responsive Footer */
@media (max-width: 991px) {
	.footer-legal {
		text-align: left;
		margin-top: 2rem;
	}

	.footer-main {
		padding: 60px 0 30px;
	}

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

	.footer-bottom .col-md-6 {
		text-align: center;
		margin-bottom: 1rem;
	}

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

@media (max-width: 768px) {
	.footer-newsletter {
		padding: 60px 0;
	}

	.newsletter-content h3 {
		font-size: 1.8rem;
	}

	.newsletter-content p {
		font-size: 1rem;
	}

	.input-group {
		flex-direction: column;
		gap: 15px;
	}

	.btn-newsletter {
		width: 100%;
		padding: 15px;
	}

	.footer-main {
		padding: 50px 0 25px;
	}

	.social-links {
		justify-content: center;
	}
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
	position: fixed;
	inset: 0;
	z-index: 999999;
	overflow: hidden;
	background: var(--background-color);
	transition: all 0.6s ease-out;
}

#preloader:before {
	content: '';
	position: fixed;
	top: calc(50% - 30px);
	left: calc(50% - 30px);
	border: 6px solid #ffffff;
	border-color: var(--accent-color) transparent var(--accent-color) transparent;
	border-radius: 50%;
	width: 60px;
	height: 60px;
	animation: animate-preloader 1.5s linear infinite;
}

@keyframes animate-preloader {
	0% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(360deg);
	}
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
	position: fixed;
	visibility: hidden;
	opacity: 0;
	right: 15px;
	bottom: 15px;
	z-index: 99999;
	background-color: var(--accent-color);
	width: 40px;
	height: 40px;
	border-radius: 4px;
	transition: all 0.4s;
}

.scroll-top i {
	font-size: 24px;
	color: var(--contrast-color);
	line-height: 0;
}

.scroll-top:hover {
	background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
	color: var(--contrast-color);
}

.scroll-top.active {
	visibility: visible;
	opacity: 1;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
	[data-aos-delay] {
		transition-delay: 0 !important;
	}
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
	color: var(--default-color);
	background: linear-gradient(
		135deg,
		rgba(147, 51, 234, 0.1) 0%,
		rgba(177, 156, 217, 0.05) 100%
	);
	padding: 60px 0;
	position: relative;
	border-bottom: 1px solid rgba(147, 51, 234, 0.2);
}

.page-title::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(90deg, var(--accent-color), var(--heading-color));
}

.page-title h1 {
	font-size: 28px;
	font-weight: 700;
	margin: 0;
}

.page-title .breadcrumbs ol {
	display: flex;
	flex-wrap: wrap;
	list-style: none;
	padding: 0 0 10px 0;
	margin: 0;
	font-size: 14px;
	font-weight: 400;
}

.page-title .breadcrumbs ol li + li {
	padding-left: 10px;
}

.page-title .breadcrumbs ol li + li::before {
	content: '/';
	display: inline-block;
	padding-right: 10px;
	color: color-mix(in srgb, var(--default-color), transparent 70%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
	color: var(--default-color);
	background-color: var(--background-color);
	padding: 60px 0;
	scroll-margin-top: 90px;
	overflow: clip;
}

@media (max-width: 1199px) {
	section,
	.section {
		scroll-margin-top: 66px;
	}
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
	text-align: center;
	padding-bottom: 60px;
	position: relative;
}

.section-title h2 {
	font-size: 32px;
	font-weight: 700;
	margin-bottom: 15px;
}

.section-title p {
	margin-bottom: 0;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
	width: 100%;
	min-height: 100vh;
	position: relative;
	display: flex;
	align-items: center;
	overflow: hidden;
	padding: 120px 0 80px;
	background: var(--background-color);
}

.hero-background {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(135deg, #2a2a2a 0%, #3a3a3a 50%, #4a4a4a 100%);
	z-index: 0;
	overflow: hidden;
}

.hero-background::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: radial-gradient(
			circle at 20% 50%,
			rgba(233, 30, 99, 0.15) 0%,
			transparent 50%
		),
		radial-gradient(
			circle at 80% 80%,
			rgba(240, 98, 146, 0.1) 0%,
			transparent 50%
		);
	z-index: 1;
}

/* Animated Shapes */
.animated-shapes {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
	overflow: hidden;
}

.shape {
	position: absolute;
	border-radius: 50%;
	opacity: 0.1;
	animation: float-shape 20s infinite ease-in-out;
}

.shape-1 {
	width: 300px;
	height: 300px;
	background: var(--accent-color);
	top: 10%;
	left: 10%;
	animation-delay: 0s;
}

.shape-2 {
	width: 200px;
	height: 200px;
	background: var(--heading-color);
	top: 60%;
	right: 15%;
	animation-delay: 2s;
}

.shape-3 {
	width: 150px;
	height: 150px;
	background: var(--accent-color);
	bottom: 20%;
	left: 20%;
	animation-delay: 4s;
}

.shape-4 {
	width: 250px;
	height: 250px;
	background: var(--heading-color);
	top: 30%;
	right: 30%;
	animation-delay: 6s;
}

.shape-5 {
	width: 180px;
	height: 180px;
	background: var(--accent-color);
	bottom: 10%;
	right: 10%;
	animation-delay: 8s;
}

@keyframes float-shape {
	0%,
	100% {
		transform: translate(0, 0) rotate(0deg);
	}
	25% {
		transform: translate(30px, -30px) rotate(90deg);
	}
	50% {
		transform: translate(-20px, 20px) rotate(180deg);
	}
	75% {
		transform: translate(20px, 30px) rotate(270deg);
	}
}

.hero-content {
	position: relative;
	z-index: 3;
	color: var(--contrast-color);
}

.hero-badge {
	display: inline-flex;
	align-items: center;
	background: rgba(147, 51, 234, 0.2);
	border: 1px solid rgba(147, 51, 234, 0.3);
	padding: 0.5rem 1.25rem;
	border-radius: 50px;
	font-size: 0.9rem;
	margin-bottom: 1.5rem;
	backdrop-filter: blur(10px);
}

.hero-badge i {
	color: var(--accent-color);
	font-size: 1rem;
}

.hero-title {
	font-size: 3.5rem;
	font-weight: 700;
	line-height: 1.2;
	margin-bottom: 1.5rem;
	color: var(--contrast-color);
}

.hero-title .highlight-text {
	background: linear-gradient(
		135deg,
		var(--accent-color),
		var(--heading-color)
	);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	position: relative;
	animation: glow 3s ease-in-out infinite;
}

@keyframes glow {
	0%,
	100% {
		filter: drop-shadow(0 0 5px rgba(233, 30, 99, 0.5));
	}
	50% {
		filter: drop-shadow(0 0 15px rgba(240, 98, 146, 0.8));
	}
}

.hero-description {
	font-size: 1.25rem;
	line-height: 1.8;
	color: rgba(255, 255, 255, 0.9);
	margin-bottom: 2rem;
	max-width: 600px;
}

.hero-stats {
	display: flex;
	gap: 2rem;
	margin-bottom: 2.5rem;
	flex-wrap: wrap;
}

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

.stat-number {
	font-size: 2.5rem;
	font-weight: 700;
	color: var(--accent-color);
	line-height: 1;
	margin-bottom: 0.5rem;
}

.stat-label {
	font-size: 0.9rem;
	color: rgba(255, 255, 255, 0.7);
}

.hero-cta {
	margin-bottom: 1.5rem;
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	align-items: center;
}

.hero-guarantee {
	display: flex;
	align-items: center;
	color: rgba(255, 255, 255, 0.8);
	font-size: 0.95rem;
}

.hero-guarantee i {
	color: var(--success-color);
	font-size: 1.2rem;
	margin-right: 0.5rem;
}

.hero-visual {
	position: relative;
	z-index: 3;
	height: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 2rem;
}

/* Canvas Container */
.hero-canvas-container {
	position: relative;
	width: 100%;
	height: 400px;
	border-radius: 20px;
	overflow: hidden;
	background: rgba(58, 58, 58, 0.3);
	backdrop-filter: blur(10px);
	border: 1px solid rgba(240, 98, 146, 0.2);
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

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

/* Floating Cards */
.floating-cards {
	position: relative;
	width: 100%;
	height: 200px;
}

.floating-card {
	position: absolute;
	background: rgba(58, 58, 58, 0.8);
	backdrop-filter: blur(10px);
	padding: 1rem 1.5rem;
	border-radius: 16px;
	display: flex;
	align-items: center;
	gap: 0.75rem;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
	z-index: 10;
	border: 1px solid rgba(240, 98, 146, 0.3);
	transition: all 0.3s ease;
	cursor: pointer;
}

.floating-card:hover {
	transform: translateY(-5px) scale(1.05);
	box-shadow: 0 15px 40px rgba(240, 98, 146, 0.4);
	border-color: var(--accent-color);
}

.floating-card .card-icon {
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(
		135deg,
		var(--accent-color),
		var(--heading-color)
	);
	border-radius: 10px;
	animation: pulse-icon 2s ease-in-out infinite;
}

.floating-card i {
	font-size: 1.5rem;
	color: var(--contrast-color);
}

.floating-card span {
	color: var(--default-color);
	font-weight: 600;
	font-size: 0.95rem;
}

.floating-card.card-1 {
	top: 0;
	left: 0;
	animation: float-card-1 4s ease-in-out infinite;
}

.floating-card.card-2 {
	top: 20%;
	right: 0;
	animation: float-card-2 4s ease-in-out infinite;
	animation-delay: 1s;
}

.floating-card.card-3 {
	bottom: 20%;
	left: 10%;
	animation: float-card-3 4s ease-in-out infinite;
	animation-delay: 2s;
}

.floating-card.card-4 {
	bottom: 0;
	right: 10%;
	animation: float-card-4 4s ease-in-out infinite;
	animation-delay: 3s;
}

@keyframes float-card-1 {
	0%,
	100% {
		transform: translate(0, 0) rotate(0deg);
	}
	50% {
		transform: translate(10px, -15px) rotate(5deg);
	}
}

@keyframes float-card-2 {
	0%,
	100% {
		transform: translate(0, 0) rotate(0deg);
	}
	50% {
		transform: translate(-10px, 15px) rotate(-5deg);
	}
}

@keyframes float-card-3 {
	0%,
	100% {
		transform: translate(0, 0) rotate(0deg);
	}
	50% {
		transform: translate(15px, -10px) rotate(5deg);
	}
}

@keyframes float-card-4 {
	0%,
	100% {
		transform: translate(0, 0) rotate(0deg);
	}
	50% {
		transform: translate(-15px, 10px) rotate(-5deg);
	}
}

@keyframes pulse-icon {
	0%,
	100% {
		transform: scale(1);
		box-shadow: 0 0 0 0 rgba(240, 98, 146, 0.7);
	}
	50% {
		transform: scale(1.1);
		box-shadow: 0 0 0 10px rgba(240, 98, 146, 0);
	}
}

/* Hero Stats */
.hero-stats {
	display: flex;
	gap: 2rem;
	width: 100%;
	justify-content: center;
	flex-wrap: wrap;
}

.stat-item {
	text-align: center;
	padding: 1.5rem;
	background: rgba(58, 58, 58, 0.5);
	backdrop-filter: blur(10px);
	border-radius: 16px;
	border: 1px solid rgba(240, 98, 146, 0.2);
	min-width: 120px;
	transition: all 0.3s ease;
}

.stat-item:hover {
	transform: translateY(-5px);
	border-color: var(--accent-color);
	box-shadow: 0 10px 30px rgba(240, 98, 146, 0.3);
}

.stat-number {
	font-size: 2.5rem;
	font-weight: 700;
	background: linear-gradient(
		135deg,
		var(--accent-color),
		var(--heading-color)
	);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	line-height: 1;
	margin-bottom: 0.5rem;
}

.stat-label {
	font-size: 0.9rem;
	color: rgba(245, 245, 245, 0.8);
	font-weight: 500;
}

.hero-scroll-indicator {
	position: absolute;
	bottom: 30px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 3;
}

.scroll-down {
	display: flex;
	flex-direction: column;
	align-items: center;
	color: rgba(255, 255, 255, 0.7);
	text-decoration: none;
	transition: all 0.3s ease;
}

.scroll-down:hover {
	color: var(--accent-color);
}

.scroll-down span {
	font-size: 0.85rem;
	margin-bottom: 0.5rem;
}

.scroll-down i {
	font-size: 1.5rem;
	animation: bounce 2s infinite;
}

@keyframes bounce {
	0%,
	100% {
		transform: translateY(0);
	}
	50% {
		transform: translateY(10px);
	}
}

@keyframes ripple {
	to {
		transform: translate(-50%, -50%) scale(4);
		opacity: 0;
	}
}

@media (max-width: 768px) {
	.hero {
		min-height: auto;
		padding: 100px 0 60px;
	}

	.hero-title {
		font-size: 2rem;
		line-height: 1.3;
	}

	.hero-description {
		font-size: 1rem;
	}

	.hero-cta {
		flex-direction: column;
		gap: 1rem;
	}

	.hero-cta .btn {
		width: 100%;
		margin: 0 !important;
	}

	.hero-stats {
		gap: 1rem;
		flex-direction: column;
	}

	.stat-item {
		width: 100%;
		min-width: auto;
	}

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

	.hero-canvas-container {
		height: 300px;
		margin-bottom: 2rem;
	}

	.floating-cards {
		display: none;
	}

	.hero-scroll-indicator {
		bottom: 20px;
	}
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about {
	position: relative;
	overflow: hidden;
}

.about-bg {
	background: linear-gradient(135deg, #4a3d5c 0%, #6b5b7d 100%);
	position: relative;
	padding: 80px 0;
}

.about-content {
	color: white;
	position: relative;
	z-index: 2;
}

.section-badge {
	display: inline-block;
	background: rgba(255, 255, 255, 0.2);
	color: white;
	padding: 8px 20px;
	border-radius: 25px;
	font-size: 14px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 1px;
	margin-bottom: 20px;
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.3);
}

.about-title {
	font-size: 3rem;
	font-weight: 700;
	margin-bottom: 25px;
	line-height: 1.2;
	color: white;
}

.about-title .highlight {
	background: linear-gradient(45deg, #b19cd9, #c4a8f0);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	position: relative;
}

.about-description {
	font-size: 1.1rem;
	line-height: 1.8;
	margin-bottom: 40px;
	color: rgba(255, 255, 255, 0.9);
}

.about-features {
	display: flex;
	flex-direction: column;
	gap: 25px;
}

.feature-item {
	display: flex;
	align-items: flex-start;
	gap: 20px;
	padding: 20px;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 15px;
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.2);
	transition: all 0.3s ease;
}

.feature-item:hover {
	background: rgba(255, 255, 255, 0.15);
	transform: translateY(-2px);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.feature-icon {
	width: 50px;
	height: 50px;
	background: linear-gradient(45deg, #9333ea, #b19cd9);
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.feature-icon i {
	font-size: 24px;
	color: #ffffff;
}

.feature-content h4 {
	color: white;
	font-size: 1.2rem;
	font-weight: 600;
	margin-bottom: 8px;
}

.feature-content p {
	color: rgba(255, 255, 255, 0.8);
	margin: 0;
	line-height: 1.6;
}

.about-visual {
	position: relative;
	height: 100%;
	min-height: 500px;
}

.image-stack {
	height: 100%;
}

.image-item {
	position: absolute;
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.main-image {
	top: 0;
	left: 0;
	width: 80%;
	z-index: 2;
}

.overlay-image {
	top: 20%;
	right: 0;
	width: 70%;
	z-index: 1;
}

.card-icon {
	width: 40px;
	height: 40px;
	background: linear-gradient(45deg, #ffd700, #ffed4e);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 10px;
}

.card-icon i {
	color: #333;
	font-size: 18px;
}

.card-content h5 {
	color: #333;
	font-size: 1.5rem;
	font-weight: 700;
	margin: 0 0 5px 0;
}

.card-content p {
	color: #666;
	margin: 0;
	font-size: 0.9rem;
}

.stats-container {
	background: rgba(255, 255, 255, 0.1);
	border-radius: 20px;
	padding: 40px;
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-card {
	text-align: center;
	padding: 20px;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 15px;
	border: 1px solid rgba(255, 255, 255, 0.2);
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.stat-card:hover {
	background: rgba(255, 255, 255, 0.15);
	transform: translateY(-5px);
}

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

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

.stat-number {
	font-size: 2.5rem;
	font-weight: 700;
	color: #ffd700;
	margin-bottom: 10px;
}

.stat-label {
	color: white;
	font-size: 0.9rem;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.stat-icon {
	position: absolute;
	top: 10px;
	right: 10px;
	opacity: 0.3;
}

.stat-icon i {
	font-size: 24px;
	color: white;
}

.cta-section {
	background: rgba(255, 255, 255, 0.1);
	border-radius: 20px;
	padding: 50px;
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.2);
}

.cta-section h3 {
	color: white;
	font-size: 2rem;
	font-weight: 700;
	margin-bottom: 15px;
}

.cta-section p {
	color: rgba(255, 255, 255, 0.8);
	font-size: 1.1rem;
	margin-bottom: 30px;
}

.cta-buttons {
	display: flex;
	gap: 20px;
	justify-content: center;
	flex-wrap: wrap;
}

.btn {
	padding: 15px 30px;
	border-radius: 50px;
	font-weight: 600;
	text-decoration: none;
	transition: all 0.3s ease;
	border: 2px solid transparent;
	display: inline-block;
}

.btn-primary {
	background: linear-gradient(45deg, #9333ea, #b19cd9);
	color: var(--contrast-color);
	border-color: #9333ea;
}

.btn-primary:hover {
	background: linear-gradient(45deg, #b19cd9, #9333ea);
	transform: translateY(-2px);
	box-shadow: 0 10px 25px rgba(147, 51, 234, 0.3);
}

.btn-outline-primary {
	background: transparent;
	color: var(--accent-color);
	border-color: var(--accent-color);
}

.btn-outline-primary:hover {
	background: var(--accent-color);
	color: var(--contrast-color);
	transform: translateY(-2px);
	box-shadow: 0 10px 25px rgba(147, 51, 234, 0.3);
}

@media (max-width: 768px) {
	.about-title {
		font-size: 2rem;
	}

	.about-visual {
		min-height: 300px;
		margin-top: 40px;
	}

	.image-item {
		position: relative;
		width: 100% !important;
		margin-bottom: 20px;
	}

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

	.btn {
		width: 100%;
		max-width: 300px;
	}
}

/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/
.features .icon-box {
	display: flex;
	padding: 25px;
	background: rgba(255, 255, 255, 0.05);
	border-radius: 15px;
	border: 1px solid rgba(255, 255, 255, 0.1);
	transition: all 0.3s ease;
	backdrop-filter: blur(10px);
}

.features .icon-box:hover {
	background: rgba(255, 255, 255, 0.1);
	transform: translateY(-5px);
	border-color: var(--accent-color);
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.features .icon-box h4 {
	font-size: 20px;
	font-weight: 700;
	margin: 0 0 10px 0;
	color: var(--contrast-color);
}

.features .icon-box i {
	font-size: 44px;
	line-height: 44px;
	color: var(--accent-color);
	margin-right: 15px;
	background: rgba(217, 119, 6, 0.1);
	padding: 15px;
	border-radius: 12px;
	transition: all 0.3s ease;
}

.features .icon-box:hover i {
	background: rgba(217, 119, 6, 0.2);
	transform: scale(1.1);
}

.features .icon-box p {
	font-size: 15px;
	color: rgba(255, 255, 255, 0.8);
	margin-bottom: 0;
	line-height: 1.6;
}

/* Dark background features section */
.features.dark-background {
	background: var(--dark-background);
	color: var(--contrast-color);
	padding: 100px 0;
	position: relative;
	overflow: hidden;
}

.features.dark-background::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(
		135deg,
		rgba(0, 0, 0, 0.8) 0%,
		rgba(0, 0, 0, 0.6) 100%
	);
	z-index: 1;
}

.features.dark-background .container {
	position: relative;
	z-index: 2;
}

/* Features Content */
.features-content {
	padding-right: 30px;
}

.section-badge {
	display: inline-block;
	background: linear-gradient(135deg, var(--accent-color), #f59e0b);
	color: white;
	padding: 8px 20px;
	border-radius: 25px;
	font-size: 14px;
	font-weight: 600;
	margin-bottom: 20px;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.features-title {
	font-size: 3.5rem;
	font-weight: 700;
	margin-bottom: 25px;
	line-height: 1.2;
	color: var(--contrast-color);
}

.features-title .highlight {
	background: linear-gradient(135deg, var(--accent-color), #f59e0b);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.features-description {
	font-size: 1.2rem;
	line-height: 1.7;
	color: rgba(255, 255, 255, 0.9);
	margin-bottom: 40px;
}

/* Features Grid */
.features-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 25px;
	margin-bottom: 40px;
}

.feature-card {
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 20px;
	padding: 25px;
	transition: all 0.4s ease;
	backdrop-filter: blur(10px);
}

.feature-card:hover {
	background: rgba(255, 255, 255, 0.1);
	border-color: var(--accent-color);
	transform: translateY(-8px);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.feature-icon-wrapper {
	width: 60px;
	height: 60px;
	background: linear-gradient(135deg, var(--accent-color), #f59e0b);
	border-radius: 15px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 20px;
	transition: all 0.3s ease;
}

.feature-card:hover .feature-icon-wrapper {
	transform: scale(1.1) rotate(5deg);
}

.feature-icon-wrapper i {
	font-size: 28px;
	color: white;
}

.feature-content h4 {
	font-size: 18px;
	font-weight: 700;
	color: var(--contrast-color);
	margin-bottom: 12px;
}

.feature-content p {
	font-size: 14px;
	color: rgba(255, 255, 255, 0.8);
	line-height: 1.6;
	margin: 0;
}

/* Features CTA */
.features-cta {
	margin-top: 30px;
}

.features-cta .btn {
	background: linear-gradient(135deg, var(--accent-color), #f59e0b);
	border: none;
	padding: 15px 35px;
	border-radius: 50px;
	font-weight: 600;
	font-size: 16px;
	transition: all 0.3s ease;
	box-shadow: 0 10px 30px rgba(217, 119, 6, 0.3);
}

.features-cta .btn:hover {
	transform: translateY(-3px);
	box-shadow: 0 15px 40px rgba(217, 119, 6, 0.4);
}

/* Features Visual */
.features-visual {
	position: relative;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.image-composition {
	position: relative;
	width: 100%;
	height: 500px;
}

.main-image-wrapper {
	position: relative;
	width: 100%;
	height: 100%;
	border-radius: 25px;
	overflow: hidden;
	box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.main-image {
	width: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}

.main-image-wrapper:hover .main-image {
	transform: scale(1.05);
}

.image-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(
		45deg,
		rgba(217, 119, 6, 0.2),
		rgba(0, 0, 0, 0.3)
	);
	border-radius: 25px;
}

/* Floating Cards */
.floating-card {
	position: absolute;
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(10px);
	border-radius: 15px;
	padding: 15px 20px;
	display: flex;
	align-items: center;
	gap: 10px;
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
	animation: float 6s ease-in-out infinite;
}

.floating-card i {
	color: var(--accent-color);
	font-size: 20px;
}

.floating-card span {
	color: var(--accent-color);
	font-weight: 600;
	font-size: 14px;
	white-space: nowrap;
}

.card-1 {
	top: 10%;
	left: -20px;
	animation-delay: 0s;
}

.card-2 {
	top: 50%;
	right: -20px;
	animation-delay: 2s;
}

.card-3 {
	bottom: 10%;
	left: 10%;
	animation-delay: 4s;
}

@keyframes float {
	0%,
	100% {
		transform: translateY(0px);
	}
	50% {
		transform: translateY(-20px);
	}
}

/* Responsive */
@media (max-width: 991px) {
	.features-grid {
		grid-template-columns: 1fr;
		gap: 20px;
	}

	.features-content {
		padding-right: 0;
		margin-bottom: 50px;
	}

	.features-title {
		font-size: 2.5rem;
	}

	.image-composition {
		height: 400px;
	}

	.floating-card {
		display: none;
	}
}

@media (max-width: 768px) {
	.features-title {
		font-size: 2rem;
	}

	.features-description {
		font-size: 1rem;
	}

	.feature-card {
		padding: 20px;
	}
}

/*--------------------------------------------------------------
# Feature Details Section
--------------------------------------------------------------*/
.features-item {
	background: linear-gradient(
		135deg,
		rgba(255, 255, 255, 0.1) 0%,
		rgba(255, 255, 255, 0.05) 100%
	);
	border-radius: 24px;
	padding: 40px;
	margin: 20px 0;
	border: 1px solid rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(20px);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	position: relative;
	overflow: hidden;
}

.features-item::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(90deg, #6b5b7d, #8b7d9f, #9333ea);
	background-size: 200% 100%;
	animation: gradient-shift 3s ease-in-out infinite;
}

@keyframes gradient-shift {
	0%,
	100% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
}

.features-item:hover {
	transform: translateY(-8px) scale(1.02);
	box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
	border-color: rgba(255, 255, 255, 0.2);
}

.features-item .row {
	align-items: center;
}

.features-item img {
	border-radius: 20px;
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
	transition: transform 0.3s ease;
}

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

.features-item h3 {
	font-size: 2.2rem;
	font-weight: 700;
	margin-bottom: 20px;
	background: linear-gradient(135deg, #6b5b7d 0%, #8b7d9f 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	position: relative;
}

.features-item h3::after {
	content: '';
	position: absolute;
	bottom: -8px;
	left: 0;
	width: 60px;
	height: 3px;
	background: linear-gradient(90deg, #6b5b7d, #8b7d9f);
	border-radius: 2px;
}

.features-item .fst-italic {
	font-size: 1.1rem;
	font-style: italic;
	margin-bottom: 20px;
	line-height: 1.6;
	position: relative;
	padding-left: 20px;
}

.features-item .fst-italic::before {
	content: '"';
	position: absolute;
	left: 0;
	top: -5px;
	font-size: 2rem;
	color: #b19cd9;
	font-family: serif;
}

.features-item p {
	font-size: 1rem;
	line-height: 1.7;
	margin-bottom: 25px;
}

.features-item ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.features-item ul li {
	display: flex;
	align-items: center;
	padding: 15px 20px;
	margin-bottom: 15px;
	background: rgba(255, 255, 255, 0.08);
	border-radius: 12px;
	border: 1px solid rgba(255, 255, 255, 0.1);
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.features-item ul li::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(
		90deg,
		transparent,
		rgba(255, 255, 255, 0.1),
		transparent
	);
	transition: left 0.5s ease;
}

.features-item ul li:hover::before {
	left: 100%;
}

.features-item ul li:hover {
	background: rgba(255, 255, 255, 0.12);
	transform: translateX(5px);
	border-color: rgba(255, 255, 255, 0.2);
}

.features-item ul li i {
	font-size: 20px;
	color: #b19cd9;
	margin-right: 15px;
	width: 24px;
	text-align: center;
	background: rgba(102, 126, 234, 0.1);
	padding: 8px;
	border-radius: 8px;
	transition: all 0.3s ease;
}

.features-item ul li:hover i {
	background: rgba(102, 126, 234, 0.2);
	transform: scale(1.1);
}

.features-item ul li span {
	font-weight: 500;
	line-height: 1.5;
}

.features-item ul li:last-child {
	margin-bottom: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
	.features-item {
		padding: 30px 20px;
		margin: 15px 0;
	}

	.features-item h3 {
		font-size: 1.8rem;
		text-align: center;
	}

	.features-item h3::after {
		left: 50%;
		transform: translateX(-50%);
	}

	.features-item .fst-italic {
		text-align: center;
		padding-left: 0;
	}

	.features-item .fst-italic::before {
		display: none;
	}

	.features-item ul li {
		padding: 12px 15px;
		margin-bottom: 10px;
	}
}

@media (max-width: 576px) {
	.features-item {
		padding: 25px 15px;
	}

	.features-item h3 {
		font-size: 1.5rem;
	}

	.features-item ul li {
		padding: 10px 12px;
		font-size: 0.9rem;
	}
}

/*--------------------------------------------------------------
# Gallery Section
--------------------------------------------------------------*/
.gallery {
	overflow: hidden;
}

.gallery .swiper-wrapper {
	height: auto;
}

.gallery .swiper-pagination {
	margin-top: 20px;
	position: relative;
}

.gallery .swiper-pagination .swiper-pagination-bullet {
	background-color: var(--background-color);
	border: 1px solid var(--accent-color);
	width: 12px;
	height: 12px;
	opacity: 1;
}

.gallery .swiper-pagination .swiper-pagination-bullet-active {
	background-color: var(--accent-color);
}

.gallery .swiper-slide-active {
	text-align: center;
}

@media (min-width: 992px) {
	.gallery .swiper-wrapper {
		padding: 60px 0;
	}

	.gallery .swiper-slide-active {
		background: var(--background-color);
		border: 6px solid var(--accent-color);
		padding: 4px;
		z-index: 1;
		transform: scale(1.2);
		border-radius: 25px;
		transition: none;
	}
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials .testimonial-wrap {
	padding-left: 50px;
}

/* New Testimonial Cards */
.testimonial-card {
	background: var(--surface-color);
	border-radius: 16px;
	padding: 2rem;
	height: 100%;
	display: flex;
	flex-direction: column;
	transition: all 0.3s ease;
	border: 1px solid rgba(147, 51, 234, 0.1);
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.testimonial-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 30px rgba(147, 51, 234, 0.2);
	border-color: var(--accent-color);
}

.testimonial-header {
	display: flex;
	align-items: center;
	gap: 1rem;
	margin-bottom: 1.5rem;
}

.testimonial-avatar {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	background: linear-gradient(
		135deg,
		var(--accent-color),
		var(--heading-color)
	);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.avatar-icon {
	color: var(--contrast-color);
	font-weight: 700;
	font-size: 1.25rem;
}

.testimonial-info {
	flex: 1;
}

.testimonial-info h4 {
	margin: 0 0 0.25rem 0;
	color: var(--heading-color);
	font-size: 1.1rem;
	font-weight: 600;
}

.testimonial-role {
	margin: 0 0 0.5rem 0;
	color: var(--default-color);
	opacity: 0.7;
	font-size: 0.9rem;
}

.testimonial-info .stars {
	color: #fbbf24;
	font-size: 0.9rem;
}

.testimonial-content {
	flex: 1;
	margin-bottom: 1.5rem;
}

.testimonial-content p {
	color: var(--default-color);
	line-height: 1.8;
	margin: 0;
	font-size: 0.95rem;
}

.quote-icon-left,
.quote-icon-right {
	color: var(--accent-color);
	opacity: 0.3;
	font-size: 1.5rem;
}

.quote-icon-left {
	margin-right: 0.5rem;
}

.quote-icon-right {
	margin-left: 0.5rem;
}

.testimonial-result {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.75rem 1rem;
	background: rgba(147, 51, 234, 0.1);
	border-radius: 8px;
	border-left: 3px solid var(--accent-color);
}

.testimonial-result i {
	color: var(--success-color);
	font-size: 1.1rem;
}

.testimonial-result span {
	color: var(--default-color);
	font-size: 0.9rem;
	font-weight: 500;
}

/* Program Slides */
.program-slide {
	background: var(--surface-color);
	border-radius: 20px;
	padding: 2.5rem;
	height: 100%;
	display: flex;
	flex-direction: column;
	border: 1px solid rgba(147, 51, 234, 0.1);
	transition: all 0.3s ease;
}

.program-slide:hover {
	transform: translateY(-5px);
	box-shadow: 0 15px 40px rgba(147, 51, 234, 0.2);
	border-color: var(--accent-color);
}

.program-icon {
	width: 80px;
	height: 80px;
	border-radius: 16px;
	background: linear-gradient(
		135deg,
		var(--accent-color),
		var(--heading-color)
	);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 1.5rem;
}

.program-icon i {
	font-size: 2.5rem;
	color: var(--contrast-color);
}

.program-slide h3 {
	color: var(--heading-color);
	font-size: 1.75rem;
	font-weight: 700;
	margin-bottom: 0.75rem;
}

.program-subtitle {
	color: var(--default-color);
	opacity: 0.8;
	font-size: 1rem;
	margin-bottom: 2rem;
	font-style: italic;
}

.program-content {
	flex: 1;
	margin-bottom: 2rem;
}

.program-feature {
	display: flex;
	gap: 1rem;
	margin-bottom: 1.5rem;
	align-items: flex-start;
}

.program-feature i {
	color: var(--success-color);
	font-size: 1.25rem;
	margin-top: 0.25rem;
	flex-shrink: 0;
}

.program-feature strong {
	display: block;
	color: var(--heading-color);
	font-size: 1.05rem;
	margin-bottom: 0.5rem;
	font-weight: 600;
}

.program-feature p {
	color: var(--default-color);
	opacity: 0.9;
	line-height: 1.7;
	margin: 0;
	font-size: 0.95rem;
}

.program-stats {
	display: flex;
	justify-content: space-around;
	padding-top: 1.5rem;
	border-top: 1px solid rgba(147, 51, 234, 0.1);
	gap: 1rem;
}

.stat-mini {
	text-align: center;
	flex: 1;
}

.stat-mini .stat-value {
	display: block;
	font-size: 1.75rem;
	font-weight: 700;
	color: var(--accent-color);
	line-height: 1;
	margin-bottom: 0.25rem;
}

.stat-mini .stat-text {
	display: block;
	font-size: 0.85rem;
	color: var(--default-color);
	opacity: 0.7;
}

.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
	overflow: hidden;
}

.testimonials .testimonial-item {
	background: linear-gradient(135deg, var(--surface-color) 0%, #f8f9fa 100%);
	border-radius: 20px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
	box-sizing: border-box;
	padding: 40px 35px 35px 80px;
	margin: 25px 15px;
	min-height: 220px;
	position: relative;
	border: 1px solid rgba(42, 93, 91, 0.1);
	transition: all 0.3s ease;
	overflow: hidden;
}

.testimonials .testimonial-item::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(90deg, var(--accent-color), var(--heading-color));
}

.testimonials .testimonial-item:hover {
	transform: translateY(-5px);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.testimonials .testimonial-item .testimonial-img {
	width: 100px;
	height: 100px;
	border-radius: 50%;
	border: 4px solid var(--accent-color);
	position: absolute;
	left: -50px;
	top: 30px;
	background: var(--background-color);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 40px;
	color: var(--accent-color);
	font-weight: bold;
}

.testimonials .testimonial-item h3 {
	font-size: 20px;
	font-weight: 700;
	margin: 0 0 8px 0;
	color: var(--heading-color);
	letter-spacing: 0.5px;
}

.testimonials .testimonial-item h4 {
	color: var(--accent-color);
	font-size: 14px;
	margin: 0 0 15px 0;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.testimonials .testimonial-item .stars {
	margin: 15px 0;
	display: flex;
	gap: 3px;
}

.testimonials .testimonial-item .stars i {
	color: #ffd700;
	font-size: 16px;
	filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.1));
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
	color: var(--accent-color);
	font-size: 28px;
	line-height: 0;
	opacity: 0.7;
}

.testimonials .testimonial-item .quote-icon-left {
	display: inline-block;
	left: -8px;
	position: relative;
	top: -5px;
}

.testimonials .testimonial-item .quote-icon-right {
	display: inline-block;
	right: -8px;
	position: relative;
	top: 15px;
	transform: scale(-1, -1);
}

.testimonials .testimonial-item p {
	font-style: italic;
	margin: 20px auto 15px auto;
	line-height: 1.6;
	color: var(--default-color);
	font-size: 15px;
	position: relative;
	z-index: 1;
}

.testimonials .testimonial-item p span {
	position: relative;
	z-index: 2;
}

.testimonials .swiper-wrapper {
	height: auto;
}

.testimonials .swiper-pagination {
	margin-top: 20px;
	position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
	width: 12px;
	height: 12px;
	background-color: var(--background-color);
	opacity: 1;
	border: 1px solid var(--accent-color);
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
	background-color: var(--accent-color);
}

@media (max-width: 767px) {
	.testimonials .testimonial-wrap {
		padding-left: 0;
	}

	.testimonials .testimonials-carousel,
	.testimonials .testimonials-slider {
		overflow: hidden;
	}

	.testimonials .testimonial-item {
		padding: 30px;
		margin: 15px;
	}

	.testimonials .testimonial-item .testimonial-img {
		position: static;
		left: auto;
	}
}

/*--------------------------------------------------------------
# Pricing Section
--------------------------------------------------------------*/
.pricing .pricing-item {
	background-color: var(--surface-color);
	padding: 60px 40px;
	box-shadow: 0 3px 20px -2px rgba(0, 0, 0, 0.1);
	height: 100%;
	position: relative;
}

.pricing h3 {
	font-weight: 600;
	margin-bottom: 15px;
	font-size: 20px;
}

.pricing h4 {
	font-size: 48px;
	color: var(--accent-color);
	font-family: var(--heading-font);
	font-weight: 400;
}

.pricing h4 sup {
	font-size: 28px;
}

.pricing h4 span {
	color: color-mix(in srgb, var(--default-color), transparent 60%);
	font-size: 18px;
}

.pricing ul {
	padding: 20px 0;
	list-style: none;
	color: color-mix(in srgb, var(--default-color), transparent 30%);
	text-align: left;
	line-height: 20px;
}

.pricing ul li {
	padding: 10px 0;
	display: flex;
	align-items: center;
}

.pricing ul i {
	color: #059652;
	font-size: 24px;
	padding-right: 3px;
}

.pricing ul .na {
	color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.pricing ul .na i {
	color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.pricing ul .na span {
	text-decoration: line-through;
}

.pricing .buy-btn {
	color: color-mix(in srgb, var(--default-color), transparent 40%);
	background-color: var(--background-color);
	display: inline-block;
	padding: 8px 35px 10px 35px;
	border-radius: 4px;
	border: 1px solid color-mix(in srgb, var(--default-color), transparent 60%);
	transition: none;
	font-size: 16px;
	font-weight: 500;
	font-family: var(--heading-font);
	transition: 0.3s;
}

.pricing .buy-btn:hover {
	background: var(--accent-color);
	border-color: var(--accent-color);
	color: var(--contrast-color);
}

.pricing .featured {
	z-index: 10;
}

.pricing .featured .pricing-item {
	background: var(--accent-color);
}

@media (min-width: 992px) {
	.pricing .featured .pricing-item {
		transform: scale(1.02, 1.1);
	}
}

.pricing .featured h3,
.pricing .featured h4,
.pricing .featured h4 span,
.pricing .featured ul,
.pricing .featured ul .na,
.pricing .featured ul i,
.pricing .featured ul .na i {
	color: var(--contrast-color);
}

.pricing .featured .buy-btn {
	background: var(--accent-color);
	color: var(--contrast-color);
	border-color: var(--contrast-color);
}

.pricing .featured .buy-btn:hover {
	background: color-mix(in srgb, var(--background-color), transparent 92%);
}

/* New Pricing Card Styles */
.pricing-card {
	background-color: var(--surface-color);
	border-radius: 12px;
	padding: 2.5rem;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
	transition:
		transform 0.3s ease,
		box-shadow 0.3s ease;
	height: 100%;
	display: flex;
	flex-direction: column;
	position: relative;
	border: 2px solid transparent;
}

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

.pricing-card.featured {
	border-color: var(--accent-color);
	transform: scale(1.05);
}

.pricing-card.featured::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(90deg, var(--accent-color), var(--heading-color));
	border-radius: 12px 12px 0 0;
}

.popular-badge {
	position: absolute;
	top: -15px;
	right: 20px;
	background: var(--accent-color);
	color: var(--contrast-color);
	padding: 0.5rem 1rem;
	border-radius: 20px;
	font-size: 0.875rem;
	font-weight: 600;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.pricing-header {
	text-align: center;
	margin-bottom: 2rem;
	padding-bottom: 1.5rem;
	border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.pricing-header h3 {
	font-size: 1.75rem;
	font-weight: 600;
	color: var(--heading-color);
	margin-bottom: 1rem;
}

.price {
	display: flex;
	align-items: baseline;
	justify-content: center;
	margin: 1rem 0;
}

.price .currency {
	font-size: 1.5rem;
	font-weight: 500;
	color: var(--default-color);
	margin-right: 0.25rem;
}

.price .amount {
	font-size: 3.5rem;
	font-weight: 700;
	color: var(--accent-color);
	line-height: 1;
}

.price .period {
	font-size: 1rem;
	color: var(--default-color);
	opacity: 0.7;
	margin-left: 0.25rem;
}

.price-description {
	color: var(--default-color);
	opacity: 0.8;
	margin-top: 0.5rem;
	font-size: 0.95rem;
}

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

.pricing-features ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.pricing-features ul li {
	padding: 0.75rem 0;
	display: flex;
	align-items: flex-start;
	font-size: 0.95rem;
	color: var(--default-color);
}

.pricing-features ul li i {
	margin-right: 0.75rem;
	margin-top: 0.25rem;
	font-size: 1.1rem;
	flex-shrink: 0;
}

.pricing-features ul li .bi-check-circle-fill {
	color: var(--success-color);
}

.pricing-features ul li .bi-x-circle {
	color: var(--danger-color);
	opacity: 0.6;
}

.pricing-footer {
	margin-top: auto;
}

.pricing-comparison {
	background: var(--surface-color);
	padding: 2rem;
	border-radius: 12px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.pricing-comparison table {
	margin-bottom: 0;
}

.pricing-comparison table th {
	background-color: var(--heading-color);
	color: var(--contrast-color);
	font-weight: 600;
	padding: 1rem;
	text-align: center;
}

.pricing-comparison table td {
	padding: 1rem;
	text-align: center;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.pricing-comparison table tbody tr:hover {
	background-color: rgba(147, 51, 234, 0.1);
}

.pricing-cta {
	padding: 2rem;
	background: var(--surface-color);
	border-radius: 12px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

/* Legal Info Styles */
.legal-info {
	color: var(--default-color);
	opacity: 0.8;
	line-height: 1.6;
}

.legal-info a {
	color: var(--accent-color);
	text-decoration: none;
}

.legal-info a:hover {
	text-decoration: underline;
}

.legal-info-section {
	background: var(--surface-color);
	padding: 1.5rem;
	border-radius: 8px;
	margin: 1.5rem 0;
	border-left: 4px solid var(--accent-color);
}

.legal-info-section h3 {
	color: var(--heading-color);
	margin-bottom: 1rem;
	font-size: 1.25rem;
}

.legal-info-section p {
	margin-bottom: 0.5rem;
}

.stats-section {
	margin: 2rem 0;
}

.stat-item {
	text-align: center;
	padding: 1.5rem;
	background: var(--surface-color);
	border-radius: 8px;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.stat-item h3 {
	font-size: 2.5rem;
	color: var(--accent-color);
	font-weight: 700;
	margin-bottom: 0.5rem;
}

.stat-item p {
	color: var(--default-color);
	opacity: 0.8;
	margin: 0;
}

/*--------------------------------------------------------------
# New Features Section Styles
--------------------------------------------------------------*/
.feature-box {
	background: var(--surface-color);
	padding: 2.5rem;
	border-radius: 16px;
	height: 100%;
	transition: all 0.3s ease;
	border: 2px solid transparent;
	position: relative;
	overflow: hidden;
}

.feature-box::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(90deg, var(--accent-color), var(--heading-color));
	transform: scaleX(0);
	transition: transform 0.3s ease;
}

.feature-box:hover::before {
	transform: scaleX(1);
}

.feature-box:hover {
	transform: translateY(-8px);
	box-shadow: 0 20px 40px rgba(147, 51, 234, 0.2);
	border-color: var(--accent-color);
}

.feature-icon-box {
	width: 70px;
	height: 70px;
	background: linear-gradient(
		135deg,
		var(--accent-color),
		var(--heading-color)
	);
	border-radius: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 1.5rem;
	transition: all 0.3s ease;
}

.feature-box:hover .feature-icon-box {
	transform: scale(1.1) rotate(5deg);
}

.feature-icon-box i {
	font-size: 2rem;
	color: var(--contrast-color);
}

.feature-box h3 {
	color: var(--heading-color);
	font-size: 1.5rem;
	font-weight: 600;
	margin-bottom: 1rem;
}

.feature-box p,
.feature-description {
	color: var(--default-color);
	opacity: 0.9;
	margin-bottom: 1.5rem;
	line-height: 1.7;
	font-size: 0.95rem;
}

.feature-list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.feature-list li {
	padding: 0.5rem 0;
	color: var(--default-color);
	opacity: 0.8;
	display: flex;
	align-items: center;
	font-size: 0.95rem;
}

.feature-list li i {
	color: var(--success-color);
	margin-right: 0.75rem;
	font-size: 1.1rem;
}

.features-cta-box {
	background: var(--surface-color);
	padding: 3rem 2rem;
	border-radius: 20px;
	border: 1px solid rgba(147, 51, 234, 0.2);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.features-cta-box h3 {
	color: var(--heading-color);
	font-size: 2rem;
	font-weight: 700;
	margin-bottom: 1rem;
}

.features-cta-box .lead {
	color: var(--default-color);
	opacity: 0.9;
	font-size: 1.1rem;
	margin-bottom: 0;
}

/*--------------------------------------------------------------
# How It Works Section Styles
--------------------------------------------------------------*/
.how-it-works {
	position: relative;
}

.step-card {
	background: var(--surface-color);
	padding: 2.5rem;
	border-radius: 16px;
	text-align: center;
	height: 100%;
	transition: all 0.3s ease;
	position: relative;
	border: 2px solid transparent;
}

.step-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 20px 40px rgba(147, 51, 234, 0.2);
	border-color: var(--accent-color);
}

.step-number {
	position: absolute;
	top: -15px;
	left: 50%;
	transform: translateX(-50%);
	width: 50px;
	height: 50px;
	background: linear-gradient(
		135deg,
		var(--accent-color),
		var(--heading-color)
	);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--contrast-color);
	box-shadow: 0 4px 15px rgba(147, 51, 234, 0.3);
}

.step-icon {
	width: 80px;
	height: 80px;
	background: linear-gradient(
		135deg,
		rgba(147, 51, 234, 0.1),
		rgba(177, 156, 217, 0.1)
	);
	border-radius: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 2rem auto 1.5rem;
	transition: all 0.3s ease;
}

.step-card:hover .step-icon {
	background: linear-gradient(
		135deg,
		var(--accent-color),
		var(--heading-color)
	);
	transform: scale(1.1);
}

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

.step-card:hover .step-icon i {
	color: var(--contrast-color);
}

.step-card h3 {
	color: var(--heading-color);
	font-size: 1.5rem;
	font-weight: 600;
	margin-bottom: 1rem;
}

.step-card p {
	color: var(--default-color);
	opacity: 0.9;
	line-height: 1.7;
	margin: 0;
}

/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/
.faq .faq-container {
	margin-top: 15px;
}

.faq .faq-container .faq-item {
	background-color: color-mix(in srgb, var(--default-color), transparent 96%);
	position: relative;
	padding: 20px;
	margin-bottom: 20px;
	overflow: hidden;
	transition: 0.3s;
}

.faq .faq-container .faq-item:last-child {
	margin-bottom: 0;
}

.faq .faq-container .faq-item h3 {
	font-weight: 600;
	font-size: 18px;
	line-height: 24px;
	margin: 0 30px 0 32px;
	transition: 0.3s;
	cursor: pointer;
}

.faq .faq-container .faq-item h3 span {
	color: var(--accent-color);
	padding-right: 5px;
}

.faq .faq-container .faq-item h3:hover {
	color: var(--accent-color);
}

.faq .faq-container .faq-item .faq-content {
	display: grid;
	grid-template-rows: 0fr;
	transition: 0.3s ease-in-out;
	visibility: hidden;
	opacity: 0;
}

.faq .faq-container .faq-item .faq-content p {
	margin-bottom: 0;
	overflow: hidden;
}

.faq .faq-container .faq-item .faq-icon {
	font-size: 20px;
	line-height: 0;
	transition: 0.3s;
	color: var(--accent-color);
}

.faq .faq-container .faq-item .faq-toggle {
	position: absolute;
	top: 20px;
	right: 20px;
	font-size: 16px;
	line-height: 0;
	transition: 0.3s;
	cursor: pointer;
}

.faq .faq-container .faq-item .faq-toggle:hover {
	color: var(--accent-color);
}

.faq .faq-container .faq-active {
	background-color: var(--accent-color);
	transition: 0.3s;
}

.faq .faq-container .faq-active h3,
.faq .faq-container .faq-active h3:hover,
.faq .faq-container .faq-active .faq-toggle,
.faq .faq-container .faq-active .faq-icon,
.faq .faq-container .faq-active .faq-content {
	color: var(--contrast-color);
}

.faq .faq-container .faq-active .faq-content {
	grid-template-rows: 1fr;
	visibility: visible;
	opacity: 1;
	padding-top: 10px;
}

.faq .faq-container .faq-active .faq-toggle {
	transform: rotate(90deg);
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .contact-info {
	background: var(--surface-color);
	padding: 40px 30px;
	border-radius: 15px;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
	height: 100%;
}

.contact .contact-info h3 {
	color: var(--heading-color);
	font-size: 24px;
	font-weight: 600;
	margin-bottom: 20px;
}

.contact .info-item {
	display: flex;
	align-items: flex-start;
	gap: 20px;
	padding: 25px 0;
	border-bottom: 1px solid
		color-mix(in srgb, var(--default-color), transparent 90%);
}

.contact .info-item:last-child {
	border-bottom: none;
}

.contact .info-icon {
	flex-shrink: 0;
	width: 50px;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: color-mix(in srgb, var(--accent-color), transparent 90%);
	border-radius: 12px;
	color: var(--accent-color);
}

.contact .info-icon svg {
	width: 24px;
	height: 24px;
	stroke: currentColor;
}

.contact .info-content {
	flex: 1;
}

.contact .info-content h4 {
	font-size: 18px;
	font-weight: 600;
	color: var(--heading-color);
	margin-bottom: 8px;
}

.contact .info-content p {
	padding: 0;
	line-height: 24px;
	font-size: 14px;
	margin-bottom: 0;
	color: var(--default-color);
}

.contact .info-content a {
	color: var(--accent-color);
	text-decoration: none;
	transition: color 0.3s;
}

.contact .info-content a:hover {
	color: var(--heading-color);
	text-decoration: underline;
}

.contact .social-links {
	margin-top: 30px;
	padding-top: 25px;
	border-top: 1px solid
		color-mix(in srgb, var(--default-color), transparent 90%);
}

.contact .social-links h4 {
	font-size: 18px;
	font-weight: 600;
	color: var(--heading-color);
	margin-bottom: 15px;
}

.contact .social-icons {
	display: flex;
	gap: 15px;
	flex-wrap: wrap;
}

.contact .social-icons a {
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: color-mix(in srgb, var(--accent-color), transparent 90%);
	border-radius: 10px;
	color: var(--accent-color);
	text-decoration: none;
	transition: all 0.3s;
}

.contact .social-icons a:hover {
	background: var(--accent-color);
	color: var(--contrast-color);
	transform: translateY(-3px);
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.contact .social-icons a svg {
	width: 20px;
	height: 20px;
	fill: currentColor;
}

.contact .info-item i {
	font-size: 38px;
	line-height: 0;
	color: var(--accent-color);
}

.contact .info-item h3 {
	font-size: 20px;
	font-weight: 700;
	margin: 20px 0 10px 0;
}

.contact .contact-form-wrapper {
	background: var(--surface-color);
	padding: 40px;
	border-radius: 15px;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.contact .php-email-form {
	background: transparent;
	padding: 0;
	height: 100%;
}

.contact .php-email-form input[type='text'],
.contact .php-email-form input[type='email'],
.contact .php-email-form input[type='tel'],
.contact .php-email-form textarea,
.contact .php-email-form select {
	font-size: 14px;
	padding: 12px 15px;
	box-shadow: none;
	border-radius: 8px;
	color: var(--default-color);
	background-color: var(--surface-color);
	border: 2px solid color-mix(in srgb, var(--default-color), transparent 80%);
	transition: border-color 0.3s;
}

.contact .php-email-form .form-label {
	font-weight: 500;
	color: var(--heading-color);
	margin-bottom: 8px;
	font-size: 14px;
}

.contact .php-email-form input[type='text']:focus,
.contact .php-email-form input[type='email']:focus,
.contact .php-email-form input[type='tel']:focus,
.contact .php-email-form textarea:focus,
.contact .php-email-form select:focus {
	border-color: var(--accent-color);
	outline: none;
	box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent-color), transparent 80%);
}

.contact .php-email-form input[type='text']::placeholder,
.contact .php-email-form input[type='email']::placeholder,
.contact .php-email-form input[type='tel']::placeholder,
.contact .php-email-form textarea::placeholder {
	color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.contact .form-check {
	margin-top: 10px;
}

.contact .form-check-label {
	font-size: 13px;
	color: var(--default-color);
	line-height: 1.6;
}

.contact .form-check-input:checked {
	background-color: var(--accent-color);
	border-color: var(--accent-color);
}

.contact .form-check-input:focus {
	border-color: var(--accent-color);
	box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent-color), transparent 80%);
}

.contact .php-email-form button[type='submit'] {
	background: var(--accent-color);
	color: var(--contrast-color);
	border: 0;
	padding: 14px 40px;
	transition: all 0.3s;
	border-radius: 8px;
	font-weight: 600;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.contact .php-email-form button[type='submit']:hover {
	background: var(--heading-color);
	transform: translateY(-2px);
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.contact .php-email-form button[type='submit'] svg {
	margin-right: 8px;
}

/*--------------------------------------------------------------
# Success Stories Section
--------------------------------------------------------------*/
.success-stories {
	position: relative;
}

.success-area-card {
	background: rgba(255, 255, 255, 0.03);
	border-radius: 20px;
	padding: 2rem;
	text-align: center;
	height: 100%;
	transition: all 0.3s ease;
	border: 1px solid rgba(255, 255, 255, 0.1);
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
	position: relative;
	overflow: hidden;
}

.success-area-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(90deg, var(--accent-color), var(--heading-color));
	transform: scaleX(0);
	transition: transform 0.3s ease;
}

.success-area-card:hover::before {
	transform: scaleX(1);
}

.success-area-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 10px 40px rgba(147, 51, 234, 0.3);
	border-color: rgba(147, 51, 234, 0.4);
	background: rgba(147, 51, 234, 0.1);
}

.success-area-icon {
	width: 70px;
	height: 70px;
	background: linear-gradient(
		135deg,
		var(--accent-color),
		var(--heading-color)
	);
	border-radius: 18px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 1.5rem;
	transition: transform 0.3s ease;
}

.success-area-card:hover .success-area-icon {
	transform: scale(1.1) rotate(5deg);
}

.stat-icon i {
	font-size: 2rem;
	color: var(--contrast-color);
}

.success-area-icon i {
	font-size: 2rem;
	color: var(--contrast-color);
}

.success-area-title {
	font-size: 1.25rem;
	font-weight: 600;
	color: var(--contrast-color);
	margin-bottom: 1rem;
	font-family: var(--heading-font);
	line-height: 1.3;
}

.success-area-description {
	color: rgba(255, 255, 255, 0.8);
	font-size: 0.95rem;
	line-height: 1.7;
	margin: 0;
}

.story-card {
	background: var(--surface-color);
	border-radius: 20px;
	padding: 2.5rem;
	height: 100%;
	display: flex;
	flex-direction: column;
	transition: all 0.3s ease;
	border: 1px solid rgba(147, 51, 234, 0.15);
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.story-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 15px 40px rgba(147, 51, 234, 0.2);
	border-color: var(--accent-color);
}

.story-header {
	display: flex;
	align-items: center;
	gap: 1rem;
	margin-bottom: 1.5rem;
	padding-bottom: 1.5rem;
	border-bottom: 1px solid rgba(147, 51, 234, 0.1);
}

.story-avatar {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	background: linear-gradient(
		135deg,
		var(--accent-color),
		var(--heading-color)
	);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.story-avatar i {
	font-size: 1.5rem;
	color: var(--contrast-color);
}

.story-info {
	flex: 1;
}

.story-info h4 {
	margin: 0 0 0.25rem 0;
	color: var(--heading-color);
	font-size: 1.2rem;
	font-weight: 600;
}

.story-meta {
	margin: 0;
	color: var(--default-color);
	opacity: 0.7;
	font-size: 0.9rem;
}

.story-badge {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	background: rgba(147, 51, 234, 0.15);
	border: 1px solid rgba(147, 51, 234, 0.3);
	padding: 0.5rem 1rem;
	border-radius: 50px;
	font-size: 0.85rem;
	color: var(--accent-color);
	font-weight: 600;
}

.story-badge i {
	font-size: 1rem;
}

.story-content h5 {
	color: var(--heading-color);
	font-size: 1.3rem;
	font-weight: 600;
	margin-bottom: 1rem;
}

.story-content p {
	color: var(--default-color);
	line-height: 1.8;
	margin-bottom: 1.5rem;
	font-size: 0.95rem;
}

.story-results {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
	margin-top: auto;
}

.result-item {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	padding: 0.75rem;
	background: rgba(147, 51, 234, 0.05);
	border-radius: 8px;
	border-left: 3px solid var(--success-color);
}

.result-item i {
	color: var(--success-color);
	font-size: 1.1rem;
	flex-shrink: 0;
}

.result-item span {
	color: var(--default-color);
	font-size: 0.9rem;
	font-weight: 500;
}

.success-cta {
	background: var(--surface-color);
	padding: 3rem 2rem;
	border-radius: 20px;
	border: 1px solid rgba(147, 51, 234, 0.2);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.success-cta h3 {
	color: var(--heading-color);
	font-size: 2rem;
	font-weight: 700;
	margin-bottom: 1rem;
}

.success-cta .lead {
	color: var(--default-color);
	opacity: 0.9;
	font-size: 1.1rem;
	margin-bottom: 0;
}

@media (max-width: 768px) {
	.success-area-card {
		padding: 1.5rem;
	}

	.story-card {
		padding: 2rem;
	}

	.success-cta {
		padding: 2rem 1.5rem;
	}

	.success-cta h3 {
		font-size: 1.5rem;
	}
}

/* ============================================
   COOKIE POPUP REDESIGNED STYLES
   ============================================ */

#cookie-popup.cookie-popup-redesigned {
	position: fixed;
	bottom: 30px;
	left: 50%;
	transform: translateX(-50%) translateY(120px);
	max-width: 600px;
	width: calc(100% - 40px);
	z-index: 10000;
	display: none;
	opacity: 0;
	transition:
		opacity 0.5s ease,
		transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

#cookie-popup.cookie-popup-redesigned.show {
	opacity: 1;
	transform: translateX(-50%) translateY(0);
}

.cookie-popup-content-redesigned {
	position: relative;
	display: flex;
	align-items: flex-start;
	gap: 20px;
	padding: 24px;
	background: rgba(22, 33, 62, 0.95);
	border: 1px solid rgba(108, 92, 231, 0.3);
	border-radius: 20px;
	backdrop-filter: blur(20px);
	box-shadow:
		0 20px 60px rgba(0, 0, 0, 0.5),
		0 0 0 1px rgba(108, 92, 231, 0.2);
}

.cookie-popup-icon-redesigned {
	width: 50px;
	height: 50px;
	background: linear-gradient(
		135deg,
		var(--accent-color),
		var(--heading-color)
	);
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--contrast-color);
	font-size: 28px;
	flex-shrink: 0;
	animation: cookieIconPulse 2s ease-in-out infinite;
}

@keyframes cookieIconPulse {
	0%,
	100% {
		transform: scale(1);
	}
	50% {
		transform: scale(1.05);
	}
}

.cookie-popup-text-redesigned {
	flex: 1;
}

.cookie-popup-title-redesigned {
	font-size: 1.2rem;
	font-weight: 700;
	color: var(--contrast-color);
	margin: 0 0 8px 0;
}

.cookie-popup-message-redesigned {
	font-size: 0.95rem;
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.85);
	margin: 0;
}

.cookie-popup-link-redesigned {
	color: var(--accent-color);
	text-decoration: none;
	font-weight: 600;
	transition: color 0.3s ease;
	border-bottom: 1px solid transparent;
}

.cookie-popup-link-redesigned:hover {
	color: var(--heading-color);
	border-bottom-color: var(--heading-color);
}

.cookie-popup-actions-redesigned {
	display: flex;
	align-items: center;
	gap: 12px;
	flex-shrink: 0;
}

.cookie-popup-btn-redesigned {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 12px 24px;
	background: linear-gradient(
		135deg,
		var(--accent-color) 0%,
		var(--heading-color) 100%
	);
	color: var(--contrast-color);
	border: none;
	border-radius: 12px;
	font-size: 0.95rem;
	font-weight: 600;
	font-family: var(--heading-font);
	cursor: pointer;
	transition: all 0.3s ease;
	box-shadow: 0 4px 15px rgba(108, 92, 231, 0.3);
}

.cookie-popup-btn-redesigned:hover {
	background: linear-gradient(
		135deg,
		var(--heading-color) 0%,
		var(--accent-color) 100%
	);
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(108, 92, 231, 0.4);
}

.cookie-popup-btn-redesigned:active {
	transform: translateY(0);
}

.cookie-popup-btn-redesigned i {
	font-size: 18px;
	transition: transform 0.3s ease;
}

.cookie-popup-btn-redesigned:hover i {
	transform: scale(1.1);
}

.cookie-popup-glow-redesigned {
	position: absolute;
	inset: -3px;
	background: linear-gradient(
		135deg,
		var(--accent-color),
		var(--heading-color)
	);
	border-radius: 20px;
	opacity: 0.3;
	filter: blur(20px);
	z-index: -1;
	animation: cookieGlowPulse 3s ease-in-out infinite;
}

@keyframes cookieGlowPulse {
	0%,
	100% {
		opacity: 0.2;
	}
	50% {
		opacity: 0.4;
	}
}

/* Cookie Popup Responsive Styles */
@media (max-width: 768px) {
	#cookie-popup.cookie-popup-redesigned {
		bottom: 20px;
		left: 20px;
		right: 20px;
		width: auto;
		max-width: none;
		transform: translateY(120px);
	}

	#cookie-popup.cookie-popup-redesigned.show {
		transform: translateY(0);
	}

	.cookie-popup-content-redesigned {
		flex-direction: column;
		padding: 20px;
		gap: 16px;
	}

	.cookie-popup-icon-redesigned {
		width: 45px;
		height: 45px;
		font-size: 24px;
	}

	.cookie-popup-actions-redesigned {
		width: 100%;
	}

	.cookie-popup-btn-redesigned {
		width: 100%;
		justify-content: center;
	}
}

@media (max-width: 480px) {
	#cookie-popup.cookie-popup-redesigned {
		bottom: 10px;
		left: 10px;
		right: 10px;
		border-radius: 16px;
	}

	.cookie-popup-content-redesigned {
		padding: 16px;
		gap: 12px;
	}

	.cookie-popup-title-redesigned {
		font-size: 1.1rem;
	}

	.cookie-popup-message-redesigned {
		font-size: 0.9rem;
	}

	.cookie-popup-btn-redesigned {
		padding: 10px 20px;
		font-size: 0.9rem;
	}
}

#features-slider {
	position: relative;
}

.swiper-slide {
	transition: filter 0.3s ease;
}

.swiper-button-prev,
.swiper-button-next {
	color: #6a3cb0;
	background: rgba(106, 60, 176, 0.15);
	width: 44px;
	height: 44px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	bottom: 0;
}
@media (max-width: 768px) {
	.swiper-button-prev,
	.swiper-button-next {
		display: none;
	}
}

.swiper-button-next {
	right: 5%;
}

.swiper-button-prev {
	left: 5%;
}

.swiper-button-prev::after,
.swiper-button-next::after {
	font-size: 20px;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
	background: rgba(106, 60, 176, 0.3);
	color: #3a0070;
}

.list-cards {
	padding: 0;
	list-style: none;
	display: flex;
	flex-wrap: wrap;
}
.card-item {
	background: var(--background-color);
	border-radius: 12px;
	box-shadow: 0 4px 12px var(--heading-color);
	padding: 5px 10px;
	display: flex;
	align-items: flex-start;
	transition:
		box-shadow 0.3s ease,
		transform 0.3s ease;
	cursor: default;
	margin: 10px;
}
.card-item:hover {
	box-shadow: 0 8px 24px var(--heading-color);
	transform: translateY(-5px);
}
.card-content {
	display: flex;
	align-items: center;
	gap: 12px;
}
.icon {
	font-size: 1.8rem;
	color: var(--accent-color);
	flex-shrink: 0;
}
.card-item p {
	margin: 0;
	font-size: 1rem;
	color: var(--accent-color);
	font-weight: 500;
	line-height: 1.4;
}
@media (max-width: 768px) {
	.list-cards {
		flex-direction: column;
	}
	.card-item {
		width: 100%;
	}
}

/*--------------------------------------------------------------
# Page Title Section
--------------------------------------------------------------*/
.page-title {
	background: linear-gradient(
		135deg,
		var(--background-color) 0%,
		var(--surface-color) 100%
	);
	padding: 80px 0 40px;
	text-align: center;
	position: relative;
}

.page-title::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;

	opacity: 0.3;
}

.page-title h1 {
	color: var(--heading-color);
	font-size: 3rem;
	font-weight: 700;
	margin-bottom: 1rem;
	position: relative;
	z-index: 2;
}

.page-title p {
	color: var(--default-color);
	font-size: 1.1rem;
	margin: 0;
	position: relative;
	z-index: 2;
}

/*--------------------------------------------------------------
# Content Styling
--------------------------------------------------------------*/
.content {
	color: var(--default-color);
	line-height: 1.8;
}

.content h2 {
	color: var(--heading-color);
	font-size: 1.8rem;
	font-weight: 700;
	margin: 2.5rem 0 1rem 0;
	padding-bottom: 0.5rem;
	border-bottom: 2px solid var(--accent-color);
}

.content h3 {
	color: var(--accent-color);
	font-size: 1.4rem;
	font-weight: 600;
	margin: 2rem 0 1rem 0;
}

.content h4 {
	color: var(--heading-color);
	font-size: 1.2rem;
	font-weight: 600;
	margin: 1.5rem 0 0.5rem 0;
}

.content p {
	margin-bottom: 1.2rem;
	color: var(--default-color);
}

.content ul {
	margin-bottom: 1.5rem;
	padding-left: 1.5rem;
}

.content ul li {
	margin-bottom: 0.5rem;
	color: var(--default-color);
}

.content .contact-info {
	background: rgba(147, 51, 234, 0.1);
	padding: 25px;
	border-radius: 15px;
	border: 1px solid rgba(147, 51, 234, 0.2);
	margin: 2rem 0;
}

.content .contact-info p {
	margin-bottom: 0.5rem;
}

.content .contact-info strong {
	color: var(--accent-color);
}

.content .alert {
	border-radius: 15px;
	border: none;
	padding: 25px;
	margin: 2rem 0;
}

.content .alert-info {
	background: rgba(116, 192, 252, 0.1);
	color: var(--info-color);
	border: 1px solid rgba(116, 192, 252, 0.2);
}

.content .alert-warning {
	background: rgba(255, 212, 59, 0.1);
	color: var(--warning-color);
	border: 1px solid rgba(255, 212, 59, 0.2);
}

.content .alert h4 {
	color: inherit;
	margin-bottom: 1rem;
	border-bottom: none;
}

.content .cookie-settings {
	background: rgba(147, 51, 234, 0.05);
	padding: 30px;
	border-radius: 15px;
	border: 1px solid rgba(147, 51, 234, 0.1);
	text-align: center;
	margin: 2rem 0;
}

.content .cookie-settings h4 {
	color: var(--heading-color);
	margin-bottom: 1rem;
	border-bottom: none;
}

.content .cookie-settings p {
	margin-bottom: 1.5rem;
}

.content .cookie-settings .btn {
	background: linear-gradient(
		135deg,
		var(--accent-color),
		var(--heading-color)
	);
	color: var(--contrast-color);
	padding: 12px 30px;
	border-radius: 50px;
	font-weight: 600;
	border: none;
	transition: all 0.3s ease;
	box-shadow: 0 8px 25px rgba(147, 51, 234, 0.3);
}

.content .cookie-settings .btn:hover {
	transform: translateY(-3px);
	box-shadow: 0 15px 35px rgba(255, 107, 107, 0.4);
	color: var(--contrast-color);
}

/*--------------------------------------------------------------
# Responsive Adjustments for Content Pages
--------------------------------------------------------------*/
@media (max-width: 767px) {
	.page-title h1 {
		font-size: 2rem;
	}

	.page-title p {
		font-size: 1rem;
	}

	.content h2 {
		font-size: 1.5rem;
	}

	.content h3 {
		font-size: 1.3rem;
	}

	.content h4 {
		font-size: 1.1rem;
	}

	.content .contact-info,
	.content .cookie-settings {
		padding: 20px;
	}
}

@media (max-width: 575px) {
	.page-title {
		padding: 60px 0 30px;
	}

	.page-title h1 {
		font-size: 1.8rem;
	}

	.content h2 {
		font-size: 1.4rem;
	}

	.content h3 {
		font-size: 1.2rem;
	}
}

/*--------------------------------------------------------------
# Nueva Sección: Recursos Educativos
--------------------------------------------------------------*/
.recursos {
	background: linear-gradient(
		135deg,
		var(--background-color) 0%,
		var(--surface-color) 100%
	);
	position: relative;
	overflow: hidden;
}

.recursos::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;

	opacity: 0.3;
}

.recurso-card {
	background: rgba(255, 255, 255, 0.05);
	border-radius: 25px;
	padding: 40px 30px;
	text-align: center;
	height: 100%;
	border: 1px solid rgba(147, 51, 234, 0.1);
	backdrop-filter: blur(20px);
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	position: relative;
	overflow: hidden;
}

.recurso-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(90deg, var(--accent-color), var(--heading-color));
	transform: scaleX(0);
	transition: transform 0.4s ease;
}

.recurso-card:hover::before {
	transform: scaleX(1);
}

.recurso-card:hover {
	transform: translateY(-15px) scale(1.02);
	box-shadow: 0 30px 60px rgba(147, 51, 234, 0.2);
	border-color: var(--accent-color);
	background: rgba(255, 255, 255, 0.08);
}

.recurso-card.featured {
	border-color: var(--accent-color);
	transform: scale(1.05);
	background: rgba(147, 51, 234, 0.05);
}

.recurso-card.featured::before {
	transform: scaleX(1);
}

.recurso-icon {
	width: 80px;
	height: 80px;
	background: linear-gradient(
		135deg,
		var(--accent-color),
		var(--heading-color)
	);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 25px;
	transition: all 0.3s ease;
}

.recurso-card:hover .recurso-icon {
	transform: scale(1.1) rotate(5deg);
}

.recurso-icon i {
	font-size: 2.5rem;
	color: var(--contrast-color);
}

.recurso-card h3 {
	color: var(--heading-color);
	font-size: 1.5rem;
	font-weight: 700;
	margin-bottom: 20px;
	position: relative;
}

.recurso-card h3::after {
	content: '';
	position: absolute;
	bottom: -8px;
	left: 50%;
	transform: translateX(-50%);
	width: 40px;
	height: 3px;
	background: linear-gradient(90deg, var(--accent-color), var(--heading-color));
	border-radius: 2px;
}

.recurso-card p {
	color: var(--default-color);
	line-height: 1.7;
	margin-bottom: 25px;
	font-size: 1rem;
}

.recurso-features {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	justify-content: center;
	margin-bottom: 25px;
}

.feature-tag {
	background: rgba(147, 51, 234, 0.1);
	color: var(--accent-color);
	padding: 8px 16px;
	border-radius: 20px;
	font-size: 0.85rem;
	font-weight: 500;
	border: 1px solid rgba(78, 205, 196, 0.2);
	transition: all 0.3s ease;
}

.recurso-card:hover .feature-tag {
	background: rgba(147, 51, 234, 0.2);
	border-color: var(--accent-color);
	transform: translateY(-2px);
}

.recurso-btn {
	background: linear-gradient(
		135deg,
		var(--accent-color),
		var(--heading-color)
	);
	color: var(--contrast-color);
	padding: 12px 30px;
	border-radius: 50px;
	font-weight: 600;
	text-decoration: none;
	display: inline-block;
	transition: all 0.3s ease;
	box-shadow: 0 8px 25px rgba(147, 51, 234, 0.3);
}

.recurso-btn:hover {
	transform: translateY(-3px);
	box-shadow: 0 15px 35px rgba(255, 107, 107, 0.4);
	color: var(--contrast-color);
}

/* Estadísticas */
.stats-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 30px;
	margin-top: 40px;
}

.stat-item {
	text-align: center;
	padding: 30px 20px;
	background: rgba(255, 255, 255, 0.05);
	border-radius: 20px;
	border: 1px solid rgba(147, 51, 234, 0.1);
	backdrop-filter: blur(20px);
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

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

.stat-item:hover::before {
	left: 100%;
}

.stat-item:hover {
	transform: translateY(-5px);
	border-color: var(--accent-color);
	box-shadow: 0 20px 40px rgba(147, 51, 234, 0.2);
}

.stat-number {
	font-size: 3rem;
	font-weight: 700;
	color: var(--accent-color);
	margin-bottom: 10px;
	background: linear-gradient(
		135deg,
		var(--accent-color),
		var(--heading-color)
	);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.stat-label {
	color: var(--default-color);
	font-size: 1rem;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 1px;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Footer - Nuevo Diseño
--------------------------------------------------------------*/
.footer {
	background: var(--surface-color);
	padding: 80px 0 30px;
	color: var(--default-color);
	position: relative;
}

.footer::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;

	opacity: 0.3;
}

.footer-newsletter {
	background: linear-gradient(
		135deg,
		var(--accent-color),
		var(--heading-color)
	);
	padding: 60px 0;
	margin-bottom: 60px;
	border-radius: 25px;
	margin: 0 20px 60px 20px;
	position: relative;
	z-index: 2;
}

.footer-newsletter h4 {
	color: var(--contrast-color);
	font-size: 2rem;
	margin-bottom: 15px;
	font-weight: 700;
}

.footer-newsletter p {
	color: var(--contrast-color);
	margin-bottom: 30px;
	opacity: 0.9;
	font-size: 1.1rem;
}

.footer-newsletter .newsletter-form {
	display: flex;
	max-width: 500px;
	margin: 0 auto;
	gap: 15px;
	background: rgba(255, 255, 255, 0.1);
	padding: 5px;
	border-radius: 50px;
	backdrop-filter: blur(20px);
}

.footer-newsletter input[type='email'] {
	flex: 1;
	padding: 15px 25px;
	border: none;
	border-radius: 25px;
	font-size: 1rem;
	background: rgba(255, 255, 255, 0.9);
	color: var(--background-color);
}

.footer-newsletter input[type='submit'] {
	background: var(--contrast-color);
	color: var(--heading-color);
	padding: 15px 30px;
	border: none;
	border-radius: 25px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
}

.footer-newsletter input[type='submit']:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.footer-top {
	padding-bottom: 40px;
	position: relative;
	z-index: 2;
}

.footer-about .footer-contact p {
	margin: 0;
	line-height: 1.6;
	margin-bottom: 10px;
}

.footer-about .footer-contact strong {
	color: var(--heading-color);
}

.footer-links h4 {
	color: var(--heading-color);
	font-size: 1.3rem;
	margin-bottom: 20px;
	font-weight: 600;
}

.footer-links ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.footer-links ul li {
	padding: 8px 0;
}

.footer-links ul li i {
	color: var(--accent-color);
	margin-right: 8px;
	font-size: 0.9rem;
}

.footer-links ul li a {
	color: var(--default-color);
	transition: color 0.3s ease;
}

.footer-links ul li a:hover {
	color: var(--accent-color);
}

.footer-bottom {
	background: var(--background-color);
	padding: 30px 0;
	text-align: center;
	border-top: 1px solid rgba(147, 51, 234, 0.1);
	position: relative;
	z-index: 2;
}

.footer-bottom p {
	margin: 0;
	color: var(--default-color);
}

.footer-bottom a {
	color: var(--accent-color);
}

/*--------------------------------------------------------------
# Responsive Design - Mejorado
--------------------------------------------------------------*/
@media (max-width: 1199px) {
	.hero h2 {
		font-size: 3.5rem;
	}

	.about-title {
		font-size: 3rem;
	}

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

@media (max-width: 991px) {
	.hero {
		padding: 100px 0 60px;
	}

	.hero h2 {
		font-size: 3rem;
	}

	.about-title {
		font-size: 2.5rem;
	}

	.feature-item {
		flex-direction: column;
		text-align: center;
	}

	.feature-icon {
		margin: 0 auto 20px;
	}
}

/*--------------------------------------------------------------
# About Page Styles
--------------------------------------------------------------*/

/* About Hero Section */
.about-hero-section {
	padding: 80px 0;
	background: var(--background-color);
}

.about-hero-content {
	position: relative;
}

.section-badge-new {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	background: rgba(147, 51, 234, 0.15);
	color: var(--accent-color);
	padding: 0.5rem 1.25rem;
	border-radius: 50px;
	font-size: 0.85rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 1px;
	margin-bottom: 1.5rem;
	border: 1px solid rgba(147, 51, 234, 0.3);
}

.section-badge-new i {
	font-size: 0.9rem;
}

.about-hero-title {
	font-size: 2.75rem;
	font-weight: 700;
	margin-bottom: 1.5rem;
	line-height: 1.2;
	color: var(--contrast-color);
	font-family: var(--heading-font);
}

.highlight-gradient {
	background: linear-gradient(
		135deg,
		var(--accent-color) 0%,
		var(--heading-color) 100%
	);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.about-hero-description {
	font-size: 1.1rem;
	line-height: 1.8;
	margin-bottom: 1.5rem;
	color: rgba(255, 255, 255, 0.85);
}

.about-features-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.5rem;
	margin-top: 2.5rem;
}

.about-feature-item {
	padding: 1.75rem;
	background: rgba(255, 255, 255, 0.05);
	border-radius: 16px;
	border: 1px solid rgba(255, 255, 255, 0.1);
	transition: all 0.3s ease;
	text-align: center;
}

.about-feature-item:hover {
	background: rgba(147, 51, 234, 0.15);
	border-color: rgba(147, 51, 234, 0.3);
	transform: translateY(-5px);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.about-feature-icon {
	width: 60px;
	height: 60px;
	background: linear-gradient(
		135deg,
		var(--accent-color),
		var(--heading-color)
	);
	border-radius: 14px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 1.25rem;
	transition: transform 0.3s ease;
}

.about-feature-item:hover .about-feature-icon {
	transform: scale(1.1) rotate(5deg);
}

.about-feature-icon i {
	font-size: 1.75rem;
	color: var(--contrast-color);
}

.about-feature-title {
	font-size: 1.1rem;
	font-weight: 600;
	color: var(--contrast-color);
	margin-bottom: 0.75rem;
	font-family: var(--heading-font);
}

.about-feature-text {
	font-size: 0.9rem;
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.8);
	margin: 0;
}

.about-hero-visual {
	position: relative;
}

.image-wrapper {
	position: relative;
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.about-hero-image {
	width: 100%;
	height: auto;
	display: block;
	transition: transform 0.5s ease;
}

.image-wrapper:hover .about-hero-image {
	transform: scale(1.05);
}

.image-overlay-gradient {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(
		135deg,
		rgba(147, 51, 234, 0.1) 0%,
		rgba(177, 156, 217, 0.05) 100%
	);
	pointer-events: none;
}

/* Mission Section */
.about-mission-section {
	padding: 80px 0;
	background: var(--surface-color);
}

.mission-card {
	padding: 2.5rem;
	background: rgba(255, 255, 255, 0.03);
	border-radius: 20px;
	border: 1px solid rgba(255, 255, 255, 0.1);
	height: 100%;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.mission-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(90deg, var(--accent-color), var(--heading-color));
}

.mission-card:hover {
	background: rgba(147, 51, 234, 0.1);
	border-color: rgba(147, 51, 234, 0.3);
	transform: translateY(-5px);
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.mission-icon {
	width: 60px;
	height: 60px;
	background: linear-gradient(
		135deg,
		var(--accent-color),
		var(--heading-color)
	);
	border-radius: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 1.5rem;
}

.mission-icon i {
	font-size: 1.75rem;
	color: var(--contrast-color);
}

.mission-title {
	font-size: 1.75rem;
	font-weight: 700;
	color: var(--contrast-color);
	margin-bottom: 1rem;
	font-family: var(--heading-font);
}

.mission-text {
	font-size: 1.05rem;
	line-height: 1.8;
	color: rgba(255, 255, 255, 0.85);
	margin: 0;
}

/* Values Section */
.about-values-section {
	padding: 80px 0;
	background: var(--background-color);
}

.section-header-center {
	text-align: center;
	margin-bottom: 3rem;
}

.section-title-center {
	font-size: 2.5rem;
	font-weight: 700;
	color: var(--contrast-color);
	margin-top: 1rem;
	font-family: var(--heading-font);
}

.value-card {
	padding: 2rem;
	background: rgba(255, 255, 255, 0.03);
	border-radius: 16px;
	border: 1px solid rgba(255, 255, 255, 0.1);
	text-align: center;
	transition: all 0.3s ease;
	height: 100%;
}

.value-card:hover {
	background: rgba(147, 51, 234, 0.15);
	border-color: rgba(147, 51, 234, 0.3);
	transform: translateY(-8px);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.value-icon {
	width: 70px;
	height: 70px;
	background: linear-gradient(
		135deg,
		var(--accent-color),
		var(--heading-color)
	);
	border-radius: 18px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 1.5rem;
	transition: transform 0.3s ease;
}

.value-card:hover .value-icon {
	transform: scale(1.1) rotate(5deg);
}

.value-icon i {
	font-size: 2rem;
	color: var(--contrast-color);
}

.value-title {
	font-size: 1.35rem;
	font-weight: 600;
	color: var(--contrast-color);
	margin-bottom: 0.75rem;
	font-family: var(--heading-font);
}

.value-text {
	font-size: 0.95rem;
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.8);
	margin: 0;
}

/* Team & Legal Section */
.about-team-section {
	padding: 80px 0;
	background: var(--surface-color);
}

.team-card {
	padding: 2.5rem;
	background: rgba(255, 255, 255, 0.03);
	border-radius: 20px;
	border: 1px solid rgba(255, 255, 255, 0.1);
	height: 100%;
}

.team-header {
	margin-bottom: 1.5rem;
}

.team-title {
	font-size: 1.75rem;
	font-weight: 700;
	color: var(--contrast-color);
	margin-top: 1rem;
	font-family: var(--heading-font);
}

.team-text {
	font-size: 1.05rem;
	line-height: 1.8;
	color: rgba(255, 255, 255, 0.85);
	margin: 0;
}

.legal-card {
	padding: 2rem;
	background: rgba(255, 255, 255, 0.03);
	border-radius: 20px;
	border: 1px solid rgba(255, 255, 255, 0.1);
	height: 100%;
}

.legal-header {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	margin-bottom: 1.5rem;
	padding-bottom: 1rem;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.legal-header i {
	font-size: 1.5rem;
	color: var(--accent-color);
}

.legal-header h3 {
	font-size: 1.35rem;
	font-weight: 600;
	color: var(--contrast-color);
	margin: 0;
	font-family: var(--heading-font);
}

.legal-content {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.legal-item {
	display: flex;
	flex-direction: column;
	gap: 0.25rem;
	padding: 0.75rem 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.legal-item:last-child {
	border-bottom: none;
}

.legal-item strong {
	color: var(--heading-color);
	font-size: 0.85rem;
}

/* Modern Mission Section Styles */
.mission-card-modern {
	padding: 2.5rem;
	background: rgba(255, 255, 255, 0.05);
	border-radius: 20px;
	border: 1px solid rgba(255, 255, 255, 0.1);
	height: 100%;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.mission-card-modern::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(90deg, var(--accent-color), var(--heading-color));
}

.mission-card-modern:hover {
	background: rgba(233, 30, 99, 0.15);
	border-color: rgba(233, 30, 99, 0.3);
	transform: translateY(-5px);
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.mission-header-modern {
	display: flex;
	align-items: center;
	gap: 1rem;
	margin-bottom: 1.5rem;
}

.mission-icon-modern {
	width: 60px;
	height: 60px;
	background: linear-gradient(
		135deg,
		var(--accent-color),
		var(--heading-color)
	);
	border-radius: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.mission-icon-modern i {
	font-size: 1.75rem;
	color: var(--contrast-color);
}

.mission-title-modern {
	font-size: 1.75rem;
	font-weight: 700;
	color: var(--contrast-color);
	margin: 0;
	font-family: var(--heading-font);
}

.mission-content-modern {
	position: relative;
}

.mission-text-modern {
	font-size: 1.05rem;
	line-height: 1.8;
	color: rgba(255, 255, 255, 0.85);
	margin-bottom: 1.5rem;
}

.mission-list-modern {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.mission-list-modern li {
	display: flex;
	align-items: flex-start;
	gap: 0.75rem;
	color: rgba(255, 255, 255, 0.9);
	font-size: 0.95rem;
}

.mission-list-modern li i {
	color: var(--accent-color);
	font-size: 1.1rem;
	margin-top: 0.2rem;
	flex-shrink: 0;
}

/* Modern Values Section Styles */
.value-card-modern {
	padding: 2rem;
	background: rgba(255, 255, 255, 0.05);
	border-radius: 20px;
	border: 1px solid rgba(255, 255, 255, 0.1);
	text-align: center;
	transition: all 0.3s ease;
	height: 100%;
	position: relative;
	overflow: hidden;
}

.value-card-modern::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(90deg, var(--accent-color), var(--heading-color));
	opacity: 0;
	transition: opacity 0.3s ease;
}

.value-card-modern:hover::before {
	opacity: 1;
}

.value-card-modern:hover {
	background: rgba(233, 30, 99, 0.15);
	border-color: rgba(233, 30, 99, 0.3);
	transform: translateY(-8px);
	box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.value-icon-modern {
	margin-bottom: 1.5rem;
	display: flex;
	justify-content: center;
}

.value-icon-bg {
	width: 80px;
	height: 80px;
	background: linear-gradient(
		135deg,
		var(--accent-color),
		var(--heading-color)
	);
	border-radius: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: transform 0.3s ease;
	box-shadow: 0 8px 20px rgba(233, 30, 99, 0.3);
}

.value-card-modern:hover .value-icon-bg {
	transform: scale(1.1) rotate(5deg);
}

.value-icon-bg i {
	font-size: 2rem;
	color: var(--contrast-color);
}

.value-title-modern {
	font-size: 1.35rem;
	font-weight: 600;
	color: var(--contrast-color);
	margin-bottom: 1rem;
	font-family: var(--heading-font);
}

.value-text-modern {
	font-size: 0.95rem;
	line-height: 1.7;
	color: rgba(255, 255, 255, 0.85);
	margin: 0;
}

.section-description-center {
	font-size: 1.1rem;
	color: rgba(255, 255, 255, 0.8);
	max-width: 700px;
	margin: 0 auto;
	line-height: 1.7;
}

/* Modern Team Section Styles */
.team-card-modern {
	padding: 2.5rem;
	background: rgba(255, 255, 255, 0.05);
	border-radius: 20px;
	border: 1px solid rgba(255, 255, 255, 0.1);
	height: 100%;
	transition: all 0.3s ease;
}

.team-card-modern:hover {
	background: rgba(233, 30, 99, 0.1);
	border-color: rgba(233, 30, 99, 0.3);
	transform: translateY(-5px);
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.team-header-modern {
	margin-bottom: 2rem;
}

.team-title-modern {
	font-size: 2rem;
	font-weight: 700;
	color: var(--contrast-color);
	margin-top: 1rem;
	font-family: var(--heading-font);
	line-height: 1.3;
}

.team-content-modern {
	position: relative;
}

.team-text-modern {
	font-size: 1.05rem;
	line-height: 1.8;
	color: rgba(255, 255, 255, 0.85);
	margin-bottom: 2rem;
}

.team-features-modern {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.team-feature-item-modern {
	display: flex;
	gap: 1.25rem;
	align-items: flex-start;
}

.team-feature-icon-modern {
	width: 50px;
	height: 50px;
	background: linear-gradient(
		135deg,
		var(--accent-color),
		var(--heading-color)
	);
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.team-feature-icon-modern i {
	font-size: 1.5rem;
	color: var(--contrast-color);
}

.team-feature-content-modern {
	flex: 1;
}

.team-feature-title-modern {
	font-size: 1.1rem;
	font-weight: 600;
	color: var(--contrast-color);
	margin-bottom: 0.5rem;
	font-family: var(--heading-font);
}

.team-feature-text-modern {
	font-size: 0.95rem;
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.8);
	margin: 0;
}

/* Modern Legal Card Styles */
.legal-card-modern {
	padding: 2rem;
	background: rgba(255, 255, 255, 0.05);
	border-radius: 20px;
	border: 1px solid rgba(255, 255, 255, 0.1);
	height: 100%;
	transition: all 0.3s ease;
}

.legal-card-modern:hover {
	background: rgba(233, 30, 99, 0.1);
	border-color: rgba(233, 30, 99, 0.3);
	transform: translateY(-5px);
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.legal-header-modern {
	display: flex;
	align-items: center;
	gap: 1rem;
	margin-bottom: 1.5rem;
	padding-bottom: 1.5rem;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.legal-icon-modern {
	width: 50px;
	height: 50px;
	background: linear-gradient(
		135deg,
		var(--accent-color),
		var(--heading-color)
	);
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.legal-icon-modern i {
	font-size: 1.5rem;
	color: var(--contrast-color);
}

.legal-title-modern {
	font-size: 1.35rem;
	font-weight: 600;
	color: var(--contrast-color);
	margin: 0;
	font-family: var(--heading-font);
}

.legal-content-modern {
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
}

.legal-item-modern {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
	padding: 0.75rem 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.legal-item-modern:last-child {
	border-bottom: none;
}

.legal-label-modern {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	color: var(--heading-color);
	font-size: 0.85rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.legal-label-modern i {
	font-size: 1rem;
	color: var(--accent-color);
}

.legal-value-modern {
	color: rgba(255, 255, 255, 0.9);
	font-size: 0.95rem;
	line-height: 1.6;
	text-decoration: none;
	transition: color 0.3s ease;
}

.legal-value-modern:hover {
	color: var(--accent-color);
}

/* Services Page Styles */
.services-hero-section {
	padding: 80px 0;
	background: var(--background-color);
}

.services-hero-content {
	position: relative;
}

.services-hero-title {
	font-size: 2.75rem;
	font-weight: 700;
	margin-bottom: 1.5rem;
	line-height: 1.2;
	color: var(--contrast-color);
	font-family: var(--heading-font);
}

.services-hero-description {
	font-size: 1.1rem;
	line-height: 1.8;
	margin-bottom: 2.5rem;
	color: rgba(255, 255, 255, 0.85);
}

.services-stats {
	display: flex;
	gap: 2rem;
	flex-wrap: wrap;
}

.stat-item-modern {
	flex: 1;
	min-width: 120px;
}

.stat-number-modern {
	font-size: 2.5rem;
	font-weight: 700;
	background: linear-gradient(
		135deg,
		var(--accent-color),
		var(--heading-color)
	);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	line-height: 1;
	margin-bottom: 0.5rem;
	font-family: var(--heading-font);
}

.stat-label-modern {
	font-size: 0.9rem;
	color: rgba(255, 255, 255, 0.8);
	font-weight: 500;
}

.services-hero-visual {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
}

.services-visual-card {
	padding: 3rem;
	background: rgba(255, 255, 255, 0.05);
	border-radius: 24px;
	border: 1px solid rgba(255, 255, 255, 0.1);
	text-align: center;
	transition: all 0.3s ease;
	width: 100%;
	max-width: 400px;
}

.services-visual-card:hover {
	background: rgba(233, 30, 99, 0.15);
	border-color: rgba(233, 30, 99, 0.3);
	transform: translateY(-10px);
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.visual-icon-large {
	width: 100px;
	height: 100px;
	background: linear-gradient(
		135deg,
		var(--accent-color),
		var(--heading-color)
	);
	border-radius: 24px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 1.5rem;
	transition: transform 0.3s ease;
}

.services-visual-card:hover .visual-icon-large {
	transform: scale(1.1) rotate(5deg);
}

.visual-icon-large i {
	font-size: 3rem;
	color: var(--contrast-color);
}

.services-visual-card h3 {
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--contrast-color);
	margin-bottom: 0.75rem;
	font-family: var(--heading-font);
}

.services-visual-card p {
	font-size: 1rem;
	color: rgba(255, 255, 255, 0.8);
	margin: 0;
}

.services-main-section {
	padding: 80px 0;
	background: var(--surface-color);
}

.service-card-modern {
	padding: 2.5rem;
	background: rgba(255, 255, 255, 0.05);
	border-radius: 20px;
	border: 1px solid rgba(255, 255, 255, 0.1);
	height: 100%;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
	display: flex;
	flex-direction: column;
}

.service-card-modern::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(90deg, var(--accent-color), var(--heading-color));
	opacity: 0;
	transition: opacity 0.3s ease;
}

.service-card-modern:hover::before {
	opacity: 1;
}

.service-card-modern:hover {
	background: rgba(233, 30, 99, 0.15);
	border-color: rgba(233, 30, 99, 0.3);
	transform: translateY(-8px);
	box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.service-header-modern {
	display: flex;
	align-items: center;
	gap: 1.25rem;
	margin-bottom: 1.5rem;
}

.service-icon-modern {
	width: 60px;
	height: 60px;
	background: linear-gradient(
		135deg,
		var(--accent-color),
		var(--heading-color)
	);
	border-radius: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	transition: transform 0.3s ease;
}

.service-card-modern:hover .service-icon-modern {
	transform: scale(1.1) rotate(5deg);
}

.service-icon-modern i {
	font-size: 1.75rem;
	color: var(--contrast-color);
}

.service-title-modern {
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--contrast-color);
	margin: 0;
	font-family: var(--heading-font);
}

.service-description-modern {
	font-size: 1rem;
	line-height: 1.7;
	color: rgba(255, 255, 255, 0.85);
	margin-bottom: 1.5rem;
	flex-grow: 1;
}

.service-features-modern {
	list-style: none;
	padding: 0;
	margin: 0 0 1.5rem 0;
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.service-features-modern li {
	display: flex;
	align-items: flex-start;
	gap: 0.75rem;
	color: rgba(255, 255, 255, 0.9);
	font-size: 0.95rem;
}

.service-features-modern li i {
	color: var(--accent-color);
	font-size: 1.1rem;
	margin-top: 0.2rem;
	flex-shrink: 0;
}

.service-footer-modern {
	margin-top: auto;
	padding-top: 1.5rem;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.service-link-modern {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	color: var(--accent-color);
	text-decoration: none;
	font-weight: 600;
	font-size: 0.95rem;
	transition: all 0.3s ease;
}

.service-link-modern:hover {
	color: var(--heading-color);
	gap: 0.75rem;
}

.service-link-modern i {
	transition: transform 0.3s ease;
}

.service-link-modern:hover i {
	transform: translateX(3px);
}

.services-cta-section {
	padding: 80px 0;
	background: var(--background-color);
}

.services-cta-content {
	position: relative;
}

.services-cta-title {
	font-size: 2.5rem;
	font-weight: 700;
	margin-bottom: 1.5rem;
	line-height: 1.3;
	color: var(--contrast-color);
	font-family: var(--heading-font);
}

.services-cta-description {
	font-size: 1.1rem;
	line-height: 1.8;
	margin-bottom: 2.5rem;
	color: rgba(255, 255, 255, 0.85);
	max-width: 700px;
	margin-left: auto;
	margin-right: auto;
}

.services-cta-buttons {
	display: flex;
	gap: 1rem;
	justify-content: center;
	flex-wrap: wrap;
}

.services-cta-buttons .btn-lg {
	padding: 1rem 2rem;
	font-size: 1.1rem;
}

@media (max-width: 768px) {
	.mission-card-modern,
	.team-card-modern,
	.legal-card-modern {
		padding: 1.5rem;
	}

	.mission-title-modern,
	.team-title-modern {
		font-size: 1.5rem;
	}

	.value-card-modern {
		padding: 1.5rem;
	}

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

	.about-features-grid {
		grid-template-columns: 1fr;
	}

	.services-hero-title {
		font-size: 2rem;
	}

	.services-stats {
		gap: 1.5rem;
	}
}

/*===========================================
  NEW HEADER, FOOTER & MOBILE MENU STYLES
===========================================*/

/* New Header Styles */
.header-new {
	position: relative;
	z-index: 1000;
	background: var(--background-color);
	box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.header-top-bar {
	background: linear-gradient(
		135deg,
		var(--surface-color) 0%,
		rgba(22, 33, 62, 0.95) 100%
	);
	border-bottom: 1px solid rgba(162, 155, 254, 0.1);
	padding: 0.75rem 0;
}

.header-top-wrapper {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 1rem;
}

.header-top-left {
	display: flex;
	gap: 2rem;
	align-items: center;
}

.header-top-link {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	color: rgba(240, 240, 240, 0.8);
	font-size: 0.875rem;
	text-decoration: none;
	transition: all 0.3s ease;
}

.header-top-link:hover {
	color: var(--accent-color);
}

.header-top-link i {
	font-size: 0.9rem;
}

.header-social-new {
	display: flex;
	gap: 0.75rem;
}

.social-link-new {
	width: 32px;
	height: 32px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(162, 155, 254, 0.1);
	border-radius: 8px;
	color: rgba(240, 240, 240, 0.7);
	text-decoration: none;
	transition: all 0.3s ease;
	border: 1px solid rgba(162, 155, 254, 0.2);
}

.social-link-new:hover {
	background: var(--accent-color);
	color: var(--contrast-color);
	border-color: var(--accent-color);
	transform: translateY(-2px);
}

.header-main-new {
	background: var(--background-color);
	padding: 1rem 0;
	position: sticky;
	top: 0;
	z-index: 999;
	backdrop-filter: blur(10px);
	background: rgba(26, 26, 46, 0.95);
	border-bottom: 1px solid rgba(162, 155, 254, 0.1);
}

.header-wrapper {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 2rem;
}

.header-logo {
	flex-shrink: 0;
}

.logo-link-new {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	text-decoration: none;
	transition: all 0.3s ease;
}

.logo-link-new:hover {
	opacity: 0.9;
}

.logo-img-new {
	height: 45px;
	width: auto;
}

.logo-text-new {
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--heading-color);
	font-family: var(--heading-font);
}

.navmenu-new {
	flex: 1;
	display: flex;
	justify-content: center;
}

.nav-list-new {
	display: flex;
	list-style: none;
	margin: 0;
	padding: 0;
	gap: 0.5rem;
	align-items: center;
}

.nav-link-new {
	display: flex;
	align-items: center;
	padding: 0.75rem 1.25rem;
	color: var(--default-color);
	text-decoration: none;
	font-size: 0.95rem;
	font-weight: 500;
	border-radius: 8px;
	transition: all 0.3s ease;
	position: relative;
}

.nav-link-new::before {
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 0;
	height: 2px;
	background: var(--accent-color);
	transition: width 0.3s ease;
}

.nav-link-new:hover,
.nav-link-new.active {
	color: var(--accent-color);
	background: rgba(162, 155, 254, 0.1);
}

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

.header-actions-new {
	display: flex;
	align-items: center;
	gap: 1rem;
}

.btn-faq-new {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.625rem 1rem;
	color: var(--default-color);
	text-decoration: none;
	border-radius: 8px;
	transition: all 0.3s ease;
	font-size: 0.9rem;
}

.btn-faq-new:hover {
	color: var(--accent-color);
	background: rgba(162, 155, 254, 0.1);
}

.btn-cta-new {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.75rem 1.5rem;
	background: linear-gradient(
		135deg,
		var(--accent-color) 0%,
		var(--heading-color) 100%
	);
	color: var(--contrast-color);
	text-decoration: none;
	border-radius: 10px;
	font-weight: 600;
	transition: all 0.3s ease;
	box-shadow: 0 4px 15px rgba(108, 92, 231, 0.3);
}

.btn-cta-new:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(108, 92, 231, 0.4);
	color: var(--contrast-color);
}

.mobile-menu-toggle {
	display: none;
	flex-direction: column;
	gap: 5px;
	background: transparent;
	border: none;
	cursor: pointer;
	padding: 0.5rem;
	width: 40px;
	height: 40px;
	justify-content: center;
	align-items: center;
}

.mobile-menu-toggle span {
	display: block;
	width: 25px;
	height: 2px;
	background: var(--default-color);
	border-radius: 2px;
	transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
	transform: rotate(45deg) translate(7px, 7px);
}

.mobile-menu-toggle.active span:nth-child(2) {
	opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
	transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.7);
	backdrop-filter: blur(5px);
	z-index: 9998;
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease;
}

.mobile-menu-overlay.active {
	opacity: 1;
	visibility: visible;
}

/* Mobile Menu */
.mobile-menu {
	position: fixed;
	top: 0;
	right: -100%;
	width: 320px;
	max-width: 85vw;
	height: 100vh;
	background: var(--surface-color);
	z-index: 9999;
	display: flex;
	flex-direction: column;
	box-shadow: -5px 0 30px rgba(0, 0, 0, 0.3);
	transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
	overflow-y: auto;
}

.mobile-menu.active {
	right: 0;
}

.mobile-menu-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 1.5rem;
	border-bottom: 1px solid rgba(162, 155, 254, 0.1);
}

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

.mobile-logo img {
	height: 35px;
	width: auto;
}

.mobile-menu-close {
	background: transparent;
	border: none;
	color: var(--default-color);
	font-size: 1.5rem;
	cursor: pointer;
	padding: 0.5rem;
	transition: all 0.3s ease;
	border-radius: 8px;
}

.mobile-menu-close:hover {
	background: rgba(162, 155, 254, 0.1);
	color: var(--accent-color);
}

.mobile-nav {
	flex: 1;
	padding: 1rem 0;
}

.mobile-nav-list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.mobile-nav-link {
	display: block;
	padding: 1rem 1.5rem;
	color: var(--default-color);
	text-decoration: none;
	font-size: 1rem;
	transition: all 0.3s ease;
	border-left: 3px solid transparent;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
	background: rgba(162, 155, 254, 0.1);
	color: var(--accent-color);
	border-left-color: var(--accent-color);
	padding-left: 1.75rem;
}

.mobile-menu-footer {
	padding: 1.5rem;
	border-top: 1px solid rgba(162, 155, 254, 0.1);
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.btn-mobile-cta {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	padding: 1rem;
	background: linear-gradient(
		135deg,
		var(--accent-color) 0%,
		var(--heading-color) 100%
	);
	color: var(--contrast-color);
	text-decoration: none;
	border-radius: 10px;
	font-weight: 600;
	transition: all 0.3s ease;
	box-shadow: 0 4px 15px rgba(108, 92, 231, 0.3);
}

.btn-mobile-cta:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(108, 92, 231, 0.4);
	color: var(--contrast-color);
}

.mobile-social {
	display: flex;
	justify-content: center;
	gap: 1rem;
}

.mobile-social-link {
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(162, 155, 254, 0.1);
	border-radius: 10px;
	color: var(--default-color);
	text-decoration: none;
	transition: all 0.3s ease;
	border: 1px solid rgba(162, 155, 254, 0.2);
}

.mobile-social-link:hover {
	background: var(--accent-color);
	color: var(--contrast-color);
	border-color: var(--accent-color);
	transform: translateY(-2px);
}

/* New Footer Styles */
.footer-new {
	background: linear-gradient(
		180deg,
		var(--surface-color) 0%,
		var(--background-color) 100%
	);
	border-top: 1px solid rgba(162, 155, 254, 0.1);
}

.footer-main {
	padding: 4rem 0 2rem;
}

.footer-grid {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr 2fr;
	gap: 3rem;
}

.footer-brand-new {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.footer-logo-new {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	text-decoration: none;
}

.footer-logo-img-new {
	height: 50px;
	width: auto;
}

.footer-logo-text-new {
	font-size: 1.75rem;
	font-weight: 700;
	color: var(--heading-color);
	font-family: var(--heading-font);
}

.footer-description-new {
	color: rgba(240, 240, 240, 0.8);
	font-size: 0.95rem;
	line-height: 1.7;
	max-width: 350px;
}

.footer-social-new {
	display: flex;
	gap: 0.75rem;
}

.footer-social-btn {
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(162, 155, 254, 0.1);
	border-radius: 10px;
	color: rgba(240, 240, 240, 0.7);
	text-decoration: none;
	transition: all 0.3s ease;
	border: 1px solid rgba(162, 155, 254, 0.2);
}

.footer-social-btn:hover {
	background: var(--accent-color);
	color: var(--contrast-color);
	border-color: var(--accent-color);
	transform: translateY(-3px);
}

.footer-column-new {
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
}

.footer-title-new {
	font-size: 1.1rem;
	font-weight: 700;
	color: var(--heading-color);
	margin: 0;
	font-family: var(--heading-font);
}

.footer-menu-new {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.footer-menu-new a {
	color: rgba(240, 240, 240, 0.7);
	text-decoration: none;
	font-size: 0.9rem;
	transition: all 0.3s ease;
	display: inline-block;
}

.footer-menu-new a:hover {
	color: var(--accent-color);
	transform: translateX(5px);
}

.footer-newsletter-new {
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
}

.footer-newsletter-text-new {
	color: rgba(240, 240, 240, 0.8);
	font-size: 0.9rem;
	line-height: 1.6;
}

.newsletter-form-new {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.newsletter-input-wrapper {
	position: relative;
	display: flex;
	align-items: center;
}

.newsletter-input-new {
	width: 100%;
	padding: 0.875rem 1.25rem;
	background: rgba(162, 155, 254, 0.1);
	border: 1px solid rgba(162, 155, 254, 0.2);
	border-radius: 10px;
	color: var(--default-color);
	font-size: 0.95rem;
	transition: all 0.3s ease;
}

.newsletter-input-new:focus {
	outline: none;
	border-color: var(--accent-color);
	background: rgba(162, 155, 254, 0.15);
}

.newsletter-input-new::placeholder {
	color: rgba(240, 240, 240, 0.5);
}

.newsletter-btn-new {
	position: absolute;
	right: 5px;
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(
		135deg,
		var(--accent-color) 0%,
		var(--heading-color) 100%
	);
	border: none;
	border-radius: 8px;
	color: var(--contrast-color);
	cursor: pointer;
	transition: all 0.3s ease;
}

.newsletter-btn-new:hover {
	transform: scale(1.1);
	box-shadow: 0 4px 15px rgba(108, 92, 231, 0.4);
}

.footer-contact-new {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
	margin-top: 1rem;
}

.footer-contact-item {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	color: rgba(240, 240, 240, 0.7);
	font-size: 0.9rem;
}

.footer-contact-item i {
	color: var(--accent-color);
	font-size: 1rem;
}

.footer-contact-item a {
	color: rgba(240, 240, 240, 0.7);
	text-decoration: none;
	transition: all 0.3s ease;
}

.footer-contact-item a:hover {
	color: var(--accent-color);
}

.footer-bottom-new {
	background: rgba(15, 52, 96, 0.5);
	border-top: 1px solid rgba(162, 155, 254, 0.1);
	padding: 1.5rem 0;
}

.footer-bottom-wrapper {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 1.5rem;
}

.footer-copyright-new {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.footer-copyright-new p {
	margin: 0;
	color: rgba(240, 240, 240, 0.7);
	font-size: 0.9rem;
}

.footer-company-new {
	font-size: 0.8rem !important;
	color: rgba(240, 240, 240, 0.5) !important;
}

.footer-legal-new {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	flex-wrap: wrap;
}

.footer-legal-new a {
	color: rgba(240, 240, 240, 0.7);
	text-decoration: none;
	font-size: 0.9rem;
	transition: all 0.3s ease;
}

.footer-legal-new a:hover {
	color: var(--accent-color);
}

.footer-separator {
	color: rgba(240, 240, 240, 0.3);
}

/* New Footer Content Wrapper Styles */
.footer-content-wrapper {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr 1.5fr;
	gap: 3rem;
}

.footer-brand-section {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.footer-logo-link {
	display: inline-block;
	text-decoration: none;
}

.footer-logo-img {
	height: 50px;
	width: auto;
	object-fit: contain;
}

.footer-tagline {
	color: var(--default-color);
	font-size: 0.95rem;
	line-height: 1.7;
	max-width: 350px;
	opacity: 0.9;
}

.footer-social-links {
	display: flex;
	gap: 0.75rem;
	flex-wrap: wrap;
}

.social-icon-link {
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(124, 58, 237, 0.1);
	border-radius: 10px;
	color: var(--default-color);
	text-decoration: none;
	transition: all 0.3s ease;
	border: 1px solid rgba(124, 58, 237, 0.2);
}

.social-icon-link:hover {
	background: var(--accent-color);
	color: var(--contrast-color);
	border-color: var(--accent-color);
	transform: translateY(-3px);
}

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

.footer-section-title {
	font-size: 1.1rem;
	font-weight: 700;
	color: var(--heading-color);
	margin: 0;
	font-family: var(--heading-font);
}

.footer-links-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.footer-links-list a {
	color: var(--default-color);
	text-decoration: none;
	font-size: 0.9rem;
	transition: all 0.3s ease;
	display: inline-block;
	opacity: 0.8;
}

.footer-links-list a:hover {
	color: var(--accent-color);
	opacity: 1;
	transform: translateX(5px);
}

.footer-contact-section {
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
}

.footer-contact-info {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.contact-info-item {
	display: flex;
	align-items: flex-start;
	gap: 0.75rem;
	color: var(--default-color);
	font-size: 0.9rem;
	opacity: 0.8;
}

.contact-info-item i {
	color: var(--accent-color);
	font-size: 1rem;
	margin-top: 2px;
	flex-shrink: 0;
}

.contact-info-item a {
	color: var(--default-color);
	text-decoration: none;
	transition: all 0.3s ease;
}

.contact-info-item a:hover {
	color: var(--accent-color);
	opacity: 1;
}

.footer-bottom-bar {
	background: rgba(124, 58, 237, 0.05);
	border-top: 1px solid rgba(124, 58, 237, 0.1);
	padding: 1.5rem 0;
}

.footer-bottom-content {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 1.5rem;
}

.footer-copyright {
	margin: 0;
	color: var(--default-color);
	font-size: 0.9rem;
	opacity: 0.8;
}

.footer-copyright strong {
	color: var(--heading-color);
	font-weight: 700;
}

.footer-legal-links {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	flex-wrap: wrap;
}

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

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

.footer-legal-links .separator {
	color: var(--default-color);
	opacity: 0.3;
}

/* Responsive Styles */
@media (max-width: 1200px) {
	.footer-grid {
		grid-template-columns: 2fr 1fr 1fr 1.5fr;
		gap: 2rem;
	}
}

@media (max-width: 992px) {
	.header-top-left {
		gap: 1rem;
	}

	.navmenu-new {
		display: none;
	}

	.mobile-menu-toggle {
		display: flex;
	}

	.header-actions-new {
		gap: 0.75rem;
	}

	.btn-faq-new span {
		display: none;
	}

	.footer-grid {
		grid-template-columns: 1fr 1fr;
		gap: 2.5rem;
	}

	.footer-newsletter-new {
		grid-column: 1 / -1;
	}
}

@media (max-width: 768px) {
	.header-top-bar {
		display: none;
	}

	.header-main-new {
		padding: 0.75rem 0;
	}

	.logo-text-new {
		font-size: 1.25rem;
	}

	.logo-img-new {
		height: 35px;
	}

	.btn-cta-new {
		padding: 0.625rem 1.25rem;
		font-size: 0.9rem;
	}

	.btn-cta-new span {
		display: none;
	}

	.footer-main {
		padding: 3rem 0 1.5rem;
	}

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

	.footer-content-wrapper {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

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

	.footer-legal-new {
		justify-content: center;
	}
}

@media (max-width: 576px) {
	.header-wrapper {
		gap: 1rem;
	}

	.mobile-menu {
		width: 100%;
		max-width: 100%;
	}

	.footer-description-new {
		max-width: 100%;
	}
}

.stat-number-modern {
	font-size: 2rem;
}

.service-card-modern {
	padding: 1.5rem;
}

.service-title-modern {
	font-size: 1.25rem;
}

.services-cta-title {
	font-size: 2rem;
}

.services-cta-buttons {
	flex-direction: column;
}

.services-cta-buttons .btn-lg {
	width: 100%;
}

.legal-item span,
.legal-item a {
	color: rgba(255, 255, 255, 0.85);
	font-size: 0.95rem;
	text-decoration: none;
}

.legal-item a:hover {
	color: var(--accent-color);
}

@media (max-width: 991px) {
	.about-features-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 1.25rem;
	}
}

@media (max-width: 767px) {
	.hero h2 {
		font-size: 2.5rem;
	}

	.hero p {
		font-size: 1.1rem;
	}

	.about-features-grid {
		grid-template-columns: 1fr;
		gap: 1rem;
	}

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

	.stats-grid {
		grid-template-columns: 1fr;
		gap: 20px;
	}

	.recurso-card {
		padding: 30px 20px;
	}

	.footer-newsletter .newsletter-form {
		flex-direction: column;
		background: transparent;
		padding: 0;
	}

	.footer-newsletter input[type='submit'] {
		width: 100%;
	}
}

@media (max-width: 575px) {
	.hero {
		padding: 80px 0 40px;
	}

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

	.about-title {
		font-size: 1.8rem;
	}

	.recurso-card {
		padding: 25px 15px;
	}

	.feature-item {
		padding: 20px 15px;
	}
}

/* ===========================================================
   TESTIMONIALS NEW
=========================================================== */
.testimonials-new .testimonials-header-new {
	text-align: center;
	margin-bottom: 2.5rem;
}
.testimonials-new .badge-new {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.5rem 0.9rem;
	border-radius: 999px;
	background: rgba(162, 155, 254, 0.12);
	color: var(--accent-color);
	border: 1px solid rgba(162, 155, 254, 0.25);
	margin-bottom: 1rem;
}
.testimonials-new .testimonials-header-new h2 {
	color: var(--contrast-color);
	margin: 0 0 0.75rem 0;
}
.testimonials-new .testimonials-header-new p {
	color: rgba(240, 240, 240, 0.8);
	max-width: 820px;
	margin: 0 auto 1.5rem auto;
}
.testimonials-stats-new {
	display: flex;
	justify-content: center;
	gap: 2rem;
	flex-wrap: wrap;
}
.testimonials-stats-new .stat-item {
	background: rgba(15, 52, 96, 0.45);
	border: 1px solid rgba(162, 155, 254, 0.18);
	padding: 0.9rem 1.25rem;
	border-radius: 12px;
	min-width: 180px;
}
.testimonials-stats-new .num {
	font-size: 1.3rem;
	color: var(--heading-color);
	font-weight: 700;
}
.testimonials-stats-new .label {
	color: rgba(240, 240, 240, 0.75);
	font-size: 0.9rem;
}

.testimonials-grid-new {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.25rem;
}
@media (max-width: 992px) {
	.testimonials-grid-new {
		grid-template-columns: repeat(2, 1fr);
	}
}
@media (max-width: 576px) {
	.testimonials-grid-new {
		grid-template-columns: 1fr;
	}
}

.t-card-new {
	background: rgba(15, 52, 96, 0.45);
	border: 1px solid rgba(162, 155, 254, 0.18);
	border-radius: 14px;
	padding: 1.25rem;
	color: var(--default-color);
	backdrop-filter: blur(8px);
	transition:
		transform 0.3s ease,
		box-shadow 0.3s ease,
		border-color 0.3s ease;
}
.t-card-new:hover {
	transform: translateY(-4px);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
	border-color: rgba(162, 155, 254, 0.35);
}
.t-head {
	display: flex;
	align-items: center;
	gap: 0.85rem;
	margin-bottom: 0.75rem;
}
.t-head .avatar {
	width: 42px;
	height: 42px;
	border-radius: 50%;
	display: grid;
	place-items: center;
	background: linear-gradient(
		135deg,
		var(--accent-color),
		var(--heading-color)
	);
	color: var(--contrast-color);
	font-weight: 700;
}
.t-head .info h4 {
	margin: 0;
	color: var(--contrast-color);
	font-size: 1.05rem;
}
.t-head .meta {
	font-size: 0.85rem;
	color: rgba(240, 240, 240, 0.75);
}
.t-head .meta i {
	color: #fbc531;
}

.t-text {
	color: rgba(240, 240, 240, 0.9);
	margin: 0.5rem 0 0.9rem 0;
	line-height: 1.7;
	position: relative;
}
.t-text:before,
.t-text:after {
	content: '“';
	color: rgba(162, 155, 254, 0.4);
	font-size: 1.6rem;
	position: absolute;
	transform: translateY(-10px);
}
.t-text:after {
	content: '”';
	transform: translate(4px, 4px);
}

.t-tags {
	display: flex;
	gap: 0.5rem;
	flex-wrap: wrap;
}
.t-tags .tag {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	padding: 0.35rem 0.6rem;
	border-radius: 999px;
	background: rgba(162, 155, 254, 0.12);
	border: 1px solid rgba(162, 155, 254, 0.25);
	color: rgba(240, 240, 240, 0.85);
	font-size: 0.85rem;
}
.t-tags .tag i {
	color: var(--accent-color);
}

/* Video-like testimonial */
.t-card-new.t-video {
	position: relative;
	overflow: hidden;
}
.t-card-new .t-video-thumb {
	height: 150px;
	border-radius: 10px;
	margin-bottom: 0.9rem;
	position: relative;
	background: radial-gradient(
		circle at 40% 40%,
		rgba(162, 155, 254, 0.3),
		rgba(108, 92, 231, 0.15)
	);
	border: 1px dashed rgba(162, 155, 254, 0.25);
}
.t-card-new .t-video-thumb .overlay {
	position: absolute;
	inset: 0;
	background: radial-gradient(
			600px 300px at 10% 10%,
			rgba(162, 155, 254, 0.08),
			transparent 50%
		),
		radial-gradient(
			600px 300px at 90% 70%,
			rgba(108, 92, 231, 0.08),
			transparent 50%
		);
}
.t-card-new .t-video-thumb .play {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 56px;
	height: 56px;
	border-radius: 50%;
	display: grid;
	place-items: center;
	background: linear-gradient(
		135deg,
		var(--accent-color),
		var(--heading-color)
	);
	color: var(--contrast-color);
	font-size: 1.4rem;
	box-shadow: 0 8px 20px rgba(108, 92, 231, 0.35);
}

/* ===========================================================
   FEATURES REDESIGNED - New Layout, Animations & Hovers
=========================================================== */
.features-new .features-header-new {
	text-align: center;
	margin-bottom: 3.5rem;
}
.features-new .features-header-new h2 {
	color: var(--contrast-color);
	margin: 0 0 0.75rem 0;
	font-size: 2.25rem;
	font-weight: 700;
}
.features-new .features-header-new p {
	color: rgba(240, 240, 240, 0.85);
	max-width: 780px;
	margin: 0 auto;
	font-size: 1.05rem;
}
.features-new .badge-new {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.5rem 0.9rem;
	border-radius: 999px;
	background: rgba(162, 155, 254, 0.12);
	color: var(--accent-color);
	border: 1px solid rgba(162, 155, 254, 0.25);
	margin-bottom: 1rem;
	animation: pulseGlow 3s ease-in-out infinite;
}

@keyframes pulseGlow {
	0%,
	100% {
		box-shadow: 0 0 0 0 rgba(162, 155, 254, 0.4);
	}
	50% {
		box-shadow: 0 0 0 8px rgba(162, 155, 254, 0);
	}
}

.features-grid-redesigned {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
	margin-top: 2rem;
}
@media (max-width: 992px) {
	.features-grid-redesigned {
		grid-template-columns: repeat(2, 1fr);
		gap: 1.5rem;
	}
}
@media (max-width: 576px) {
	.features-grid-redesigned {
		grid-template-columns: 1fr;
		gap: 1.25rem;
	}
}

.feature-card-redesigned {
	position: relative;
	perspective: 1000px;
}

.feature-card-inner {
	position: relative;
	background: linear-gradient(
		135deg,
		rgba(15, 52, 96, 0.6),
		rgba(15, 52, 96, 0.4)
	);
	border: 2px solid rgba(162, 155, 254, 0.2);
	border-radius: 20px;
	padding: 2rem 1.75rem;
	backdrop-filter: blur(12px);
	transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
	overflow: hidden;
	transform-style: preserve-3d;
}

.feature-card-redesigned:hover .feature-card-inner {
	transform: translateY(-8px) rotateX(2deg);
	border-color: rgba(162, 155, 254, 0.5);
	box-shadow:
		0 20px 50px rgba(162, 155, 254, 0.25),
		0 0 40px rgba(162, 155, 254, 0.1);
}

.feature-hover-effect {
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(
		90deg,
		transparent,
		rgba(162, 155, 254, 0.15),
		transparent
	);
	transition: left 0.6s ease;
}

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

.feature-icon-wrapper {
	position: relative;
	width: 70px;
	height: 70px;
	margin-bottom: 1.5rem;
}

.feature-icon-bg {
	position: absolute;
	inset: 0;
	background: linear-gradient(
		135deg,
		var(--accent-color),
		var(--heading-color)
	);
	border-radius: 18px;
	opacity: 0.2;
	transform: scale(1);
	transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
	animation: iconPulse 3s ease-in-out infinite;
}

@keyframes iconPulse {
	0%,
	100% {
		transform: scale(1);
		opacity: 0.2;
	}
	50% {
		transform: scale(1.1);
		opacity: 0.3;
	}
}

.feature-card-redesigned:hover .feature-icon-bg {
	transform: scale(1.15);
	opacity: 0.35;
}

.feature-icon {
	position: relative;
	width: 100%;
	height: 100%;
	display: grid;
	place-items: center;
	background: linear-gradient(
		135deg,
		rgba(162, 155, 254, 0.2),
		rgba(108, 92, 231, 0.2)
	);
	border: 2px solid rgba(162, 155, 254, 0.4);
	border-radius: 18px;
	color: var(--accent-color);
	font-size: 1.75rem;
	transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
	z-index: 1;
}

.feature-card-redesigned:hover .feature-icon {
	transform: rotateY(360deg) scale(1.1);
	border-color: rgba(162, 155, 254, 0.6);
	box-shadow: 0 8px 25px rgba(162, 155, 254, 0.3);
}

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

.feature-card-inner h3 {
	margin: 0 0 0.75rem 0;
	color: var(--contrast-color);
	font-size: 1.35rem;
	font-weight: 700;
	transition: color 0.3s ease;
}

.feature-card-redesigned:hover .feature-card-inner h3 {
	color: var(--accent-color);
}

.feature-card-inner p {
	color: rgba(240, 240, 240, 0.9);
	margin: 0 0 1.25rem 0;
	line-height: 1.6;
	font-size: 0.95rem;
}

.feature-list-redesigned {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 0.6rem;
}

.feature-list-redesigned li {
	display: flex;
	align-items: center;
	gap: 0.6rem;
	color: rgba(240, 240, 240, 0.9);
	font-size: 0.9rem;
	transition:
		transform 0.3s ease,
		color 0.3s ease;
	padding-left: 0.25rem;
}

.feature-card-redesigned:hover .feature-list-redesigned li {
	transform: translateX(4px);
	color: rgba(240, 240, 240, 1);
}

.feature-list-redesigned li i {
	color: var(--accent-color);
	font-size: 1.1rem;
	transition: transform 0.3s ease;
	flex-shrink: 0;
}

.feature-card-redesigned:hover .feature-list-redesigned li i {
	transform: scale(1.2);
}

.feature-list-redesigned li span {
	flex: 1;
}

.features-cta-new {
	text-align: center;
	margin-top: 3.5rem;
	background: linear-gradient(
		135deg,
		rgba(15, 52, 96, 0.6),
		rgba(15, 52, 96, 0.4)
	);
	border: 2px solid rgba(162, 155, 254, 0.25);
	padding: 2.5rem 2rem;
	border-radius: 24px;
	backdrop-filter: blur(12px);
	position: relative;
	overflow: hidden;
}

.features-cta-new::before {
	content: '';
	position: absolute;
	top: -50%;
	left: -50%;
	width: 200%;
	height: 200%;
	background: radial-gradient(
		circle,
		rgba(162, 155, 254, 0.1) 0%,
		transparent 70%
	);
	animation: rotateGlow 8s linear infinite;
}

@keyframes rotateGlow {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(360deg);
	}
}

.features-cta-new h3 {
	color: var(--contrast-color);
	margin: 0 0 0.75rem 0;
	font-size: 1.75rem;
	position: relative;
	z-index: 1;
}
.features-cta-new p {
	color: rgba(240, 240, 240, 0.85);
	margin: 0 0 1.5rem 0;
	position: relative;
	z-index: 1;
}
.features-cta-new .cta-buttons {
	display: flex;
	gap: 1rem;
	justify-content: center;
	flex-wrap: wrap;
	position: relative;
	z-index: 1;
}

/* ===========================================================
   SUCCESS STORIES REDESIGNED - New Layout, Animations & Hovers
=========================================================== */
.success-stories-redesigned {
	position: relative;
}

.success-header-redesigned {
	text-align: center;
	margin-bottom: 4rem;
}
.success-header-redesigned h2 {
	color: var(--heading-color);
	margin: 0 0 1rem 0;
	font-size: 2.5rem;
	font-weight: 700;
}
.success-header-redesigned p {
	color: rgba(0, 0, 0, 0.75);
	max-width: 800px;
	margin: 0 auto;
	font-size: 1.1rem;
	line-height: 1.7;
}

.success-areas-grid-redesigned {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1.75rem;
	margin-bottom: 4rem;
}
@media (max-width: 1200px) {
	.success-areas-grid-redesigned {
		grid-template-columns: repeat(2, 1fr);
	}
}
@media (max-width: 576px) {
	.success-areas-grid-redesigned {
		grid-template-columns: 1fr;
	}
}

.success-area-card-redesigned {
	position: relative;
	perspective: 1000px;
}

.success-area-inner {
	position: relative;
	background: linear-gradient(
		135deg,
		rgba(255, 255, 255, 0.98),
		rgba(255, 255, 255, 0.95)
	);
	border: 2px solid rgba(162, 155, 254, 0.15);
	border-radius: 24px;
	padding: 2.25rem 1.75rem;
	text-align: center;
	transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
	overflow: hidden;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.success-area-card-redesigned:hover .success-area-inner {
	transform: translateY(-10px) scale(1.02);
	border-color: rgba(162, 155, 254, 0.4);
	box-shadow:
		0 20px 50px rgba(162, 155, 254, 0.2),
		0 0 30px rgba(162, 155, 254, 0.1);
}

.success-icon-container {
	position: relative;
	width: 80px;
	height: 80px;
	margin: 0 auto 1.5rem;
}

.success-icon-bg-animated {
	position: absolute;
	inset: -10px;
	background: linear-gradient(
		135deg,
		var(--accent-color),
		var(--heading-color)
	);
	border-radius: 50%;
	opacity: 0.15;
	animation: iconRotate 8s linear infinite;
	filter: blur(15px);
}

@keyframes iconRotate {
	0% {
		transform: rotate(0deg) scale(1);
	}
	50% {
		transform: rotate(180deg) scale(1.1);
	}
	100% {
		transform: rotate(360deg) scale(1);
	}
}

.success-area-card-redesigned:hover .success-icon-bg-animated {
	animation-duration: 4s;
	opacity: 0.25;
}

.success-icon-redesigned {
	position: relative;
	width: 100%;
	height: 100%;
	display: grid;
	place-items: center;
	background: linear-gradient(
		135deg,
		var(--accent-color),
		var(--heading-color)
	);
	border-radius: 50%;
	color: var(--contrast-color);
	font-size: 2rem;
	transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
	z-index: 1;
	box-shadow: 0 8px 25px rgba(162, 155, 254, 0.3);
}

.success-area-card-redesigned:hover .success-icon-redesigned {
	transform: rotate(360deg) scale(1.15);
	box-shadow: 0 12px 35px rgba(162, 155, 254, 0.4);
}

.success-area-hover-glow {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 0;
	height: 0;
	background: radial-gradient(
		circle,
		rgba(162, 155, 254, 0.2) 0%,
		transparent 70%
	);
	border-radius: 50%;
	transform: translate(-50%, -50%);
	transition:
		width 0.6s ease,
		height 0.6s ease;
	pointer-events: none;
}

.success-area-card-redesigned:hover .success-area-hover-glow {
	width: 200%;
	height: 200%;
}

.success-area-title-redesigned {
	color: var(--heading-color);
	margin: 0 0 1rem 0;
	font-size: 1.25rem;
	font-weight: 700;
	transition: color 0.3s ease;
}

.success-area-card-redesigned:hover .success-area-title-redesigned {
	color: var(--accent-color);
}

.success-area-description-redesigned {
	color: rgba(0, 0, 0, 0.7);
	margin: 0;
	line-height: 1.6;
	font-size: 0.95rem;
	transition: color 0.3s ease;
}

.success-area-card-redesigned:hover .success-area-description-redesigned {
	color: rgba(0, 0, 0, 0.85);
}

.stories-grid-redesigned {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 2rem;
	margin-bottom: 3rem;
}
@media (max-width: 992px) {
	.stories-grid-redesigned {
		grid-template-columns: 1fr;
		gap: 1.5rem;
	}
}

.story-card-redesigned {
	position: relative;
	perspective: 1200px;
}

.story-card-inner-redesigned {
	position: relative;
	background: linear-gradient(
		135deg,
		rgba(255, 255, 255, 0.98),
		rgba(255, 255, 255, 0.95)
	);
	border: 2px solid rgba(162, 155, 254, 0.15);
	border-radius: 24px;
	padding: 2rem;
	transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
	overflow: hidden;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.story-card-redesigned:hover .story-card-inner-redesigned {
	transform: translateY(-8px) rotateX(1deg);
	border-color: rgba(162, 155, 254, 0.4);
	box-shadow:
		0 25px 60px rgba(162, 155, 254, 0.2),
		0 0 40px rgba(162, 155, 254, 0.1);
}

.story-card-shine {
	position: absolute;
	top: -50%;
	left: -50%;
	width: 200%;
	height: 200%;
	background: linear-gradient(
		45deg,
		transparent 30%,
		rgba(255, 255, 255, 0.3) 50%,
		transparent 70%
	);
	transform: rotate(45deg);
	transition: left 0.8s ease;
	pointer-events: none;
}

.story-card-redesigned:hover .story-card-shine {
	left: 150%;
}

.story-header-redesigned {
	display: flex;
	align-items: center;
	gap: 1rem;
	margin-bottom: 1.5rem;
	padding-bottom: 1.25rem;
	border-bottom: 2px solid rgba(162, 155, 254, 0.1);
}

.story-avatar-redesigned {
	position: relative;
	width: 56px;
	height: 56px;
	border-radius: 50%;
	display: grid;
	place-items: center;
	flex-shrink: 0;
	overflow: hidden;
}

.avatar-gradient {
	position: absolute;
	inset: 0;
	background: linear-gradient(
		135deg,
		var(--accent-color),
		var(--heading-color)
	);
	border-radius: 50%;
	animation: avatarPulse 3s ease-in-out infinite;
}

@keyframes avatarPulse {
	0%,
	100% {
		transform: scale(1);
		opacity: 1;
	}
	50% {
		transform: scale(1.1);
		opacity: 0.9;
	}
}

.story-card-redesigned:hover .avatar-gradient {
	animation-duration: 1.5s;
}

.story-avatar-redesigned i {
	position: relative;
	color: var(--contrast-color);
	font-size: 1.5rem;
	z-index: 1;
	transition: transform 0.3s ease;
}

.story-card-redesigned:hover .story-avatar-redesigned i {
	transform: scale(1.2);
}

.story-info-redesigned {
	flex: 1;
}

.story-info-redesigned h4 {
	margin: 0 0 0.35rem 0;
	color: var(--heading-color);
	font-size: 1.2rem;
	font-weight: 700;
	transition: color 0.3s ease;
}

.story-card-redesigned:hover .story-info-redesigned h4 {
	color: var(--accent-color);
}

.story-meta-redesigned {
	margin: 0;
	color: rgba(0, 0, 0, 0.6);
	font-size: 0.9rem;
}

.story-badge-redesigned {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.5rem 0.85rem;
	border-radius: 999px;
	background: linear-gradient(
		135deg,
		rgba(162, 155, 254, 0.15),
		rgba(108, 92, 231, 0.15)
	);
	border: 1px solid rgba(162, 155, 254, 0.3);
	color: var(--heading-color);
	font-size: 0.85rem;
	font-weight: 600;
	transition: all 0.3s ease;
}

.story-card-redesigned:hover .story-badge-redesigned {
	background: linear-gradient(
		135deg,
		rgba(162, 155, 254, 0.25),
		rgba(108, 92, 231, 0.25)
	);
	border-color: rgba(162, 155, 254, 0.5);
	transform: scale(1.05);
}

.story-badge-redesigned i {
	color: var(--accent-color);
	font-size: 1rem;
}

.story-content-redesigned {
	color: rgba(0, 0, 0, 0.8);
}

.story-content-redesigned h5 {
	color: var(--heading-color);
	margin: 0 0 1rem 0;
	font-size: 1.3rem;
	font-weight: 700;
	line-height: 1.4;
	transition: color 0.3s ease;
}

.story-card-redesigned:hover .story-content-redesigned h5 {
	color: var(--accent-color);
}

.story-content-redesigned p {
	color: rgba(0, 0, 0, 0.75);
	margin: 0 0 1.5rem 0;
	line-height: 1.7;
	font-size: 1rem;
}

.story-results-redesigned {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
	margin-top: 1.5rem;
	padding-top: 1.5rem;
	border-top: 2px solid rgba(162, 155, 254, 0.1);
}

.result-item-redesigned {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	color: rgba(0, 0, 0, 0.75);
	font-size: 0.95rem;
	transition:
		transform 0.3s ease,
		color 0.3s ease;
	padding-left: 0.25rem;
}

.story-card-redesigned:hover .result-item-redesigned {
	transform: translateX(6px);
	color: rgba(0, 0, 0, 0.9);
}

.result-item-redesigned i {
	color: var(--accent-color);
	font-size: 1.2rem;
	transition: transform 0.3s ease;
	flex-shrink: 0;
}

.story-card-redesigned:hover .result-item-redesigned i {
	transform: scale(1.3) rotate(5deg);
}

.success-cta {
	text-align: center;
	margin-top: 3rem;
	background: linear-gradient(
		135deg,
		rgba(255, 255, 255, 0.98),
		rgba(255, 255, 255, 0.95)
	);
	border: 2px solid rgba(162, 155, 254, 0.2);
	padding: 2.5rem 2rem;
	border-radius: 24px;
	backdrop-filter: blur(12px);
	position: relative;
	overflow: hidden;
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.success-cta::before {
	content: '';
	position: absolute;
	top: -50%;
	left: -50%;
	width: 200%;
	height: 200%;
	background: radial-gradient(
		circle,
		rgba(162, 155, 254, 0.08) 0%,
		transparent 70%
	);
	animation: rotateGlow 10s linear infinite;
}

.success-cta h3 {
	color: var(--heading-color);
	margin: 0 0 0.75rem 0;
	font-size: 1.9rem;
	position: relative;
	z-index: 1;
}
.success-cta .lead {
	color: rgba(0, 0, 0, 0.75);
	margin: 0 0 1.75rem 0;
	max-width: 700px;
	margin-left: auto;
	margin-right: auto;
	position: relative;
	z-index: 1;
	font-size: 1.05rem;
	line-height: 1.7;
}
.success-cta .cta-buttons {
	display: flex;
	gap: 1rem;
	justify-content: center;
	flex-wrap: wrap;
	position: relative;
	z-index: 1;
}

/* ===========================================================
   PRICING REDESIGNED - New Layout, Animations & Hovers
=========================================================== */
.pricing-redesigned {
	position: relative;
}

.pricing-header-redesigned {
	text-align: center;
	margin-bottom: 4rem;
}
.pricing-header-redesigned h2 {
	color: var(--heading-color);
	margin: 0 0 1rem 0;
	font-size: 2.5rem;
	font-weight: 700;
}
.pricing-header-redesigned p {
	color: rgba(0, 0, 0, 0.75);
	max-width: 850px;
	margin: 0 auto;
	font-size: 1.1rem;
	line-height: 1.7;
}

.pricing-cards-grid-redesigned {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
	margin-bottom: 4rem;
}
@media (max-width: 992px) {
	.pricing-cards-grid-redesigned {
		grid-template-columns: 1fr;
		gap: 1.5rem;
	}
}

.pricing-card-redesigned {
	position: relative;
	perspective: 1200px;
}

.pricing-card-inner-redesigned {
	position: relative;
	background: linear-gradient(
		135deg,
		rgba(255, 255, 255, 0.98),
		rgba(255, 255, 255, 0.95)
	);
	border: 2px solid rgba(162, 155, 254, 0.15);
	border-radius: 28px;
	padding: 2.5rem 2rem;
	transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
	overflow: hidden;
	box-shadow: 0 4px 25px rgba(0, 0, 0, 0.08);
	height: 100%;
	display: flex;
	flex-direction: column;
}

.pricing-card-redesigned:hover .pricing-card-inner-redesigned {
	transform: translateY(-12px) rotateX(2deg);
	border-color: rgba(162, 155, 254, 0.4);
	box-shadow:
		0 25px 60px rgba(162, 155, 254, 0.25),
		0 0 50px rgba(162, 155, 254, 0.15);
}

.pricing-card-featured-redesigned {
	transform: scale(1.05);
}
@media (max-width: 992px) {
	.pricing-card-featured-redesigned {
		transform: scale(1);
	}
}

.pricing-popular-badge-redesigned {
	position: absolute;
	top: -12px;
	left: 50%;
	transform: translateX(-50%);
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.5rem 1.25rem;
	background: linear-gradient(
		135deg,
		var(--accent-color),
		var(--heading-color)
	);
	color: var(--contrast-color);
	border-radius: 999px;
	font-size: 0.85rem;
	font-weight: 700;
	box-shadow: 0 8px 25px rgba(162, 155, 254, 0.4);
	z-index: 10;
	animation: badgeFloat 3s ease-in-out infinite;
}

@keyframes badgeFloat {
	0%,
	100% {
		transform: translateX(-50%) translateY(0);
	}
	50% {
		transform: translateX(-50%) translateY(-5px);
	}
}

.pricing-card-header-redesigned {
	text-align: center;
	margin-bottom: 2rem;
	position: relative;
	z-index: 2;
}

.pricing-card-header-redesigned h3 {
	color: var(--heading-color);
	margin: 0 0 1.25rem 0;
	font-size: 1.75rem;
	font-weight: 700;
	transition: color 0.3s ease;
}

.pricing-card-redesigned:hover .pricing-card-header-redesigned h3 {
	color: var(--accent-color);
}

.pricing-price-wrapper-redesigned {
	display: flex;
	align-items: baseline;
	justify-content: center;
	gap: 0.25rem;
	margin-bottom: 1rem;
}

.pricing-currency-redesigned {
	font-size: 1.5rem;
	color: var(--heading-color);
	font-weight: 600;
}

.pricing-amount-redesigned {
	font-size: 3.5rem;
	font-weight: 700;
	background: linear-gradient(
		135deg,
		var(--accent-color),
		var(--heading-color)
	);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	line-height: 1;
	transition: transform 0.3s ease;
}

.pricing-card-redesigned:hover .pricing-amount-redesigned {
	transform: scale(1.1);
}

.pricing-period-redesigned {
	font-size: 1.1rem;
	color: rgba(0, 0, 0, 0.6);
	font-weight: 500;
}

.pricing-description-redesigned {
	color: rgba(0, 0, 0, 0.7);
	margin: 0;
	font-size: 0.95rem;
	line-height: 1.6;
}

.pricing-features-redesigned {
	flex: 1;
	margin-bottom: 2rem;
	position: relative;
	z-index: 2;
}

.pricing-list-redesigned {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 0.85rem;
}

.pricing-list-redesigned li {
	display: flex;
	align-items: flex-start;
	gap: 0.75rem;
	color: rgba(0, 0, 0, 0.8);
	font-size: 0.95rem;
	transition:
		transform 0.3s ease,
		color 0.3s ease;
	padding-left: 0.25rem;
}

.pricing-card-redesigned:hover .pricing-list-redesigned li {
	transform: translateX(6px);
	color: rgba(0, 0, 0, 0.95);
}

.pricing-list-redesigned li i {
	color: var(--accent-color);
	font-size: 1.2rem;
	transition: transform 0.3s ease;
	flex-shrink: 0;
	margin-top: 0.15rem;
}

.pricing-card-redesigned:hover .pricing-list-redesigned li i {
	transform: scale(1.3) rotate(5deg);
}

.pricing-list-redesigned li.pricing-disabled {
	color: rgba(0, 0, 0, 0.5);
	opacity: 0.7;
}

.pricing-list-redesigned li.pricing-disabled i {
	color: rgba(0, 0, 0, 0.4);
}

.pricing-footer-redesigned {
	position: relative;
	z-index: 2;
}

.pricing-btn-redesigned {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	width: 100%;
	padding: 1rem 1.5rem;
	border-radius: 14px;
	font-weight: 600;
	font-size: 1rem;
	text-decoration: none;
	transition: all 0.3s ease;
	border: 2px solid transparent;
}

.pricing-btn-primary {
	background: linear-gradient(
		135deg,
		var(--accent-color),
		var(--heading-color)
	);
	color: var(--contrast-color);
	box-shadow: 0 8px 25px rgba(162, 155, 254, 0.3);
}

.pricing-btn-primary:hover {
	transform: translateY(-3px);
	box-shadow: 0 12px 35px rgba(162, 155, 254, 0.4);
}

.pricing-btn-outline {
	background: transparent;
	color: var(--heading-color);
	border-color: rgba(162, 155, 254, 0.3);
}

.pricing-btn-outline:hover {
	background: rgba(162, 155, 254, 0.1);
	border-color: rgba(162, 155, 254, 0.5);
	transform: translateY(-3px);
}

.pricing-note-redesigned {
	text-align: center;
	margin-top: 0.75rem;
	color: rgba(0, 0, 0, 0.6);
	font-size: 0.85rem;
}

.pricing-card-glow-redesigned {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 0;
	height: 0;
	background: radial-gradient(
		circle,
		rgba(162, 155, 254, 0.15) 0%,
		transparent 70%
	);
	border-radius: 50%;
	transform: translate(-50%, -50%);
	transition:
		width 0.6s ease,
		height 0.6s ease;
	pointer-events: none;
}

.pricing-card-redesigned:hover .pricing-card-glow-redesigned {
	width: 300%;
	height: 300%;
}

.pricing-comparison-redesigned {
	margin: 4rem 0;
	background: linear-gradient(
		135deg,
		rgba(255, 255, 255, 0.98),
		rgba(255, 255, 255, 0.95)
	);
	border: 2px solid rgba(162, 155, 254, 0.15);
	border-radius: 24px;
	padding: 2.5rem;
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.pricing-comparison-title-redesigned {
	text-align: center;
	color: var(--heading-color);
	margin: 0 0 2rem 0;
	font-size: 1.9rem;
	font-weight: 700;
}

.pricing-table-wrapper-redesigned {
	overflow-x: auto;
}

.pricing-table-redesigned {
	width: 100%;
	border-collapse: collapse;
}

.pricing-table-redesigned thead {
	background: linear-gradient(
		135deg,
		rgba(162, 155, 254, 0.1),
		rgba(108, 92, 231, 0.1)
	);
}

.pricing-table-redesigned th {
	padding: 1.25rem 1rem;
	text-align: left;
	color: var(--heading-color);
	font-weight: 700;
	font-size: 1rem;
	border-bottom: 2px solid rgba(162, 155, 254, 0.2);
}

.pricing-table-redesigned td {
	padding: 1rem;
	border-bottom: 1px solid rgba(162, 155, 254, 0.1);
	color: rgba(0, 0, 0, 0.75);
	font-size: 0.95rem;
}

.pricing-table-redesigned tbody tr {
	transition: background 0.3s ease;
}

.pricing-table-redesigned tbody tr:hover {
	background: rgba(162, 155, 254, 0.05);
}

.pricing-table-redesigned td i {
	font-size: 1.2rem;
}

.pricing-table-redesigned td .bi-check-circle {
	color: #10b981;
}

.pricing-table-redesigned td .bi-x-circle {
	color: #ef4444;
}

.pricing-cta-redesigned {
	text-align: center;
	margin-top: 4rem;
	background: linear-gradient(
		135deg,
		rgba(255, 255, 255, 0.98),
		rgba(255, 255, 255, 0.95)
	);
	border: 2px solid rgba(162, 155, 254, 0.2);
	padding: 3rem 2.5rem;
	border-radius: 28px;
	position: relative;
	overflow: hidden;
	box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.pricing-cta-redesigned::before {
	content: '';
	position: absolute;
	top: -50%;
	left: -50%;
	width: 200%;
	height: 200%;
	background: radial-gradient(
		circle,
		rgba(162, 155, 254, 0.08) 0%,
		transparent 70%
	);
	animation: rotateGlow 12s linear infinite;
}

.pricing-cta-redesigned h3 {
	color: var(--heading-color);
	margin: 0 0 1rem 0;
	font-size: 2rem;
	position: relative;
	z-index: 1;
}

.pricing-cta-text-redesigned {
	color: rgba(0, 0, 0, 0.75);
	margin: 0 0 2rem 0;
	max-width: 750px;
	margin-left: auto;
	margin-right: auto;
	position: relative;
	z-index: 1;
	font-size: 1.05rem;
	line-height: 1.7;
}

.pricing-cta-buttons-redesigned {
	display: flex;
	gap: 1rem;
	justify-content: center;
	flex-wrap: wrap;
	position: relative;
	z-index: 1;
}

.pricing-cta-btn-redesigned {
	display: inline-flex;
	align-items: center;
	gap: 0.6rem;
	padding: 1rem 2rem;
	border-radius: 14px;
	font-weight: 600;
	font-size: 1rem;
	text-decoration: none;
	transition: all 0.3s ease;
	border: 2px solid transparent;
}

.pricing-cta-btn-primary {
	background: linear-gradient(
		135deg,
		var(--accent-color),
		var(--heading-color)
	);
	color: var(--contrast-color);
	box-shadow: 0 8px 25px rgba(162, 155, 254, 0.3);
}

.pricing-cta-btn-primary:hover {
	transform: translateY(-3px);
	box-shadow: 0 12px 35px rgba(162, 155, 254, 0.4);
}

.pricing-cta-btn-outline {
	background: transparent;
	color: var(--heading-color);
	border-color: rgba(162, 155, 254, 0.3);
}

.pricing-cta-btn-outline:hover {
	background: rgba(162, 155, 254, 0.1);
	border-color: rgba(162, 155, 254, 0.5);
	transform: translateY(-3px);
}

/* ===========================================================
   FEATURES SLIDER REDESIGNED - New Layout, Animations & Hovers
=========================================================== */
.features-slider-redesigned {
	position: relative;
}

.features-slider-header-redesigned {
	text-align: center;
	margin-bottom: 3.5rem;
}
.features-slider-header-redesigned h2 {
	color: var(--contrast-color);
	margin: 0 0 0.75rem 0;
	font-size: 2.25rem;
	font-weight: 700;
}
.features-slider-header-redesigned p {
	max-width: 800px;
	margin: 0 auto;
	font-size: 1.05rem;
	line-height: 1.7;
}

.features-swiper-redesigned {
	padding-bottom: 3rem;
}

.program-slide-redesigned {
	height: 100%;
}

.program-slide-inner-redesigned {
	position: relative;
	background: linear-gradient(
		135deg,
		rgba(15, 52, 96, 0.6),
		rgba(15, 52, 96, 0.4)
	);
	border: 2px solid rgba(162, 155, 254, 0.2);
	border-radius: 28px;
	padding: 3rem 2.5rem;
	backdrop-filter: blur(12px);
	transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
	overflow: hidden;
	height: 100%;
	display: flex;
	flex-direction: column;
}

.program-slide-redesigned:hover .program-slide-inner-redesigned {
	transform: translateY(-8px);
	border-color: rgba(162, 155, 254, 0.5);
	box-shadow:
		0 25px 60px rgba(162, 155, 254, 0.25),
		0 0 50px rgba(162, 155, 254, 0.15);
}

.program-icon-wrapper-redesigned {
	position: relative;
	width: 90px;
	height: 90px;
	margin: 0 auto 2rem;
}

.program-icon-bg-redesigned {
	position: absolute;
	inset: -15px;
	background: linear-gradient(
		135deg,
		var(--accent-color),
		var(--heading-color)
	);
	border-radius: 50%;
	opacity: 0.2;
	animation: iconRotatePulse 6s ease-in-out infinite;
	filter: blur(20px);
}

@keyframes iconRotatePulse {
	0%,
	100% {
		transform: rotate(0deg) scale(1);
		opacity: 0.2;
	}
	50% {
		transform: rotate(180deg) scale(1.15);
		opacity: 0.3;
	}
}

.program-icon-redesigned {
	position: relative;
	width: 100%;
	height: 100%;
	display: grid;
	place-items: center;
	background: linear-gradient(
		135deg,
		rgba(162, 155, 254, 0.25),
		rgba(108, 92, 231, 0.25)
	);
	border: 3px solid rgba(162, 155, 254, 0.4);
	border-radius: 50%;
	color: var(--accent-color);
	font-size: 2.5rem;
	transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
	z-index: 1;
	box-shadow: 0 10px 30px rgba(162, 155, 254, 0.3);
}

.program-slide-redesigned:hover .program-icon-redesigned {
	transform: rotate(360deg) scale(1.15);
	border-color: rgba(162, 155, 254, 0.6);
	box-shadow: 0 15px 40px rgba(162, 155, 254, 0.4);
}

.program-title-redesigned {
	color: var(--contrast-color);
	margin: 0 0 1rem 0;
	font-size: 1.9rem;
	font-weight: 700;
	text-align: center;
	transition: color 0.3s ease;
}

.program-slide-redesigned:hover .program-title-redesigned {
	color: var(--accent-color);
}

.program-subtitle-redesigned {
	color: rgba(240, 240, 240, 0.9);
	margin: 0 0 2rem 0;
	text-align: center;
	font-size: 1.05rem;
	line-height: 1.6;
}

.program-content-redesigned {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
	margin-bottom: 2rem;
}

.program-feature-redesigned {
	display: flex;
	gap: 1rem;
	transition: transform 0.3s ease;
}

.program-slide-redesigned:hover .program-feature-redesigned {
	transform: translateX(6px);
}

.program-feature-icon-redesigned {
	flex-shrink: 0;
	width: 32px;
	height: 32px;
	display: grid;
	place-items: center;
	background: rgba(162, 155, 254, 0.15);
	border: 2px solid rgba(162, 155, 254, 0.3);
	border-radius: 50%;
	color: var(--accent-color);
	font-size: 1.1rem;
	transition: all 0.3s ease;
}

.program-slide-redesigned:hover .program-feature-icon-redesigned {
	transform: scale(1.2) rotate(5deg);
	border-color: rgba(162, 155, 254, 0.5);
	background: rgba(162, 155, 254, 0.25);
}

.program-feature-content-redesigned {
	flex: 1;
}

.program-feature-content-redesigned strong {
	display: block;
	color: var(--contrast-color);
	margin-bottom: 0.5rem;
	font-size: 1.1rem;
	font-weight: 700;
}

.program-feature-content-redesigned p {
	color: rgba(240, 240, 240, 0.85);
	margin: 0;
	font-size: 0.95rem;
	line-height: 1.6;
}

.program-stats-redesigned {
	display: flex;
	justify-content: center;
	gap: 2rem;
	padding-top: 2rem;
	border-top: 2px solid rgba(162, 155, 254, 0.2);
	margin-top: auto;
}

.stat-item-redesigned {
	text-align: center;
	transition: transform 0.3s ease;
}

.program-slide-redesigned:hover .stat-item-redesigned {
	transform: translateY(-4px);
}

.stat-value-redesigned {
	display: block;
	font-size: 2rem;
	font-weight: 700;
	background: linear-gradient(
		135deg,
		var(--accent-color),
		var(--heading-color)
	);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	line-height: 1;
	margin-bottom: 0.25rem;
}

.stat-text-redesigned {
	display: block;
	color: rgba(240, 240, 240, 0.8);
	font-size: 0.9rem;
}

.program-slide-glow-redesigned {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 0;
	height: 0;
	background: radial-gradient(
		circle,
		rgba(162, 155, 254, 0.2) 0%,
		transparent 70%
	);
	border-radius: 50%;
	transform: translate(-50%, -50%);
	transition:
		width 0.6s ease,
		height 0.6s ease;
	pointer-events: none;
}

.program-slide-redesigned:hover .program-slide-glow-redesigned {
	width: 400%;
	height: 400%;
}

.swiper-pagination-redesigned {
	position: relative;
	margin-top: 2rem;
}

.swiper-pagination-redesigned .swiper-pagination-bullet {
	width: 12px;
	height: 12px;
	background: rgba(162, 155, 254, 0.4);
	opacity: 1;
	transition: all 0.3s ease;
}

.swiper-pagination-redesigned .swiper-pagination-bullet-active {
	background: var(--accent-color);
	width: 32px;
	border-radius: 6px;
	box-shadow: 0 4px 15px rgba(162, 155, 254, 0.4);
}

/* ===========================================================
   HERO NEW - Full Section Redesign with Global Animations
=========================================================== */
.hero-new {
	position: relative;
	min-height: 100vh;
	display: grid;
	place-items: center;
	overflow: hidden;
	background: radial-gradient(
			1200px 800px at 10% 10%,
			rgba(139, 0, 0, 0.08),
			transparent 60%
		),
		radial-gradient(
			1200px 800px at 90% 20%,
			rgba(210, 0, 31, 0.08),
			transparent 60%
		),
		var(--background-color);
}

.hero-animated-bg {
	position: absolute;
	inset: 0;
	overflow: hidden;
	pointer-events: none;
}

.blob {
	position: absolute;
	width: 46vw;
	height: 46vw;
	max-width: 820px;
	max-height: 820px;
	filter: blur(30px);
	opacity: 0.35;
	border-radius: 50%;
	animation: blobFloat 18s ease-in-out infinite alternate;
}

.blob-1 {
	background: radial-gradient(
		circle at 30% 30%,
		rgba(162, 155, 254, 0.9),
		rgba(162, 155, 254, 0.1)
	);
	top: -10%;
	left: -10%;
	animation-delay: 0s;
}
.blob-2 {
	background: radial-gradient(
		circle at 70% 70%,
		rgba(108, 92, 231, 0.9),
		rgba(108, 92, 231, 0.1)
	);
	bottom: -15%;
	right: -15%;
	animation-delay: 0.8s;
}
.blob-3 {
	background: radial-gradient(
		circle at 40% 60%,
		rgba(116, 185, 255, 0.85),
		rgba(116, 185, 255, 0.1)
	);
	top: 10%;
	right: 20%;
	animation-delay: 1.6s;
}
.blob-4 {
	background: radial-gradient(
		circle at 60% 40%,
		rgba(0, 184, 148, 0.85),
		rgba(0, 184, 148, 0.1)
	);
	bottom: 10%;
	left: 20%;
	animation-delay: 2.4s;
}

@keyframes blobFloat {
	0% {
		transform: translate3d(0, 0, 0) scale(1);
	}
	50% {
		transform: translate3d(-3vw, 2vh, 0) scale(1.05);
	}
	100% {
		transform: translate3d(4vw, -3vh, 0) scale(1.08);
	}
}

.particle-field {
	position: absolute;
	inset: -10%;
	transform: translateZ(0);
}
.particle-field .p {
	position: absolute;
	width: 6px;
	height: 6px;
	background: rgba(255, 255, 255, 0.25);
	border-radius: 50%;
	box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
	animation: particleDrift 12s linear infinite;
}
.particle-field .p-1 {
	top: 12%;
	left: 20%;
	animation-delay: 0s;
}
.particle-field .p-2 {
	top: 30%;
	left: 5%;
	animation-delay: 0.8s;
}
.particle-field .p-3 {
	top: 55%;
	left: 12%;
	animation-delay: 1.4s;
}
.particle-field .p-4 {
	top: 70%;
	left: 30%;
	animation-delay: 2.2s;
}
.particle-field .p-5 {
	top: 15%;
	right: 25%;
	animation-delay: 0.4s;
}
.particle-field .p-6 {
	top: 40%;
	right: 10%;
	animation-delay: 1.8s;
}
.particle-field .p-7 {
	top: 65%;
	right: 18%;
	animation-delay: 2.8s;
}
.particle-field .p-8 {
	top: 80%;
	right: 35%;
	animation-delay: 3.2s;
}
.particle-field .p-9 {
	bottom: 20%;
	left: 45%;
	animation-delay: 0.6s;
}
.particle-field .p-10 {
	bottom: 35%;
	left: 55%;
	animation-delay: 1.2s;
}
.particle-field .p-11 {
	bottom: 50%;
	left: 65%;
	animation-delay: 1.9s;
}
.particle-field .p-12 {
	bottom: 15%;
	left: 75%;
	animation-delay: 2.6s;
}

@keyframes particleDrift {
	0% {
		transform: translate3d(0, 0, 0) scale(1);
		opacity: 0.2;
	}
	50% {
		transform: translate3d(2vw, -3vh, 0) scale(1.15);
		opacity: 0.5;
	}
	100% {
		transform: translate3d(-2vw, 3vh, 0) scale(1);
		opacity: 0.2;
	}
}

.hero-container-new {
	position: relative;
	z-index: 2;
	width: min(1200px, 92%);
	margin-inline: auto;
	display: grid;
	grid-template-columns: 1.25fr 0.75fr;
	align-items: center;
	gap: 2rem;
	padding: 6rem 0 4rem;
}

.hero-content-new {
	animation: contentFade 1.2s ease both;
}
@keyframes contentFade {
	from {
		transform: translate3d(0, 20px, 0);
		opacity: 0;
	}
	to {
		transform: translate3d(0, 0, 0);
		opacity: 1;
	}
}

.hero-badge-new {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.5rem 0.8rem;
	border-radius: 999px;
	background: rgba(162, 155, 254, 0.12);
	color: var(--accent-color);
	font-weight: 600;
	margin-bottom: 1rem;
	border: 1px solid rgba(162, 155, 254, 0.25);
	backdrop-filter: blur(6px);
}
.hero-badge-new i {
	font-size: 0.95rem;
}

.hero-title-new {
	font-size: clamp(2.2rem, 4.2vw, 3.6rem);
	line-height: 1.1;
	margin: 0 0 1rem 0;
	color: var(--contrast-color);
}
.hero-title-new span {
	color: var(--heading-color);
	text-shadow: 0 6px 30px rgba(162, 155, 254, 0.2);
}

.hero-subtitle-new {
	font-size: clamp(1.05rem, 1.4vw, 1.2rem);
	line-height: 1.7;
	max-width: 680px;
	margin: 0 0 1.5rem 0;
}

.hero-actions-new {
	display: flex;
	gap: 1rem;
	flex-wrap: wrap;
	margin-bottom: 1rem;
}

.btn-hero {
	padding: 1rem 1.5rem;
	font-size: 1rem;
}
.btn-hero i {
	margin-right: 0.5rem;
}
.btn-hero-outline {
	border: 1px solid rgba(162, 155, 254, 0.4);
}

.hero-guarantee-new {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	color: rgba(240, 240, 240, 0.75);
	font-size: 0.95rem;
	margin-top: 0.5rem;
}
.hero-guarantee-new i {
	color: var(--accent-color);
}

.hero-highlights-new {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1rem;
	align-self: center;
}
.highlight-card-new {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	padding: 1rem 1.25rem;
	border-radius: 14px;
	background: rgba(15, 52, 96, 0.45);
	border: 1px solid rgba(162, 155, 254, 0.18);
	color: var(--default-color);
	backdrop-filter: blur(8px);
	transform: translateZ(0);
	animation: cardFloat 10s ease-in-out infinite;
}
.highlight-card-new i {
	color: var(--accent-color);
	font-size: 1.25rem;
}
.highlight-card-new.h1 {
	animation-delay: 0s;
}
.highlight-card-new.h2 {
	animation-delay: 0.8s;
}
.highlight-card-new.h3 {
	animation-delay: 1.6s;
}
.highlight-card-new.h4 {
	animation-delay: 2.4s;
}

@keyframes cardFloat {
	0% {
		transform: translate3d(0, 0, 0);
	}
	50% {
		transform: translate3d(0, -8px, 0);
	}
	100% {
		transform: translate3d(0, 0, 0);
	}
}

.hero-scroll-new {
	position: absolute;
	left: 50%;
	bottom: 24px;
	transform: translateX(-50%);
	color: rgba(240, 240, 240, 0.8);
	font-size: 1.4rem;
	transition:
		transform 0.3s ease,
		color 0.3s ease;
	z-index: 3;
}
.hero-scroll-new:hover {
	color: var(--accent-color);
	transform: translateX(-50%) translateY(2px);
}

@media (max-width: 992px) {
	.hero-container-new {
		grid-template-columns: 1fr;
		gap: 2rem;
		padding: 4.5rem 0 3rem;
	}
	.hero-highlights-new {
		grid-template-columns: 1fr 1fr;
	}
}
@media (max-width: 576px) {
	.hero-highlights-new {
		grid-template-columns: 1fr;
	}
}

/* ============================================
   ABOUT PAGE REDESIGNED STYLES
   ============================================ */

/* Page Title Redesigned */
.page-title-redesigned {
	position: relative;
	padding: 120px 0 80px;
	background: linear-gradient(
		135deg,
		var(--background-color) 0%,
		var(--surface-color) 100%
	);
	overflow: hidden;
}

.page-title-bg-animated {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: radial-gradient(
			circle at 20% 50%,
			rgba(108, 92, 231, 0.1) 0%,
			transparent 50%
		),
		radial-gradient(
			circle at 80% 80%,
			rgba(162, 155, 254, 0.1) 0%,
			transparent 50%
		);
	animation: titleBgPulse 8s ease-in-out infinite;
}

@keyframes titleBgPulse {
	0%,
	100% {
		opacity: 0.5;
	}
	50% {
		opacity: 1;
	}
}

.page-title-content-redesigned {
	position: relative;
	z-index: 2;
	text-align: center;
	max-width: 800px;
	margin: 0 auto;
}

.page-title-badge-redesigned {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 10px 20px;
	background: rgba(108, 92, 231, 0.15);
	border: 1px solid rgba(108, 92, 231, 0.3);
	border-radius: 50px;
	color: var(--accent-color);
	font-size: 14px;
	font-weight: 600;
	margin-bottom: 24px;
	backdrop-filter: blur(10px);
	animation: badgeFloat 3s ease-in-out infinite;
}

@keyframes badgeFloat {
	0%,
	100% {
		transform: translateY(0);
	}
	50% {
		transform: translateY(-5px);
	}
}

.page-title-badge-redesigned i {
	font-size: 16px;
	color: var(--heading-color);
}

.page-title-h1-redesigned {
	font-size: 3.5rem;
	font-weight: 700;
	color: var(--contrast-color);
	margin-bottom: 20px;
	line-height: 1.2;
	background: linear-gradient(
		135deg,
		var(--contrast-color) 0%,
		var(--accent-color) 100%
	);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.page-title-p-redesigned {
	font-size: 1.25rem;
	color: rgba(255, 255, 255, 0.8);
	line-height: 1.6;
}

/* About Hero Redesigned */
.about-hero-redesigned {
	position: relative;
	padding: 100px 0;
	overflow: hidden;
}

.about-hero-bg-pattern {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-image: radial-gradient(
		circle at 1px 1px,
		rgba(108, 92, 231, 0.1) 1px,
		transparent 0
	);
	background-size: 40px 40px;
	opacity: 0.3;
	animation: patternMove 20s linear infinite;
}

@keyframes patternMove {
	0% {
		transform: translate(0, 0);
	}
	100% {
		transform: translate(40px, 40px);
	}
}

.about-hero-grid-redesigned {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
	position: relative;
	z-index: 2;
}

.about-hero-content-redesigned {
	animation: fadeInLeft 0.8s ease-out;
}

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

.about-badge-redesigned {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 24px;
}

.about-badge-icon-wrapper {
	width: 36px;
	height: 36px;
	background: linear-gradient(
		135deg,
		var(--accent-color),
		var(--heading-color)
	);
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	animation: iconPulse 2s ease-in-out infinite;
}

.about-badge-redesigned span {
	color: var(--accent-color);
	font-weight: 600;
	font-size: 14px;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.about-hero-title-redesigned {
	font-size: 3rem;
	font-weight: 700;
	color: var(--contrast-color);
	margin-bottom: 30px;
	line-height: 1.3;
}

.about-title-gradient {
	background: linear-gradient(
		135deg,
		var(--accent-color),
		var(--heading-color)
	);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.about-description-wrapper-redesigned {
	margin-bottom: 40px;
}

.about-hero-description-redesigned {
	font-size: 1.1rem;
	line-height: 1.8;
	color: rgba(255, 255, 255, 0.85);
	margin-bottom: 20px;
}

.about-features-grid-redesigned {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}

.about-feature-card-redesigned {
	position: relative;
	padding: 24px;
	background: rgba(22, 33, 62, 0.6);
	border: 1px solid rgba(108, 92, 231, 0.2);
	border-radius: 16px;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	backdrop-filter: blur(10px);
}

.about-feature-card-redesigned:hover {
	transform: translateY(-8px);
	border-color: var(--accent-color);
	box-shadow: 0 20px 40px rgba(108, 92, 231, 0.3);
}

.about-feature-icon-wrapper-redesigned {
	position: relative;
	width: 60px;
	height: 60px;
	margin-bottom: 16px;
}

.about-feature-icon-bg-redesigned {
	position: absolute;
	inset: 0;
	background: linear-gradient(
		135deg,
		var(--accent-color),
		var(--heading-color)
	);
	border-radius: 12px;
	opacity: 0.2;
	transition: all 0.4s ease;
}

.about-feature-card-redesigned:hover .about-feature-icon-bg-redesigned {
	opacity: 0.4;
	transform: scale(1.1);
}

.about-feature-icon-redesigned {
	position: relative;
	z-index: 2;
	font-size: 28px;
	color: var(--accent-color);
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100%;
}

.about-feature-title-redesigned {
	font-size: 1.1rem;
	font-weight: 600;
	color: var(--contrast-color);
	margin-bottom: 8px;
}

.about-feature-text-redesigned {
	font-size: 0.95rem;
	color: rgba(255, 255, 255, 0.7);
	line-height: 1.6;
	margin: 0;
}

.about-hero-visual-redesigned {
	animation: fadeInRight 0.8s ease-out;
}

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

.about-image-container-redesigned {
	position: relative;
	border-radius: 24px;
	overflow: hidden;
	transform-style: preserve-3d;
}

.about-image-glow-redesigned {
	position: absolute;
	inset: -20px;
	background: radial-gradient(
		circle,
		rgba(108, 92, 231, 0.4) 0%,
		transparent 70%
	);
	filter: blur(30px);
	z-index: 1;
	animation: glowPulse 3s ease-in-out infinite;
}

@keyframes glowPulse {
	0%,
	100% {
		opacity: 0.5;
		transform: scale(1);
	}
	50% {
		opacity: 0.8;
		transform: scale(1.1);
	}
}

.about-hero-image-redesigned {
	width: 100%;
	height: auto;
	display: block;
	position: relative;
	z-index: 2;
	transition: transform 0.6s ease;
}

.about-image-container-redesigned:hover .about-hero-image-redesigned {
	transform: scale(1.05);
}

.about-image-overlay-redesigned {
	position: absolute;
	inset: 0;
	background: linear-gradient(
		135deg,
		rgba(108, 92, 231, 0.2) 0%,
		rgba(162, 155, 254, 0.1) 100%
	);
	z-index: 3;
	pointer-events: none;
}

/* Mission & Vision Redesigned */
.about-mission-redesigned {
	position: relative;
	padding: 100px 0;
	overflow: hidden;
}

.mission-bg-particles {
	position: absolute;
	inset: 0;
	background-image: radial-gradient(
			circle at 20% 30%,
			rgba(108, 92, 231, 0.15) 0%,
			transparent 50%
		),
		radial-gradient(
			circle at 80% 70%,
			rgba(162, 155, 254, 0.15) 0%,
			transparent 50%
		);
	animation: particlesFloat 10s ease-in-out infinite;
}

@keyframes particlesFloat {
	0%,
	100% {
		transform: translate(0, 0) scale(1);
	}
	50% {
		transform: translate(20px, -20px) scale(1.1);
	}
}

.mission-header-redesigned {
	text-align: center;
	margin-bottom: 60px;
}

.mission-badge-redesigned {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 10px 20px;
	background: rgba(108, 92, 231, 0.15);
	border: 1px solid rgba(108, 92, 231, 0.3);
	border-radius: 50px;
	color: var(--accent-color);
	font-size: 14px;
	font-weight: 600;
	margin-bottom: 24px;
	backdrop-filter: blur(10px);
}

.mission-badge-icon-wrapper {
	width: 24px;
	height: 24px;
	background: linear-gradient(
		135deg,
		var(--accent-color),
		var(--heading-color)
	);
	border-radius: 6px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.mission-badge-redesigned i {
	font-size: 12px;
	color: var(--contrast-color);
}

.mission-title-redesigned {
	font-size: 2.75rem;
	font-weight: 700;
	color: var(--contrast-color);
	margin-bottom: 0;
}

.mission-title-gradient {
	background: linear-gradient(
		135deg,
		var(--accent-color),
		var(--heading-color)
	);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.mission-cards-grid-redesigned {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 40px;
}

.mission-card-redesigned {
	position: relative;
}

.mission-card-inner-redesigned {
	position: relative;
	padding: 40px;
	background: rgba(22, 33, 62, 0.6);
	border: 1px solid rgba(108, 92, 231, 0.2);
	border-radius: 24px;
	transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
	backdrop-filter: blur(10px);
	transform-style: preserve-3d;
}

.mission-card-redesigned:hover .mission-card-inner-redesigned {
	transform: translateY(-12px) rotateX(2deg);
	border-color: var(--accent-color);
	box-shadow: 0 30px 60px rgba(108, 92, 231, 0.4);
}

.mission-card-header-redesigned {
	display: flex;
	align-items: center;
	gap: 20px;
	margin-bottom: 24px;
}

.mission-card-icon-wrapper-redesigned {
	position: relative;
	width: 70px;
	height: 70px;
	flex-shrink: 0;
}

.mission-card-icon-bg-redesigned {
	position: absolute;
	inset: 0;
	border-radius: 16px;
	transition: all 0.4s ease;
}

.mission-icon-bg-1 {
	background: linear-gradient(
		135deg,
		rgba(108, 92, 231, 0.3),
		rgba(162, 155, 254, 0.2)
	);
}

.mission-icon-bg-2 {
	background: linear-gradient(
		135deg,
		rgba(162, 155, 254, 0.3),
		rgba(108, 92, 231, 0.2)
	);
}

.mission-card-redesigned:hover .mission-card-icon-bg-redesigned {
	transform: scale(1.1) rotate(5deg);
}

.mission-card-icon-redesigned {
	position: relative;
	z-index: 2;
	font-size: 36px;
	color: var(--accent-color);
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100%;
}

.mission-card-title-redesigned {
	font-size: 1.75rem;
	font-weight: 700;
	color: var(--contrast-color);
	margin: 0;
}

.mission-card-content-redesigned {
	position: relative;
	z-index: 2;
}

.mission-card-text-redesigned {
	font-size: 1.05rem;
	line-height: 1.8;
	color: rgba(255, 255, 255, 0.85);
	margin-bottom: 24px;
}

.mission-card-list-redesigned {
	list-style: none;
	padding: 0;
	margin: 0;
}

.mission-list-item-redesigned {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	margin-bottom: 16px;
	padding: 12px;
	background: rgba(108, 92, 231, 0.05);
	border-radius: 10px;
	transition: all 0.3s ease;
}

.mission-list-item-redesigned:hover {
	background: rgba(108, 92, 231, 0.15);
	transform: translateX(5px);
}

.mission-list-icon-redesigned {
	flex-shrink: 0;
	width: 24px;
	height: 24px;
	color: var(--accent-color);
	font-size: 18px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.mission-list-item-redesigned span {
	color: rgba(255, 255, 255, 0.9);
	line-height: 1.6;
}

.mission-card-glow-redesigned {
	position: absolute;
	inset: -2px;
	background: linear-gradient(
		135deg,
		var(--accent-color),
		var(--heading-color)
	);
	border-radius: 24px;
	opacity: 0;
	filter: blur(20px);
	transition: opacity 0.5s ease;
	z-index: -1;
}

.mission-card-redesigned:hover .mission-card-glow-redesigned {
	opacity: 0.6;
}

/* Values Redesigned */
.about-values-redesigned {
	position: relative;
	padding: 100px 0;
	overflow: hidden;
}

.values-bg-gradient {
	position: absolute;
	inset: 0;
	background: linear-gradient(
		135deg,
		rgba(22, 33, 62, 0.8) 0%,
		rgba(15, 52, 96, 0.8) 100%
	);
	z-index: 1;
}

.values-header-redesigned {
	text-align: center;
	margin-bottom: 60px;
	position: relative;
	z-index: 2;
}

.values-badge-redesigned {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 10px 20px;
	background: rgba(108, 92, 231, 0.15);
	border: 1px solid rgba(108, 92, 231, 0.3);
	border-radius: 50px;
	color: var(--accent-color);
	font-size: 14px;
	font-weight: 600;
	margin-bottom: 24px;
	backdrop-filter: blur(10px);
}

.values-badge-icon-wrapper {
	width: 24px;
	height: 24px;
	background: linear-gradient(
		135deg,
		var(--accent-color),
		var(--heading-color)
	);
	border-radius: 6px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.values-badge-redesigned i {
	font-size: 12px;
	color: var(--contrast-color);
}

.values-title-redesigned {
	font-size: 2.75rem;
	font-weight: 700;
	color: var(--contrast-color);
	margin-bottom: 16px;
}

.values-title-gradient {
	background: linear-gradient(
		135deg,
		var(--accent-color),
		var(--heading-color)
	);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.values-description-redesigned {
	font-size: 1.1rem;
	color: rgba(255, 255, 255, 0.8);
	max-width: 700px;
	margin: 0 auto;
}

.values-grid-redesigned {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
	position: relative;
	z-index: 2;
}

.value-card-redesigned {
	position: relative;
}

.value-card-inner-redesigned {
	position: relative;
	padding: 32px;
	background: rgba(22, 33, 62, 0.6);
	border: 1px solid rgba(108, 92, 231, 0.2);
	border-radius: 20px;
	transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
	backdrop-filter: blur(10px);
	height: 100%;
	display: flex;
	flex-direction: column;
}

.value-card-redesigned:hover .value-card-inner-redesigned {
	transform: translateY(-10px) rotateY(2deg);
	border-color: var(--accent-color);
	box-shadow: 0 25px 50px rgba(108, 92, 231, 0.3);
}

.value-icon-container-redesigned {
	position: relative;
	width: 80px;
	height: 80px;
	margin-bottom: 24px;
}

.value-icon-bg-animated-redesigned {
	position: absolute;
	inset: 0;
	background: linear-gradient(
		135deg,
		var(--accent-color),
		var(--heading-color)
	);
	border-radius: 18px;
	opacity: 0.2;
	animation: iconRotate 4s linear infinite;
}

@keyframes iconRotate {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(360deg);
	}
}

.value-card-redesigned:hover .value-icon-bg-animated-redesigned {
	opacity: 0.4;
	animation-duration: 2s;
}

.value-icon-redesigned {
	position: relative;
	z-index: 2;
	font-size: 36px;
	color: var(--accent-color);
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100%;
	transition: transform 0.4s ease;
}

.value-card-redesigned:hover .value-icon-redesigned {
	transform: scale(1.1) rotate(5deg);
}

.value-title-redesigned {
	font-size: 1.4rem;
	font-weight: 700;
	color: var(--contrast-color);
	margin-bottom: 16px;
}

.value-text-redesigned {
	font-size: 1rem;
	line-height: 1.7;
	color: rgba(255, 255, 255, 0.8);
	flex-grow: 1;
	margin: 0;
}

.value-card-hover-glow-redesigned {
	position: absolute;
	inset: -3px;
	background: linear-gradient(
		135deg,
		var(--accent-color),
		var(--heading-color)
	);
	border-radius: 20px;
	opacity: 0;
	filter: blur(15px);
	transition: opacity 0.5s ease;
	z-index: -1;
}

.value-card-redesigned:hover .value-card-hover-glow-redesigned {
	opacity: 0.5;
}

/* Team & Legal Redesigned */
.about-team-redesigned {
	position: relative;
	padding: 100px 0;
	overflow: hidden;
}

.team-bg-shapes {
	position: absolute;
	inset: 0;
	background-image: radial-gradient(
			ellipse at 10% 20%,
			rgba(108, 92, 231, 0.1) 0%,
			transparent 50%
		),
		radial-gradient(
			ellipse at 90% 80%,
			rgba(162, 155, 254, 0.1) 0%,
			transparent 50%
		);
	animation: shapesMove 15s ease-in-out infinite;
}

@keyframes shapesMove {
	0%,
	100% {
		transform: translate(0, 0) rotate(0deg);
	}
	50% {
		transform: translate(20px, -20px) rotate(5deg);
	}
}

.team-legal-grid-redesigned {
	display: grid;
	grid-template-columns: 2fr 1fr;
	gap: 40px;
	position: relative;
	z-index: 2;
}

.team-card-redesigned {
	position: relative;
}

.team-card-inner-redesigned {
	position: relative;
	padding: 50px;
	background: rgba(22, 33, 62, 0.6);
	border: 1px solid rgba(108, 92, 231, 0.2);
	border-radius: 24px;
	transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
	backdrop-filter: blur(10px);
}

.team-card-redesigned:hover .team-card-inner-redesigned {
	transform: translateY(-8px);
	border-color: var(--accent-color);
	box-shadow: 0 30px 60px rgba(108, 92, 231, 0.4);
}

.team-header-redesigned {
	margin-bottom: 32px;
}

.team-badge-redesigned {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 10px 20px;
	background: rgba(108, 92, 231, 0.15);
	border: 1px solid rgba(108, 92, 231, 0.3);
	border-radius: 50px;
	color: var(--accent-color);
	font-size: 14px;
	font-weight: 600;
	margin-bottom: 20px;
	backdrop-filter: blur(10px);
}

.team-badge-icon-wrapper {
	width: 24px;
	height: 24px;
	background: linear-gradient(
		135deg,
		var(--accent-color),
		var(--heading-color)
	);
	border-radius: 6px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.team-badge-redesigned i {
	font-size: 12px;
	color: var(--contrast-color);
}

.team-title-redesigned {
	font-size: 2.25rem;
	font-weight: 700;
	color: var(--contrast-color);
	line-height: 1.3;
	margin: 0;
}

.team-title-gradient {
	background: linear-gradient(
		135deg,
		var(--accent-color),
		var(--heading-color)
	);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

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

.team-text-redesigned {
	font-size: 1.1rem;
	line-height: 1.8;
	color: rgba(255, 255, 255, 0.85);
	margin-bottom: 32px;
}

.team-features-redesigned {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.team-feature-item-redesigned {
	display: flex;
	align-items: flex-start;
	gap: 20px;
	padding: 20px;
	background: rgba(108, 92, 231, 0.05);
	border: 1px solid rgba(108, 92, 231, 0.1);
	border-radius: 16px;
	transition: all 0.4s ease;
}

.team-feature-item-redesigned:hover {
	background: rgba(108, 92, 231, 0.15);
	border-color: var(--accent-color);
	transform: translateX(5px);
}

.team-feature-icon-wrapper-redesigned {
	position: relative;
	width: 50px;
	height: 50px;
	flex-shrink: 0;
}

.team-feature-icon-bg-redesigned {
	position: absolute;
	inset: 0;
	background: linear-gradient(
		135deg,
		var(--accent-color),
		var(--heading-color)
	);
	border-radius: 12px;
	opacity: 0.2;
	transition: all 0.4s ease;
}

.team-feature-item-redesigned:hover .team-feature-icon-bg-redesigned {
	opacity: 0.4;
	transform: scale(1.1);
}

.team-feature-icon-redesigned {
	position: relative;
	z-index: 2;
	font-size: 24px;
	color: var(--accent-color);
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100%;
}

.team-feature-content-redesigned {
	flex: 1;
}

.team-feature-title-redesigned {
	font-size: 1.1rem;
	font-weight: 600;
	color: var(--contrast-color);
	margin-bottom: 8px;
}

.team-feature-text-redesigned {
	font-size: 0.95rem;
	color: rgba(255, 255, 255, 0.7);
	line-height: 1.6;
	margin: 0;
}

.team-card-glow-redesigned {
	position: absolute;
	inset: -2px;
	background: linear-gradient(
		135deg,
		var(--accent-color),
		var(--heading-color)
	);
	border-radius: 24px;
	opacity: 0;
	filter: blur(20px);
	transition: opacity 0.5s ease;
	z-index: -1;
}

.team-card-redesigned:hover .team-card-glow-redesigned {
	opacity: 0.6;
}

.legal-card-redesigned {
	position: relative;
}

.legal-card-inner-redesigned {
	position: relative;
	padding: 40px;
	background: rgba(22, 33, 62, 0.6);
	border: 1px solid rgba(108, 92, 231, 0.2);
	border-radius: 24px;
	transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
	backdrop-filter: blur(10px);
	height: 100%;
}

.legal-card-redesigned:hover .legal-card-inner-redesigned {
	transform: translateY(-8px);
	border-color: var(--accent-color);
	box-shadow: 0 30px 60px rgba(108, 92, 231, 0.4);
}

.legal-header-redesigned {
	display: flex;
	align-items: center;
	gap: 16px;
	margin-bottom: 32px;
}

.legal-icon-wrapper-redesigned {
	position: relative;
	width: 60px;
	height: 60px;
	flex-shrink: 0;
}

.legal-icon-bg-redesigned {
	position: absolute;
	inset: 0;
	background: linear-gradient(
		135deg,
		var(--accent-color),
		var(--heading-color)
	);
	border-radius: 14px;
	opacity: 0.2;
	transition: all 0.4s ease;
}

.legal-card-redesigned:hover .legal-icon-bg-redesigned {
	opacity: 0.4;
	transform: scale(1.1) rotate(5deg);
}

.legal-icon-redesigned {
	position: relative;
	z-index: 2;
	font-size: 28px;
	color: var(--accent-color);
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100%;
}

.legal-title-redesigned {
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--contrast-color);
	margin: 0;
}

.legal-content-redesigned {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.legal-item-redesigned {
	display: flex;
	align-items: flex-start;
	gap: 16px;
	padding: 16px;
	background: rgba(108, 92, 231, 0.05);
	border-radius: 12px;
	transition: all 0.3s ease;
}

.legal-item-redesigned:hover {
	background: rgba(108, 92, 231, 0.15);
	transform: translateX(5px);
}

.legal-item-icon-redesigned {
	width: 40px;
	height: 40px;
	background: rgba(108, 92, 231, 0.2);
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	color: var(--accent-color);
	font-size: 18px;
}

.legal-item-content-redesigned {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.legal-label-redesigned {
	font-size: 0.9rem;
	color: rgba(255, 255, 255, 0.7);
	font-weight: 500;
}

.legal-value-redesigned {
	font-size: 1rem;
	color: var(--contrast-color);
	line-height: 1.5;
}

.legal-value-redesigned a {
	color: var(--accent-color);
	transition: color 0.3s ease;
}

.legal-value-redesigned a:hover {
	color: var(--heading-color);
}

.legal-card-glow-redesigned {
	position: absolute;
	inset: -2px;
	background: linear-gradient(
		135deg,
		var(--accent-color),
		var(--heading-color)
	);
	border-radius: 24px;
	opacity: 0;
	filter: blur(20px);
	transition: opacity 0.5s ease;
	z-index: -1;
}

.legal-card-redesigned:hover .legal-card-glow-redesigned {
	opacity: 0.6;
}

/* Responsive About Page */
@media (max-width: 992px) {
	.about-hero-grid-redesigned {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.mission-cards-grid-redesigned {
		grid-template-columns: 1fr;
	}

	.values-grid-redesigned {
		grid-template-columns: repeat(2, 1fr);
	}

	.team-legal-grid-redesigned {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 768px) {
	.page-title-h1-redesigned {
		font-size: 2.5rem;
	}

	.about-hero-title-redesigned {
		font-size: 2rem;
	}

	.about-features-grid-redesigned {
		grid-template-columns: 1fr;
	}

	.values-grid-redesigned {
		grid-template-columns: 1fr;
	}

	.mission-title-redesigned,
	.values-title-redesigned {
		font-size: 2rem;
	}
}

/* ============================================
   CONTACT PAGE REDESIGNED STYLES
   ============================================ */

/* Contact Section Redesigned */
.contact-redesigned {
	position: relative;
	padding: 100px 0;
	overflow: hidden;
}

.contact-bg-animated {
	position: absolute;
	inset: 0;
	background: radial-gradient(
			circle at 20% 50%,
			rgba(108, 92, 231, 0.1) 0%,
			transparent 50%
		),
		radial-gradient(
			circle at 80% 80%,
			rgba(162, 155, 254, 0.1) 0%,
			transparent 50%
		);
	animation: contactBgPulse 8s ease-in-out infinite;
}

@keyframes contactBgPulse {
	0%,
	100% {
		opacity: 0.5;
	}
	50% {
		opacity: 1;
	}
}

.contact-header-redesigned {
	text-align: center;
	margin-bottom: 60px;
	position: relative;
	z-index: 2;
}

.contact-badge-redesigned {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 10px 20px;
	background: rgba(108, 92, 231, 0.15);
	border: 1px solid rgba(108, 92, 231, 0.3);
	border-radius: 50px;
	color: var(--accent-color);
	font-size: 14px;
	font-weight: 600;
	margin-bottom: 24px;
	backdrop-filter: blur(10px);
}

.contact-badge-icon-wrapper {
	width: 24px;
	height: 24px;
	background: linear-gradient(
		135deg,
		var(--accent-color),
		var(--heading-color)
	);
	border-radius: 6px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.contact-badge-redesigned i {
	font-size: 12px;
	color: var(--contrast-color);
}

.contact-title-redesigned {
	font-size: 2.75rem;
	font-weight: 700;
	color: var(--contrast-color);
	margin-bottom: 16px;
}

.contact-title-gradient {
	background: linear-gradient(
		135deg,
		var(--accent-color),
		var(--heading-color)
	);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.contact-description-redesigned {
	font-size: 1.1rem;
	color: rgba(255, 255, 255, 0.8);
	max-width: 700px;
	margin: 0 auto;
}

.contact-grid-redesigned {
	display: grid;
	grid-template-columns: 1fr 1.5fr;
	gap: 40px;
	position: relative;
	z-index: 2;
}

/* Contact Info Redesigned */
.contact-info-redesigned {
	position: relative;
}

.contact-info-card-redesigned {
	position: relative;
	padding: 40px;
	background: rgba(22, 33, 62, 0.6);
	border: 1px solid rgba(108, 92, 231, 0.2);
	border-radius: 24px;
	transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
	backdrop-filter: blur(10px);
	height: 100%;
}

.contact-info-card-redesigned:hover {
	transform: translateY(-8px);
	border-color: var(--accent-color);
	box-shadow: 0 30px 60px rgba(108, 92, 231, 0.4);
}

.contact-info-header-redesigned {
	display: flex;
	align-items: center;
	gap: 16px;
	margin-bottom: 24px;
}

.contact-info-icon-wrapper-redesigned {
	position: relative;
	width: 60px;
	height: 60px;
	flex-shrink: 0;
}

.contact-info-icon-bg-redesigned {
	position: absolute;
	inset: 0;
	background: linear-gradient(
		135deg,
		var(--accent-color),
		var(--heading-color)
	);
	border-radius: 14px;
	opacity: 0.2;
	transition: all 0.4s ease;
}

.contact-info-card-redesigned:hover .contact-info-icon-bg-redesigned {
	opacity: 0.4;
	transform: scale(1.1) rotate(5deg);
}

.contact-info-icon-redesigned {
	position: relative;
	z-index: 2;
	font-size: 28px;
	color: var(--accent-color);
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100%;
}

.contact-info-title-redesigned {
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--contrast-color);
	margin: 0;
}

.contact-info-text-redesigned {
	font-size: 1rem;
	line-height: 1.7;
	color: rgba(255, 255, 255, 0.8);
	margin-bottom: 32px;
}

.contact-info-items-redesigned {
	display: flex;
	flex-direction: column;
	gap: 24px;
	margin-bottom: 32px;
}

.contact-info-item-redesigned {
	display: flex;
	align-items: flex-start;
	gap: 16px;
	padding: 20px;
	background: rgba(108, 92, 231, 0.05);
	border: 1px solid rgba(108, 92, 231, 0.1);
	border-radius: 16px;
	transition: all 0.4s ease;
}

.contact-info-item-redesigned:hover {
	background: rgba(108, 92, 231, 0.15);
	border-color: var(--accent-color);
	transform: translateX(5px);
}

.contact-item-icon-wrapper-redesigned {
	position: relative;
	width: 50px;
	height: 50px;
	flex-shrink: 0;
}

.contact-item-icon-bg-redesigned {
	position: absolute;
	inset: 0;
	background: linear-gradient(
		135deg,
		var(--accent-color),
		var(--heading-color)
	);
	border-radius: 12px;
	opacity: 0.2;
	transition: all 0.4s ease;
}

.contact-info-item-redesigned:hover .contact-item-icon-bg-redesigned {
	opacity: 0.4;
	transform: scale(1.1);
}

.contact-item-icon-redesigned {
	position: relative;
	z-index: 2;
	font-size: 24px;
	color: var(--accent-color);
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100%;
}

.contact-item-content-redesigned {
	flex: 1;
}

.contact-item-title-redesigned {
	font-size: 1.1rem;
	font-weight: 600;
	color: var(--contrast-color);
	margin-bottom: 8px;
}

.contact-item-links-redesigned {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.contact-item-link-redesigned {
	color: var(--accent-color);
	text-decoration: none;
	transition: color 0.3s ease;
	font-size: 0.95rem;
}

.contact-item-link-redesigned:hover {
	color: var(--heading-color);
}

.contact-item-text-redesigned {
	color: rgba(255, 255, 255, 0.8);
	font-size: 0.95rem;
	line-height: 1.6;
}

.contact-item-meta-redesigned {
	color: rgba(255, 255, 255, 0.6);
	font-size: 0.85rem;
}

.contact-social-redesigned {
	padding-top: 24px;
	border-top: 1px solid rgba(108, 92, 231, 0.2);
}

.contact-social-title-redesigned {
	font-size: 1rem;
	font-weight: 600;
	color: var(--contrast-color);
	margin-bottom: 16px;
}

.contact-social-icons-redesigned {
	display: flex;
	gap: 12px;
}

.contact-social-icon-redesigned {
	width: 40px;
	height: 40px;
	background: rgba(108, 92, 231, 0.1);
	border: 1px solid rgba(108, 92, 231, 0.2);
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--accent-color);
	font-size: 18px;
	transition: all 0.3s ease;
	text-decoration: none;
}

.contact-social-icon-redesigned:hover {
	background: rgba(108, 92, 231, 0.2);
	border-color: var(--accent-color);
	transform: translateY(-3px);
	color: var(--heading-color);
}

.contact-info-glow-redesigned {
	position: absolute;
	inset: -2px;
	background: linear-gradient(
		135deg,
		var(--accent-color),
		var(--heading-color)
	);
	border-radius: 24px;
	opacity: 0;
	filter: blur(20px);
	transition: opacity 0.5s ease;
	z-index: -1;
}

.contact-info-card-redesigned:hover .contact-info-glow-redesigned {
	opacity: 0.6;
}

/* Contact Form Redesigned */
.contact-form-redesigned {
	position: relative;
}

.contact-form-card-redesigned {
	position: relative;
	padding: 40px;
	background: rgba(22, 33, 62, 0.6);
	border: 1px solid rgba(108, 92, 231, 0.2);
	border-radius: 24px;
	transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
	backdrop-filter: blur(10px);
}

.contact-form-card-redesigned:hover {
	transform: translateY(-8px);
	border-color: var(--accent-color);
	box-shadow: 0 30px 60px rgba(108, 92, 231, 0.4);
}

.contact-form-header-redesigned {
	text-align: center;
	margin-bottom: 32px;
}

.contact-form-icon-wrapper-redesigned {
	position: relative;
	width: 70px;
	height: 70px;
	margin: 0 auto 20px;
}

.contact-form-icon-bg-redesigned {
	position: absolute;
	inset: 0;
	background: linear-gradient(
		135deg,
		var(--accent-color),
		var(--heading-color)
	);
	border-radius: 16px;
	opacity: 0.2;
	animation: iconPulse 2s ease-in-out infinite;
}

.contact-form-icon-redesigned {
	position: relative;
	z-index: 2;
	font-size: 36px;
	color: var(--accent-color);
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100%;
}

.contact-form-title-redesigned {
	font-size: 1.75rem;
	font-weight: 700;
	color: var(--contrast-color);
	margin-bottom: 12px;
}

.contact-form-subtitle-redesigned {
	font-size: 1rem;
	color: rgba(255, 255, 255, 0.7);
	line-height: 1.6;
	margin: 0;
}

.form-grid-redesigned {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 24px;
}

.form-group-redesigned {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.form-group-full-redesigned {
	grid-column: 1 / -1;
}

.form-label-redesigned {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 0.95rem;
	font-weight: 600;
	color: var(--contrast-color);
}

.form-label-redesigned i {
	color: var(--accent-color);
	font-size: 16px;
}

.form-input-redesigned,
.form-select-redesigned,
.form-textarea-redesigned {
	width: 100%;
	padding: 14px 16px;
	background: rgba(22, 33, 62, 0.8);
	border: 1px solid rgba(108, 92, 231, 0.2);
	border-radius: 12px;
	color: var(--contrast-color);
	font-family: var(--default-font);
	font-size: 0.95rem;
	transition: all 0.3s ease;
}

.form-input-redesigned:focus,
.form-select-redesigned:focus,
.form-textarea-redesigned:focus {
	outline: none;
	border-color: var(--accent-color);
	background: rgba(22, 33, 62, 0.95);
	box-shadow: 0 0 0 3px rgba(108, 92, 231, 0.1);
}

.form-textarea-redesigned {
	resize: vertical;
	min-height: 120px;
}

.form-check-redesigned {
	display: flex;
	align-items: flex-start;
	gap: 12px;
}

.form-checkbox-redesigned {
	width: 20px;
	height: 20px;
	margin-top: 2px;
	cursor: pointer;
	accent-color: var(--accent-color);
}

.form-check-label-redesigned {
	font-size: 0.9rem;
	color: rgba(255, 255, 255, 0.8);
	line-height: 1.6;
}

.form-link-redesigned {
	color: var(--accent-color);
	text-decoration: none;
	transition: color 0.3s ease;
}

.form-link-redesigned:hover {
	color: var(--heading-color);
}

.contact-form-btn-redesigned {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	padding: 16px 32px;
	background: linear-gradient(
		135deg,
		var(--accent-color) 0%,
		var(--heading-color) 100%
	);
	color: var(--contrast-color);
	border: none;
	border-radius: 12px;
	font-size: 1rem;
	font-weight: 600;
	font-family: var(--heading-font);
	cursor: pointer;
	transition: all 0.3s ease;
	box-shadow: 0 4px 15px rgba(108, 92, 231, 0.3);
}

.contact-form-btn-redesigned:hover {
	background: linear-gradient(
		135deg,
		var(--heading-color) 0%,
		var(--accent-color) 100%
	);
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(108, 92, 231, 0.4);
}

.contact-form-btn-redesigned:active {
	transform: translateY(0);
}

.contact-form-btn-redesigned i {
	font-size: 18px;
	transition: transform 0.3s ease;
}

.contact-form-btn-redesigned:hover i {
	transform: translateX(3px);
}

.contact-form-glow-redesigned {
	position: absolute;
	inset: -2px;
	background: linear-gradient(
		135deg,
		var(--accent-color),
		var(--heading-color)
	);
	border-radius: 24px;
	opacity: 0;
	filter: blur(20px);
	transition: opacity 0.5s ease;
	z-index: -1;
}

.contact-form-card-redesigned:hover .contact-form-glow-redesigned {
	opacity: 0.6;
}

/* Responsive Contact Page */
@media (max-width: 992px) {
	.contact-grid-redesigned {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 768px) {
	.contact-title-redesigned {
		font-size: 2rem;
	}

	.form-grid-redesigned {
		grid-template-columns: 1fr;
	}

	.contact-info-card-redesigned,
	.contact-form-card-redesigned {
		padding: 30px 20px;
	}
}

/* ============================================
   FAQ PAGE REDESIGNED STYLES
   ============================================ */

/* FAQ Section Redesigned */
.faq-redesigned {
	position: relative;
	padding: 100px 0;
	overflow: hidden;
}

.faq-bg-animated {
	position: absolute;
	inset: 0;
	background: radial-gradient(
			circle at 20% 50%,
			rgba(108, 92, 231, 0.1) 0%,
			transparent 50%
		),
		radial-gradient(
			circle at 80% 80%,
			rgba(162, 155, 254, 0.1) 0%,
			transparent 50%
		);
	animation: faqBgPulse 8s ease-in-out infinite;
}

@keyframes faqBgPulse {
	0%,
	100% {
		opacity: 0.5;
	}
	50% {
		opacity: 1;
	}
}

.faq-header-redesigned {
	text-align: center;
	margin-bottom: 60px;
	position: relative;
	z-index: 2;
}

.faq-badge-redesigned {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 10px 20px;
	background: rgba(108, 92, 231, 0.15);
	border: 1px solid rgba(108, 92, 231, 0.3);
	border-radius: 50px;
	color: var(--accent-color);
	font-size: 14px;
	font-weight: 600;
	margin-bottom: 24px;
	backdrop-filter: blur(10px);
}

.faq-badge-icon-wrapper {
	width: 24px;
	height: 24px;
	background: linear-gradient(
		135deg,
		var(--accent-color),
		var(--heading-color)
	);
	border-radius: 6px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.faq-badge-redesigned i {
	font-size: 12px;
	color: var(--contrast-color);
}

.faq-title-redesigned {
	font-size: 2.75rem;
	font-weight: 700;
	color: var(--contrast-color);
	margin-bottom: 16px;
}

.faq-title-gradient {
	background: linear-gradient(
		135deg,
		var(--accent-color),
		var(--heading-color)
	);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.faq-description-redesigned {
	font-size: 1.1rem;
	color: rgba(255, 255, 255, 0.8);
	max-width: 700px;
	margin: 0 auto;
}

.faq-container-redesigned {
	max-width: 900px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	gap: 20px;
	position: relative;
	z-index: 2;
}

.faq-item-redesigned {
	position: relative;
	background: rgba(22, 33, 62, 0.6);
	border: 1px solid rgba(108, 92, 231, 0.2);
	border-radius: 20px;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	backdrop-filter: blur(10px);
	overflow: hidden;
}

.faq-item-redesigned:hover {
	border-color: var(--accent-color);
	box-shadow: 0 10px 30px rgba(108, 92, 231, 0.2);
}

.faq-item-redesigned.faq-active-redesigned {
	border-color: var(--accent-color);
	box-shadow: 0 15px 40px rgba(108, 92, 231, 0.3);
}

.faq-item-header-redesigned {
	display: flex;
	align-items: center;
	gap: 16px;
	padding: 24px;
	cursor: pointer;
	user-select: none;
}

.faq-item-icon-wrapper-redesigned {
	position: relative;
	width: 50px;
	height: 50px;
	flex-shrink: 0;
}

.faq-item-icon-bg-redesigned {
	position: absolute;
	inset: 0;
	background: linear-gradient(
		135deg,
		var(--accent-color),
		var(--heading-color)
	);
	border-radius: 12px;
	opacity: 0.2;
	transition: all 0.4s ease;
}

.faq-item-redesigned:hover .faq-item-icon-bg-redesigned,
.faq-item-redesigned.faq-active-redesigned .faq-item-icon-bg-redesigned {
	opacity: 0.4;
	transform: scale(1.1);
}

.faq-item-icon-redesigned {
	position: relative;
	z-index: 2;
	font-size: 24px;
	color: var(--accent-color);
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100%;
}

.faq-item-title-redesigned {
	flex: 1;
	font-size: 1.15rem;
	font-weight: 600;
	color: var(--contrast-color);
	margin: 0;
	line-height: 1.5;
	transition: color 0.3s ease;
}

.faq-item-redesigned:hover .faq-item-title-redesigned,
.faq-item-redesigned.faq-active-redesigned .faq-item-title-redesigned {
	color: var(--accent-color);
}

.faq-toggle-redesigned {
	width: 36px;
	height: 36px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(108, 92, 231, 0.1);
	border: 1px solid rgba(108, 92, 231, 0.2);
	border-radius: 8px;
	color: var(--accent-color);
	font-size: 18px;
	cursor: pointer;
	transition: all 0.3s ease;
	flex-shrink: 0;
}

.faq-toggle-redesigned:hover {
	background: rgba(108, 92, 231, 0.2);
	border-color: var(--accent-color);
	transform: scale(1.1);
}

.faq-item-redesigned.faq-active-redesigned .faq-toggle-redesigned {
	background: rgba(108, 92, 231, 0.3);
	border-color: var(--accent-color);
	transform: rotate(180deg);
}

.faq-content-redesigned {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item-redesigned.faq-active-redesigned .faq-content-redesigned {
	max-height: 1000px;
}

.faq-content-inner-redesigned {
	padding: 0 24px 24px 90px;
}

.faq-content-inner-redesigned p {
	font-size: 1rem;
	line-height: 1.7;
	color: rgba(255, 255, 255, 0.85);
	margin: 0;
}

.faq-item-glow-redesigned {
	position: absolute;
	inset: -2px;
	background: linear-gradient(
		135deg,
		var(--accent-color),
		var(--heading-color)
	);
	border-radius: 20px;
	opacity: 0;
	filter: blur(15px);
	transition: opacity 0.5s ease;
	z-index: -1;
}

.faq-item-redesigned.faq-active-redesigned .faq-item-glow-redesigned {
	opacity: 0.5;
}

/* Responsive FAQ Page */
@media (max-width: 768px) {
	.faq-title-redesigned {
		font-size: 2rem;
	}

	.faq-item-header-redesigned {
		padding: 20px;
		gap: 12px;
	}

	.faq-item-icon-wrapper-redesigned {
		width: 40px;
		height: 40px;
	}

	.faq-item-icon-redesigned {
		font-size: 20px;
	}

	.faq-item-title-redesigned {
		font-size: 1rem;
	}

	.faq-content-inner-redesigned {
		padding: 0 20px 20px 72px;
	}

	.faq-toggle-redesigned {
		width: 32px;
		height: 32px;
		font-size: 16px;
	}
}

/* ============================================
   POLICY PAGES REDESIGNED STYLES
   (Cookie Policy, Privacy Policy, Terms)
   ============================================ */

/* Policy Section Redesigned */
.policy-redesigned {
	position: relative;
	padding: 100px 0;
	overflow: hidden;
}

.policy-bg-animated {
	position: absolute;
	inset: 0;
	background: radial-gradient(
			circle at 20% 50%,
			rgba(108, 92, 231, 0.1) 0%,
			transparent 50%
		),
		radial-gradient(
			circle at 80% 80%,
			rgba(162, 155, 254, 0.1) 0%,
			transparent 50%
		);
	animation: policyBgPulse 8s ease-in-out infinite;
}

@keyframes policyBgPulse {
	0%,
	100% {
		opacity: 0.5;
	}
	50% {
		opacity: 1;
	}
}

.policy-content-redesigned {
	max-width: 900px;
	margin: 0 auto;
	position: relative;
	z-index: 2;
}

.policy-card-redesigned {
	position: relative;
	padding: 50px;
	background: rgba(22, 33, 62, 0.6);
	border: 1px solid rgba(108, 92, 231, 0.2);
	border-radius: 24px;
	backdrop-filter: blur(10px);
	transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.policy-card-redesigned:hover {
	border-color: var(--accent-color);
	box-shadow: 0 20px 60px rgba(108, 92, 231, 0.3);
}

.policy-section-redesigned {
	margin-bottom: 40px;
	padding-bottom: 40px;
	border-bottom: 1px solid rgba(108, 92, 231, 0.1);
}

.policy-section-redesigned:last-child {
	border-bottom: none;
	margin-bottom: 0;
	padding-bottom: 0;
}

.policy-section-header-redesigned {
	display: flex;
	align-items: center;
	gap: 16px;
	margin-bottom: 20px;
}

.policy-section-icon-redesigned {
	width: 50px;
	height: 50px;
	background: linear-gradient(
		135deg,
		var(--accent-color),
		var(--heading-color)
	);
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--contrast-color);
	font-size: 24px;
	flex-shrink: 0;
	opacity: 0.8;
}

.policy-section-title-redesigned {
	font-size: 1.75rem;
	font-weight: 700;
	color: var(--contrast-color);
	margin: 0;
	line-height: 1.3;
}

.policy-section-text-redesigned {
	font-size: 1.05rem;
	line-height: 1.8;
	color: rgba(255, 255, 255, 0.85);
	margin-bottom: 0;
}

.policy-subsection-redesigned {
	margin-top: 24px;
	padding-left: 66px;
}

.policy-subsection-title-redesigned {
	font-size: 1.3rem;
	font-weight: 600;
	color: var(--accent-color);
	margin-bottom: 12px;
}

.policy-subsection-text-redesigned {
	font-size: 1rem;
	line-height: 1.7;
	color: rgba(255, 255, 255, 0.8);
	margin-bottom: 12px;
}

.policy-list-redesigned {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.policy-list-redesigned li {
	position: relative;
	padding-left: 28px;
	font-size: 1rem;
	line-height: 1.7;
	color: rgba(255, 255, 255, 0.85);
}

.policy-list-redesigned li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 10px;
	width: 8px;
	height: 8px;
	background: linear-gradient(
		135deg,
		var(--accent-color),
		var(--heading-color)
	);
	border-radius: 50%;
}

.policy-list-redesigned li strong {
	color: var(--accent-color);
	font-weight: 600;
}

.policy-contact-redesigned {
	margin-top: 20px;
	padding: 20px;
	background: rgba(108, 92, 231, 0.1);
	border: 1px solid rgba(108, 92, 231, 0.2);
	border-radius: 12px;
}

.policy-contact-redesigned p {
	margin: 8px 0;
	font-size: 1rem;
	color: rgba(255, 255, 255, 0.9);
}

.policy-contact-redesigned a {
	color: var(--accent-color);
	text-decoration: none;
	transition: color 0.3s ease;
}

.policy-contact-redesigned a:hover {
	color: var(--heading-color);
}

.policy-info-box-redesigned {
	display: flex;
	gap: 20px;
	padding: 24px;
	background: rgba(108, 92, 231, 0.1);
	border: 1px solid rgba(108, 92, 231, 0.3);
	border-radius: 16px;
	margin-top: 40px;
}

.policy-info-box-icon-redesigned {
	width: 50px;
	height: 50px;
	background: linear-gradient(
		135deg,
		var(--accent-color),
		var(--heading-color)
	);
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--contrast-color);
	font-size: 24px;
	flex-shrink: 0;
}

.policy-info-box-content-redesigned {
	flex: 1;
}

.policy-info-box-title-redesigned {
	font-size: 1.2rem;
	font-weight: 600;
	color: var(--contrast-color);
	margin-bottom: 8px;
}

.policy-info-box-text-redesigned {
	font-size: 1rem;
	line-height: 1.7;
	color: rgba(255, 255, 255, 0.85);
	margin: 0;
}

.policy-info-box-text-redesigned a {
	color: var(--accent-color);
	text-decoration: none;
	transition: color 0.3s ease;
}

.policy-info-box-text-redesigned a:hover {
	color: var(--heading-color);
}

.policy-card-glow-redesigned {
	position: absolute;
	inset: -2px;
	background: linear-gradient(
		135deg,
		var(--accent-color),
		var(--heading-color)
	);
	border-radius: 24px;
	opacity: 0;
	filter: blur(20px);
	transition: opacity 0.5s ease;
	z-index: -1;
}

.policy-card-redesigned:hover .policy-card-glow-redesigned {
	opacity: 0.5;
}

/* Responsive Policy Pages */
@media (max-width: 768px) {
	.policy-card-redesigned {
		padding: 30px 20px;
	}

	.policy-section-title-redesigned {
		font-size: 1.5rem;
	}

	.policy-subsection-redesigned {
		padding-left: 0;
	}

	.policy-section-header-redesigned {
		flex-direction: column;
		align-items: flex-start;
		gap: 12px;
	}

	.policy-info-box-redesigned {
		flex-direction: column;
	}
}
