/* ===== Aglimpseofaniceberg Header/Footer/Mobile Menu Redesign Overrides ===== */
/* Header - modern glass + subtle gradient */
.header-modern {
	position: sticky;
	top: 0;
	z-index: 1040;
	backdrop-filter: saturate(140%) blur(8px);
	background: color-mix(in srgb, var(--surface-color) 88%, transparent);
	border-bottom: 1px solid
		color-mix(in srgb, var(--accent-color) 25%, transparent);
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
	transition:
		background 220ms ease,
		border-color 220ms ease,
		box-shadow 220ms ease;
}
body.scrolled .header-modern {
	background: color-mix(in srgb, var(--surface-color) 96%, transparent);
	border-bottom-color: color-mix(in srgb, var(--accent-color) 35%, transparent);
	box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
}
.header-main .logo-modern .logo-img {
	height: 36px;
	width: auto;
	filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.08));
}
.header-main-content {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 14px 0;
}
.navmenu-modern {
	display: flex;
	align-items: center;
	gap: 10px;
}
.navmenu-modern .nav-menu-list {
	display: flex;
	align-items: center;
	gap: 18px;
	margin: 0;
	padding: 0;
	list-style: none;
}
.navmenu-modern .nav-link {
	position: relative;
	color: var(--nav-color);
	text-decoration: none;
	padding: 8px 10px;
	border-radius: 8px;
	transition: color 160ms ease;
}
.navmenu-modern .nav-link:hover,
.navmenu-modern .nav-link.active {
	color: var(--nav-hover-color);
}
.navmenu-modern .nav-link::after {
	content: '';
	position: absolute;
	left: 12px;
	right: 12px;
	bottom: 4px;
	height: 2px;
	background: linear-gradient(
		90deg,
		var(--accent-color),
		color-mix(in srgb, var(--accent-color) 65%, var(--heading-color))
	);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 200ms ease;
	border-radius: 2px;
}
.navmenu-modern .nav-link:hover::after,
.navmenu-modern .nav-link.active::after {
	transform: scaleX(1);
}
.header-actions .btn-primary-modern {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 10px 14px;
	border-radius: 12px;
	background: linear-gradient(
		135deg,
		var(--accent-color),
		color-mix(in srgb, var(--accent-color) 70%, var(--success-color))
	);
	color: var(--contrast-color);
	box-shadow: 0 8px 18px
		color-mix(in srgb, var(--accent-color) 20%, transparent);
	transition:
		transform 160ms ease,
		box-shadow 160ms ease;
}
.header-actions .btn-primary-modern:hover {
	transform: translateY(-1px);
	box-shadow: 0 12px 20px
		color-mix(in srgb, var(--accent-color) 26%, transparent);
}
.mobile-nav-toggle {
	font-size: 28px;
	color: var(--nav-color);
	cursor: pointer;
	transition:
		color 160ms ease,
		transform 160ms ease;
}
.mobile-nav-toggle:hover {
	color: var(--nav-hover-color);
}
@media (max-width: 991.98px) {
	.navmenu-modern {
		display: none;
	}
	.header-actions .btn-link {
		display: none;
	}
}

/* Fullscreen mobile overlay */
.mobile-menu-overlay {
	position: fixed;
	inset: 0;
	display: none;
	z-index: 2000;
	background: radial-gradient(
			1200px 600px at 80% -20%,
			color-mix(in srgb, var(--accent-color) 22%, transparent),
			transparent 60%
		),
		color-mix(in srgb, var(--background-color) 96%, black 2%);
	backdrop-filter: blur(10px) saturate(140%);
}
.mobile-menu-overlay.open {
	display: block;
}
.mobile-menu-panel {
	position: absolute;
	inset: 0;
	padding: 72px 24px 32px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	transform: translateY(12px);
	opacity: 0;
	animation: mm-fade-in 240ms ease forwards;
}
.mobile-menu-header {
	position: absolute;
	top: 14px;
	right: 16px;
}
.mobile-menu-close {
	font-size: 32px;
	color: var(--nav-color);
	cursor: pointer;
}
.mobile-menu-nav {
	display: grid;
	gap: 10px;
}
.mobile-menu-nav a {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 14px 12px;
	border-radius: 12px;
	background: color-mix(in srgb, var(--surface-color) 65%, transparent);
	color: var(--heading-color);
	text-decoration: none;
	font-size: 18px;
}
.mobile-menu-cta {
	display: grid;
	gap: 12px;
	margin-top: 12px;
}
.mobile-menu-cta .btn-primary-modern {
	justify-content: center;
}
.mobile-menu-meta {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-top: 24px;
	color: color-mix(in srgb, var(--default-color) 70%, var(--heading-color));
	font-size: 13px;
}
@keyframes mm-fade-in {
	to {
		transform: none;
		opacity: 1;
	}
}

/* Footer redesign */
.footer-modern {
	background: linear-gradient(
		180deg,
		color-mix(in srgb, var(--background-color) 98%, black 6%),
		color-mix(in srgb, var(--background-color) 96%, black 12%)
	);
	position: relative;
	overflow: hidden;
}
.footer-modern::before {
	content: '';
	position: absolute;
	inset: -20% -10% auto -10%;
	height: 260px;
	background: radial-gradient(
		600px 200px at 30% 10%,
		color-mix(in srgb, var(--accent-color) 22%, transparent),
		transparent 60%
	);
	opacity: 0.7;
	pointer-events: none;
}
.footer-modern .footer-title {
	color: var(--contrast-color);
	font-weight: 600;
	letter-spacing: 0.3px;
}
.footer-modern .footer-description,
.footer-modern .footer-menu a,
.footer-modern .footer-newsletter-text {
	color: color-mix(in srgb, var(--default-color) 80%, var(--contrast-color));
}
.footer-modern .footer-menu a:hover {
	color: var(--accent-color);
}
.footer-bottom-modern {
	border-top: 1px solid color-mix(in srgb, var(--accent-color) 25%, transparent);
	background: color-mix(in srgb, var(--background-color) 92%, black 10%);
}
.footer-bottom-modern .footer-legal-modern a {
	color: color-mix(in srgb, var(--default-color) 80%, var(--contrast-color));
}
.footer-bottom-modern .footer-legal-modern a:hover {
	color: var(--accent-color);
}
.newsletter-form-modern .newsletter-input-group {
	background: color-mix(in srgb, var(--surface-color) 75%, transparent);
	border: 1px solid color-mix(in srgb, var(--accent-color) 28%, transparent);
	border-radius: 14px;
}
.newsletter-form-modern .newsletter-btn {
	background: linear-gradient(
		135deg,
		var(--accent-color),
		color-mix(in srgb, var(--accent-color) 70%, var(--success-color))
	);
	color: var(--contrast-color);
	border-radius: 12px;
}

/* Global Colors - Dunkelgrün und Blau Palette */
:root {
	--background-color: #fae7f6;
	--default-color: #3b1e37;
	--heading-color: #2a0f27;
	--accent-color: #963305;
	--secondary-color: #2563eb;
	--surface-color: #f0fdf4;
	--contrast-color: #ffffff;
	--nav-color: #3b1e39;
	--nav-hover-color: #2563eb;
	--nav-mobile-background-color: #ffffff;
	--nav-dropdown-background-color: #f0fdf4;
	--nav-dropdown-color: #1e293b;
	--nav-dropdown-hover-color: #2563eb;
	--success-color: #059669;
	--warning-color: #f59e0b;
	--danger-color: #ef4444;
	--info-color: #2563eb;
}

/* Color Presets - Фітнес тема для всіх секцій */

.light-background {
	--background-color: #f0fdf4;
	--default-color: #1e293b;
	--heading-color: #0f172a;
	--surface-color: #ffffff;
	--contrast-color: #ffffff;
}

.dark-background {
	--background-color: #0f172a;
	--default-color: #cbd5e1;
	--heading-color: #ffffff;
	--surface-color: #1e293b;
	--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);
}

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

a:hover {
	color: color-mix(in srgb, var(--accent-color), transparent 25%);
	text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	color: var(--heading-color);
	font-family: var(--heading-font);
}

/* PHP Email Form Messages
------------------------------*/
.php-email-form .error-message {
	display: none;
	background: #df1529;
	color: #ffffff;
	text-align: left;
	padding: 15px;
	margin-bottom: 24px;
	font-weight: 600;
}

.php-email-form .sent-message {
	display: none;
	color: #ffffff;
	background: #059652;
	text-align: center;
	padding: 15px;
	margin-bottom: 24px;
	font-weight: 600;
}

.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(--heading-color);
}

.hero-badge {
	display: inline-flex;
	align-items: center;
	background: rgba(5, 150, 105, 0.15);
	border: 1px solid rgba(5, 150, 105, 0.3);
	padding: 0.5rem 1.25rem;
	border-radius: 50px;
	font-size: 0.9rem;
	margin-bottom: 1.5rem;
	backdrop-filter: blur(10px);
	color: var(--heading-color);
}

.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(--heading-color);
}

.hero-title .highlight-text {
	background: linear-gradient(
		135deg,
		var(--accent-color),
		var(--secondary-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(5, 150, 105, 0.4));
	}
	50% {
		filter: drop-shadow(0 0 15px rgba(37, 99, 235, 0.6));
	}
}

.hero-description {
	font-size: 1.25rem;
	line-height: 1.8;
	color: var(--text-color);
	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: var(--text-light);
	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(255, 255, 255, 0.9);
	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(5, 150, 105, 0.15);
	z-index: 10;
	border: 1px solid rgba(5, 150, 105, 0.2);
	transition: all 0.3s ease;
	cursor: pointer;
}

.floating-card:hover {
	transform: translateY(-5px) scale(1.05);
	box-shadow: 0 15px 40px rgba(37, 99, 235, 0.25);
	border-color: var(--accent-color);
	background: rgba(255, 255, 255, 0.95);
}

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

.floating-card i {
	font-size: 1.5rem;
	color: white;
}

