:root {
	--primary-gradient: linear-gradient(135deg, #7367F0 0%, #9E95F5 100%);
	--secondary-gradient: linear-gradient(135deg, #28C76F 0%, #5CE7A5 100%);
	--accent-gradient: linear-gradient(135deg, #00CFE8 0%, #6BDFFF 100%);
	--dark-gradient: linear-gradient(135deg, #283046 0%, #161D31 100%);
	--card-shadow: 0 4px 25px rgba(0, 0, 0, 0.08);
	--card-shadow-hover: 0 10px 40px rgba(0, 0, 0, 0.12);
}

[data-bs-theme="light"] {
	--card-shadow: 0 4px 25px rgba(0, 0, 0, 0.05);
	--card-shadow-hover: 0 10px 40px rgba(0, 0, 0, 0.08);
}

body {
	font-family: 'Inter', 'Public Sans', sans-serif;
}

.modern-hero {
	position: relative;
	overflow: hidden;
	padding-top: 6rem;
	padding-bottom: 6rem;
	background: var(--dark-gradient);
}

[data-bs-theme="light"] .modern-hero {
	background: linear-gradient(135deg, #f8f8fa 0%, #f0f2f8 100%);
}

.modern-hero .hero-bg-pattern {
	position: absolute;
	top: 0;
	right: 0;
	width: 60%;
	height: 100%;
	opacity: 0.1;
	background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%237367f0' fill-opacity='0.2' fill-rule='evenodd'/%3E%3C/svg%3E");
}

.hero-title {
	font-size: 3.5rem;
	font-weight: 800;
	line-height: 1.2;
	background: var(--primary-gradient);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

[data-bs-theme="light"] .hero-title {
	background: linear-gradient(135deg, #283046 0%, #7367F0 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.hero-subtitle {
	font-size: 1.25rem;
	color: rgba(255, 255, 255, 0.85);
}

[data-bs-theme="light"] .hero-subtitle {
	color: #5E5873;
}

.hero-stats {
	display: flex;
	gap: 2rem;
	margin-top: 3rem;
}

.stat-item {
	display: flex;
	flex-direction: column;
}

.stat-number {
	font-size: 2.5rem;
	font-weight: 700;
	background: var(--primary-gradient);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.stat-label {
	font-size: 0.875rem;
	opacity: 0.8;
}

.modern-navbar {
	backdrop-filter: blur(10px);
	background: rgba(22, 29, 49, 0.9);
	border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

[data-bs-theme="light"] .modern-navbar {
	background: rgba(255, 255, 255, 0.9);
	border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.feature-card {
	transition: all 0.3s ease;
	border: none;
	box-shadow: var(--card-shadow);
	border-radius: 1rem;
	overflow: hidden;
	height: 100%;
}

.feature-card:hover {
	transform: translateY(-8px);
	box-shadow: var(--card-shadow-hover);
}

.feature-icon {
	width: 70px;
	height: 70px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 1rem;
	margin-bottom: 1.5rem;
	background: var(--primary-gradient);
	color: white;
	font-size: 1.75rem;
}

.feature-icon.ai {
	background: var(--secondary-gradient);
}

.feature-icon.assessment {
	background: var(--accent-gradient);
}

.section-py {
	padding-top: 6rem;
	padding-bottom: 6rem;
}

@media (max-width: 768px) {
	.hero-title {
		font-size: 2.5rem;
	}

	.hero-stats {
		flex-direction: column;
		gap: 1rem;
	}

	.section-py {
		padding-top: 4rem;
		padding-bottom: 4rem;
	}
}

.testimonial-card {
	transition: all 0.3s ease;
	border: 1px solid rgba(115, 103, 240, 0.1);
	box-shadow: var(--card-shadow);
}

.testimonial-card:hover {
	transform: translateY(-5px);
	box-shadow: var(--card-shadow-hover);
	border-color: rgba(115, 103, 240, 0.2);
}

.trusted-logo {
	transition: all 0.3s ease;
	border: 1px solid #e9ecef;
	min-width: 180px;
	text-align: center;
}

.trusted-logo:hover {
	transform: translateY(-3px);
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
	border-color: #7367F0;
}

.pricing-card {
	transition: all 0.3s ease;
	border: 1px solid rgba(115, 103, 240, 0.1);
	box-shadow: var(--card-shadow);
}

.pricing-card:hover {
	transform: translateY(-8px);
	box-shadow: var(--card-shadow-hover);
}

.pricing-card.featured {
	border: 2px solid #7367F0;
	box-shadow: 0 10px 30px rgba(115, 103, 240, 0.2);
}

.pricing-card.featured .featured-badge {
	top: -12px;
}

.pricing-icon {
	transition: transform 0.3s ease;
}

.pricing-card:hover .pricing-icon {
	transform: scale(1.1);
}

[data-bs-theme="dark"] .trusted-logo {
	background: #283046;
	border: 1px solid #3b4253;
}

[data-bs-theme="dark"] .testimonial-card,
[data-bs-theme="dark"] .pricing-card {
	background: #283046;
	border: 1px solid #3b4253;
}

[data-bs-theme="dark"] .pricing-card.featured {
	border: 2px solid #7367F0;
	box-shadow: 0 10px 30px rgba(115, 103, 240, 0.3);
}

.modern-accordion .accordion-button {
	border-radius: 0.75rem !important;
	padding: 1.25rem;
	font-size: 1rem;
	background-color: rgba(115, 103, 240, 0.05);
	border: 1px solid rgba(115, 103, 240, 0.1);
}

.modern-accordion .accordion-button:not(.collapsed) {
	background-color: rgba(115, 103, 240, 0.1);
	color: #7367F0;
	box-shadow: 0 4px 15px rgba(115, 103, 240, 0.1);
}

.modern-accordion .accordion-button:focus {
	box-shadow: 0 0 0 0.25rem rgba(115, 103, 240, 0.25);
	border-color: #7367F0;
}

.modern-accordion .accordion-body {
	padding: 1.5rem;
	background-color: rgba(115, 103, 240, 0.02);
	border-radius: 0 0 0.75rem 0.75rem;
}

.contact-info-card {
	background: var(--primary-gradient);
	color: white;
}

.contact-item {
	transition: transform 0.3s ease;
}

.contact-item:hover {
	transform: translateX(5px);
}

.contact-icon {
	transition: all 0.3s ease;
}

.contact-item:hover .contact-icon {
	background-color: rgba(255, 255, 255, 0.2) !important;
	transform: scale(1.1);
}

.card-check .form-check-input {
	display: none;
}

.card-check .card {
	cursor: pointer;
	transition: all 0.3s ease;
}

.card-check .form-check-input:checked+.card {
	border-color: #7367F0 !important;
	box-shadow: 0 0 0 2px rgba(115, 103, 240, 0.25);
}

.card-check .card:hover {
	transform: translateY(-2px);
}

.implementation-timeline {
	position: relative;
	padding-left: 1.5rem;
}

.implementation-timeline::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: 2px;
	background: linear-gradient(to bottom, #7367F0, #28C76F);
}

.timeline-item {
	position: relative;
	margin-bottom: 1.5rem;
}

.timeline-badge {
	position: absolute;
	left: -2.25rem;
	top: 0;
	width: 1.5rem;
	height: 1.5rem;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-size: 0.75rem;
	font-weight: bold;
}

.timeline-content {
	padding-left: 1rem;
}

.integration-badge {
	transition: all 0.3s ease;
	cursor: pointer;
}

.integration-badge:hover {
	transform: translateY(-3px);
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.footer {
	background: linear-gradient(135deg, #161D31 0%, #283046 100%);
}

.hover-text-white:hover {
	color: white !important;
}

.border-white-10 {
	border-color: rgba(255, 255, 255, 0.1) !important;
}

.text-white-75 {
	color: rgba(255, 255, 255, 0.75);
}

#backToTop {
	transition: all 0.3s ease;
	width: 56px;
	height: 56px;
}

#backToTop:hover {
	transform: translateY(-3px);
	box-shadow: 0 10px 25px rgba(115, 103, 240, 0.3);
}

@media (max-width: 768px) {
	.section-py {
		padding-top: 4rem;
		padding-bottom: 4rem;
	}

	.display-5 {
		font-size: 2.5rem;
	}

	.faq-illustration {
		margin-bottom: 2rem;
	}

	.contact-info-card {
		margin-bottom: 2rem;
	}

	#backToTop {
		width: 48px;
		height: 48px;
		bottom: 1rem;
		right: 1rem;
	}
}

[data-bs-theme="dark"] .bg-light-subtle {
	background-color: #1e1e2d !important;
}

[data-bs-theme="dark"] .contact-info-card {
	background: linear-gradient(135deg, #283046 0%, #161D31 100%);
}

[data-bs-theme="dark"] .modern-accordion .accordion-button {
	background-color: rgba(115, 103, 240, 0.1);
	color: #b4b7bd;
}

[data-bs-theme="dark"] .modern-accordion .accordion-button:not(.collapsed) {
	background-color: rgba(115, 103, 240, 0.2);
	color: #7367F0;
}

[data-bs-theme="dark"] .modern-accordion .accordion-body {
	background-color: rgba(115, 103, 240, 0.05);
	color: #b4b7bd;
}

[data-bs-theme="dark"] .text-muted {
	color: #b4b7bd !important;
}

[data-bs-theme="dark"] .card {
	background-color: #283046;
	border-color: #3b4253;
}

[data-bs-theme="dark"] .form-control {
	background-color: #161D31;
	border-color: #3b4253;
	color: #b4b7bd;
}

[data-bs-theme="dark"] .form-control:focus {
	background-color: #161D31;
	border-color: #7367F0;
	color: #b4b7bd;
}

.hero-title {
	animation: shine 2s ease-in-out infinite alternate;
	background: linear-gradient(to right, #28c76f 0%, #5a4aff 47.92%, #ff3739 100%);
	background-size: auto;
	background-clip: border-box;
	background-clip: text;
	background-size: 200% auto;
	color: var(--bs-heading-color);
	font-size: calc(1.3875rem + 1.65vw);
	line-height: 1.2;
	-webkit-text-fill-color: rgba(0, 0, 0, 0);
}

:root,
[data-bs-theme="light"] {
	--logo-src: url('/images/head-light.png');
}

[data-bs-theme="dark"] {
	--logo-src: url('/images/head-dark.png');
}

.theme-logo {
	content: var(--logo-src);
}

.opik-frame {
	position: relative;
	overflow: hidden;
}

.opik-img {
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	z-index: 99;
	height: 380px;
	object-fit: contain;
}

.card-overflow-visible {
	overflow: visible !important;
}

.trusted-item {
	gap: .6rem;
	margin: 0px 10px;
}

.trusted-card {
	width: 120px;
	height: 120px;
	background: rgba(255, 255, 255, .9);
	border-radius: 14px;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 12px;
	box-shadow: 0 8px 22px rgba(0, 0, 0, .18);
	transition: all .25s ease;
}

[data-bs-theme="dark"] .trusted-card {
	background: rgba(30, 33, 45, .65);
	box-shadow: 0 10px 28px rgba(0, 0, 0, .45);
}

.trusted-img {
	max-width: 90%;
	max-height: 90%;
	object-fit: contain;
	transition: all .25s ease;
}

.trusted-name {
	margin-top: 8px;
	max-width: 120px;
	font-size: .82rem;
	line-height: 1.15;
	text-align: center;
	font-weight: 600;
	opacity: .9;
}

.trusted-name {
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.trusted-item:hover .trusted-card {
	transform: translateY(-3px);
	box-shadow: 0 14px 36px rgba(0, 0, 0, .35);
}

[data-bs-theme="dark"] .trusted-item:hover .trusted-card {
	box-shadow: 0 16px 48px rgba(0, 0, 0, .55);
}

.trusted-item:hover .trusted-img {
	opacity: 1;
	transform: scale(1.03);
}

.trust-marquee {
	position: relative;
	overflow: hidden;
	width: 100%;
	padding: 10px 0;
}

.trust-track {
	display: flex;
	width: max-content;
	animation-name: trust-scroll;
	animation-timing-function: linear;
	animation-iteration-count: infinite;
}

@keyframes trust-scroll {
	from {
		transform: translateX(0);
	}

	to {
		transform: translateX(-50%);
	}
}

.trust-marquee:hover .trust-track {
	animation-play-state: paused;
}

.trust-track>* {
	flex: 0 0 auto;
}

@media (max-width: 768px) {
	.trusted-card {
		width: 96px;
		height: 96px;
		padding: 10px;
	}

	.trusted-name {
		font-size: .75rem;
	}
}