.floating-card span {
	color: var(--heading-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 */
/* ===== Features Slider (Program Slide) - Completely Redesigned ===== */
.program-slide {
	position: relative;
	height: 100%;
	perspective: 1000px;
	transform-style: preserve-3d;
}

.program-slide-inner {
	position: relative;
	background: linear-gradient(
		135deg,
		rgba(15, 23, 42, 0.95),
		rgba(30, 41, 59, 0.9)
	);
	border: 2px solid rgba(5, 150, 105, 0.3);
	border-radius: 28px;
	padding: 2.5rem;
	height: 100%;
	display: flex;
	flex-direction: column;
	overflow: hidden;
	backdrop-filter: blur(16px);
	transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.program-slide:hover .program-slide-inner {
	border-color: rgba(5, 150, 105, 0.6);
	box-shadow:
		0 25px 70px rgba(5, 150, 105, 0.3),
		0 0 50px rgba(37, 99, 235, 0.2);
	transform: translateY(-12px) scale(1.02);
}

.program-slide-bg {
	position: absolute;
	inset: 0;
	background: radial-gradient(
			circle at 20% 30%,
			rgba(5, 150, 105, 0.15),
			transparent 60%
		),
		radial-gradient(circle at 80% 70%, rgba(37, 99, 235, 0.1), transparent 60%);
	opacity: 0;
	transition: opacity 0.5s ease;
	pointer-events: none;
	z-index: 1;
}

.program-slide:hover .program-slide-bg {
	opacity: 1;
}

.program-slide-glow {
	position: absolute;
	inset: -6px;
	background: radial-gradient(
		circle at 50% 50%,
		rgba(5, 150, 105, 0.25),
		transparent 70%
	);
	border-radius: 28px;
	opacity: 0;
	transition: opacity 0.5s ease;
	pointer-events: none;
	z-index: 0;
	animation: slide-glow-pulse 3s ease-in-out infinite;
}

.program-slide:hover .program-slide-glow {
	opacity: 1;
}

.program-badge {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	background: rgba(5, 150, 105, 0.2);
	border: 1px solid rgba(5, 150, 105, 0.4);
	border-radius: 50px;
	padding: 0.5rem 1rem;
	margin-bottom: 1.5rem;
	position: relative;
	z-index: 2;
	align-self: flex-start;
}

.program-badge i {
	color: rgba(16, 185, 129, 1);
	font-size: 0.9rem;
}

.program-badge span {
	color: rgba(16, 185, 129, 1);
	font-size: 0.85rem;
	font-weight: 600;
}

.program-icon {
	width: 110px;
	height: 110px;
	border-radius: 24px;
	background: linear-gradient(
		135deg,
		rgba(5, 150, 105, 0.25),
		rgba(37, 99, 235, 0.2)
	);
	border: 3px solid rgba(5, 150, 105, 0.5);
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 2rem;
	position: relative;
	z-index: 2;
	transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
	box-shadow: 0 8px 24px rgba(5, 150, 105, 0.2);
}

.program-slide:hover .program-icon {
	transform: scale(1.15) rotate(8deg);
	border-color: rgba(5, 150, 105, 0.8);
	box-shadow:
		0 15px 40px rgba(5, 150, 105, 0.4),
		0 0 30px rgba(37, 99, 235, 0.3);
}

.program-icon i {
	font-size: 3.5rem;
	background: linear-gradient(
		135deg,
		rgba(16, 185, 129, 1),
		rgba(129, 140, 248, 1)
	);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	transition: transform 0.3s ease;
}

.program-slide:hover .program-icon i {
	transform: scale(1.1);
}

.program-slide h3 {
	color: #ffffff;
	font-size: 2rem;
	font-weight: 700;
	margin-bottom: 1rem;
	text-align: center;
	position: relative;
	z-index: 2;
	transition: color 0.3s ease;
	line-height: 1.3;
}

.program-slide:hover h3 {
	color: rgba(16, 185, 129, 1);
}

.program-subtitle {
	color: rgba(203, 213, 225, 0.9);
	font-size: 1.05rem;
	margin-bottom: 2rem;
	text-align: center;
	line-height: 1.7;
	position: relative;
	z-index: 2;
}

.program-content {
	flex: 1;
	margin-bottom: 2rem;
	position: relative;
	z-index: 2;
}

.program-feature {
	display: flex;
	gap: 1rem;
	margin-bottom: 1.5rem;
	align-items: flex-start;
	padding: 1.25rem;
	background: rgba(30, 41, 59, 0.5);
	border-radius: 16px;
	border: 1px solid rgba(5, 150, 105, 0.2);
	transition: all 0.4s ease;
	position: relative;
	overflow: hidden;
}

.program-feature::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: 4px;
	background: linear-gradient(
		180deg,
		rgba(5, 150, 105, 0.8),
		rgba(37, 99, 235, 0.8)
	);
	transform: scaleY(0);
	transform-origin: bottom;
	transition: transform 0.4s ease;
}

.program-slide:hover .program-feature {
	background: rgba(5, 150, 105, 0.15);
	border-color: rgba(5, 150, 105, 0.4);
	transform: translateX(8px);
}

.program-slide:hover .program-feature::before {
	transform: scaleY(1);
}

.program-feature-icon {
	flex-shrink: 0;
	width: 32px;
	height: 32px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 0.2rem;
}

.program-feature-icon i {
	color: rgba(16, 185, 129, 1);
	font-size: 1.3rem;
	transition: transform 0.3s ease;
}

.program-slide:hover .program-feature-icon i {
	transform: scale(1.2) rotate(10deg);
}

.program-feature-content {
	flex: 1;
}

.program-feature-content strong {
	display: block;
	color: #ffffff;
	font-size: 1.1rem;
	margin-bottom: 0.5rem;
	font-weight: 700;
	transition: color 0.3s ease;
}

.program-slide:hover .program-feature-content strong {
	color: rgba(16, 185, 129, 1);
}

.program-feature-content p {
	color: rgba(203, 213, 225, 0.85);
	line-height: 1.7;
	margin: 0;
	font-size: 0.95rem;
}

.program-footer {
	margin-top: auto;
	padding-top: 1.5rem;
	border-top: 1px solid rgba(5, 150, 105, 0.2);
	position: relative;
	z-index: 2;
}

.program-link {
	display: inline-flex;
	align-items: center;
	gap: 0.75rem;
	color: rgba(16, 185, 129, 1);
	font-weight: 600;
	font-size: 1rem;
	text-decoration: none;
	transition: all 0.3s ease;
	padding: 0.75rem 1.5rem;
	background: rgba(5, 150, 105, 0.1);
	border: 1px solid rgba(5, 150, 105, 0.3);
	border-radius: 50px;
	width: 100%;
	justify-content: center;
}

.program-link:hover {
	color: #ffffff;
	background: linear-gradient(
		135deg,
		rgba(5, 150, 105, 0.8),
		rgba(37, 99, 235, 0.8)
	);
	border-color: rgba(5, 150, 105, 0.6);
	gap: 1rem;
	transform: translateY(-2px);
	box-shadow: 0 8px 20px rgba(5, 150, 105, 0.3);
}

.program-link i {
	transition: transform 0.3s ease;
}

.program-link:hover i {
	transform: translateX(4px);
}

@keyframes slide-glow-pulse {
	0%,
	100% {
		opacity: 0.2;
		transform: scale(1);
	}
	50% {
		opacity: 0.5;
		transform: scale(1.05);
	}
}

.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 Section - Completely Redesigned ===== */
.pricing {
	position: relative;
}
.pricing .pricing-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	gap: 2.5rem;
	margin-top: 3rem;
	align-items: stretch;
}
.pricing-card-wrapper {
	position: relative;
	perspective: 1200px;
	height: 100%;
}
.pricing-card-wrapper--featured {
	z-index: 2;
}
.pricing-card {
	position: relative;
	height: 100%;
	transform-style: preserve-3d;
	transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}
.pricing-card-wrapper:hover .pricing-card {
	transform: translateY(-15px) rotateX(3deg);
}
.pricing-card-wrapper--featured .pricing-card {
	transform: scale(1.05);
}
.pricing-card-wrapper--featured:hover .pricing-card {
	transform: translateY(-15px) rotateX(3deg) scale(1.05);
}
.pricing-card-inner {
	position: relative;
	background: rgba(30, 41, 59, 0.7);
	border: 2px solid rgba(37, 99, 235, 0.25);
	border-radius: 24px;
	padding: 2.5rem;
	height: 100%;
	display: flex;
	flex-direction: column;
	overflow: hidden;
	backdrop-filter: blur(12px);
	transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}
.pricing-card-wrapper:hover .pricing-card-inner {
	border-color: rgba(37, 99, 235, 0.5);
	box-shadow:
		0 25px 60px rgba(37, 99, 235, 0.25),
		0 0 50px rgba(5, 150, 105, 0.15);
	transform: scale(1.02);
}
.pricing-card-wrapper--featured .pricing-card-inner {
	border-color: rgba(5, 150, 105, 0.4);
	background: rgba(30, 41, 59, 0.8);
	box-shadow: 0 20px 50px rgba(5, 150, 105, 0.2);
}
.pricing-card-wrapper--featured:hover .pricing-card-inner {
	border-color: rgba(5, 150, 105, 0.6);
	box-shadow:
		0 30px 70px rgba(5, 150, 105, 0.3),
		0 0 60px rgba(37, 99, 235, 0.2);
}
.pricing-card-bg {
	position: absolute;
	inset: 0;
	background: radial-gradient(
		circle at 50% 0%,
		rgba(37, 99, 235, 0.15),
		transparent 70%
	);
	opacity: 0;
	transition: opacity 0.5s ease;
	pointer-events: none;
}
.pricing-card-wrapper:hover .pricing-card-bg {
	opacity: 1;
}
.pricing-card-wrapper--featured .pricing-card-bg {
	background: radial-gradient(
		circle at 50% 0%,
		rgba(5, 150, 105, 0.2),
		transparent 70%
	);
}
.pricing-card-shine {
	position: absolute;
	top: -50%;
	left: -50%;
	width: 200%;
	height: 200%;
	background: linear-gradient(
		45deg,
		transparent,
		rgba(255, 255, 255, 0.1),
		transparent
	);
	transform: rotate(45deg);
	opacity: 0;
	transition: all 0.6s ease;
}
.pricing-card-wrapper:hover .pricing-card-shine {
	animation: pricing-shine 1.2s ease;
}
.pricing-card.featured {
	border-color: transparent;
	transform: none;
}
.pricing-card.featured::before {
	display: none;
}

.popular-badge {
	position: absolute;
	top: -18px;
	right: 30px;
	background: linear-gradient(
		135deg,
		var(--accent-color),
		var(--success-color)
	);
	color: var(--contrast-color);
	padding: 0.6rem 1.25rem;
	border-radius: 999px;
	font-size: 0.875rem;
	font-weight: 700;
	box-shadow: 0 4px 20px rgba(5, 150, 105, 0.4);
	z-index: 20;
	animation: badge-pulse 2s ease-in-out infinite;
	transform-origin: center;
	pointer-events: none;
}
@keyframes badge-pulse {
	0%,
	100% {
		transform: scale(1);
		box-shadow: 0 4px 20px rgba(5, 150, 105, 0.4);
	}
	50% {
		transform: scale(1.05);
		box-shadow: 0 6px 25px rgba(5, 150, 105, 0.6);
	}
}
@keyframes pricing-shine {
	0% {
		transform: translateX(-100%) translateY(-100%) rotate(45deg);
		opacity: 0;
	}
	50% {
		opacity: 1;
	}
	100% {
		transform: translateX(100%) translateY(100%) rotate(45deg);
		opacity: 0;
	}
}

.pricing-header {
	text-align: center;
	margin-bottom: 2rem;
	padding-bottom: 1.5rem;
	border-bottom: 2px solid rgba(37, 99, 235, 0.2);
	position: relative;
	z-index: 2;
	transition: border-color 0.3s ease;
}
.pricing-card-wrapper:hover .pricing-header {
	border-color: rgba(37, 99, 235, 0.4);
}
.pricing-card-wrapper--featured .pricing-header {
	border-color: rgba(5, 150, 105, 0.3);
}
.pricing-card-wrapper--featured:hover .pricing-header {
	border-color: rgba(5, 150, 105, 0.5);
}
.pricing-header h3 {
	font-size: 1.9rem;
	font-weight: 700;
	color: var(--heading-color);
	margin-bottom: 1.25rem;
	transition: color 0.3s ease;
}
.pricing-card-wrapper:hover .pricing-header h3 {
	color: var(--accent-color);
}
.pricing-card-wrapper--featured:hover .pricing-header h3 {
	color: var(--success-color);
}
.price {
	display: flex;
	align-items: baseline;
	justify-content: center;
	margin: 1.5rem 0;
	gap: 0.25rem;
}
.price .currency {
	font-size: 1.75rem;
	font-weight: 600;
	color: rgba(241, 245, 249, 0.7);
	transition: color 0.3s ease;
}
.pricing-card-wrapper:hover .price .currency {
	color: var(--accent-color);
}
.price .amount {
	font-size: 4rem;
	font-weight: 800;
	background: linear-gradient(
		135deg,
		var(--accent-color),
		var(--success-color)
	);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	line-height: 1;
	transition: transform 0.3s ease;
	font-family: var(--heading-font);
}
.pricing-card-wrapper:hover .price .amount {
	transform: scale(1.1);
}
.price .period {
	font-size: 1.1rem;
	color: rgba(241, 245, 249, 0.6);
	margin-left: 0.25rem;
	transition: color 0.3s ease;
}
.pricing-card-wrapper:hover .price .period {
	color: rgba(241, 245, 249, 0.8);
}
.price-description {
	color: rgba(241, 245, 249, 0.85);
	margin-top: 1rem;
	font-size: 0.95rem;
	line-height: 1.6;
	position: relative;
	z-index: 2;
}

.pricing-features {
	flex: 1;
	margin-bottom: 2rem;
	position: relative;
	z-index: 2;
}
.pricing-features ul {
	list-style: none;
	padding: 0;
	margin: 0;
	display: grid;
	gap: 0.5rem;
}
.pricing-features ul li {
	padding: 0.85rem 1rem;
	display: flex;
	align-items: flex-start;
	font-size: 0.95rem;
	color: rgba(241, 245, 249, 0.9);
	background: rgba(30, 41, 59, 0.4);
	border-radius: 10px;
	border: 1px solid rgba(37, 99, 235, 0.15);
	transition: all 0.3s ease;
}
.pricing-card-wrapper:hover .pricing-features ul li {
	background: rgba(37, 99, 235, 0.1);
	border-color: rgba(37, 99, 235, 0.3);
	transform: translateX(6px);
}
.pricing-card-wrapper--featured:hover .pricing-features ul li {
	background: rgba(5, 150, 105, 0.1);
	border-color: rgba(5, 150, 105, 0.3);
}
.pricing-features ul li i {
	margin-right: 0.75rem;
	margin-top: 0.25rem;
	font-size: 1.2rem;
	flex-shrink: 0;
	transition: transform 0.3s ease;
}
.pricing-card-wrapper:hover .pricing-features ul li i {
	transform: scale(1.2) rotate(5deg);
}
.pricing-features ul li .bi-check-circle-fill {
	color: var(--success-color);
}
.pricing-features ul li .bi-x-circle {
	color: rgba(239, 68, 68, 0.6);
	opacity: 0.7;
}

.pricing-footer {
	margin-top: auto;
	position: relative;
	z-index: 2;
}
.pricing-footer .btn {
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}
.pricing-card-wrapper:hover .pricing-footer .btn {
	transform: translateY(-2px);
	box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3);
}
.pricing-card-wrapper--featured:hover .pricing-footer .btn {
	box-shadow: 0 8px 20px rgba(5, 150, 105, 0.4);
}

.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);
}

/* 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-content-new {
	background: linear-gradient(180deg, #f0fdf4 0%, #ffffff 100%);
	position: relative;
	overflow: hidden;
}

.faq-content-new::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: radial-gradient(
			circle at 10% 20%,
			rgba(5, 150, 105, 0.05),
			transparent 50%
		),
		radial-gradient(circle at 90% 80%, rgba(37, 99, 235, 0.04), transparent 50%);
	pointer-events: none;
	z-index: 0;
}

.faq-content-new .container {
	position: relative;
	z-index: 1;
}

.faq .faq-container {
	margin-top: 2rem;
}

.faq .faq-container .faq-item {
	background: #ffffff;
	border: 2px solid rgba(5, 150, 105, 0.15);
	border-radius: 20px;
	padding: 1.75rem 2rem;
	margin-bottom: 1.5rem;
	overflow: hidden;
	transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
	position: relative;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.faq .faq-container .faq-item::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: 4px;
	background: linear-gradient(
		180deg,
		rgba(5, 150, 105, 0.8),
		rgba(37, 99, 235, 0.8)
	);
	transform: scaleY(0);
	transform-origin: bottom;
	transition: transform 0.4s ease;
}

.faq .faq-container .faq-item:hover {
	border-color: rgba(5, 150, 105, 0.3);
	transform: translateX(8px);
	box-shadow: 0 8px 30px rgba(5, 150, 105, 0.15);
}

.faq .faq-container .faq-item:hover::before {
	transform: scaleY(1);
}

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

.faq .faq-container .faq-item h3 {
	font-weight: 700;
	font-size: 1.15rem;
	line-height: 1.5;
	margin: 0 0 0 3rem;
	transition: all 0.3s ease;
	cursor: pointer;
	color: var(--heading-color);
	display: flex;
	align-items: center;
	gap: 1rem;
}

.faq .faq-container .faq-item h3 span {
	color: rgba(5, 150, 105, 1);
	padding-right: 5px;
}

.faq .faq-container .faq-item h3:hover {
	color: rgba(5, 150, 105, 1);
}

.faq .faq-container .faq-item .faq-content {
	display: grid;
	grid-template-rows: 0fr;
	transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
	visibility: hidden;
	opacity: 0;
	margin-top: 0;
	padding-left: 3rem;
}

.faq .faq-container .faq-item .faq-content p {
	margin-bottom: 0;
	overflow: hidden;
	color: var(--text-light);
	line-height: 1.8;
	font-size: 1rem;
}

.faq .faq-container .faq-item .faq-icon {
	position: absolute;
	left: 2rem;
	top: 1.75rem;
	font-size: 1.5rem;
	line-height: 0;
	transition: all 0.3s ease;
	color: rgba(5, 150, 105, 1);
	z-index: 1;
}

.faq .faq-container .faq-item:hover .faq-icon {
	transform: scale(1.2) rotate(10deg);
}

.faq .faq-container .faq-item .faq-toggle {
	position: absolute;
	top: 1.75rem;
	right: 2rem;
	font-size: 1.25rem;
	line-height: 0;
	transition: all 0.3s ease;
	cursor: pointer;
	color: rgba(5, 150, 105, 1);
	width: 32px;
	height: 32px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: rgba(5, 150, 105, 0.1);
}

.faq .faq-container .faq-item .faq-toggle:hover {
	color: #ffffff;
	background: rgba(5, 150, 105, 0.8);
	transform: scale(1.1);
}

.faq .faq-container .faq-active {
	background: linear-gradient(
		135deg,
		rgba(5, 150, 105, 0.1),
		rgba(37, 99, 235, 0.05)
	);
	border-color: rgba(5, 150, 105, 0.4);
	box-shadow: 0 10px 40px rgba(5, 150, 105, 0.2);
}

.faq .faq-container .faq-active::before {
	transform: scaleY(1);
}

.faq .faq-container .faq-active h3,
.faq .faq-container .faq-active h3:hover {
	color: rgba(5, 150, 105, 1);
}

.faq .faq-container .faq-active .faq-toggle {
	color: #ffffff;
	background: linear-gradient(
		135deg,
		rgba(5, 150, 105, 0.9),
		rgba(37, 99, 235, 0.8)
	);
	transform: rotate(90deg);
}

.faq .faq-container .faq-active .faq-icon {
	color: rgba(5, 150, 105, 1);
	transform: scale(1.2);
}

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

.faq .faq-container .faq-active .faq-content p {
	color: var(--text-color);
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .contact-info {
	background: linear-gradient(
		135deg,
		rgba(15, 23, 42, 0.95),
		rgba(30, 41, 59, 0.9)
	);
	padding: 3rem 2.5rem;
	border-radius: 24px;
	border: 2px solid rgba(5, 150, 105, 0.2);
	box-shadow:
		0 10px 40px rgba(5, 150, 105, 0.15),
		0 0 30px rgba(37, 99, 235, 0.1);
	height: 100%;
	backdrop-filter: blur(16px);
	position: relative;
	overflow: hidden;
}

.contact .contact-info::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(
		90deg,
		rgba(5, 150, 105, 0.8),
		rgba(37, 99, 235, 0.8)
	);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.4s ease;
}

.contact .contact-info:hover::before {
	transform: scaleX(1);
}

.contact .contact-info h3 {
	color: #ffffff;
	font-size: 2rem;
	font-weight: 700;
	margin-bottom: 1.5rem;
	position: relative;
	z-index: 1;
}

.contact .info-item {
	display: flex;
	align-items: flex-start;
	gap: 1.5rem;
	padding: 1.75rem 0;
	border-bottom: 1px solid rgba(5, 150, 105, 0.15);
	transition: all 0.3s ease;
	position: relative;
}

.contact .info-item::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: 3px;
	background: linear-gradient(
		180deg,
		rgba(5, 150, 105, 0.8),
		rgba(37, 99, 235, 0.8)
	);
	transform: scaleY(0);
	transform-origin: bottom;
	transition: transform 0.3s ease;
}

.contact .info-item:hover {
	padding-left: 1rem;
	border-bottom-color: rgba(5, 150, 105, 0.3);
}

.contact .info-item:hover::before {
	transform: scaleY(1);
}

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

.contact .info-icon {
	flex-shrink: 0;
	width: 60px;
	height: 60px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(
		135deg,
		rgba(5, 150, 105, 0.2),
		rgba(37, 99, 235, 0.15)
	);
	border: 2px solid rgba(5, 150, 105, 0.3);
	border-radius: 16px;
	color: rgba(16, 185, 129, 1);
	transition: all 0.3s ease;
}

.contact .info-item:hover .info-icon {
	background: linear-gradient(
		135deg,
		rgba(5, 150, 105, 0.3),
		rgba(37, 99, 235, 0.25)
	);
	border-color: rgba(5, 150, 105, 0.5);
	transform: scale(1.1) rotate(5deg);
	box-shadow: 0 8px 20px rgba(5, 150, 105, 0.3);
}

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

.contact .info-content {
	flex: 1;
	position: relative;
	z-index: 1;
}

.contact .info-content h4 {
	font-size: 1.1rem;
	font-weight: 700;
	color: #ffffff;
	margin-bottom: 0.5rem;
}

.contact .info-content p {
	margin-bottom: 0;
	color: rgba(203, 213, 225, 0.9);
	font-size: 0.95rem;
	line-height: 1.7;
}

.contact .info-content a {
	color: rgba(16, 185, 129, 1);
	text-decoration: none;
	transition: all 0.3s ease;
	font-weight: 500;
}

.contact .info-content a:hover {
	color: rgba(129, 140, 248, 1);
	text-decoration: underline;
	transform: translateX(2px);
}

.contact .social-links {
	margin-top: 2rem;
	padding-top: 2rem;
	border-top: 1px solid rgba(5, 150, 105, 0.2);
}

.contact .social-links h4 {
	font-size: 1.1rem;
	font-weight: 700;
	color: #ffffff;
	margin-bottom: 1rem;
}

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

.contact .social-icons a {
	width: 48px;
	height: 48px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(
		135deg,
		rgba(5, 150, 105, 0.15),
		rgba(37, 99, 235, 0.1)
	);
	border: 2px solid rgba(5, 150, 105, 0.3);
	border-radius: 12px;
	color: rgba(16, 185, 129, 1);
	text-decoration: none;
	transition: all 0.3s ease;
}

.contact .social-icons a:hover {
	background: linear-gradient(
		135deg,
		rgba(5, 150, 105, 0.8),
		rgba(37, 99, 235, 0.7)
	);
	border-color: rgba(5, 150, 105, 0.6);
	color: #ffffff;
	transform: translateY(-4px) scale(1.1);
	box-shadow: 0 8px 20px rgba(5, 150, 105, 0.3);
}

.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 Banner New Design */
.cookie-banner-new {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	background: linear-gradient(
		135deg,
		rgba(30, 41, 59, 0.98) 0%,
		rgba(15, 23, 42, 0.98) 100%
	);
	backdrop-filter: blur(20px);
	border-top: 2px solid rgba(37, 99, 235, 0.3);
	box-shadow:
		0 -10px 60px rgba(0, 0, 0, 0.5),
		0 0 0 1px rgba(37, 99, 235, 0.1);
	z-index: 10000;
	display: none;
	opacity: 0;
	transform: translateY(100%);
	transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
	font-family: var(--default-font);
}

.cookie-banner-new.show {
	display: block;
	opacity: 1;
	transform: translateY(0);
}

.cookie-banner-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 1.5rem 2rem;
	display: flex;
	align-items: center;
	gap: 1.5rem;
	position: relative;
}

.cookie-banner-icon {
	flex-shrink: 0;
	width: 56px;
	height: 56px;
	background: linear-gradient(
		135deg,
		var(--accent-color),
		var(--success-color)
	);
	border-radius: 14px;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 8px 24px rgba(37, 99, 235, 0.3);
	animation: cookiePulse 2s ease-in-out infinite;
}

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

@keyframes cookiePulse {
	0%,
	100% {
		transform: scale(1);
		box-shadow: 0 8px 24px rgba(37, 99, 235, 0.3);
	}
	50% {
		transform: scale(1.05);
		box-shadow: 0 12px 32px rgba(37, 99, 235, 0.5);
	}
}

.cookie-banner-content {
	flex: 1;
	min-width: 0;
}

.cookie-banner-title {
	font-size: 1.125rem;
	font-weight: 700;
	color: var(--heading-color);
	margin: 0 0 0.5rem 0;
	font-family: var(--heading-font);
	background: linear-gradient(
		135deg,
		var(--accent-color),
		var(--success-color)
	);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.cookie-banner-text {
	font-size: 0.9rem;
	line-height: 1.6;
	color: rgba(241, 245, 249, 0.85);
	margin: 0;
}

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

.cookie-banner-link:hover {
	color: var(--success-color);
	border-bottom-color: var(--success-color);
}

.cookie-banner-actions {
	display: flex;
	gap: 0.75rem;
	flex-shrink: 0;
}

.cookie-btn-accept,
.cookie-btn-decline {
	padding: 0.75rem 1.5rem;
	border-radius: 10px;
	font-size: 0.9rem;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
	border: none;
	display: flex;
	align-items: center;
	gap: 0.5rem;
	font-family: var(--heading-font);
	white-space: nowrap;
}

.cookie-btn-accept {
	background: linear-gradient(
		135deg,
		var(--accent-color),
		var(--success-color)
	);
	color: var(--contrast-color);
	box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.cookie-btn-accept:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
}

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

.cookie-btn-decline {
	background: rgba(241, 245, 249, 0.1);
	color: rgba(241, 245, 249, 0.8);
	border: 1px solid rgba(241, 245, 249, 0.2);
}

.cookie-btn-decline:hover {
	background: rgba(241, 245, 249, 0.15);
	color: rgba(241, 245, 249, 1);
	border-color: rgba(241, 245, 249, 0.3);
}

/* Cookie Banner Responsive */
@media (max-width: 768px) {
	.cookie-banner-container {
		flex-direction: column;
		align-items: flex-start;
		padding: 1.25rem 1.5rem;
		gap: 1.25rem;
	}

	.cookie-banner-icon {
		width: 48px;
		height: 48px;
	}

	.cookie-banner-icon i {
		font-size: 1.5rem;
	}

	.cookie-banner-title {
		font-size: 1rem;
	}

	.cookie-banner-text {
		font-size: 0.85rem;
	}

	.cookie-banner-actions {
		width: 100%;
		flex-direction: column;
	}

	.cookie-btn-accept,
	.cookie-btn-decline {
		width: 100%;
		justify-content: center;
	}
}

@media (max-width: 480px) {
	.cookie-banner-container {
		padding: 1rem;
		gap: 1rem;
	}

	.cookie-banner-icon {
		width: 44px;
		height: 44px;
	}

	.cookie-banner-icon i {
		font-size: 1.25rem;
	}

	.cookie-btn-accept,
	.cookie-btn-decline {
		padding: 0.625rem 1.25rem;
		font-size: 0.85rem;
	}
}

#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: var(--heading-color);
}

.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(--default-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(--default-color);
	margin-bottom: 1rem;
	font-family: var(--heading-font);
}

.value-text-modern {
	font-size: 0.95rem;
	line-height: 1.7;
	color: var(--info-color);
	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);
}

.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(--default-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;
	}

	.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%;
	}
}

.hero-new {
	position: relative;
	min-height: 70vh;
	display: grid;
	align-items: stretch;
	overflow: hidden;
}
.hero-new .container {
	position: relative;
	z-index: 2;
}
.hero-canvas {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	display: block;
	z-index: 1;
}
.hero-new::after {
	/* soft vignette + gradient overlay for readability */
	content: '';
	position: absolute;
	inset: 0;
	background: radial-gradient(
			1200px 600px at 70% 30%,
			rgba(5, 150, 105, 0.12),
			transparent 60%
		),
		radial-gradient(
			1200px 600px at 30% 70%,
			rgba(37, 99, 235, 0.08),
			transparent 60%
		),
		linear-gradient(
			180deg,
			rgba(240, 253, 244, 0.4) 0%,
			rgba(243, 244, 246, 0.6) 100%
		);
	pointer-events: none;
	z-index: 1;
}

/* About Hero New */
.about-hero-new {
	position: relative;
	min-height: 75vh;
	display: grid;
	align-items: stretch;
	overflow: hidden;
	padding: 120px 0 80px;
}

.about-canvas {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	display: block;
	z-index: 1;
}

.about-hero-new::after {
	content: '';
	position: absolute;
	inset: 0;
	background: radial-gradient(
			1200px 600px at 80% -20%,
			color-mix(in srgb, var(--accent-color) 14%, transparent),
			transparent 60%
		),
		radial-gradient(
			1200px 600px at 20% 80%,
			color-mix(in srgb, var(--info-color) 10%, transparent),
			transparent 60%
		),
		linear-gradient(
			180deg,
			rgba(240, 253, 244, 0.4) 0%,
			rgba(243, 244, 246, 0.6) 100%
		);
	pointer-events: none;
	z-index: 1;
}

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

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

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

.about-hero-title-new {
	font-size: 3rem;
	font-weight: 700;
	line-height: 1.2;
	margin-bottom: 1.5rem;
	color: var(--info-color);
}

.about-hero-title-new .highlight-text {
	background: linear-gradient(
		135deg,
		var(--accent-color),
		var(--success-color)
	);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.about-hero-description-new {
	font-size: 1.15rem;
	line-height: 1.8;
	color: var(--accent-color);
	margin-bottom: 2rem;
	max-width: 800px;
	margin-left: auto;
	margin-right: auto;
}

.min-vh-75 {
	min-height: 75vh;
}

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

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

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

/* FAQ Hero New */
.faq-hero-new {
	position: relative;
	min-height: 75vh;
	display: grid;
	align-items: stretch;
	overflow: hidden;
	padding: 120px 0 80px;
}

.faq-canvas {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	display: block;
	z-index: 1;
}

.faq-hero-new::after {
	content: '';
	position: absolute;
	inset: 0;
	background: radial-gradient(
			1200px 600px at 80% -20%,
			color-mix(in srgb, var(--accent-color) 14%, transparent),
			transparent 60%
		),
		linear-gradient(
			180deg,
			rgba(15, 23, 42, 0.25) 0%,
			rgba(15, 23, 42, 0.65) 100%
		);
	pointer-events: none;
	z-index: 1;
}

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

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

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

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

.faq-hero-title-new .highlight-text {
	background: linear-gradient(
		135deg,
		var(--accent-color),
		var(--success-color)
	);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.faq-hero-description-new {
	font-size: 1.15rem;
	line-height: 1.8;
	color: rgba(255, 255, 255, 0.9);
	margin-bottom: 2rem;
	max-width: 800px;
	margin-left: auto;
	margin-right: auto;
}

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

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

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

/* Thank You Hero New */
.thanks-hero-new {
	position: relative;
	min-height: 75vh;
	display: grid;
	align-items: stretch;
	overflow: hidden;
	padding: 120px 0 80px;
}

.thanks-canvas {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	display: block;
	z-index: 1;
}

.thanks-hero-new::after {
	content: '';
	position: absolute;
	inset: 0;
	background: radial-gradient(
			1200px 600px at 80% -20%,
			color-mix(in srgb, var(--success-color) 14%, transparent),
			transparent 60%
		),
		linear-gradient(
			180deg,
			rgba(15, 23, 42, 0.25) 0%,
			rgba(15, 23, 42, 0.65) 100%
		);
	pointer-events: none;
	z-index: 1;
}

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

.thanks-success-icon {
	margin-bottom: 2rem;
}

.success-icon-bg-new {
	width: 120px;
	height: 120px;
	margin: 0 auto;
	background: linear-gradient(
		135deg,
		var(--success-color),
		var(--accent-color)
	);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 10px 40px rgba(5, 150, 105, 0.3);
	animation: successPulse 2s ease-in-out infinite;
}

.success-icon-bg-new i {
	font-size: 4rem;
	color: var(--contrast-color);
}

@keyframes successPulse {
	0%,
	100% {
		transform: scale(1);
		box-shadow: 0 10px 40px rgba(5, 150, 105, 0.3);
	}
	50% {
		transform: scale(1.05);
		box-shadow: 0 15px 50px rgba(5, 150, 105, 0.5);
	}
}

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

.thanks-hero-title-new .highlight-text {
	background: linear-gradient(
		135deg,
		var(--success-color),
		var(--accent-color)
	);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.thanks-hero-description-new {
	font-size: 1.15rem;
	line-height: 1.8;
	color: rgba(255, 255, 255, 0.9);
	margin-bottom: 2rem;
	max-width: 800px;
	margin-left: auto;
	margin-right: auto;
}

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

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

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

	.success-icon-bg-new {
		width: 100px;
		height: 100px;
	}

	.success-icon-bg-new i {
		font-size: 3rem;
	}
}

/* Thanks Content Section */
.thanks-content-section {
	padding: 80px 0;
	background: var(--background-color);
}

.thanks-content-wrapper {
	max-width: 1000px;
	margin: 0 auto;
}

.thanks-main-title {
	font-size: 2.5rem;
	font-weight: 700;
	line-height: 1.3;
	color: var(--contrast-color);
	font-family: var(--heading-font);
}

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

.thanks-main-description {
	font-size: 1.15rem;
	line-height: 1.8;
	color: rgba(241, 245, 249, 0.85);
	max-width: 800px;
	margin: 0 auto;
}

.next-steps-section {
	margin-top: 3rem;
}

.steps-title {
	font-size: 2rem;
	font-weight: 700;
	color: var(--contrast-color);
	margin-bottom: 2rem;
	font-family: var(--heading-font);
}

.step-card-new {
	background: linear-gradient(
		135deg,
		rgba(30, 41, 59, 0.8) 0%,
		rgba(15, 23, 42, 0.9) 100%
	);
	border: 1px solid rgba(37, 99, 235, 0.2);
	border-radius: 16px;
	padding: 2rem;
	height: 100%;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	position: relative;
	overflow: hidden;
}

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

.step-card-new:hover {
	transform: translateY(-8px);
	border-color: rgba(37, 99, 235, 0.4);
	box-shadow: 0 20px 40px rgba(37, 99, 235, 0.2);
}

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

.step-icon-wrapper {
	width: 64px;
	height: 64px;
	background: linear-gradient(
		135deg,
		var(--accent-color),
		var(--success-color)
	);
	border-radius: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 1.5rem;
	box-shadow: 0 8px 24px rgba(37, 99, 235, 0.3);
}

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

.step-title {
	font-size: 1.25rem;
	font-weight: 600;
	color: var(--contrast-color);
	margin-bottom: 1rem;
	font-family: var(--heading-font);
}

.step-text {
	font-size: 1rem;
	line-height: 1.7;
	color: rgba(241, 245, 249, 0.8);
	margin: 0;
}

.cta-section-new {
	margin-top: 4rem;
	padding: 3rem;
	background: linear-gradient(
		135deg,
		rgba(37, 99, 235, 0.1) 0%,
		rgba(5, 150, 105, 0.1) 100%
	);
	border-radius: 20px;
	border: 1px solid rgba(37, 99, 235, 0.2);
}

.cta-title {
	font-size: 1.75rem;
	font-weight: 700;
	color: var(--contrast-color);
	margin-bottom: 2rem;
	font-family: var(--heading-font);
}

.cta-buttons-wrapper {
	display: flex;
	gap: 1rem;
	justify-content: center;
	flex-wrap: wrap;
}

.btn-cta-primary,
.btn-cta-secondary {
	display: inline-flex;
	align-items: center;
	gap: 0.75rem;
	padding: 1rem 2rem;
	font-size: 1.05rem;
	font-weight: 600;
	border-radius: 12px;
	text-decoration: none;
	transition: all 0.3s ease;
	font-family: var(--heading-font);
}

.btn-cta-primary {
	background: linear-gradient(
		135deg,
		var(--accent-color),
		var(--success-color)
	);
	color: var(--contrast-color);
	box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.btn-cta-primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 25px rgba(37, 99, 235, 0.4);
	color: var(--contrast-color);
}

.btn-cta-secondary {
	background: rgba(30, 41, 59, 0.8);
	color: var(--contrast-color);
	border: 1px solid rgba(37, 99, 235, 0.3);
}

.btn-cta-secondary:hover {
	background: rgba(30, 41, 59, 1);
	border-color: var(--accent-color);
	transform: translateY(-2px);
	color: var(--contrast-color);
}

.contact-urgent {
	margin-top: 3rem;
}

.urgent-box {
	background: linear-gradient(
		135deg,
		rgba(239, 68, 68, 0.1) 0%,
		rgba(37, 99, 235, 0.1) 100%
	);
	border: 1px solid rgba(37, 99, 235, 0.3);
	border-radius: 16px;
	padding: 2rem;
	text-align: center;
}

.urgent-title {
	font-size: 1.5rem;
	font-weight: 600;
	color: var(--contrast-color);
	margin-bottom: 1rem;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.75rem;
	font-family: var(--heading-font);
}

.urgent-title i {
	color: var(--accent-color);
	font-size: 1.75rem;
}

.urgent-text {
	font-size: 1.05rem;
	line-height: 1.7;
	color: rgba(241, 245, 249, 0.85);
	margin: 0;
}

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

.urgent-link:hover {
	color: var(--success-color);
	border-bottom-color: var(--success-color);
}

.why-choose-section {
	padding: 80px 0;
	background: linear-gradient(
		180deg,
		var(--background-color) 0%,
		rgba(15, 23, 42, 0.95) 100%
	);
}

.section-title {
	font-size: 2.5rem;
	font-weight: 700;
	line-height: 1.3;
	color: var(--accent-color);
	font-family: var(--heading-font);
}

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

.section-description {
	font-size: 1.15rem;
	line-height: 1.8;
	color: rgba(241, 245, 249, 0.85);
	max-width: 700px;
	margin: 0 auto;
}

.feature-card-new {
	background: linear-gradient(
		135deg,
		rgba(30, 41, 59, 0.6) 0%,
		rgba(15, 23, 42, 0.8) 100%
	);
	border: 1px solid rgba(37, 99, 235, 0.2);
	border-radius: 16px;
	padding: 2.5rem 2rem;
	height: 100%;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	position: relative;
	overflow: hidden;
}

.feature-card-new::after {
	content: '';
	position: absolute;
	top: -50%;
	right: -50%;
	width: 200%;
	height: 200%;
	background: radial-gradient(
		circle,
		rgba(37, 99, 235, 0.1) 0%,
		transparent 70%
	);
	opacity: 0;
	transition: opacity 0.3s ease;
}

.feature-card-new:hover {
	transform: translateY(-8px);
	border-color: rgba(37, 99, 235, 0.4);
	box-shadow: 0 20px 40px rgba(37, 99, 235, 0.2);
}

.feature-card-new:hover::after {
	opacity: 1;
}

.feature-icon-new {
	width: 72px;
	height: 72px;
	background: linear-gradient(
		135deg,
		var(--accent-color),
		var(--success-color)
	);
	border-radius: 18px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 1.5rem;
	box-shadow: 0 8px 24px rgba(37, 99, 235, 0.3);
	position: relative;
	z-index: 1;
}

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

.feature-title-new {
	font-size: 1.35rem;
	font-weight: 600;
	color: var(--contrast-color);
	margin-bottom: 1rem;
	font-family: var(--heading-font);
	position: relative;
	z-index: 1;
}

.feature-text-new {
	font-size: 1rem;
	line-height: 1.7;
	color: rgba(241, 245, 249, 0.8);
	margin: 0;
	position: relative;
	z-index: 1;
}

@media (max-width: 768px) {
	.thanks-content-section {
		padding: 60px 0;
	}

	.thanks-main-title {
		font-size: 2rem;
	}

	.thanks-main-description {
		font-size: 1rem;
	}

	.steps-title {
		font-size: 1.75rem;
	}

	.step-card-new {
		padding: 1.5rem;
	}

	.cta-section-new {
		padding: 2rem 1.5rem;
	}

	.cta-title {
		font-size: 1.5rem;
	}

	.cta-buttons-wrapper {
		flex-direction: column;
	}

	.btn-cta-primary,
	.btn-cta-secondary {
		width: 100%;
		justify-content: center;
	}

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

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

	.feature-card-new {
		padding: 2rem 1.5rem;
	}
}

.floating-cards .floating-card {
	background: rgba(30, 41, 59, 0.6);
	border: 1px solid rgba(37, 99, 235, 0.2);
	backdrop-filter: blur(10px);
}

.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;
	}
}

/* =========================================
   New Header Design
   ========================================= */
.header-new {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	background: linear-gradient(
		180deg,
		rgba(15, 23, 42, 0.98),
		rgba(30, 41, 59, 0.95)
	);
	backdrop-filter: blur(24px) saturate(180%);
	-webkit-backdrop-filter: blur(24px) saturate(180%);
	border-bottom: 2px solid rgba(5, 150, 105, 0.2);
	transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
	box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.header-new::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 2px;
	background: linear-gradient(
		90deg,
		rgba(5, 150, 105, 0.8),
		rgba(37, 99, 235, 0.8)
	);
	opacity: 0;
	transition: opacity 0.4s ease;
}

.header-new.scrolled::before {
	opacity: 1;
}

/* Add padding to body when header is fixed */
body:has(.header-new) {
	padding-top: 85px;
}

@media (max-width: 767px) {
	body:has(.header-new) {
		padding-top: 75px;
	}
}

.header-new.scrolled {
	background: linear-gradient(
		180deg,
		rgba(15, 23, 42, 0.98),
		rgba(30, 41, 59, 0.98)
	);
	border-bottom-color: rgba(5, 150, 105, 0.3);
	box-shadow:
		0 8px 40px rgba(5, 150, 105, 0.15),
		0 0 20px rgba(37, 99, 235, 0.1);
}

.header-wrapper {
	padding: 0;
}

.header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 1.25rem 0;
	gap: 2rem;
}

.logo-new {
	font-size: 30px;
}

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

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

.nav-new {
	flex: 1;
	display: flex;
	justify-content: center;
}

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

.nav-link-new {
	display: flex;
	align-items: center;
	padding: 0.75rem 1.5rem;
	color: rgba(203, 213, 225, 0.9);
	text-decoration: none;
	font-size: 0.95rem;
	font-weight: 600;
	border-radius: 12px;
	transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
	position: relative;
	font-family: var(--nav-font);
	overflow: hidden;
}

.nav-link-new::before {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(
		90deg,
		rgba(5, 150, 105, 0.8),
		rgba(37, 99, 235, 0.8)
	);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.3s ease;
	border-radius: 3px 3px 0 0;
}

.nav-link-new::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(
		135deg,
		rgba(5, 150, 105, 0.1),
		rgba(37, 99, 235, 0.05)
	);
	opacity: 0;
	transition: opacity 0.3s ease;
	border-radius: 12px;
}

.nav-link-new:hover,
.nav-link-new.active {
	color: rgba(16, 185, 129, 1);
	transform: translateY(-2px);
}

.nav-link-new:hover::before,
.nav-link-new.active::before {
	transform: scaleX(1);
}

.nav-link-new:hover::after,
.nav-link-new.active::after {
	opacity: 1;
}

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

.btn-faq-new {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.65rem 1.25rem;
	color: rgba(16, 185, 129, 1);
	text-decoration: none;
	font-size: 0.9rem;
	font-weight: 600;
	border-radius: 12px;
	transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
	border: 2px solid rgba(5, 150, 105, 0.3);
	background: rgba(5, 150, 105, 0.1);
	position: relative;
	overflow: hidden;
}

.btn-faq-new::before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(
		135deg,
		rgba(5, 150, 105, 0.2),
		rgba(37, 99, 235, 0.15)
	);
	opacity: 0;
	transition: opacity 0.3s ease;
}

.btn-faq-new:hover {
	color: #ffffff;
	background: linear-gradient(
		135deg,
		rgba(5, 150, 105, 0.8),
		rgba(37, 99, 235, 0.7)
	);
	border-color: rgba(5, 150, 105, 0.6);
	transform: translateY(-3px);
	box-shadow: 0 8px 20px rgba(5, 150, 105, 0.3);
}

.btn-faq-new:hover::before {
	opacity: 1;
}

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

.btn-cta-new:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 25px rgba(37, 99, 235, 0.4);
	color: var(--contrast-color);
}

.btn-cta-new i {
	transition: transform 0.3s ease;
}

.btn-cta-new:hover i {
	transform: translateX(3px);
}

.mobile-menu-toggle {
	display: none;
	flex-direction: column;
	gap: 5px;
	background: transparent;
	border: none;
	padding: 0.5rem;
	cursor: pointer;
	width: 32px;
	height: 32px;
	justify-content: center;
	align-items: center;
}

.mobile-menu-toggle span {
	display: block;
	width: 24px;
	height: 2px;
	background: rgba(16, 185, 129, 1);
	border-radius: 2px;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	transform-origin: center;
}

.mobile-menu-toggle:hover span {
	background: rgba(129, 140, 248, 1);
}

.mobile-menu-toggle.active span:nth-child(1) {
	transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
	opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
	transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Menu - New Design */
.mobile-menu {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 10000;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition:
		opacity 0.3s ease,
		visibility 0.3s ease;
}

.mobile-menu.is-open {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
}

.mobile-menu-backdrop {
	position: absolute;
	inset: 0;
	background: rgba(15, 23, 42, 0.98);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
}

.mobile-menu-panel {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	max-width: 400px;
	background: linear-gradient(
		180deg,
		rgba(15, 23, 42, 0.99) 0%,
		rgba(15, 23, 42, 0.95) 100%
	);
	box-shadow: -10px 0 40px rgba(0, 0, 0, 0.5);
	display: flex;
	flex-direction: column;
	transform: translateX(100%);
	transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	overflow-y: auto;
}

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

.mobile-menu-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 1.5rem;
	border-bottom: 1px solid rgba(37, 99, 235, 0.2);
	flex-shrink: 0;
}

.mobile-menu-logo img {
	height: 40px;
	width: auto;
}

.mobile-menu-close-btn {
	background: transparent;
	border: none;
	color: var(--accent-color);
	font-size: 1.5rem;
	cursor: pointer;
	padding: 0.5rem;
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 8px;
	transition: all 0.3s ease;
}

.mobile-menu-close-btn:hover {
	background: rgba(37, 99, 235, 0.1);
	transform: rotate(90deg);
}

.mobile-menu-nav {
	flex: 1;
	padding: 1rem;
	overflow-y: auto;
}

.mobile-menu-links {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.mobile-menu-link {
	display: block;
	padding: 1rem 1.25rem;
	color: rgba(241, 245, 249, 0.9);
	text-decoration: none;
	font-size: 1rem;
	font-weight: 500;
	border-radius: 10px;
	transition: all 0.3s ease;
	border: 1px solid transparent;
	font-family: var(--nav-font);
}

.mobile-menu-link:hover,
.mobile-menu-link:focus {
	color: var(--accent-color);
	background: rgba(37, 99, 235, 0.1);
	border-color: rgba(37, 99, 235, 0.3);
	transform: translateX(4px);
}

.mobile-menu-footer {
	padding: 1.5rem;
	border-top: 1px solid rgba(37, 99, 235, 0.2);
	flex-shrink: 0;
}

.mobile-menu-contact {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.mobile-menu-contact-item {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	color: rgba(241, 245, 249, 0.8);
	text-decoration: none;
	font-size: 0.9rem;
	padding: 0.75rem;
	border-radius: 8px;
	transition: all 0.3s ease;
}

.mobile-menu-contact-item:hover {
	color: var(--accent-color);
	background: rgba(37, 99, 235, 0.1);
}

.mobile-menu-contact-item i {
	font-size: 1rem;
	color: var(--accent-color);
	width: 20px;
	text-align: center;
}

/* Mobile Menu Responsive */
@media (max-width: 991.98px) {
	.mobile-menu-toggle {
		display: flex;
	}

	.mobile-menu-panel {
		max-width: 100%;
	}
}

@media (max-width: 575px) {
	.mobile-menu-panel {
		max-width: 100%;
	}

	.mobile-menu-header {
		padding: 1.25rem;
	}

	.mobile-menu-nav {
		padding: 0.75rem;
	}

	.mobile-menu-link {
		padding: 0.875rem 1rem;
		font-size: 0.95rem;
	}

	.mobile-menu-footer {
		padding: 1.25rem;
	}
}

.btn-cta-mobile {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.75rem;
	padding: 1rem 2rem;
	background: linear-gradient(
		135deg,
		var(--accent-color),
		var(--heading-color)
	);
	color: var(--contrast-color);
	text-decoration: none;
	font-size: 1.05rem;
	font-weight: 600;
	border-radius: 12px;
	transition: all 0.3s ease;
	box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
	width: 100%;
}

.btn-cta-mobile:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 25px rgba(37, 99, 235, 0.4);
	color: var(--contrast-color);
}

/* =========================================
   New Footer Design
   ========================================= */
.footer-new {
	background: linear-gradient(180deg, var(--background-color) 0%, #0a0f1a 100%);
	border-top: 1px solid rgba(37, 99, 235, 0.15);
	position: relative;
	overflow: hidden;
}

.footer-new::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 1px;
	background: linear-gradient(
		90deg,
		transparent,
		var(--accent-color),
		transparent
	);
}

.footer-main {
	padding: 4rem 0 2rem;
}

.footer-grid {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr 1.5fr;
	gap: 3rem;
	align-items: start;
}

.footer-brand-new {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.footer-logo-new {
	font-size: 25px;
}

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

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

.footer-description-new {
	color: rgba(241, 245, 249, 0.75);
	font-size: 0.95rem;
	line-height: 1.7;
	margin: 0;
}

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

.social-link-new {
	width: 42px;
	height: 42px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(37, 99, 235, 0.1);
	border: 1px solid rgba(37, 99, 235, 0.2);
	border-radius: 10px;
	color: var(--accent-color);
	text-decoration: none;
	font-size: 1.1rem;
	transition: all 0.3s ease;
}

.social-link-new:hover {
	background: var(--accent-color);
	color: var(--contrast-color);
	transform: translateY(-3px);
	box-shadow: 0 6px 20px rgba(37, 99, 235, 0.3);
	border-color: var(--accent-color);
}

.footer-nav-new {
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
}

.footer-title-new {
	font-size: 1rem;
	font-weight: 600;
	color: var(--heading-color);
	margin: 0;
	font-family: var(--heading-font);
	text-transform: uppercase;
	letter-spacing: 0.5px;
	font-size: 0.9rem;
}

.footer-links-new {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.footer-links-new a {
	color: rgba(241, 245, 249, 0.75);
	text-decoration: none;
	font-size: 0.95rem;
	transition: all 0.3s ease;
	display: inline-block;
}

.footer-links-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(241, 245, 249, 0.75);
	font-size: 0.9rem;
	line-height: 1.6;
	margin: 0;
}

.newsletter-form-new {
	margin-top: 0.5rem;
}

.newsletter-input-wrapper {
	display: flex;
	gap: 0.5rem;
	background: rgba(30, 41, 59, 0.6);
	border: 1px solid rgba(37, 99, 235, 0.2);
	border-radius: 12px;
	padding: 0.5rem;
	transition: all 0.3s ease;
}

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

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

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

.newsletter-btn-new {
	width: 44px;
	height: 44px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(
		135deg,
		var(--accent-color),
		var(--heading-color)
	);
	border: none;
	border-radius: 10px;
	color: var(--contrast-color);
	cursor: pointer;
	transition: all 0.3s ease;
	flex-shrink: 0;
}

.newsletter-btn-new:hover {
	transform: scale(1.05);
	box-shadow: 0 4px 15px rgba(37, 99, 235, 0.4);
}

.footer-contact-new {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
	margin-top: 1rem;
}

.footer-contact-link {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	color: rgba(241, 245, 249, 0.75);
	text-decoration: none;
	font-size: 0.9rem;
	transition: all 0.3s ease;
}

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

.footer-contact-link i {
	color: var(--accent-color);
	font-size: 1rem;
}

.footer-bottom-new {
	background: rgba(15, 23, 42, 0.8);
	border-top: 1px solid rgba(37, 99, 235, 0.15);
	padding: 2rem 0;
}

.footer-bottom-inner {
	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(241, 245, 249, 0.7);
	font-size: 0.9rem;
}

.footer-copyright-new strong {
	color: var(--heading-color);
}

.footer-legal-info {
	font-size: 0.85rem !important;
	color: rgba(241, 245, 249, 0.6) !important;
	line-height: 1.6;
}

.footer-legal-info a {
	color: rgba(241, 245, 249, 0.7);
	text-decoration: none;
	transition: color 0.3s ease;
}

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

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

.footer-legal-links-new a {
	color: rgba(241, 245, 249, 0.7);
	text-decoration: none;
	font-size: 0.9rem;
	transition: color 0.3s ease;
}

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

.separator-new {
	color: rgba(241, 245, 249, 0.4);
	font-size: 0.9rem;
}

/* ===== Testimonials v2 ===== */
.testimonials-v2 .tv2-card {
	height: 100%;
	border: 1px solid rgba(37, 99, 235, 0.2);
	background: rgba(30, 41, 59, 0.5);
	border-radius: 16px;
	overflow: hidden;
	backdrop-filter: blur(10px);
}
.testimonials-v2 .tv2-card--video .tv2-body {
	padding: 16px;
}
.testimonials-v2 .tv2-head {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 8px;
}
.testimonials-v2 .tv2-avatar {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	display: grid;
	place-items: center;
	background: rgba(37, 99, 235, 0.2);
	color: var(--accent-color);
	font-weight: 700;
}
.testimonials-v2 .tv2-stack {
	display: grid;
	gap: 12px;
}
.testimonials-v2 .tv2-quote {
	border: 1px solid rgba(37, 99, 235, 0.2);
	background: rgba(30, 41, 59, 0.5);
	border-radius: 14px;
	padding: 16px;
}
.testimonials-v2 .tv2-top {
	display: flex;
	align-items: center;
	gap: 12px;
}
.testimonials-v2 .tv2-badge {
	margin-left: auto;
	background: rgba(16, 185, 129, 0.15);
	color: var(--heading-color);
	padding: 4px 10px;
	border-radius: 999px;
	font-size: 0.8rem;
}
.testimonials-v2 .tv2-tags {
	display: flex;
	gap: 8px;
}
.testimonials-v2 .tv2-tags span {
	background: rgba(37, 99, 235, 0.15);
	border: 1px solid rgba(37, 99, 235, 0.25);
	color: var(--default-color);
	border-radius: 999px;
	padding: 2px 10px;
	font-size: 0.8rem;
}
.testimonials-v2 .tv2-kpi {
	display: flex;
	align-items: center;
	gap: 10px;
	border: 1px dashed rgba(37, 99, 235, 0.35);
	background: rgba(30, 41, 59, 0.35);
	border-radius: 12px;
	padding: 12px 14px;
}
.testimonials-v2 .tv2-kpi i {
	color: var(--accent-color);
	font-size: 1.1rem;
}
.testimonials-v2 .tv2-mini {
	border: 1px solid rgba(37, 99, 235, 0.2);
	background: rgba(30, 41, 59, 0.5);
	border-radius: 14px;
	padding: 14px;
	height: 100%;
}
.testimonials-v2 .tv2-mini .tv2-top {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 6px;
}
.testimonials-v2 .tv2-mini .tv2-avatar {
	width: 34px;
	height: 34px;
	border-radius: 50%;
	display: grid;
	place-items: center;
	background: rgba(37, 99, 235, 0.2);
	color: var(--accent-color);
	font-weight: 700;
}

/* ===== Features v2 - Completely Redesigned ===== */
.features-v2 {
	position: relative;
	overflow: hidden;
}
.features-v2 .features-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 2rem;
	margin-top: 3rem;
}
.features-v2 .f2-card-wrapper {
	position: relative;
	perspective: 1000px;
}
.features-v2 .f2-card {
	position: relative;
	height: 100%;
	transform-style: preserve-3d;
	transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}
.features-v2 .f2-card-wrapper:hover .f2-card {
	transform: translateY(-12px) rotateX(2deg);
}
.features-v2 .f2-card-inner {
	position: relative;
	background: rgba(30, 41, 59, 0.6);
	border: 2px solid rgba(37, 99, 235, 0.2);
	border-radius: 24px;
	padding: 2.5rem 2rem;
	height: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	overflow: hidden;
	backdrop-filter: blur(12px);
	transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}
.features-v2 .f2-card-wrapper:hover .f2-card-inner {
	border-color: rgba(37, 99, 235, 0.5);
	box-shadow:
		0 20px 60px rgba(37, 99, 235, 0.25),
		0 0 40px rgba(5, 150, 105, 0.15);
	transform: scale(1.02);
}
.features-v2 .f2-card-bg {
	position: absolute;
	inset: 0;
	background: radial-gradient(
		circle at 50% 0%,
		rgba(37, 99, 235, 0.1),
		transparent 70%
	);
	opacity: 0;
	transition: opacity 0.5s ease;
	pointer-events: none;
}
.features-v2 .f2-card-wrapper:hover .f2-card-bg {
	opacity: 1;
}
.features-v2 .f2-icon-wrapper {
	position: relative;
	margin-bottom: 1.5rem;
	width: 100px;
	height: 100px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.features-v2 .f2-icon {
	width: 100px;
	height: 100px;
	border-radius: 24px;
	display: grid;
	place-items: center;
	background: linear-gradient(
		135deg,
		rgba(37, 99, 235, 0.2),
		rgba(5, 150, 105, 0.15)
	);
	border: 2px solid rgba(37, 99, 235, 0.4);
	color: var(--accent-color);
	font-size: 2.5rem;
	position: relative;
	z-index: 2;
	transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
	transform: translateZ(0);
}
.features-v2 .f2-card-wrapper:hover .f2-icon {
	transform: scale(1.1) rotate(5deg);
	border-color: rgba(37, 99, 235, 0.7);
	box-shadow: 0 10px 30px rgba(37, 99, 235, 0.4);
}
.features-v2 .f2-icon-glow {
	position: absolute;
	inset: -20px;
	background: radial-gradient(circle, rgba(37, 99, 235, 0.3), transparent 70%);
	border-radius: 50%;
	opacity: 0;
	transition:
		opacity 0.5s ease,
		transform 0.5s ease;
	transform: scale(0.8);
	z-index: 1;
	animation: pulse-glow 3s ease-in-out infinite;
}
.features-v2 .f2-card-wrapper:hover .f2-icon-glow {
	opacity: 1;
	transform: scale(1.2);
}
.features-v2 .f2-body {
	flex: 1;
	width: 100%;
	position: relative;
	z-index: 2;
}
.features-v2 .f2-body h3 {
	margin: 0 0 1rem;
	font-size: 1.5rem;
	color: var(--heading-color);
	font-weight: 700;
	transition: color 0.3s ease;
}
.features-v2 .f2-card-wrapper:hover .f2-body h3 {
	color: var(--accent-color);
}
.features-v2 .f2-body p {
	margin: 0 0 1.5rem;
	color: rgba(241, 245, 249, 0.8);
	line-height: 1.7;
	font-size: 0.95rem;
}
.features-v2 .f2-list {
	margin: 0;
	padding: 0;
	list-style: none;
	display: grid;
	gap: 0.75rem;
	text-align: left;
}
.features-v2 .f2-list li {
	display: flex;
	align-items: flex-start;
	gap: 0.75rem;
	color: rgba(241, 245, 249, 0.9);
	font-size: 0.9rem;
	line-height: 1.6;
	padding: 0.5rem;
	border-radius: 8px;
	background: rgba(30, 41, 59, 0.3);
	transition: all 0.3s ease;
}
.features-v2 .f2-card-wrapper:hover .f2-list li {
	background: rgba(37, 99, 235, 0.1);
	transform: translateX(4px);
}
.features-v2 .f2-list li i {
	color: var(--accent-color);
	font-size: 1.1rem;
	margin-top: 0.1rem;
	flex-shrink: 0;
	transition: transform 0.3s ease;
}
.features-v2 .f2-card-wrapper:hover .f2-list li i {
	transform: scale(1.2);
}

@keyframes pulse-glow {
	0%,
	100% {
		opacity: 0.3;
		transform: scale(0.9);
	}
	50% {
		opacity: 0.6;
		transform: scale(1.1);
	}
}

/* ===== Success v2 - Completely Redesigned ===== */
.success-v2 {
	position: relative;
}
.success-v2 .success-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
	margin-top: 3rem;
	margin-bottom: 4rem;
}
.success-v2 .s2-card-wrapper {
	position: relative;
	perspective: 1200px;
}
.success-v2 .s2-card {
	position: relative;
	height: 100%;
	transform-style: preserve-3d;
	transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}
.success-v2 .s2-card-wrapper:hover .s2-card {
	transform: translateY(-10px) rotateY(2deg);
}
.success-v2 .s2-card-inner {
	position: relative;
	background: rgba(30, 41, 59, 0.7);
	border: 2px solid rgba(5, 150, 105, 0.25);
	border-radius: 20px;
	padding: 2rem;
	height: 100%;
	display: flex;
	flex-direction: column;
	overflow: hidden;
	backdrop-filter: blur(10px);
	transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}
.success-v2 .s2-card-wrapper:hover .s2-card-inner {
	border-color: rgba(5, 150, 105, 0.5);
	box-shadow:
		0 20px 50px rgba(5, 150, 105, 0.2),
		0 0 30px rgba(37, 99, 235, 0.15);
	transform: scale(1.03);
}
.success-v2 .s2-card-shine {
	position: absolute;
	top: -50%;
	left: -50%;
	width: 200%;
	height: 200%;
	background: linear-gradient(
		45deg,
		transparent,
		rgba(255, 255, 255, 0.1),
		transparent
	);
	transform: rotate(45deg);
	transition: all 0.6s ease;
	opacity: 0;
}
.success-v2 .s2-card-wrapper:hover .s2-card-shine {
	animation: shine-sweep 1s ease;
}
.success-v2 .s2-head {
	display: flex;
	align-items: center;
	gap: 1rem;
	margin-bottom: 1.5rem;
	position: relative;
	z-index: 2;
}
.success-v2 .s2-avatar-wrapper {
	position: relative;
	width: 60px;
	height: 60px;
	flex-shrink: 0;
}
.success-v2 .s2-avatar {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	background: linear-gradient(
		135deg,
		rgba(5, 150, 105, 0.3),
		rgba(37, 99, 235, 0.2)
	);
	border: 3px solid rgba(5, 150, 105, 0.4);
	color: var(--heading-color);
	display: grid;
	place-items: center;
	font-weight: 700;
	font-size: 1.2rem;
	position: relative;
	z-index: 2;
	transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}
.success-v2 .s2-card-wrapper:hover .s2-avatar {
	transform: scale(1.1) rotate(5deg);
	border-color: rgba(5, 150, 105, 0.7);
	box-shadow: 0 8px 20px rgba(5, 150, 105, 0.4);
}
.success-v2 .s2-avatar-ring {
	position: absolute;
	inset: -8px;
	border: 2px solid rgba(5, 150, 105, 0.3);
	border-radius: 50%;
	opacity: 0;
	transition: all 0.5s ease;
	animation: ring-pulse 2s ease-in-out infinite;
}
.success-v2 .s2-card-wrapper:hover .s2-avatar-ring {
	opacity: 1;
	transform: scale(1.2);
}
.success-v2 .s2-head-info {
	flex: 1;
}
.success-v2 .s2-head-info strong {
	display: block;
	color: var(--heading-color);
	font-size: 1.1rem;
	margin-bottom: 0.25rem;
	transition: color 0.3s ease;
}
.success-v2 .s2-card-wrapper:hover .s2-head-info strong {
	color: var(--accent-color);
}
.success-v2 .s2-head-info small {
	color: rgba(241, 245, 249, 0.6);
	font-size: 0.85rem;
}
.success-v2 .s2-card-inner h5 {
	color: var(--heading-color);
	font-size: 1.25rem;
	margin-bottom: 0.75rem;
	font-weight: 700;
	position: relative;
	z-index: 2;
	transition: color 0.3s ease;
}
.success-v2 .s2-card-wrapper:hover .s2-card-inner h5 {
	color: var(--success-color);
}
.success-v2 .s2-card-inner p {
	color: rgba(241, 245, 249, 0.85);
	line-height: 1.7;
	margin-bottom: 1.5rem;
	position: relative;
	z-index: 2;
	flex: 1;
}
.success-v2 .s2-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	position: relative;
	z-index: 2;
}
.success-v2 .s2-tags span {
	padding: 0.4rem 1rem;
	border-radius: 999px;
	font-size: 0.8rem;
	background: rgba(5, 150, 105, 0.15);
	border: 1px solid rgba(5, 150, 105, 0.3);
	color: rgba(241, 245, 249, 0.9);
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}
.success-v2 .s2-tags span::before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(
		135deg,
		rgba(5, 150, 105, 0.3),
		rgba(37, 99, 235, 0.2)
	);
	opacity: 0;
	transition: opacity 0.3s ease;
}
.success-v2 .s2-card-wrapper:hover .s2-tags span {
	border-color: rgba(5, 150, 105, 0.5);
	transform: translateY(-2px);
}
.success-v2 .s2-card-wrapper:hover .s2-tags span::before {
	opacity: 1;
}
.success-v2 .s2-tags span {
	position: relative;
	z-index: 1;
}

/* Timeline Cards */
.success-v2 .success-timeline {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 2rem;
	margin-top: 2rem;
}
.success-v2 .s2-card-wrapper--timeline {
	perspective: 1000px;
}
.success-v2 .s2-card--line {
	border-style: dashed;
	border-width: 2px;
}
.success-v2 .s2-card--line .s2-card-inner {
	background: rgba(30, 41, 59, 0.5);
	border-color: rgba(37, 99, 235, 0.3);
	position: relative;
}
.success-v2 .s2-card-wrapper--timeline:hover .s2-card--line .s2-card-inner {
	border-color: rgba(37, 99, 235, 0.6);
	box-shadow: 0 15px 40px rgba(37, 99, 235, 0.2);
}
.success-v2 .s2-line {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	margin-bottom: 1.5rem;
	justify-content: center;
	position: relative;
	z-index: 2;
}
.success-v2 .s2-line-item {
	padding: 0.5rem 1rem;
	border-radius: 12px;
	color: var(--heading-color);
	background: rgba(37, 99, 235, 0.15);
	border: 2px solid rgba(37, 99, 235, 0.3);
	font-size: 0.9rem;
	font-weight: 700;
	transition: all 0.3s ease;
	position: relative;
	z-index: 2;
}
.success-v2 .s2-card-wrapper--timeline:hover .s2-line-item {
	background: rgba(37, 99, 235, 0.25);
	border-color: rgba(37, 99, 235, 0.5);
	transform: scale(1.1);
	box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}
.success-v2 .s2-line-connector {
	width: 30px;
	height: 2px;
	background: linear-gradient(
		90deg,
		rgba(37, 99, 235, 0.4),
		rgba(37, 99, 235, 0.2)
	);
	position: relative;
	transition: all 0.3s ease;
}
.success-v2 .s2-card-wrapper--timeline:hover .s2-line-connector {
	background: linear-gradient(
		90deg,
		rgba(37, 99, 235, 0.7),
		rgba(37, 99, 235, 0.4)
	);
	transform: scaleX(1.2);
}
.success-v2 .s2-steps {
	margin: 0;
	padding: 0;
	list-style: none;
	display: grid;
	gap: 0.75rem;
	position: relative;
	z-index: 2;
}
.success-v2 .s2-steps li {
	display: flex;
	align-items: flex-start;
	gap: 0.75rem;
	color: rgba(241, 245, 249, 0.9);
	font-size: 0.9rem;
	line-height: 1.6;
	padding: 0.75rem;
	border-radius: 10px;
	background: rgba(30, 41, 59, 0.4);
	transition: all 0.3s ease;
}
.success-v2 .s2-card-wrapper--timeline:hover .s2-steps li {
	background: rgba(37, 99, 235, 0.1);
	transform: translateX(6px);
}
.success-v2 .s2-steps li i {
	color: var(--accent-color);
	font-size: 1.1rem;
	margin-top: 0.1rem;
	flex-shrink: 0;
	transition: transform 0.3s ease;
}
.success-v2 .s2-card-wrapper--timeline:hover .s2-steps li i {
	transform: scale(1.2) rotate(5deg);
}
.success-v2 .s2-timeline-glow {
	position: absolute;
	inset: -2px;
	background: radial-gradient(
		circle at 50% 50%,
		rgba(37, 99, 235, 0.2),
		transparent 70%
	);
	border-radius: 20px;
	opacity: 0;
	transition: opacity 0.5s ease;
	pointer-events: none;
	z-index: 1;
}
.success-v2 .s2-card-wrapper--timeline:hover .s2-timeline-glow {
	opacity: 1;
}

@keyframes shine-sweep {
	0% {
		transform: translateX(-100%) translateY(-100%) rotate(45deg);
		opacity: 0;
	}
	50% {
		opacity: 1;
	}
	100% {
		transform: translateX(100%) translateY(100%) rotate(45deg);
		opacity: 0;
	}
}
@keyframes ring-pulse {
	0%,
	100% {
		transform: scale(1);
		opacity: 0.3;
	}
	50% {
		transform: scale(1.15);
		opacity: 0.6;
	}
}

/* Responsive Pricing & Features Slider */
@media (max-width: 991px) {
	.pricing .pricing-grid {
		grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
		gap: 2rem;
	}
	.pricing-card-inner {
		padding: 2rem;
	}
	.price .amount {
		font-size: 3.5rem;
	}
	.program-slide-inner {
		padding: 2.5rem;
	}
	.program-icon {
		width: 80px;
		height: 80px;
	}
	.program-icon i {
		font-size: 2.5rem;
	}
	.program-slide h3 {
		font-size: 1.75rem;
	}
}

@media (max-width: 767px) {
	.pricing .pricing-grid {
		grid-template-columns: 1fr;
		gap: 2rem;
	}
	.pricing-card-inner {
		padding: 1.75rem;
	}
	.price .amount {
		font-size: 3rem;
	}
	.program-slide-inner {
		padding: 2rem;
	}
	.program-icon {
		width: 70px;
		height: 70px;
	}
	.program-icon i {
		font-size: 2rem;
	}
	.program-slide h3 {
		font-size: 1.5rem;
	}
}

/* Responsive Features v2 & Success v2 */
@media (max-width: 991px) {
	.features-v2 .features-grid {
		grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
		gap: 1.5rem;
	}
	.features-v2 .f2-card-inner {
		padding: 2rem 1.5rem;
	}
	.features-v2 .f2-icon {
		width: 80px;
		height: 80px;
		font-size: 2rem;
	}
	.success-v2 .success-grid {
		grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
		gap: 1.5rem;
	}
	.success-v2 .success-timeline {
		grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
		gap: 1.5rem;
	}
}

@media (max-width: 767px) {
	.features-v2 .features-grid {
		grid-template-columns: 1fr;
		gap: 1.5rem;
	}
	.features-v2 .f2-card-inner {
		padding: 1.75rem 1.25rem;
	}
	.features-v2 .f2-icon {
		width: 70px;
		height: 70px;
		font-size: 1.75rem;
	}
	.features-v2 .f2-body h3 {
		font-size: 1.3rem;
	}
	.success-v2 .success-grid {
		grid-template-columns: 1fr;
		gap: 1.5rem;
	}
	.success-v2 .s2-card-inner {
		padding: 1.5rem;
	}
	.success-v2 .success-timeline {
		grid-template-columns: 1fr;
		gap: 1.5rem;
	}
	.success-v2 .s2-avatar {
		width: 50px;
		height: 50px;
		font-size: 1rem;
	}
}

/* Responsive Header & Footer */
@media (max-width: 1199px) {
	.nav-new {
		display: none;
	}

	.mobile-menu-toggle {
		display: flex;
	}

	.footer-grid {
		grid-template-columns: 1.5fr 1fr 1fr;
		gap: 2.5rem;
	}

	.footer-newsletter-new {
		grid-column: 1 / -1;
	}
}

@media (max-width: 991px) {
	.header-inner {
		padding: 1rem 0;
	}

	.btn-faq-new {
		display: none;
	}

	.footer-grid {
		grid-template-columns: 1fr 1fr;
		gap: 2rem;
	}

	.footer-brand-new {
		grid-column: 1 / -1;
	}
}

@media (max-width: 767px) {
	.header-inner {
		padding: 0.875rem 0;
	}

	.logo-img-new {
		height: 40px;
	}

	.btn-cta-new {
		padding: 0.65rem 1.25rem;
		font-size: 0.9rem;
	}

	.btn-cta-new span {
		display: none;
	}

	.btn-cta-new i {
		margin: 0;
	}

	.footer-grid {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.footer-bottom-inner {
		flex-direction: column;
		text-align: center;
		gap: 1rem;
	}

	.footer-legal-links-new {
		justify-content: center;
	}

	.mobile-menu-container {
		padding: 1.5rem;
	}
}

@media (max-width: 575px) {
	.btn-cta-new {
		padding: 0.6rem;
		width: 44px;
		height: 44px;
		justify-content: center;
	}

	.btn-cta-new i {
		margin: 0;
	}
}

/* ================================
   Testimonials Redesign
   ================================ */
/* ===== Testimonials New - Dark Theme ===== */
.testimonials-new {
	background: linear-gradient(180deg, #0f172a 0%, #1e293b 100%);
	position: relative;
	overflow: hidden;
}

.testimonials-new::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: radial-gradient(
			circle at 20% 30%,
			rgba(5, 150, 105, 0.1),
			transparent 50%
		),
		radial-gradient(circle at 80% 70%, rgba(37, 99, 235, 0.08), transparent 50%);
	pointer-events: none;
	z-index: 0;
}

.testimonials-new .container {
	position: relative;
	z-index: 1;
}

.testimonials-new .section-title h2 {
	color: #ffffff;
}

.testimonials-new .section-title p {
	color: rgba(203, 213, 225, 0.8);
}

/* Main Testimonial Card */
.testimonial-card-main {
	background: rgba(30, 41, 59, 0.8);
	border: 2px solid rgba(5, 150, 105, 0.3);
	border-radius: 24px;
	padding: 2rem;
	height: 100%;
	backdrop-filter: blur(12px);
	transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
	position: relative;
	overflow: hidden;
}

.testimonial-card-main::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(
		90deg,
		rgba(5, 150, 105, 0.8),
		rgba(37, 99, 235, 0.8)
	);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.4s ease;
}

.testimonial-card-main:hover {
	transform: translateY(-8px);
	border-color: rgba(5, 150, 105, 0.5);
	box-shadow:
		0 20px 60px rgba(5, 150, 105, 0.2),
		0 0 40px rgba(37, 99, 235, 0.1);
}

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

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

.testimonial-avatar-large {
	width: 70px;
	height: 70px;
	border-radius: 50%;
	background: linear-gradient(
		135deg,
		rgba(5, 150, 105, 0.3),
		rgba(37, 99, 235, 0.3)
	);
	border: 2px solid rgba(5, 150, 105, 0.4);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5rem;
	font-weight: 700;
	color: #ffffff;
	flex-shrink: 0;
}

.testimonial-info h4 {
	color: #ffffff;
	font-size: 1.25rem;
	font-weight: 700;
	margin: 0 0 0.25rem 0;
}

.testimonial-role {
	color: rgba(203, 213, 225, 0.7);
	font-size: 0.9rem;
	margin: 0 0 0.5rem 0;
}

.testimonial-stars {
	display: flex;
	gap: 0.25rem;
}

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

.testimonial-quote-icon {
	font-size: 3rem;
	color: rgba(5, 150, 105, 0.3);
	margin-bottom: 1rem;
	line-height: 1;
}

.testimonial-text {
	color: rgba(241, 245, 249, 0.9);
	font-size: 1.05rem;
	line-height: 1.8;
	margin-bottom: 1.5rem;
}

.testimonial-badge {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	background: rgba(5, 150, 105, 0.2);
	border: 1px solid rgba(5, 150, 105, 0.4);
	border-radius: 50px;
	padding: 0.5rem 1rem;
	color: rgba(16, 185, 129, 1);
	font-weight: 600;
	font-size: 0.9rem;
}

.testimonial-badge i {
	color: rgba(16, 185, 129, 1);
}

/* Secondary Testimonial Cards */
.testimonial-card-secondary {
	background: rgba(30, 41, 59, 0.6);
	border: 1px solid rgba(37, 99, 235, 0.2);
	border-radius: 20px;
	padding: 1.5rem;
	backdrop-filter: blur(10px);
	transition: all 0.3s ease;
}

.testimonial-card-secondary:hover {
	transform: translateY(-4px);
	border-color: rgba(37, 99, 235, 0.4);
	box-shadow: 0 10px 30px rgba(37, 99, 235, 0.15);
}

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

.testimonial-avatar {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background: linear-gradient(
		135deg,
		rgba(37, 99, 235, 0.3),
		rgba(5, 150, 105, 0.3)
	);
	border: 1px solid rgba(37, 99, 235, 0.4);
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	color: #ffffff;
	font-size: 1rem;
	flex-shrink: 0;
}

.testimonial-meta h5 {
	color: #ffffff;
	font-size: 1rem;
	font-weight: 700;
	margin: 0 0 0.25rem 0;
}

.testimonial-meta p {
	color: rgba(203, 213, 225, 0.7);
	font-size: 0.85rem;
	margin: 0;
}

.testimonial-badge-small {
	margin-left: auto;
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	background: rgba(37, 99, 235, 0.2);
	border: 1px solid rgba(37, 99, 235, 0.3);
	border-radius: 50px;
	padding: 0.35rem 0.75rem;
	color: rgba(129, 140, 248, 1);
	font-size: 0.8rem;
	font-weight: 600;
}

.testimonial-badge-small i {
	color: rgba(129, 140, 248, 1);
	font-size: 0.85rem;
}

.testimonial-text-small {
	color: rgba(241, 245, 249, 0.85);
	font-size: 0.95rem;
	line-height: 1.7;
	margin-bottom: 1rem;
}

.testimonial-tags {
	display: flex;
	gap: 0.5rem;
	flex-wrap: wrap;
}

.testimonial-tags .tag {
	background: rgba(5, 150, 105, 0.15);
	border: 1px solid rgba(5, 150, 105, 0.3);
	border-radius: 50px;
	padding: 0.25rem 0.75rem;
	font-size: 0.8rem;
	color: rgba(16, 185, 129, 1);
	font-weight: 500;
}

/* Featured Testimonial Card */
.testimonial-card-featured {
	background: linear-gradient(
		135deg,
		rgba(5, 150, 105, 0.15),
		rgba(37, 99, 235, 0.1)
	);
	border: 2px solid rgba(5, 150, 105, 0.4);
	border-radius: 24px;
	padding: 2rem;
	height: 100%;
	backdrop-filter: blur(12px);
	transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
	position: relative;
	overflow: hidden;
}

.testimonial-card-featured::before {
	content: '';
	position: absolute;
	top: -50%;
	right: -50%;
	width: 200%;
	height: 200%;
	background: radial-gradient(circle, rgba(5, 150, 105, 0.1), transparent 70%);
	opacity: 0;
	transition: opacity 0.4s ease;
}

.testimonial-card-featured:hover {
	transform: translateY(-8px) scale(1.02);
	border-color: rgba(5, 150, 105, 0.6);
	box-shadow:
		0 25px 70px rgba(5, 150, 105, 0.25),
		0 0 50px rgba(37, 99, 235, 0.15);
}

.testimonial-card-featured:hover::before {
	opacity: 1;
}

.featured-badge {
	position: absolute;
	top: 1rem;
	right: 1rem;
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	background: rgba(5, 150, 105, 0.3);
	border: 1px solid rgba(5, 150, 105, 0.5);
	border-radius: 50px;
	padding: 0.4rem 0.9rem;
	color: rgba(16, 185, 129, 1);
	font-size: 0.85rem;
	font-weight: 700;
	z-index: 2;
}

.featured-badge i {
	color: #fbbf24;
}

/* ===== Features New - Light Theme ===== */
.features-new {
	background: linear-gradient(180deg, #f0fdf4 0%, #ffffff 100%);
	position: relative;
	overflow: hidden;
}

.features-new::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: radial-gradient(
			circle at 10% 20%,
			rgba(5, 150, 105, 0.05),
			transparent 50%
		),
		radial-gradient(circle at 90% 80%, rgba(37, 99, 235, 0.04), transparent 50%);
	pointer-events: none;
	z-index: 0;
}

.features-new .container {
	position: relative;
	z-index: 1;
}

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

.feature-card-new {
	background: #ffffff;
	border: 2px solid rgba(5, 150, 105, 0.1);
	border-radius: 24px;
	padding: 2.5rem 2rem;
	transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
	position: relative;
	overflow: hidden;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.feature-card-new::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(
		90deg,
		rgba(5, 150, 105, 0.8),
		rgba(37, 99, 235, 0.8)
	);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.4s ease;
}

.feature-card-new:hover {
	transform: translateY(-12px);
	border-color: rgba(5, 150, 105, 0.3);
	box-shadow:
		0 20px 60px rgba(5, 150, 105, 0.15),
		0 0 40px rgba(37, 99, 235, 0.08);
}

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

.feature-icon-wrapper {
	position: relative;
	width: 80px;
	height: 80px;
	margin: 0 auto 1.5rem;
	display: flex;
	align-items: center;
	justify-content: center;
}

.feature-icon-bg {
	position: absolute;
	inset: 0;
	background: linear-gradient(
		135deg,
		rgba(5, 150, 105, 0.15),
		rgba(37, 99, 235, 0.1)
	);
	border-radius: 20px;
	transform: rotate(45deg);
	transition: all 0.4s ease;
}

.feature-card-new:hover .feature-icon-bg {
	transform: rotate(45deg) scale(1.1);
	background: linear-gradient(
		135deg,
		rgba(5, 150, 105, 0.25),
		rgba(37, 99, 235, 0.15)
	);
}

.feature-icon {
	position: relative;
	z-index: 1;
	font-size: 2.5rem;
	background: linear-gradient(
		135deg,
		rgba(5, 150, 105, 1),
		rgba(37, 99, 235, 1)
	);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	transition: transform 0.4s ease;
}

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

.feature-card-new h3 {
	color: var(--heading-color);
	font-size: 1.5rem;
	font-weight: 700;
	margin-bottom: 1rem;
	text-align: center;
	transition: color 0.3s ease;
}

.feature-card-new:hover h3 {
	color: rgba(5, 150, 105, 1);
}

.feature-card-new > p {
	color: var(--text-color);
	font-size: 1rem;
	line-height: 1.7;
	margin-bottom: 1.5rem;
	text-align: center;
}

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

.feature-list li {
	display: flex;
	align-items: flex-start;
	gap: 0.75rem;
	margin-bottom: 0.75rem;
	color: var(--text-light);
	font-size: 0.95rem;
	line-height: 1.6;
}

.feature-list li i {
	color: rgba(5, 150, 105, 1);
	font-size: 1rem;
	margin-top: 0.2rem;
	flex-shrink: 0;
}

.feature-link {
	text-align: center;
	margin-top: auto;
}

.feature-link a {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	color: rgba(5, 150, 105, 1);
	font-weight: 600;
	text-decoration: none;
	transition: all 0.3s ease;
}

.feature-link a:hover {
	color: rgba(37, 99, 235, 1);
	gap: 0.75rem;
}

.feature-link a i {
	transition: transform 0.3s ease;
}

.feature-link a:hover i {
	transform: translateX(4px);
}

@media (max-width: 768px) {
	.features-grid-new {
		grid-template-columns: 1fr;
		gap: 1.5rem;
	}

	.feature-card-new {
		padding: 2rem 1.5rem;
	}
}

.testimonials-new .t-card {
	background: rgba(30, 41, 59, 0.6);
	border: 1px solid rgba(5, 150, 105, 0.2);
	border-radius: 16px;
	padding: 24px;
	height: 100%;
	backdrop-filter: blur(8px);
}
.t-card--highlight {
	background: linear-gradient(
		180deg,
		rgba(16, 185, 129, 0.12),
		rgba(6, 182, 212, 0.08)
	);
	border: 1px solid rgba(16, 185, 129, 0.35);
}
.t-card-top {
	display: grid;
	grid-template-columns: auto 1fr auto;
	align-items: center;
	gap: 14px;
	margin-bottom: 12px;
}
.t-avatar {
	width: 56px;
	height: 56px;
	border-radius: 50%;
	background: rgba(6, 182, 212, 0.12);
	border: 1px solid rgba(6, 182, 212, 0.25);
	display: grid;
	place-items: center;
	overflow: hidden;
}
.t-avatar img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
.t-avatar--sm {
	width: 42px;
	height: 42px;
	border-radius: 50%;
	background: rgba(6, 182, 212, 0.12);
	border: 1px solid rgba(6, 182, 212, 0.25);
	display: grid;
	place-items: center;
}
.t-avatar--sm span {
	color: var(--accent-color);
	font-weight: 700;
}
.t-meta h4 {
	margin: 0;
	color: var(--contrast-color);
	font-size: 1.05rem;
}
.t-meta .t-badge {
	display: inline-block;
	margin-top: 4px;
	font-size: 0.8rem;
	color: var(--accent-color);
	background: rgba(6, 182, 212, 0.1);
	border: 1px solid rgba(6, 182, 212, 0.25);
	border-radius: 999px;
	padding: 4px 10px;
}
.t-stars i {
	color: #fbbf24;
}
.t-stars--sm i {
	font-size: 0.85rem;
}
.t-quote {
	color: rgba(241, 245, 249, 0.9);
	font-size: 1.05rem;
	line-height: 1.7;
	margin: 10px 0 16px;
}
.t-stats {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 10px;
}
.t-stat {
	background: rgba(15, 23, 42, 0.55);
	border: 1px solid rgba(16, 185, 129, 0.25);
	border-radius: 12px;
	padding: 12px;
	text-align: center;
}
.t-stat i {
	color: var(--heading-color);
	margin-right: 6px;
}
.t-stat span {
	display: block;
	color: var(--contrast-color);
	font-weight: 700;
}
.t-stat small {
	display: block;
	color: rgba(241, 245, 249, 0.7);
}

.t-stack {
	display: grid;
	gap: 14px;
}
.t-mini {
	background: rgba(15, 23, 42, 0.6);
	border: 1px solid rgba(6, 182, 212, 0.18);
	border-radius: 14px;
	padding: 16px;
}
.t-mini-head {
	display: grid;
	grid-template-columns: auto 1fr auto;
	gap: 10px;
	align-items: center;
	margin-bottom: 6px;
}
.t-mini p {
	margin: 0 0 10px;
	color: rgba(241, 245, 249, 0.9);
}
.t-tags {
	display: flex;
	gap: 6px;
	flex-wrap: wrap;
}
.tag {
	font-size: 0.75rem;
	color: rgba(241, 245, 249, 0.9);
	background: rgba(6, 182, 212, 0.12);
	border: 1px solid rgba(6, 182, 212, 0.28);
	border-radius: 999px;
	padding: 4px 10px;
}
.t-logos {
	margin-top: 28px;
	border-top: 1px solid rgba(6, 182, 212, 0.15);
	padding-top: 18px;
}
.t-note {
	color: rgba(241, 245, 249, 0.7);
	margin-right: 12px;
}
.t-logos-row {
	display: inline-flex;
	gap: 16px;
	flex-wrap: wrap;
	vertical-align: middle;
}
.t-logo {
	color: rgba(241, 245, 249, 0.65);
	background: rgba(30, 41, 59, 0.6);
	border: 1px solid rgba(6, 182, 212, 0.18);
	border-radius: 10px;
	padding: 6px 12px;
	font-size: 0.9rem;
}

@media (max-width: 991px) {
	.t-stats {
		grid-template-columns: 1fr;
	}
}

/* Impressum Section Styles */
.impressum-section {
	padding: 4rem 0;
}

.impressum-content {
	background: #ffffff;
	border-radius: 24px;
	padding: 3rem;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.impressum-block {
	padding-bottom: 1.5rem;
	border-bottom: 1px solid rgba(5, 150, 105, 0.1);
}

.impressum-block:last-child {
	border-bottom: none;
}

.impressum-title {
	font-size: 1.25rem;
	font-weight: 700;
	color: var(--heading-color);
	margin-bottom: 1rem;
	font-family: var(--heading-font);
}

.impressum-content p {
	color: var(--text-color);
	line-height: 1.7;
	margin-bottom: 0.5rem;
}

.impressum-content a {
	color: var(--primary-color);
	text-decoration: none;
	transition: color 0.3s ease;
}

.impressum-content a:hover {
	color: var(--secondary-color);
	text-decoration: underline;
}

.footer-company-info {
	margin-top: 2rem;
	padding-top: 2rem;
	border-top: 1px solid rgba(5, 150, 105, 0.2);
	font-size: 0.9rem;
	color: rgba(255, 255, 255, 0.8);
}

.footer-company-info p {
	margin-bottom: 0.5rem;
}

.footer-company-info a {
	color: rgba(255, 255, 255, 0.9);
	text-decoration: none;
	transition: color 0.3s ease;
}

.footer-company-info a:hover {
	color: var(--primary-color);
	text-decoration: underline;
}

@media (max-width: 768px) {
	.impressum-content {
		padding: 2rem 1.5rem;
	}

	.impressum-title {
		font-size: 1.1rem;
	}
}
