@charset "utf-8";

body {
	color: #fff;
	font-family: "Montserrat", sans-serif;
	font-weight: 400;
	scroll-behavior: smooth;
	/* background: #0B0121; */
	background: #040116;
}

/* Improve momentum scrolling on iOS Safari */
html,
body {
	-webkit-overflow-scrolling: touch;
}

/* Respect user's motion preferences */
@media (prefers-reduced-motion: reduce) {

	*,
	*::before,
	*::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
		scroll-behavior: auto !important;
	}
}

/* Performance optimizations for animated elements */
.banner-section,
.section-title-wrapper,
.feature-card,
.features-grid .feature-card,
.customer-logo,
.cta-card,
.testimonials-card,
.blog-card,
.result-section,
.review-card,
.integrations-image-wrapper,
.meeting-info-card,
.meeting-background,
.benefit-card,
.feature-details-card,
.details-card,
.add-section,
.service-card,
.services-cards-grid .service-card,
.pricing-card,
.pricing-grid .pricing-card,
.price-section,
.faq-accordion-item,
.faq-item,
.faq-accordion .faq-accordion-item,
.start-section,
.outcomes-section .comparison-table table tbody tr {
	will-change: transform, opacity;
}

.gsap-animated {
	backface-visibility: hidden;
	perspective: 1000px;
	transform-style: preserve-3d;
}

.feature-card,
.service-card {
	transform-style: preserve-3d;
	will-change: transform, opacity;
}

.faq-accordion-item {
	transform-style: preserve-3d;
	will-change: transform, opacity;
}

body:not(.gsap-loaded) .feature-card,
body:not(.gsap-loaded) .service-card,
body:not(.gsap-loaded) .faq-accordion-item,
body:not(.gsap-loaded) .testimonials-card,
body:not(.gsap-loaded) .result-block,
body:not(.gsap-loaded) .counter,
body:not(.gsap-loaded) .affiliate-block,
body:not(.gsap-loaded) .blog-image-wrapper,
body:not(.gsap-loaded) .blog-table-of-content,
body:not(.gsap-loaded) .blog-content-area,
body:not(.gsap-loaded) .blog-data-block,
body:not(.gsap-loaded) .blog-card,
body:not(.gsap-loaded) .blog-tab,
body:not(.gsap-loaded) .blog-header-inner {
	opacity: 1 !important;
	transform: none !important;
}

.feature-card.gsap-animated[style*="opacity: 0"],
.service-card.gsap-animated[style*="opacity: 0"],
.faq-accordion-item.gsap-animated[style*="opacity: 0"],
.testimonials-card.gsap-animated[style*="opacity: 0"],
.result-block.gsap-animated[style*="opacity: 0"],
.counter.gsap-animated[style*="opacity: 0"],
.affiliate-block.gsap-animated[style*="opacity: 0"],
.blog-image-wrapper.gsap-animated[style*="opacity: 0"],
.blog-table-of-content.gsap-animated[style*="opacity: 0"],
.blog-content-area.gsap-animated[style*="opacity: 0"],
.blog-data-block.gsap-animated[style*="opacity: 0"],
.blog-card.gsap-animated[style*="opacity: 0"],
.blog-tab.gsap-animated[style*="opacity: 0"],
.blog-header-inner.gsap-animated[style*="opacity: 0"] {
	opacity: 1 !important;
	transform: none !important;
}

/* Parallax elements optimization */
.hero-image,
.background-image {
	will-change: transform;
	transform: translateZ(0);
	backface-visibility: hidden;
}

/* Smooth scroll container (Lenis) */
html.lenis {
	height: auto;
}

.lenis.lenis-smooth {
	scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
	overscroll-behavior: contain;
}

.lenis.lenis-stopped {
	overflow: hidden;
}

.lenis.lenis-scrolling iframe {
	pointer-events: none;
}

/* On iOS we rely on native scrolling – disable CSS smooth scroll */
body.is-ios {
	scroll-behavior: auto;
}

.container {
	max-width: 1240px;
	padding: 0 15px;
	margin: 0 auto
}

@media (min-width:1320px) {
	.container {
		max-width: 1320px;
	}
}

.section-padding {
	padding: 70px 0;
}

.section-title-wrapper {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 12px;
	width: 100%;
	z-index: 10;
	margin-bottom: 50px;
	position: relative;
}

.section-title {
	width: 650px;
	font-weight: 600;
	color: #ebebeb;
	font-size: 32px;
	text-align: center;
	margin-bottom: 0;
}

.section-description {
	width: 700px;
	font-weight: 400;
	color: #ebebeb;
	font-size: 16px;
	text-align: center;
	letter-spacing: 0;
	margin-bottom: 0;
}

.section-subtitle {
	background: rgba(11, 3, 26, 0.6);
	border: 1px solid rgba(0, 0, 0, 0.25);
	box-shadow: 0px 0px 12px rgba(255, 255, 255, 0.2), 0px 4px 50px rgba(159, 100, 239, 0.4);
	border-radius: 38px;
	padding: 6px 30px;
	font-weight: 500;
	color: #ebebeb;
	font-size: 16px;
	text-align: center;
	letter-spacing: 0;
}

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

/* HEADER STYLES */
.header {
	padding: 12px 30px;
	background: #0B0121;
	box-shadow: inset 0px -0.5px 0px rgba(0, 50, 53, 0.2);
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	transform: translateY(0) scale(1);
	transition:
		background 0.4s cubic-bezier(0.22, 0.61, 0.36, 1),
		padding 0.4s cubic-bezier(0.22, 0.61, 0.36, 1),
		border-radius 0.4s cubic-bezier(0.22, 0.61, 0.36, 1),
		width 0.4s cubic-bezier(0.22, 0.61, 0.36, 1),
		transform 0.45s cubic-bezier(0.22, 0.61, 0.36, 1);
	will-change: transform, width, padding, background, border-radius, ;
}

.header.is-floating {
	background: linear-gradient(120deg, rgb(17 7 37), rgb(25 10 45));
	border: 1px solid rgba(255, 255, 255, 0.08);
	padding: 12px 26px;
	width: calc(100% - 36px);
	max-width: 1180px;
	margin: 10px auto 0;
	border-radius: 999px;
	transform: translateY(8px) scale(0.98);
}

.header.is-floating .container {
	padding: 0;
}

@media (max-width: 992px) {
	.header {
		padding: 14px 20px;
	}

	.header.is-floating {
		width: calc(100% - 24px);
		max-width: none;
		border-radius: 30px;
		margin-top: 8px;
		transform: translateY(4px) scale(0.995);
	}
}

/* Homepage top promo ribbon ($99/year) — outside header, fixed above nav; shown only outside India (index.html) */
.index-offer-ribbon {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1001;
	background: linear-gradient(92deg, #ffcf5c 0%, #ff9f43 42%, #ff7b54 100%);
	border-bottom: 1px solid rgba(26, 13, 40, 0.12);
	box-shadow:
		0 6px 28px rgba(255, 140, 66, 0.45),
		inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

body.index-offer-header-visible .index-offer-ribbon {
	display: block;
}

body.index-offer-header-visible .header {
	top: 52px;
	box-shadow: 0 4px 0 rgba(11, 1, 33, 0.6), 0 18px 48px rgba(0, 0, 0, 0.35);
}

.index-offer-ribbon__container {
	max-width: 1180px;
}

.index-offer-ribbon__link {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 10px 18px;
	min-height: 52px;
	padding: 10px 16px;
	text-align: center;
	text-decoration: none !important;
	color: #1a0d28 !important;
	font-size: 15px;
	font-weight: 600;
	line-height: 1.35;
	letter-spacing: 0.01em;
	transition: filter 0.15s ease;
}

.index-offer-ribbon__link:hover {
	filter: brightness(1.03);
	color: #120818 !important;
}

.index-offer-ribbon__badge {
	flex-shrink: 0;
	text-transform: uppercase;
	font-size: 10px;
	font-weight: 800;
	letter-spacing: 0.12em;
	color: #1a0d28;
	background: rgba(26, 13, 40, 0.1);
	border: 1px solid rgba(26, 13, 40, 0.14);
	padding: 6px 11px;
	border-radius: 8px;
}

.index-offer-ribbon__main {
	flex: 1 1 220px;
	min-width: 0;
}

.index-offer-ribbon__main strong {
	font-weight: 800;
	font-size: 1.05em;
}

.index-offer-ribbon__cta {
	flex-shrink: 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 8px 18px;
	border-radius: 999px;
	font-size: 13px;
	font-weight: 700;
	color: #fff !important;
	background: linear-gradient(135deg, #1a0d28 0%, #2d1a45 100%);
	border: 1px solid rgba(0, 0, 0, 0.2);
	box-shadow: 0 4px 14px rgba(26, 13, 40, 0.35);
	transition:
		transform 0.15s ease,
		box-shadow 0.15s ease;
}

.index-offer-ribbon__link:hover .index-offer-ribbon__cta {
	transform: translateY(-1px);
	box-shadow: 0 6px 20px rgba(26, 13, 40, 0.45);
	color: #fff !important;
}

/* Modern homepage hero: was margin-top 72px + padding-top 100px → huge gap under fixed header */
.banner-section.home-hero-modern.main-banner-section {
	margin-top: 22px;
	padding-top: 100px;
	padding-bottom: 72px;
}

body.index-offer-header-visible .banner-section.home-hero-modern.main-banner-section {
	margin-top: 18px;
	padding-top: 118px;
}

body.index-offer-header-visible .nav-item-label {
	font-size: 16px;
	font-weight: 500;
}

@media (max-width: 992px) {
	body.index-offer-header-visible .header {
		top: 56px;
	}

	.index-offer-ribbon__link {
		font-size: 13px;
		padding: 10px 12px;
		gap: 8px 12px;
		min-height: 56px;
	}

	.index-offer-ribbon__main strong {
		font-size: 1em;
	}

	.banner-section.home-hero-modern.main-banner-section {
		margin-top: 16px;
		padding-top: 92px;
	}

	body.index-offer-header-visible .banner-section.home-hero-modern.main-banner-section {
		padding-top: 124px;
	}
}

.header-logo-wrapper {
	display: flex;
	align-items: center;
	gap: 16px;
}

.mobile-menu {
	display: none;
	position: absolute;
	right: 30px;
	top: 20px;
	cursor: pointer;
	background: none;
	border: none;
}

.mobile-menu .bars {
	width: 24px;
	height: 2px;
	background-color: #ebebeb;
	display: block;
	transition: all 0.2s ease;
	position: relative;
}

.mobile-menu .bars.middle {
	margin: 5px 0;
}

.mobile-menu.is-open .middle {
	opacity: 0;
	visibility: hidden;
}

.mobile-menu.is-open .first {
	transform: rotate(45deg);
	top: 7px;
}

.mobile-menu.is-open .last {
	transform: rotate(-45deg);
	top: -7px;
}

.logo {
	width: 180px;
	object-fit: cover;
	transition: width 0.35s ease;
}

.header.is-floating .logo {
	width: 180px;
}

.header-actions-mobile {
	display: none;
}

.nav-item {
	display: inline-flex;
	gap: 2px;
	cursor: pointer;
	margin-right: 30px;
}

.nav-item-label {
	font-weight: 400;
	color: #ebebeb;
	font-size: 15px;
	letter-spacing: 0;
	white-space: nowrap;
	text-decoration: none;
	transition: color 0.3s ease;
	background: none;
	border: none;

	&:hover {
		color: #ECECEC;
	}
}

.chevron-down {
	width: 12px;
	height: 12px;
	stroke: currentColor;
	stroke-width: 2;
	stroke-linecap: round;
	stroke-linejoin: round;
	fill: none;
	color: #ebebeb;
	transition: transform 0.3s ease;
}

/* Dropdown Menu Styles */
.nav-item-dropdown {
	position: relative;
}

.nav-item-dropdown .chevron-down {
	transition: transform 0.3s ease;
}

.nav-item-dropdown.active .chevron-down,
.nav-item-dropdown:hover .chevron-down {
	transform: rotate(180deg);
}

.dropdown-menu {
	position: absolute;
	top: calc(100% + 25px);
	left: 50%;
	right: auto;
	background: linear-gradient(120deg, rgb(17 7 37), rgb(25 10 45));
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 16px;
	padding: 25px 15px;
	min-width: 900px;
	max-width: 920px;
	width: 100%;
	box-shadow: 0px 8px 20px 4px rgba(167, 174, 186, 0.12);
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
	transform: translateX(-50%) translateY(-10px);
	z-index: 1000;
	margin-top: 5px;
	margin-left: 0;
	margin-right: 0;
	text-align: left;
}

.dropdown-menu::before {
	content: '';
	position: absolute;
	top: -8px;
	left: 50%;
	transform: translateX(-50%);
	width: 0;
	height: 0;
	border-left: 8px solid transparent;
	border-right: 8px solid transparent;
	border-bottom: 8px solid rgba(17, 7, 37, 0.98);
	z-index: 1001;
	pointer-events: none;
}

.nav-item-dropdown.active .dropdown-menu {
	opacity: 1;
	visibility: visible;
	pointer-events: all;
	transform: translateX(-50%) translateY(0);
}

/* Desktop hover effect */
@media (min-width: 993px) {
	.dropdown-menu {
		left: 50%;
		transform: translateX(-50%) translateY(-10px);
	}

	.nav-item-dropdown:hover .dropdown-menu,
	.nav-item-dropdown.active .dropdown-menu {
		opacity: 1;
		visibility: visible;
		pointer-events: all;
		transform: translateX(-50%) translateY(0);
		display: block;
	}

	.nav-item-dropdown:hover .chevron-down,
	.nav-item-dropdown.active .chevron-down {
		transform: rotate(180deg);
	}

	/* Add invisible bridge to prevent hover gap */
	.nav-item-dropdown::after {
		content: '';
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		height: 10px;
		background: transparent;
		z-index: 999;
	}
}

/* Tablet and below - responsive dropdown */
@media (max-width: 1200px) {
	.dropdown-menu {
		min-width: 800px;
		max-width: 850px;
		padding: 20px 15px;
	}
}

@media (max-width: 992px) {
	.dropdown-menu {
		min-width: 100%;
		max-width: 100%;
		width: 100%;
		padding: 20px 15px;
	}
}

.dropdown-item {
	display: flex;
	align-items: flex-start;
	gap: 16px;
	padding: 15px;
	border-radius: 12px;
	transition: background-color 0.3s ease;
	cursor: pointer;
	text-decoration: none;
	color: inherit;
	margin-bottom: 20px;
}

.dropdown-item:hover {
	background-color: rgba(255, 255, 255, 0.05);
}

.dropdown-icon {
	width: 48px;
	height: 48px;
	min-width: 48px;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 10px;
	background: rgba(255, 255, 255, 0.03);
	transition: all 0.3s ease;
}

.dropdown-item:hover .dropdown-icon {
	background: rgba(255, 255, 255, 0.08);
	border-color: rgba(255, 255, 255, 0.3);
}

.dropdown-icon svg {
	width: 24px;
	height: 24px;
	stroke: #ebebeb;
}

.dropdown-text {
	white-space: normal;
}

.dropdown-title {
	font-weight: 500;
	color: #ebebeb;
	font-size: 16px;
	margin: 0 0 8px 0;
	letter-spacing: 0;
}

.dropdown-description {
	font-weight: 400;
	color: rgb(235 235 235);
	font-size: 14px;
	line-height: 1.5;
	margin: 0;
	letter-spacing: 0;
}

.btn-header {
	padding: 8px 15px;
	border-radius: 25px;
	border: 0.5px solid;
	font-weight: 500;
	font-size: 15px;
	letter-spacing: 0;
	white-space: nowrap;
	cursor: pointer;
	transition: background-color 0.3s;
}

.btn-header-outline {
	border-color: #ebebeb;
	background: transparent;
	color: #ebebeb;
	transition: all 0.3s ease;
}

.btn-header-outline:hover {
	background: rgba(235, 235, 235, 0.1);
	transform: translateY(-2px);
}

.btn-header-primary {
	/* background: #fdfdfd;
	border-color: #ebebeb;
	color: #0b081c; */
	transition: all 0.3s ease;
	background: linear-gradient(92.23deg, #746BAE 0%, #5E7CF1 100%);
	border: 1px solid rgba(255, 255, 255, 0.2);
	color: #FFFFFF;
	box-shadow: 0 4px 15px rgba(94, 124, 241, 0.4), inset 0 1px 1px rgba(255, 255, 255, 0.3);
}

.btn-header-primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(94, 124, 241, 0.6), inset 0 1px 1px rgba(255, 255, 255, 0.4);
}

/* BANNER STYLES */
.banner-section {
	padding-top: 100px;
	position: relative;
	background-image: url('../images/banner-bg-1.png');
	background-size: cover;
	background-repeat: no-repeat;
	margin: 0 15px 15px;
	border-radius: 50px;
	margin-top: 72px;
	padding-bottom: 80px;
}

.main-banner-section {
	margin: 0 15px 15px;
	border-radius: 50px;
	margin-top: 72px;
	padding-bottom: 50px;
}

.badge-custom {
	display: inline-flex;
	align-items: center;
	padding: 10px 15px;
	border-radius: 28px;
	border: 0.62px solid rgba(255, 255, 255, 0.3);
	background: transparent;
	min-height: 32px;
}

.badge-text {
	font-weight: 400;
	color: white;
	font-size: 15px;
	text-align: center;
	letter-spacing: 0;
	white-space: nowrap;
}

.banner-title {
	font-weight: 600;
	font-size: 55px;
	text-align: center;
	letter-spacing: -1.2px;
	margin-bottom: 25px;
	/* background: linear-gradient(145.55deg, #ECECEC 20.35%, rgba(236, 236, 236, 0) 128.73%); */
	background: #fff;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	min-height: 56px;
}

.banner-description {
	font-weight: 400;
	color: rgb(235 235 235 / 90%);
	font-size: 18px;
	text-align: center;
	letter-spacing: 0;
	margin: 0 auto 25px;
}

.badge-highlight {
	padding: 2px 8px;
	border-radius: 6px;
	font-weight: 500;
	display: inline-block;
	line-height: normal;
	transition: transform 0.2s ease;
}

.badge-highlight:hover {
	transform: translateY(-1px);
}

.badge-sales {
	background: rgba(255, 0, 128, 0.15);
	color: #FF80BF;
	border: 1px solid rgba(255, 0, 128, 0.3);
}

.badge-agencies {
	background: rgba(0, 255, 255, 0.1);
	color: #80FFFF;
	border: 1px solid rgba(0, 255, 255, 0.3);
}

.badge-gtm {
	background: rgba(89, 255, 0, 0.1);
	color: #CCFF66;
	border: 1px solid rgba(89, 255, 0, 0.3);
}

.btn-cta {
	padding: 10px 15px;
	border-radius: 30px;
	font-weight: 500;
	font-size: 15px;
	letter-spacing: 0;
	white-space: nowrap;
	cursor: pointer;
	transition: background-color 0.3s;
	border: 0.5px solid;
}

.btn-cta-primary {
	background: linear-gradient(92.23deg, #746BAE 0%, #5E7CF1 100%);
	border: 1px solid rgba(255, 255, 255, 0.2);
	color: #FFFFFF;
	box-shadow: 0 4px 15px rgba(94, 124, 241, 0.4), inset 0 1px 1px rgba(255, 255, 255, 0.3);
}

.btn-cta-primary:hover {
	box-shadow: 0 6px 20px rgba(94, 124, 241, 0.6), inset 0 1px 1px rgba(255, 255, 255, 0.4);
}

.btn-cta-outline {
	border-color: #ebebeb;
	background: transparent;
	color: #ebebeb;
}

.btn-cta-outline:hover {
	background: rgba(235, 235, 235, 0.1);
}

.banner-image-wrapper {
	position: relative;
	margin-top: 20px;
}

.background-image {
	position: relative;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 720px;
	border-radius: 18px;
	object-fit: cover;
	z-index: 1;
	box-shadow: 0px -1px 5px rgba(233, 223, 255, 0.3), 0px -1px 20px rgba(187, 155, 255, 0.15), inset 0px 0.25px 0px rgba(255, 255, 255, 0.5);
	z-index: 999;
}

.hero-image {
	position: absolute;
	width: 100%;
	border-radius: 12px;
	object-fit: cover;
	z-index: 2;
	margin: 0 auto;
	display: block;
	border: 300;
	top: -275px;
	left: 50%;
	transform: translateX(-50%);
	width: 720px;
}

.content-container {
	position: relative;
	z-index: 3;
}

.banner-two-column .banner-title {
	font-size: 31px;
	line-height: normal;
	margin-bottom: 5px;
}

.banner-two-column .banner-description {
	font-size: 16px;
	line-height: 30px;
}

.banner-two-column {
	padding-top: 50px;
}

/* DEMO VIDEO STYLES */
.demo-video-wrapper {
	border-radius: 18px;
	overflow: hidden;
	box-shadow: 0px -1px 5px rgba(233, 223, 255, 0.3), 0px -1px 20px rgba(187, 155, 255, 0.15), inset 0px 0.25px 0px rgba(255, 255, 255, 0.5);
	border: 1px solid rgba(255, 255, 255, 0.1);
	width: 100%;
	position: relative;
	background: #000;
}

.demo-video-wrapper iframe {
	border: 0;
}

@keyframes pulse-red {
	0% {
		box-shadow: 0 0 0 0 rgba(255, 0, 0, 0.7);
	}

	70% {
		box-shadow: 0 0 0 20px rgba(255, 0, 0, 0);
	}

	100% {
		box-shadow: 0 0 0 0 rgba(255, 0, 0, 0);
	}
}

.play-button-overlay {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 10;
	width: 100px;
	height: 100px;
	background: #ff0000;
	border-radius: 50%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
	box-shadow: 0 0 30px rgba(255, 0, 0, 0.4);
	cursor: pointer;
	animation: pulse-red 2s infinite;
}

.play-button-overlay:hover {
	transform: translate(-50%, -50%) scale(1.1);
	background: #cc0000;
	box-shadow: 0 0 50px rgba(255, 0, 0, 0.6);
}

.play-button-icon {
	width: 32px;
	height: 32px;
	color: #fff;
	margin-bottom: 2px;
}

.play-button-text {
	color: #fff;
	font-size: 10px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.demo-video-placeholder {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	cursor: pointer;
	background-color: #110725;
}

.demo-video-thumbnail {
	width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: center;
}

.demo-video-container {
	display: none;
	width: 100%;
	height: 100%;
}

.demo-video-iframe {
	border: 0;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
}


/* book-demo-section */
.book-demo-section {
	background-image: none !important;
	border-radius: 0 !important;
	margin: 0 !important;
	padding-bottom: 50px !important;
}

/* LOGO STYLES */
.logo-section {
	width: 100%;
	padding: 60px 0;
	/* background-color: #110725;
	background-color: #ffffff; */
	min-height: 150px;
}

.customer-logo {
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	outline: none;
}

.logo-section-text {
	text-align: center;
	font-weight: 600;
	font-size: 20px;
	color: #fff;
	margin-bottom: 35px;
	min-height: 28px;
}

.logo-section-text .font-medium {
	font-weight: 500;
}

.logos-grid {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 30px;
	width: 100%;
	align-items: center;
}

.logo-item {
	width: 180px;
	height: auto;
	object-fit: contain;
	/* filter: invert(1); */
	transition: filter 0.3s ease;
	display: block;
}

.customer-logo:focus-visible {
	box-shadow: 0 0 0 2px rgba(235, 235, 235, 0.35);
	border-radius: 16px;
}

.logo-review-card {
	position: absolute;
	left: 50%;
	bottom: calc(100% - 4px);
	transform: translate(-50%, -8px);
	width: 340px;
	max-width: 90vw;
	background: linear-gradient(135deg, #12092f 0%, #1a1040 50%, #0c0b1c 100%);
	border: 1px solid rgba(255, 255, 255, 0.07);
	box-shadow: 0 30px 70px rgba(10, 8, 28, 0.35);
	border-radius: 18px;
	padding: 16px;
	color: #f4f1ff;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition: opacity 0.2s ease, transform 0.2s ease;
	z-index: 15;
}

/* .customer-logo:hover .logo-review-card, */
.customer-logo:focus-within .logo-review-card,
.customer-logo.is-open .logo-review-card,
.logo-review-card:hover {
	opacity: 1;
	visibility: visible;
	transform: translate(-50%, -12px);
	pointer-events: auto;
	z-index: 999999;
}

.logo-review-card::after {
	content: "";
	position: absolute;
	bottom: -6px;
	left: 50%;
	transform: translateX(-50%) rotate(45deg);
	width: 14px;
	height: 14px;
	background: inherit;
	border-right: 1px solid rgba(255, 255, 255, 0.07);
	border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.logo-review-card.align-left {
	left: 0;
	right: auto;
	transform: translate(0, -12px);
}

.logo-review-card.align-right {
	left: auto;
	right: 0;
	transform: translate(0, -12px);
}

.logo-review-card.align-left::after {
	left: 22px;
}

.logo-review-card.align-right::after {
	left: calc(100% - 22px);
}

.logo-review-header {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 10px;
}

.reviewer-avatar {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	overflow: hidden;
	background: rgba(255, 255, 255, 0.08);
	flex-shrink: 0;
	border: 1px solid rgba(255, 255, 255, 0.12);
}

.reviewer-avatar img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.reviewer-meta {
	display: flex;
	flex-direction: column;
	gap: 2px;
}

.reviewer-name {
	font-weight: 700;
	font-size: 14px;
	color: #ffffff;
	margin: 0;
}

.reviewer-role {
	font-weight: 500;
	font-size: 12px;
	color: rgba(244, 241, 255, 0.75);
	margin: 0;
}

.logo-review-text {
	margin: 0;
	font-weight: 500;
	font-size: 13px;
	line-height: 1.6;
	color: rgba(244, 241, 255, 0.95);
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	/* -webkit-line-clamp: 4; */
	line-clamp: 4;
	-webkit-box-orient: vertical;
}

.testimonial-badge {
	position: absolute;
	bottom: -12px;
	left: 75%;
	transform: translateX(-50%);
	background: rgba(30, 16, 60, 0.7);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	border: 1px solid rgba(139, 92, 246, 0.3);
	border-radius: 20px;
	padding: 2px 8px;
	display: flex;
	align-items: center;
	gap: 3px;
	cursor: pointer;
	transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
	z-index: 20;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.testimonial-badge span {
	font-size: 9px;
	font-weight: 600;
	color: #a78bfa;
	white-space: nowrap;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.testimonial-badge i,
.testimonial-badge svg {
	font-size: 8px;
	color: #a78bfa;
	transition: transform 0.3s ease;
}

.testimonial-badge:hover {
	background: rgba(139, 92, 246, 0.2);
	border-color: rgba(139, 92, 246, 0.6);
	transform: translateX(-50%) translateY(-2px);
}

.testimonial-badge:hover i,
.testimonial-badge:hover svg {
	transform: rotate(-45deg) translateX(2px);
}

.testimonial-badge:hover~.logo-review-card,
.customer-logo.is-open .logo-review-card,
.logo-review-card:hover {
	opacity: 1;
	visibility: visible;
	transform: translate(-50%, -12px);
	pointer-events: auto;
	z-index: 999999;
}


/* OUTCOMES / RESULTS */
.outcomes-section {
	position: relative;
	overflow: hidden;
	/* background-image: url(../images/section-bg.png);
	background-size: cover;
	background-repeat: no-repeat;
	border-radius: 50px;
	margin: 0 15px; */
}

.outcomes-section .outcomes-section-title-wrapper {
	gap: 0;
	margin-bottom: 40px;
}

.outcomes-section .outcomes-section-title {
	font-size: 28px;
	font-weight: 600;
	color: #fff;
	margin-bottom: 10px;
}

.outcomes-section .outcomes-section-description {
	font-size: 16px;
	color: rgba(235, 235, 235, 0.72);
	margin-bottom: 0;
}

.outcome-metrics-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
	gap: 30px;
	position: relative;
	z-index: 1;
	margin-bottom: 70px;
}

.metric-card {
	box-shadow: inset 0px 0.25px 0px rgba(255, 255, 255, 0.5), 0px -1px 20px rgba(187, 155, 255, 0.15), 0px -1px 5px rgba(233, 223, 255, 0.3);
	border-radius: 16px;
	background: linear-gradient(180deg, rgb(20 11 41 / 91%) 0%, rgb(22 3 63 / 87%) 100%);
	border: 1px solid rgb(40 40 40 / 40%);
	display: flex;
	flex-direction: column;
	padding: 20px;
	gap: 15px;
	position: relative;
	overflow: hidden;
}

.metric-value {
	font-size: 24px;
	font-weight: 700;
	color: #ffffff;
	margin: 0;
	line-height: normal;
}

.metric-label {
	font-size: 16px;
	color: rgba(235, 235, 235, 0.72);
	margin: 0;
	line-height: 1.5;
}

.outcomes-section .comparison-table {
	overflow-x: auto;
}

.outcomes-section .comparison-table table {
	width: 100%;
}

.outcomes-section .comparison-table table thead {
	background: linear-gradient(180deg, #130534 0%, #23075e3f 51.44%, #220f5773 100%);
}

.outcomes-section .comparison-table table tr td {
	padding: 18px 20px;
	border: 1px solid rgba(255, 255, 255, 0.1);
	color: #fff;
	font-size: 16px;
	line-height: 30px;
}

.outcomes-section .comparison-table table tr th {
	padding: 18px 20px;
	border: 1px solid rgba(255, 255, 255, 0.1);
	color: #fff;
	font-size: 16px;
	line-height: 30px;
}

.outcomes-section .comparison-table table tr .th-title {
	font-weight: 600;
}

/* Comparison table row + icon hover styling (GSAP handles scroll-in) */
.outcomes-section .comparison-table table tbody tr {
	position: relative;
	background: radial-gradient(120% 120% at 0% 0%, rgba(255, 255, 255, 0.02) 0%, transparent 55%);
}

.outcomes-section .comparison-table table tbody tr:hover {
	background: radial-gradient(140% 160% at 0% 0%, rgba(255, 255, 255, 0.06) 0%, transparent 60%);
	transform: translateY(-2px);
	box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.45);
}

.outcomes-section .comparison-table table tbody tr:focus-within {
	outline: 2px solid rgba(235, 235, 235, 0.6);
	outline-offset: 2px;
}

.outcomes-section .comparison-table .comparison-metric,
.outcomes-section .comparison-table .comparison-metric-title {
	transition: color 0.25s ease;
}

.outcomes-section .comparison-table table tbody tr:hover .comparison-metric,
.outcomes-section .comparison-table table tbody tr:hover .comparison-metric-title {
	color: #ffffff;
}

.outcomes-section .comparison-table .status-icon {
	transition:
		transform 0.25s cubic-bezier(0.22, 0.61, 0.36, 1),
		box-shadow 0.25s cubic-bezier(0.22, 0.61, 0.36, 1),
		background-color 0.25s ease,
		border-color 0.25s ease;
}

.outcomes-section .comparison-table table tbody tr:hover .status-icon.positive {
	transform: translateY(-1px) scale(1.05);
	box-shadow: 0 6px 14px rgba(127, 240, 177, 0.4);
}

.outcomes-section .comparison-table table tbody tr:hover .status-icon.negative {
	transform: translateY(-1px) scale(1.05);
	box-shadow: 0 6px 14px rgba(255, 99, 99, 0.35);
}

.status-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 28px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.12);
	color: #ffffff;
	flex-shrink: 0;
	margin-right: 10px;
}

.status-icon.positive {
	background: rgba(82, 214, 127, 0.18);
	border-color: rgba(82, 214, 127, 0.5);
	color: #7ff0b1;
}

.status-icon.negative {
	background: rgba(255, 99, 99, 0.18);
	border-color: rgba(255, 99, 99, 0.5);
	color: #ffc5c5;
}

@media (max-width: 992px) {

	.section-title,
	.section-description {
		width: 100%;
	}

	.outcomes-layout {
		gap: 30px;
	}

	.outcome-metrics-grid {
		grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
		gap: 30px;
	}

}


/* FEATURES STYLES */
.features-section {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 40px;
	width: 100%;
	/* background: #110725d6;
	background: #fdfdfdeb;
	border-radius: 40px; */
}

/* .features-section .section-title{
	color: #000000;
    font-size: 32px;
}

.features-section .section-description {
	font-weight: 400;
    color: #141414;
} */

.background-gradient {
	position: absolute;
	top: -202px;
	left: calc(50% - 335px);
	width: 671px;
	height: 419px;
	pointer-events: none;
}

.features-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
	width: 100%;
	margin-bottom: 60px;
}

.feature-card {
	/* border-radius: 10px;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0) 100%);
	border: 1px solid rgba(204, 118, 255, 0.06); */
	box-shadow: inset 0px 0.25px 0px rgba(255, 255, 255, 0.5),
		0px -1px 20px rgba(187, 155, 255, 0.15),
		0px -1px 5px rgba(233, 223, 255, 0.3);
	border-radius: 16px;
	background: linear-gradient(180deg, rgb(20 11 41 / 91%) 0%, rgb(22 3 63 / 87%) 100%);
	border: 1px solid rgb(40 40 40 / 40%);
	transition: all 0.3s ease-in-out;

	&:hover {
		transform: translateY(-5px);
	}
}

.feature-card-content {
	padding: 30px;
}

.feature-icon {
	width: 40px;
	height: 40px;
	margin-bottom: 20px;
	filter: drop-shadow(0px 0px 18.2273px rgba(89, 29, 221, 0.75));
}


.feature-card-title {
	width: 100%;
	font-weight: 500;
	color: #ebebeb;
	font-size: 20px;
	margin-bottom: 20px;
}

.feature-card-description {
	width: 100%;
	color: #ebebeb;
	font-size: 14px;
	line-height: 30px;
	font-weight: 400;
	letter-spacing: 0;
	margin-bottom: 20px;
}

.feature-explore-button {
	font-weight: 500;
	color: white;
	font-size: 14px;
	letter-spacing: 0;
	text-decoration: underline;
	background: none;
	border: none;
	cursor: pointer;
}

.cta-card {
	/* border-radius: 10px;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0) 100%);
	border: 0;
	z-index: 10; */
	box-shadow: inset 0px 0.25px 0px rgba(255, 255, 255, 0.5),
		0px -1px 20px rgba(187, 155, 255, 0.15),
		0px -1px 5px rgba(233, 223, 255, 0.3);
	border-radius: 10px;
	background: linear-gradient(180deg, rgb(20 11 41 / 89%) 0%, rgb(22 3 63 / 80%) 100%);
	border: 1px solid rgb(40 40 40 / 40%);
}

.cta-card-content {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 30px;
}

.cta-inner-wrapper {
	width: 650px;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.cta-text-wrapper {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.cta-content {
	margin-bottom: 20px;
}

.cta-title {
	width: 100%;
	font-weight: 600;
	color: #ebebeb;
	font-size: 30px;
	text-align: center;
	margin-bottom: 20px;
}

.cta-description {
	width: 100%;
	font-weight: 400;
	color: #ebebeb;
	font-size: 15px;
	text-align: center;
	margin-bottom: 0;
}

.cta-button {
	padding: 12px 15px;
	border-radius: 30px;
	border: 0.5px solid #ebebeb;
	background: transparent;
	font-weight: 600;
	color: #ebebeb;
	font-size: 15px;
	letter-spacing: 0;
	line-height: 12px;
	white-space: nowrap;
	cursor: pointer;
	transition: background-color 0.3s;

	&:hover {
		background: rgba(235, 235, 235, 0.1);
	}
}


/* feature details section */
.details-section {
	position: relative;
	background-image: url(../images/section-bg.png);
	background-size: cover;
	background-repeat: no-repeat;
	border-radius: 50px;
	margin: 0 15px;
	/* background-color: #fdfdfdeb; */
}

/* .details-section .section-title{
	color: #000000;
    font-size: 32px;
}

.details-section .section-description{
	font-weight: 400;
    color: #141414;
} */

.cards-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 39px;
	width: 100%;
	position: relative;
	z-index: 0;
}

.feature-details-card {
	/* display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 30px;
	padding: 20px;
	border-radius: 12px;
	border: 2px solid rgba(204, 118, 255, 0.06);
	background: radial-gradient(50% 50% at 50% 50%, rgba(191, 83, 255, 0.03) 0%, rgba(5, 5, 11, 0) 100%);
	overflow: hidden;
	align-items: center; */
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 30px;
	padding: 20px;
	border-radius: 12px;
	overflow: hidden;
	align-items: center;
	background: linear-gradient(180deg, rgb(20 11 41 / 74%) 0%, rgb(22 3 63 / 55%) 100%);
	border: 1px solid rgb(140 131 158 / 20%);
}

.feature-details-card.image-left {
	grid-template-columns: repeat(2, 1fr) !important;
}

.feature-details-card.image-right {
	grid-template-columns: repeat(2, 1fr) !important;
}

.feature-image {
	width: 100%;
	flex-shrink: 0;
	box-shadow: inset 0px 0px 1.24913px rgba(255, 255, 255, 0.08);
	border-radius: 12px;
	border: 1px solid rgba(204, 118, 255, 0.06);
	background: rgba(191, 83, 255, 0.02);
}

.card-content {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
	gap: 20px;
	padding: 15px;
	flex: 1;
}

.badge {
	display: inline-flex;
	align-items: center;
	padding: 10px 15px;
	border-radius: 6px;
	/* background: radial-gradient(50% 50% at 66% -35%, rgba(120, 123, 255, 0.08) 0%, rgba(120, 123, 255, 0.02) 100%), linear-gradient(180deg, rgba(255, 255, 255, 0) 54%, rgba(255, 255, 255, 0.07) 100%), linear-gradient(0deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.03) 100%);
    backdrop-filter: blur(0.62px) brightness(100%); */
	border: none;
	font-weight: 400;
	color: white;
	font-size: 18px;
	text-align: center;
	letter-spacing: 0;
	line-height: normal;
	background: radial-gradient(57.89% 132% at 65.79% -35%, rgba(120, 123, 255, 0.08) 0%, rgba(120, 123, 255, 0.02) 100%), linear-gradient(180deg, rgba(255, 255, 255, 0) 54.17%, rgba(255, 255, 255, 0.07) 100%), rgba(255, 255, 255, 0.03);
	backdrop-filter: blur(0.624565px);
}

.card-title {
	width: 100%;
	font-weight: 600;
	color: #a1a1a1;
	font-size: 24px;
	letter-spacing: 0;
}

.card-description {
	width: 100%;
	font-weight: 400;
	color: #f5f5f5;
	font-size: 16px;
	line-height: 35px;
}

.btn-container {
	display: flex;
	justify-content: center;
	border-radius: 8px;
	position: relative;
	transition: 0.3s ease;
}

.btn-background {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	border-radius: 8px;
	background: rgba(255, 255, 255, 0.005);
	box-shadow: inset 0px 0px 0px 0.1px #ffffff2e;
	overflow: hidden;
}

.btn-inner {
	height: 100%;
	width: 100%;
	border-radius: 8px;
	background: rgba(255, 255, 255, 0.002);
	box-shadow: inset 0px 0px 0px 0 #FFFFFF;
}

.get-start-btn {
	position: relative;
	padding: 20px 30px;
	border-radius: 8px;
	border: none;
	background: radial-gradient(231.94% 231.94% at 50% 100%, #c88bc4a1 0%, rgb(200 139 196 / 4%) 25.24%), linear-gradient(180deg, rgba(243, 238, 255, 0) 0%, rgb(243 238 255 / 0%) 100%), rgb(200 139 196 / 0%);
	box-shadow: 0px 0.208188px 0.520471px rgba(0, 0, 0, 0.39), 0px 0.832753px 0.832753px rgba(0, 0, 0, 0.34), 0px 1.97779px 1.14504px rgba(0, 0, 0, 0.2), 0px 3.5392px 1.45732px rgba(0, 0, 0, 0.06), 0px 5.51699px 1.56141px rgba(0, 0, 0, 0.01), inset 0px 0px 1.24913px rgb(255 255 255 / 0%), inset 0px -0.832753px 3.33101px #1E001C;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	font-weight: 600;
	color: #f4f0ff;
	font-size: 14px;
	text-align: center;
	line-height: 2.1px;
	letter-spacing: 0;
	transition: all 0.3s ease;

	&:hover {
		background: transparent;
	}
}

.btn-container:hover {
	background: transparent;
	transform: translateY(-2px);
}

.background-gradient {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: -1;
	opacity: 0.5;
	pointer-events: none;
}

.gradient-inner {
	position: relative;
	height: 100%;
	left: 0;
	background: radial-gradient(50% 36.46% at 50% 50%, rgb(209 170 215 / 7%) 0%, rgba(5, 5, 11, 0) 100%), radial-gradient(50% 38.81% at 50% 50%, rgba(209, 170, 215, 0.16) 0%, rgba(5, 5, 11, 0) 100%)
}

@media (max-width: 768px) {

	.feature-card,
	.feature-card.image-left,
	.feature-card.image-right {
		grid-template-columns: 1fr;
	}
}


/* add section styles */
.add-section {
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 90px 0 60px;
	width: 100%;
	min-height: 300px;
	position: relative;
	overflow: hidden;
}

.add-section::before {
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	pointer-events: none;
	background: radial-gradient(130% 107.13% at 50% 10%, rgba(0, 0, 0, 0) 37.41%, #6633EE 69.27%, #FFFFFF 100%);
	filter: blur(4.68424px);
}

.content-wrapper {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 16px;
	width: 100%;
	margin-bottom: 70px;
}

.add-section .add-title {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	max-width: 768px;
	font-weight: 700;
	font-size: 35px;
	text-align: center;
	letter-spacing: 0;
	line-height: 40px;
	background: radial-gradient(50% 50% at 50% 50%, rgba(255, 255, 255, 1) 30%, rgba(255, 255, 255, 0.4) 100%);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	color: transparent;
	margin-bottom: 0;
}


.add-section .add-description {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 400;
	color: #c5c5c5;
	font-size: 20px;
	text-align: center;
	line-height: 30px;
	max-width: 715px;
	margin-bottom: 0;
}

.button-group {
	display: flex;
	align-items: center;
	gap: 20px;
	padding-top: 8px;
}

.btn-primary {
	display: inline-flex;
	gap: 4px;
	padding: 12px 20px;
	background-color: #ebebeb;
	border: none;
	border-radius: 30px;
	align-items: center;
	justify-content: center;
	height: auto;
	cursor: pointer;
	font-weight: 600;
	color: #0b081c;
	font-size: 14px;
	letter-spacing: 0;
	white-space: nowrap;
	transition: background-color 0.3s ease;
}

.btn-primary:hover {
	background-color: #d5d5d5;
}

.btn-outline {
	display: flex;
	padding: 12px 20px;
	border: 0.5px solid #ebebeb;
	border-radius: 30px;
	align-items: center;
	justify-content: center;
	height: auto;
	background-color: transparent;
	cursor: pointer;
	font-weight: 600;
	color: #ebebeb;
	font-size: 14px;
	letter-spacing: 0;
	white-space: nowrap;
	transition: background-color 0.3s ease;
}

.btn-outline:hover {
	background-color: rgba(235, 235, 235, 0.1);
}


/* integrations-section styles */
.integrations-section {
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 100%;
	position: relative;
	/* background: radial-gradient(50% 50% at 50% 50%,
			rgba(148, 101, 255, 0.06) 0%,
			rgba(3, 0, 20, 0) 100%);
	background: radial-gradient(45.1% 50% at 50% 50%, rgb(3 0 20 / 50%) 0%, rgb(148 101 255 / 15%) 100%); */

}

.gradient-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 2;
	background: linear-gradient(270deg,
			rgba(3, 0, 20, 1) 0%,
			rgba(3, 0, 20, 0.5) 17%,
			rgba(3, 0, 20, 0) 33%,
			rgba(3, 0, 20, 0) 50%,
			rgba(3, 0, 20, 0) 67%,
			rgba(3, 0, 20, 0.5) 83%,
			rgba(3, 0, 20, 1) 100%);
	pointer-events: none;
}

.integrations-image {
	position: relative;
	width: 100%;
	height: auto;
	z-index: 10;
	object-fit: cover;
}


/* meeting-section styles */
.meeting-section {
	position: relative;
	/* background: #ffffff;
    border-radius: 40px; */
	box-shadow: 0 40px 90px rgba(9, 1, 24, 0.08);
	overflow: hidden;
	background-image: url(../images/section-bg.png);
	background-size: cover;
	background-repeat: no-repeat;
	border-radius: 50px;
	margin: 0 15px;
}

/* .meeting-section .section-title{
	color: #000000;
    font-size: 32px;
}

.meeting-section .section-description {
	font-weight: 400;
    color: #141414;
} */

.meeting-content {
	row-gap: 30px;
}

.meeting-info-card {
	position: relative;
	background: #0d0720;
	border: 1px solid rgba(123, 93, 255, 0.22);
	border-radius: 24px;
	padding: 30px 32px;
	display: flex;
	flex-direction: column;
	gap: 18px;
	color: #ffffff;
}

.meeting-info-card::before {
	content: "";
	position: absolute;
	inset: 0;
	border-radius: inherit;
	padding: 1px;
	background: linear-gradient(120deg, rgba(123, 93, 255, 0.4), rgba(174, 120, 255, 0.25), rgba(255, 255, 255, 0.4));
	-webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
	-webkit-mask-composite: xor;
	mask-composite: exclude;
	pointer-events: none;
}

.meeting-pill {
	align-self: flex-start;
	border-radius: 999px;
	/* border: 1px solid rgba(245, 245, 245, 0.15); */
	background: #0d0720;
	color: #ffffff;
	font-weight: 600;
	font-size: 16px;
	letter-spacing: 0.4px;
}

.meeting-feature-list {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 15px;
	margin: 0;
	padding: 0;
}

.meeting-feature-list li {
	position: relative;
	padding-left: 28px;
	color: #ffffff;
	font-size: 15px;
	line-height: 1.6;
	font-weight: 500;
}

.meeting-feature-list li::before {
	content: "";
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: radial-gradient(circle at 30% 30%, #ffffff 0%, #7b5dff 100%);
	box-shadow: 0 0 0 4px rgba(123, 93, 255, 0.16);
	position: absolute;
	left: 0;
	top: 8px;
}

.meeting-cta-group {
	display: flex;
	align-items: center;
	gap: 12px;
	flex-wrap: wrap;
}

.meeting-cta {
	gap: 8px;
	padding: 12px 18px;
	border-radius: 30px;
	background: #ebebeb;
	border: 0.5px solid #ebebeb;
	color: #0b081c;
	font-weight: 600;
	font-size: 15px;
	text-align: center;
	text-decoration: none;
	box-shadow: 0 12px 28px rgba(9, 1, 24, 0.08);
	transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.meeting-cta:hover {
	background: #d4d4d4;
	transform: translateY(-2px);
	box-shadow: 0 16px 34px rgba(9, 1, 24, 0.12);
}

.meeting-background {
	position: relative;
	/* background: linear-gradient(180deg, #f6f3ff 0%, #ffffff 100%); */
	background: linear-gradient(180deg, #f6f3ff00 0%, #ffffff1c 100%);
	border: 1px solid rgba(123, 93, 255, 0.12);
	border-radius: 28px;
	padding: 18px;
	box-shadow: 0 24px 60px rgba(9, 1, 24, 0.08);
}

.meeting-background .meeting-main-image .meeting-image {
	width: 100%;
	position: relative;
	border-radius: 20px;
}

.meeting-piece {
	position: absolute;
	display: flex;
	align-items: flex-start;
	justify-content: flex-end;
	transition: transform 0.3s ease;

	&:hover {
		transform: translateY(-4px);
		transition: transform 0.3s ease;
	}
}

.meeting-piece-1 {
	top: 30%;
	left: 5%;
	display: inline-block;
}

.meeting-piece-img-1 {
	position: relative;
}

.meeting-piece-2 {
	top: 10%;
	right: 30%;
	display: inline-block;
}

.meeting-piece-img-2 {
	position: relative;
}

@media (max-width: 768px) {
	.meeting-section {
		border-radius: 32px;
	}

	.meeting-section .section-title,
	.meeting-section .section-description {
		text-align: left;
		width: 100%;
	}

	.meeting-info-card {
		padding: 22px 20px;
	}

	.meeting-background {
		margin-top: 12px;
	}

	.meeting-piece-1,
	.meeting-piece-2 {
		position: static;
		margin-top: 16px;
	}

	.meeting-piece {
		justify-content: flex-start;
	}

	.meeting-piece-container {
		display: flex;
		align-items: center;
		justify-content: center;
		gap: 12px;
	}
}


/* review section styles */
.reviews-section {
	width: 100%;
	position: relative;
}

.reviews-marquee {
	width: 100%;
	overflow: hidden;
	position: relative;
	padding: 10px 0;
}

.reviews-marquee+.reviews-marquee {
	margin-top: 10px;
}

.reviews-track {
	display: inline-flex;
	align-items: stretch;
	gap: 20px;
	animation: reviews-marquee 30s linear infinite;
}

/* Show 3 cards by default on desktop */
.reviews-marquee .review-card {
	flex: 0 0 15.3333%;
	max-width: 15.3333%;
}

.reviews-marquee--rtl .reviews-track {
	animation-direction: reverse;
}

.reviews-track:hover {
	animation-play-state: paused;
}

@keyframes reviews-marquee {
	0% {
		transform: translateX(0);
	}

	100% {
		transform: translateX(-50%);
	}
}

.reviews-grid {
	display: grid;
	gap: 20px;
	justify-content: center;
	grid-template-columns: repeat(3, 1fr) !important;
	/* grid-template-columns: repeat(3, 190px); */
}

.review-card {
	flex-shrink: 0;
	border-radius: 8px;
	border: none;
	position: relative;
	overflow: hidden;
	background: radial-gradient(57.89% 132% at 65.79% -35%, rgba(120, 123, 255, 0.06) 0%, rgba(120, 123, 255, 0) 100%), linear-gradient(180deg, rgba(255, 255, 255, 0) 54.17%, rgba(255, 255, 255, 0.04) 100%), rgba(255, 255, 255, 0.01);
	backdrop-filter: blur(0.624565px);
	padding: 20px;
}

.review-card::before {
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	pointer-events: none;
	z-index: 1;
	/* background: linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0) 100%), rgba(255, 255, 255, 0.04); */
	background: linear-gradient(180deg, rgb(255 255 255 / 0%) 0%, rgba(255, 255, 255, 0) 100%), rgb(255 255 255 / 4%);
	border-radius: 1.66551px;
}

.review-card-content {
	display: flex;
	flex-direction: column;
	gap: 14px;
	height: 100%;
	position: relative;
	z-index: 2;
}

.review-card-header {
	display: flex;
	align-items: center;
	gap: 15px;
}

.avatar {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	object-fit: cover;
	flex-shrink: 0;
}

.user-info {
	display: flex;
	flex-direction: column;
	flex: 1;
}

.user-name {
	font-weight: 500;
	color: #f4f0ff;
	font-size: 12px;
	letter-spacing: 0;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.user-handle {
	font-weight: 400;
	color: rgba(239, 237, 253, 0.6);
	font-size: 12px;
}

.review-text {
	font-weight: 400;
	font-size: 13px;
	letter-spacing: 0;
	color: rgba(239, 237, 253, 0.7);
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	line-height: 30px;
	margin-bottom: 0;
}

.review-gradient-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(270deg, #030014 0%, rgba(3, 0, 20, 0.5) 16.67%, rgba(3, 0, 20, 0) 33.33%, rgba(3, 0, 20, 0) 50%, rgba(3, 0, 20, 0) 66.67%, rgba(3, 0, 20, 0.5) 83.33%, #030014 100%);
	pointer-events: none;
	z-index: 0;
}


/* settings section styles */
.services-section {
	position: relative;
	/* background-color: rgba(0, 0, 0, 0.15);
	background: #ffffff;
    border-radius: 40px; */
	background-image: url(../images/section-bg.png);
	background-size: cover;
	background-repeat: no-repeat;
	border-radius: 50px;
	margin: 0 15px;
}

/* .services-section .section-title{
	color: #000000;
    font-size: 32px;
}

.services-section .section-description{
	font-weight: 400;
    color: #141414;
} */

/* .services-section::after {
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background: radial-gradient(50% 50% at 50% 50%, rgb(209 170 215 / 0%) 0%, rgb(5 5 11 / 0%) 100%), radial-gradient(50% 50% at 50% 50%, rgb(209 170 215 / 0%) 0%, rgba(5, 5, 11, 0) 100%);
	opacity: 0.5;
	pointer-events: none;
} */

.services-cards-grid {
	display: grid;
	width: 100%;
	gap: 20px;
	justify-content: center;
	grid-template-columns: repeat(3, 1fr) !important;
}

.service-card {
	position: relative;
	display: flex;
	flex-direction: column;
	border: none;
	overflow: hidden;
	border-radius: 16px;
	padding: 24px;
	/* background: linear-gradient(180deg, rgb(20 11 41 / 88%) 0%, rgb(22 3 63 / 92%) 100%);
    border: 1px solid rgb(40 40 40 / 40%); */
	background: linear-gradient(180deg, rgb(20 11 41 / 55%) 0%, rgb(22 3 63 / 35%) 100%);
	border: 1px solid rgb(54 54 54 / 55%);
	transition: all 0.3s ease;

	&:hover {
		transform: translateY(-2px);
	}
}

.service-card-background {
	position: absolute;
	inset: 0;
	width: 100%;
	z-index: 0;
}

.service-card-content {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 25px;
	height: 100%;
	z-index: 1;
}

.service-card-icon {
	width: 55px;
	height: 55px;
	font-size: 26px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(92.23deg, #746BAE 0%, #5E7CF1 100%);
	color: #ffffff;
	border-radius: 16px;
	box-shadow: 0 4px 15px rgba(94, 124, 241, 0.3);
}

.service-card-title {
	font-weight: 500;
	color: #d5ddf8;
	font-size: 20px;
	letter-spacing: 0;
	margin-bottom: 20px;
}

.service-card-description {
	font-weight: 400;
	color: #cac6dd;
	font-size: 15px;
	letter-spacing: 0;
	line-height: 30px;
	overflow: hidden;
	display: -webkit-box;
	-webkit-line-clamp: 8;
	-webkit-box-orient: vertical;
	text-overflow: ellipsis;
	margin-bottom: 0;
}



/* pricing section styles */
.pricing-section {
	position: relative;
	width: 100%;
	/* background-color: rgb(11 1 33 / 81%); */
}

/* pricing section styles */
.pricing-section {
	position: relative;
	width: 100%;
}

.pricing-table-container {
	display: flex;
	gap: 40px;
	align-items: flex-start;
}

.pricing-table-wrapper {
	flex: 2;
	background: linear-gradient(80.42deg, rgba(0, 0, 0, 0.16) 25.25%, rgba(83, 84, 108, 0.16) 98.05%);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 18px;
	overflow: hidden;
	padding: 40px;
}

.pricing-table {
	width: 100%;
	border-collapse: separate;
	border-spacing: 0;
	table-layout: fixed;
}

.pricing-table thead th {
	padding: 20px 15px;
	text-align: center;
	font-weight: 600;
	color: #f5f5f5;
	font-size: 20px;
	border-bottom: 2px solid rgba(255, 255, 255, 0.15);
}

.pricing-table thead .table-header-accounts {
	text-align: left;
	width: 15%;
}

.pricing-table thead .table-header-plan {
	width: 28.33%;
}

.pricing-row {
	border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.pricing-row:last-child {
	border-bottom: none;
}

.account-tier {
	padding: 30px 15px;
	font-weight: 600;
	color: #f5f5f5;
	font-size: 18px;
	text-align: left;
	vertical-align: middle;
}

.price-cell {
	padding: 30px 15px;
	text-align: center;
	vertical-align: middle;
}

.price-info {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 10px;
}

.price-value {
	font-weight: 700;
	color: white;
	font-size: 22px;
	line-height: 1.2;
	white-space: nowrap;
}

.price-savings {
	font-weight: 500;
	color: #4CAF50;
	font-size: 13px;
	min-height: 20px;
	white-space: nowrap;
}

.price-period {
	color: #a1a1a1;
	font-size: 14px;
	font-weight: 400;
}

.price-mo {
	color: #a1a1a1;
	font-size: 14px;
	font-weight: 400;
}

.buy-btn {
	background: linear-gradient(92.23deg, #746BAE 0%, #5E7CF1 100%);
	border: none;
	border-radius: 8px;
	color: white;
	font-weight: 600;
	font-size: 15px;
	padding: 10px 28px;
	cursor: pointer;
	transition: all 0.3s ease;
	margin-top: 8px;
	white-space: nowrap;
}

.buy-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(107, 92, 231, 0.4);
}

.contact-btn {
	background: linear-gradient(135deg, #FF6B6B 0%, #FF8E8E 100%);
	padding: 12px 32px;
	font-size: 16px;
}

.contact-btn:hover {
	box-shadow: 0 4px 12px rgba(255, 107, 107, 0.4);
}

.custom-pricing {
	padding: 15px 0;
}

.custom-pricing .price-value {
	font-size: 20px;
	margin-bottom: 10px;
}

/* Selection Panel */
.selection-panel {
	flex: 1;
	background: linear-gradient(80.42deg, rgba(0, 0, 0, 0.16) 25.25%, rgba(83, 84, 108, 0.16) 98.05%);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 18px;
	padding: 30px;
	display: flex;
	flex-direction: column;
	gap: 25px;
	position: sticky;
	top: 100px;
}

.selection-title {
	font-weight: 600;
	color: #f5f5f5;
	font-size: 22px;
	margin-bottom: 0;
	text-align: center;
}

.plan-type-selector {
	display: flex;
	gap: 8px;
	background: rgba(0, 0, 0, 0.2);
	border-radius: 10px;
	padding: 5px;
}

.plan-type-btn {
	flex: 1;
	background: transparent;
	border: none;
	border-radius: 8px;
	color: #cac6dd;
	font-weight: 500;
	font-size: 14px;
	padding: 10px 12px;
	cursor: pointer;
	transition: all 0.3s ease;
}

.plan-type-btn.active {
	background: linear-gradient(92.23deg, #746BAE 0%, #5E7CF1 100%);
	color: white;
}

.plan-type-btn:hover:not(.active) {
	background: rgba(255, 255, 255, 0.05);
}

.seat-counter {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 15px;
}

.counter-btn {
	width: 40px;
	height: 40px;
	border-radius: 8px;
	border: 1px solid rgba(255, 255, 255, 0.2);
	background: rgba(255, 255, 255, 0.05);
	color: white;
	font-size: 20px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
	display: flex;
	align-items: center;
	justify-content: center;
}

.counter-btn:hover {
	background: rgba(255, 255, 255, 0.1);
	border-color: rgba(255, 255, 255, 0.3);
}

.seat-input {
	width: 80px;
	height: 50px;
	border-radius: 8px;
	border: 1px solid rgba(255, 255, 255, 0.2);
	background: rgba(0, 0, 0, 0.2);
	color: white;
	font-size: 24px;
	font-weight: 600;
	text-align: center;
	-moz-appearance: textfield;
}

.seat-input::-webkit-outer-spin-button,
.seat-input::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

.total-display {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
	padding: 20px;
	background: rgba(0, 0, 0, 0.2);
	border-radius: 12px;
	border: 1px solid rgba(255, 255, 255, 0.1);
}

.total-label {
	font-weight: 600;
	color: white;
	font-size: 18px;
	margin-bottom: 0;
	text-align: center;
}

.total-sublabel {
	font-weight: 400;
	color: #a1a1a1;
	font-size: 13px;
	text-align: center;
}

.savings-display {
	color: #4CAF50;
	font-weight: 600;
	font-size: 15px;
	margin-top: 8px;
	text-align: center;
}

.original-price {
	color: #a1a1a1;
	font-size: 16px;
	text-decoration: line-through;
	margin-bottom: 5px;
}

.per-account-price {
	color: #cac6dd;
	font-size: 13px;
	margin-top: 5px;
}

.checkout-btn {
	width: 100%;
	background: linear-gradient(92.23deg, #746BAE 0%, #5E7CF1 100%);
	border: none;
	border-radius: 12px;
	color: white;
	font-weight: 600;
	font-size: 16px;
	padding: 15px 20px;
	cursor: pointer;
	transition: all 0.3s ease;
	box-shadow: 0 4px 15px rgba(107, 92, 231, 0.3);
}

.checkout-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(107, 92, 231, 0.5);
}

/*Old pricing grid styles - keeping for backwards compatibility */
.pricing-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
	width: 100%;
}

.pricing-card {
	display: flex;
	flex-direction: column;
	min-height: 784px;
	justify-content: flex-start;
	gap: 25px;
	padding: 25px;
	border-radius: 18px;
	overflow: hidden;
	background: linear-gradient(80.42deg, rgba(0, 0, 0, 0.16) 25.25%, rgba(83, 84, 108, 0.16) 98.05%);
	border: 1px solid rgba(255, 255, 255, 0.1);
}

.pricing-card-header {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.pricing-card-header-top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	flex-wrap: wrap;
}

.pricing-card-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 8px 14px;
	border-radius: 999px;
	color: #ffffff;
	font-weight: 600;
	font-size: 13px;
	line-height: 1.2;
	border: 1px solid rgba(255, 255, 255, 0.1);
	background: linear-gradient(51deg, rgba(0, 0, 0, 0.1) 0%, rgba(83, 84, 108, 0.1) 100%);
	box-shadow: 0 10px 30px rgba(22, 3, 63, 0.35);
}

.pricing-card-badge-icon {
	width: 16px;
	height: 16px;
	color: #ffffff;
}

.pricing-card-title {
	font-weight: 700;
	color: #f5f5f5;
	font-size: 30px;
}

.pricing-card-subtitle {
	font-weight: 400;
	color: #cac6dd;
	font-size: 15px;
	letter-spacing: 0;
	margin-bottom: 30px;
}

.slider-container {
	display: flex;
	flex-direction: column;
	gap: 11px;
	margin-bottom: 20px;
}

.slider-container .slider-label-container {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 20px;
}

.slider-container .slider-label-container .account-display {
	font-size: 20px;
	font-weight: 600;
	color: #fff;
}

.slider-label {
	font-weight: 500;
	color: white;
	font-size: 14px;
	text-align: center;
	margin-bottom: 0;
}

.slider-input {
	width: 100%;
	height: 6px;
	border-radius: 3px;
	background: linear-gradient(to right,
			rgba(255, 255, 255, 0.1) 0%,
			rgba(255, 255, 255, 0.3) 100%);
	outline: none;
	-webkit-appearance: none;
	appearance: none;
}

.slider-input::-webkit-slider-thumb {
	-webkit-appearance: none;
	appearance: none;
	width: 16px;
	height: 16px;
	border-radius: 50%;
	background: linear-gradient(135deg, #c88bc4 0%, #9382ff 100%);
	cursor: pointer;
	box-shadow: 0 2px 8px rgba(200, 139, 196, 0.4);
}

.slider-input::-moz-range-thumb {
	width: 16px;
	height: 16px;
	border-radius: 50%;
	background: linear-gradient(135deg, #c88bc4 0%, #9382ff 100%);
	cursor: pointer;
	border: none;
	box-shadow: 0 2px 8px rgba(200, 139, 196, 0.4);
}

.price-section {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.price-display {
	display: flex;
	align-items: flex-start;
	justify-content: center;
	margin-bottom: 8px;
}

.price-amount {
	font-weight: 600;
	color: white;
	font-size: 40px;
	text-align: center;
	letter-spacing: 0;
	line-height: normal;
}

.price-period {
	font-weight: 400;
	color: white;
	font-size: 22px;
	text-align: center;
	line-height: normal;
	margin-top: 16px;
}

.price-label {
	font-weight: 400;
	color: #a1a1a1;
	font-size: 18px;
	line-height: normal;
}

.price-contact {
	font-weight: 600;
	color: white;
	font-size: 32px;
	text-align: center;
	letter-spacing: 0;
	line-height: normal;
	margin-bottom: 8px;
}

.total-box {
	display: flex;
	flex-direction: column;
	align-items: center;
	border-radius: 8px;
	border: 1px solid rgba(255, 255, 255, 0.1);
	background: linear-gradient(51deg, rgba(0, 0, 0, 0.1) 0%, rgba(83, 84, 108, 0.1) 100%);
	padding: 15px;
}

.total-amount {
	font-weight: 600;
	color: white;
	font-size: 25px;
	letter-spacing: 0;
	margin-bottom: 0;
}

.pricing-cta-button {
	width: 100%;
	background: rgba(255, 255, 255, 0.005);
	border: none;
	border-radius: 12px;
	box-shadow: inset 0px 0px 12px rgba(255, 255, 255, 0.2);
	backdrop-filter: blur(20px);
	font-weight: 400;
	color: white;
	font-size: 16px;
	cursor: pointer;
	transition: all 0.3s ease;
	padding: 15px 20px;
	margin-bottom: 20px;
	text-decoration: none;
}

.pricing-cta-button:hover {
	background: rgba(255, 255, 255, 0.08);
	box-shadow: inset 0px 0px 12px rgba(255, 255, 255, 0.3);
}

.pricing-feature-item {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	padding: 25px 0;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.pricing-feature-item i {
	font-size: 20px;
	color: #7950ff8f;
}

.pricing-feature-item:first-child {
	border-top: none;
	padding-top: 0;
}

.pricing-feature-icon {
	width: 20px;
	height: 20px;
	flex-shrink: 0;
	color: white;
}

.pricing-feature-text {
	font-weight: 400;
	color: #cac6dd;
	font-size: 15px;
	margin-bottom: 0;
}

.pricing-tiers {
	display: flex;
	flex-direction: column;
	gap: 15px;
	padding: 20px 0;
	margin-bottom: 10px;
}

.tier-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 12px 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.tier-row:last-child {
	border-bottom: none;
}

.tier-label {
	font-weight: 400;
	color: #cac6dd;
	font-size: 15px;
}

.tier-price {
	font-weight: 600;
	color: white;
	font-size: 16px;
}

.pricing-section .pricing-bottom-btn {
	text-align: center;
	margin-top: 35px;
	padding-top: 35px;
	border-top: 1px solid rgb(243 243 243 / 15%);
}


/* faq section styles */
.faq-section {
	/* width: 100%;
    position: relative;
    background: radial-gradient(45.1% 50% at 50% 50%, rgb(3 0 20 / 50%) 0%, rgb(148 101 255 / 15%) 100%);
    border-radius: 40px; */
	position: relative;
	/* border-radius: 40px;
    background: #fdfdfd; */
	background-image: url(../images/section-bg.png);
	background-size: cover;
	background-repeat: no-repeat;
	border-radius: 50px;
	margin: 0 15px;
}

/* .faq-section .section-title{
	color: #000000;
    font-size: 32px;
}

.faq-section .section-description{
	font-weight: 400;
    color: #141414;
} */

.faq-section .section-subtitle {
	background: rgb(11 3 26 / 72%);
	box-shadow: 0px 0px 12px rgb(255 255 255 / 48%), 0px 4px 50px rgb(159 100 239 / 68%);
}

.faq-accordion {
	display: flex;
	flex-direction: column;
	width: 100%;
	gap: 20px;
}

.faq-accordion-item {
	/* background: rgba(255, 255, 255, 0.03);
	border: 1px solid rgba(204, 118, 255, 0.06);
	border-radius: 8px;
	overflow: hidden;
	transition: all 0.3s ease; */
	border-radius: 8px;
	overflow: hidden;
	transition: all 0.3s ease;
	/* background: linear-gradient(180deg, rgb(20 11 41 / 88%) 0%, rgb(22 3 63 / 92%) 100%);
    border: 1px solid rgb(40 40 40 / 40%); */
	background: linear-gradient(180deg, rgb(20 11 41 / 43%) 0%, rgb(22 3 63 / 58%) 100%);
	border: 1px solid rgb(78 78 78 / 28%);
}

.faq-accordion-item.open {
	/* border-color: rgba(204, 118, 255, 0.15);
	background: rgba(255, 255, 255, 0.05); */
	/* background: linear-gradient(180deg, rgb(20 11 41 / 85%) 0%, rgb(22 3 63 / 88%) 100%);
    border: 1px solid rgb(40 40 40 / 40%); */
	background: linear-gradient(180deg, rgb(20 11 41 / 43%) 0%, rgb(22 3 63 / 58%) 100%);
	border: 1px solid rgb(78 78 78 / 28%);
}

.faq-accordion-trigger {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	padding: 17px 15px;
	background: transparent;
	border: none;
	cursor: pointer;
	font-weight: 500;
	color: white;
	font-size: 15px;
	text-align: left;
	transition: all 0.3s ease;
}

.faq-accordion-trigger:hover {
	background: rgba(255, 255, 255, 0.02);
}

.faq-text {
	flex: 1;
	text-align: left;
}

.faq-icon {
	width: 20px;
	height: 20px;
	flex-shrink: 0;
	margin-left: 12px;
	transition: transform 0.3s ease;
	display: flex;
	align-items: center;
	justify-content: center;
}

.faq-accordion-item.open .faq-icon {
	transform: rotate(180deg);
}

.faq-content {
	max-height: 0;
	overflow: hidden;
	transition: all 0.3s ease;
}

.faq-accordion-item.open .faq-content {
	max-height: 500px;
}

.faq-ans {
	padding: 10px 15px 15px 15px;
	font-weight: 400;
	color: #ebebeb;
	font-size: 13px;
	line-height: 25px;
}


/* start section styles */
.start-section {
	position: relative;
	width: 100%;
	overflow: hidden;
	/* background: linear-gradient(64.17deg, rgba(0, 0, 0, 0) 21.17%, rgba(44, 15, 121, 0.8) 87.07%, rgba(255, 255, 255, 0.8) 150.64%); */
	backdrop-filter: blur(4.68424px);
	padding: 80px 0;
}

.start-section::before {
	content: '';
	position: absolute;
	height: 160px;
	left: 0px;
	right: 0px;
	bottom: 0px;
	background: linear-gradient(180deg, rgba(32, 41, 44, 0) 0%, rgba(0, 0, 0, 0.5) 100%);
}

.start-section-title {
	font-weight: 700;
	font-size: 45px;
	text-align: center;
	letter-spacing: 0;
	line-height: 65px;
	background: radial-gradient(50% 50% at 50% 50%, rgba(255, 255, 255, 1) 30%, rgba(255, 255, 255, 0.4) 100%);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	color: transparent;
	margin-bottom: 30px;
}

.start-cta-container {
	position: relative;
	width: 490px;
	height: 75px;
	margin: 0 auto;
}

.form-wrapper {
	position: absolute;
	inset: 0;
	border-radius: 10px;
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.form-inner {
	position: absolute;
	inset: 10px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	border-radius: 8px;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 1));
	box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
	padding: 0 16px;
}

.form-border-outer,
.form-border-inner {
	position: absolute;
	inset: 0;
	border-radius: 10px;
	pointer-events: none;
}

.form-border-outer {
	border: 1px solid rgba(0, 0, 0, 0.05);
}

.form-border-inner {
	border: 1px solid white;
	opacity: 0.1;
}

.email-input {
	flex: 1;
	font-weight: 600;
	font-size: 18px;
	color: rgba(0, 0, 0, 0.65);
	background: transparent;
	border: none;
	outline: none;
}

.email-input::placeholder {
	color: rgba(0, 0, 0, 0.4);
}

.start-cta-button {
	padding: 12px 20px;
	background: #9382ff;
	border: none;
	border-radius: 10px;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow:
		0 12px 12px -3.75px rgba(0, 0, 0, 0.06),
		0 2.75px 2.75px -2.5px rgba(0, 0, 0, 0.16),
		0 0.72px 0.72px -1.25px rgba(0, 0, 0, 0.18);
	transition: all 0.3s ease;
}

.start-cta-button:hover {
	background: rgba(147, 130, 255, 0.9);
	box-shadow:
		0 14px 16px -3px rgba(147, 130, 255, 0.3),
		0 3px 3px -2px rgba(0, 0, 0, 0.16),
		0 1px 1px -1px rgba(0, 0, 0, 0.18);
}

.button-text {
	font-weight: 600;
	color: #fff;
	font-size: 19px;
	line-height: 1;
	white-space: nowrap;
}


/* footer section styles */
.footer-section {
	background: #130928;
	padding: 50px 0 40px;
	margin: 20px;
	border-radius: 15px;
	overflow: auto;
}

.footer-grid {
	display: grid;
	width: 100%;
	grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
	gap: 20px;
}

.footer-title {
	font-size: 16px;
	font-weight: 500;
	color: #a3a3a3;
	margin-bottom: 20px;
}

.footer-column ul {
	list-style: none;
	padding: 0;
	margin: 0;
	display: grid;
	gap: 10px;
}

.footer-column a {
	font-size: 14px;
	color: #f3f3f3;
	text-decoration: none;
	transition: color 0.2s ease;
}

.footer-column a:hover {
	color: #d4d4d4;
}

.footer-contact {
	display: grid;
	gap: 15px;
}

.footer-contact .social-link ul {
	display: flex;
	gap: 15px;
	align-self: center;
}

.footer-contact .social-link .social-icon {
	padding: 15px;
	border-radius: 50%;
	background-color: #22173A;
	height: 40px;
	width: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 18px;
	color: #fff;
	transition: all 0.3s ease;
}

.footer-social {
	width: 54px;
	height: 10px;
	margin-top: 8px;
}

.footer-separator {
	width: 100%;
	height: 1px;
	background: #262626;
	margin: 20px 0;
}


.footer-bottom {
	display: flex;
	justify-content: center;
	align-items: center;
}

.footer-copy,
.footer-terms {
	font-size: 14px;
	color: #d4d4d4;
}

.footer-terms {
	text-decoration: none;
	transition: color 0.2s ease;
}

.footer-terms:hover {
	color: #d4d4d4;
}

.disclaimer-title {
	font-size: 18px;
	font-weight: 600;
	color: #a3a3a3;
	margin-bottom: 10px;
}

.disclaimer-text {
	font-size: 14px;
	color: #f3f3f3;
	line-height: 1.5;
	margin-bottom: 0;
}

.disclaimer-wrapper {
	margin-top: 50px;
}

.startup-image-wrapper {
	margin-top: 10px;
}

.startup-image {
	width: 180px;
	height: auto;
}


/* input email */
.banner-input-wrapper {
	position: relative;
	border-radius: 10px;
	width: 50%;
	margin: 0 auto;
	z-index: 1;
}

.banner-form-inner {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
	border-radius: 160px;
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(255, 255, 255, 0.1);
	padding: 8px 10px 8px 25px
}


.banner-email-input {
	flex: 1;
	font-weight: 600;
	font-size: 18px;
	color: rgb(255 255 255 / 65%);
	background: transparent;
	border: none;
	outline: none;
}

.banner-email-input::placeholder {
	color: rgba(255, 255, 255, 0.4);
}

.banner-start-cta-button {
	padding: 15px 25px;
	border-radius: 40px;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
	background: radial-gradient(100% 60% at 50% 50%, rgb(255 255 255 / 17%) 0%, rgba(255, 255, 255, 0) 100%), rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(255, 255, 255, 0.1);
}

.banner-features-line {
	display: flex;
	justify-content: center;
	gap: 20px;
	margin-top: 20px;
	z-index: 1;
	position: relative;
}

.banner-feature-item {
	display: flex;
	align-items: center;
	gap: 10px;
	color: rgba(235, 235, 235, 0.85);
	font-size: 15px;
	font-weight: 400;
}

.banner-feature-item i {
	font-size: 18px;
	color: #9ea9ff;
}


/* featur-details-banner styles */
.featur-details-banner {
	padding-top: 120px;
	padding-bottom: 80px;
	position: relative;
	background-image: url(../images/feature-details-bg-5.png);
	background-size: cover;
	background-repeat: no-repeat;
	opacity: 1;
	backdrop-filter: saturate(0.3);
	background: linear-gradient(180deg, #130534d1 0%, #22075eb5 51.44%, #220f57d9 100%);
}

.featur-details-banner .featre-background-image {
	width: 830px;
	border-radius: 18px;
	object-fit: cover;
	z-index: 1;
	z-index: 999;
	position: relative;
	border: 1px solid rgba(255, 255, 255, 0.1);
}

.featur-details-banner .banner-image-wrapper {
	width: 830px;
	left: 50%;
	transform: translateX(-50%);
	position: relative;
	margin-top: 20px;
}

.featur-details-banner .banner-image-wrapper::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	/* background: linear-gradient(0deg, rgb(10 1 24 / 38%) 6.71%, rgb(0 0 0 / 0%) 100%); */
	background: linear-gradient(0deg, rgb(10 1 24 / 8%) 6.71%, rgb(0 0 0 / 0%) 100%);
	border-radius: 18px;
	z-index: 1;
}

.featur-details-banner .banner-image-wrapper::after {
	/* background: rgba(10, 1, 24, 0.096); */
	background: rgb(10 1 24 / 24%);
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border-radius: 18px;
	z-index: 1;
}


/* features-details-section styles */
.features-details-section {
	position: relative;
	/* background-color: #fdfdfdeb;
	background-image: url(../images/section-bg.png);
	background-size: cover;
	background-repeat: no-repeat; */
}

/* .features-details-section .section-subtitle{
	background: rgb(11 3 26 / 72%);
    box-shadow: 0px 0px 12px rgb(255 255 255 / 48%), 0px 4px 50px rgb(159 100 239 / 68%);
}

.features-details-section .section-title{
	color: #000000;
}

.features-details-section .section-description{
	color: #141414;
} */

.features-details-section .feature-block {
	/* background: linear-gradient(80.42deg, rgba(0, 0, 0, 0.01) 25.25%, rgba(83, 84, 108, 0.1) 98.05%);
	border-radius: 20px;
	padding: 25px;
	border: 1px solid rgba(255, 255, 255, 0.1); */
	background: linear-gradient(180deg, rgb(20 11 41 / 74%) 0%, rgb(22 3 63 / 55%) 100%);
	border: 1px solid rgb(140 131 158 / 20%);
	border-radius: 20px;
	padding: 25px;
}

.features-details-section .feature-block .feature-img img {
	width: 100%;
	border-radius: 8px;
	border: 1px solid rgba(204, 118, 255, 0.06);
}

.features-details-section .feature-block .feature-img {
	position: relative;

	&::before {
		content: '';
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background: rgba(191, 83, 255, 0.02);
		border-radius: 12px;
		z-index: 1;
	}
}

.features-details-section .feature-block .feature-data h3 {
	font-size: 26px;
	font-weight: 600;
	color: #A1A1AA;
	margin-bottom: 25px;
	line-height: 40px;
}

.features-details-section .feature-data .feature-list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.features-details-section .feature-data .feature-list li {
	display: flex;
	gap: 10px;
	margin-bottom: 25px;

	&:last-child {
		margin-bottom: 0;
	}
}

.features-details-section .feature-data h4 {
	font-size: 21px;
	color: #e7e7e7;
	margin: 0;
	line-height: 30px;
	margin-bottom: 10px;
	font-weight: 500;
}

.features-details-section .feature-data .feature-list p {
	font-size: 17px;
	color: #D1C6DD;
	margin: 0;
	line-height: 35px;
}


.background-gradient {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: -1;
	opacity: 0.5;
	pointer-events: none;
}

.feature-gradient-inner {
	position: relative;
	height: 100%;
	left: 0;
	opacity: 0.1;
	filter: blur(50px);
	transform: rotate(90deg);
	background: linear-gradient(135deg, #746BAE 5.21%, #5E7CF1 85.94%);
}


/* feature-add-section styles */
.feature-add-section {
	position: relative;
	width: 100%;
	overflow: hidden;
	background-image: url(../images/add-bg.png);
	background-size: contain;
	background-repeat: repeat;
	padding: 80px 0;
	background-position: center;
}

.feature-add-section .feature-add-title {
	font-weight: 700;
	font-size: 45px;
	text-align: center;
	letter-spacing: 0;
	line-height: 65px;
	background: radial-gradient(50% 50% at 50% 50%, rgba(255, 255, 255, 1) 30%, rgba(255, 255, 255, 0.4) 100%);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	color: transparent;
	margin-bottom: 30px;
}

.feature-add-section .feature-add-description {
	font-weight: 400;
	color: #C5C5C5;
	font-size: 20px;
	text-align: center;
	letter-spacing: 0;
	line-height: 30px;
	margin-bottom: 30px;
}


/* testimonials section styles */
.testimonials-section {
	background-image: url(../images/section-bg.png);
	background-size: cover;
	background-repeat: no-repeat;
	border-radius: 50px;
	margin: 0 15px;
}

.testimonials-section .testimonials-container {
	background: linear-gradient(80.42deg, rgba(0, 0, 0, 0.16) 25.25%, rgba(83, 84, 108, 0.16) 98.05%);
	backdrop-filter: blur(8px);
	border-radius: 20px;
	padding: 20px;
	border: 1px solid rgba(255, 255, 255, 0.1);
	position: relative;
	min-height: 305px !important;
}

.testimonials-section .testimonials-container .testimonials-card {
	background: linear-gradient(79.59deg, rgba(51, 51, 62, 0.16) 6.21%, rgba(83, 84, 108, 0.16) 98.02%);
	border-radius: 20px;
	padding: 20px;
	border: 1px solid rgba(255, 255, 255, 0.1);
	display: none;
	opacity: 0;
	min-height: 265px !important;
}

.testimonials-section .testimonials-container .testimonials-card.active {
	display: block;
	opacity: 1;
}

.testimonials-section .testimonials-container .testimonials-card .testimonials-info {
	display: flex;
	align-items: center;
	gap: 15px;
	margin-bottom: 20px;
}

.testimonials-section .testimonials-info .testimonials-image img {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	object-fit: cover;
}

.testimonials-section .testimonials-info .testimonials-name {
	font-weight: 600;
	font-size: 18px;
	color: #fff;
	margin: 0;
}

.testimonials-section .testimonials-info .testimonials-role {
	font-weight: 400;
	font-size: 16px;
	color: #9D9BA6;
	margin: 0;
}

.testimonials-section .testimonials-card .testimonials-text {
	font-weight: 400;
	font-size: 16px;
	color: #CAC6DD;
	margin: 0;
	line-height: 30px;
}

.testimonials-navigation {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 20px;
	margin-top: 30px;
}

.testimonial-nav-btn {
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 50%;
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	color: #fff;
	transition: all 0.3s ease;
	outline: none;
}

.testimonial-nav-btn:hover {
	background: rgba(255, 255, 255, 0.2);
	border-color: rgba(255, 255, 255, 0.3);
	transform: scale(1.05);
}

.testimonial-nav-btn:active {
	transform: scale(0.95);
}

.testimonial-nav-btn svg {
	pointer-events: none;
}

.testimonial-dots {
	display: flex;
	gap: 10px;
	align-items: center;
}

.testimonial-dot {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.3);
	border: none;
	cursor: pointer;
	transition: all 0.3s ease;
	padding: 0;
	outline: none;
}

.testimonial-dot:hover {
	background: rgba(255, 255, 255, 0.5);
	transform: scale(1.2);
}

.testimonial-dot.active {
	background: #fff;
	width: 30px;
	border-radius: 5px;
}


/* benefits section styles */
.result-section {
	position: relative;
}

.result-gradient-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
	z-index: 0;
	background: linear-gradient(270deg, rgba(3, 0, 20, 0.5) 0%, rgba(3, 0, 20, 0.25) 16.67%, rgba(3, 0, 20, 0) 33.33%, rgba(3, 0, 20, 0) 50%, rgba(3, 0, 20, 0) 66.67%, rgba(3, 0, 20, 0.25) 83.33%, rgba(3, 0, 20, 0.5) 100%);
}

.result-section .result-data {
	display: grid;
	grid-template-columns: repeat(3, 1fr) !important;
	gap: 30px;
}


.result-section .result-block {
	background: radial-gradient(57.89% 132% at 65.79% -35%, rgba(120, 123, 255, 0.06) 0%, rgba(120, 123, 255, 0) 100%), linear-gradient(180deg, rgba(255, 255, 255, 0) 54.17%, rgba(255, 255, 255, 0.04) 100%), rgba(255, 255, 255, 0.01);
	backdrop-filter: blur(0.624565px);
	border-radius: 5px;
	padding: 15px;
	height: 100%;
	text-align: center;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	transition: all 0.6s ease;
}

.result-section .result-block .counter {
	display: flex;
	align-items: center;
}

.result-section .result-block h3,
.result-section .result-block span {
	font-size: 36px;
	font-weight: 700;
	color: #FFFFFF;
	margin-bottom: 5px;
}

.result-section .result-block p {
	color: #ECECEC;
	font-size: 16px;
	font-weight: 500;
	margin-bottom: 0;
}


/* pricing section styles */
.pricing-banner {
	background-image: url(../images/pricing-bg-1.png);
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	padding-bottom: 70px;
}

.pricing-add-section {
	background-image: url(../images/pricing-add-bg.png);
	background-size: cover;
}

.pricing-add-section .pricing-add-btn-wrapper {
	text-align: center;
	margin-top: 30px;
}

.pricing-add-section .pricing-add-btn {
	background: radial-gradient(163.33% 163.33% at 50% 100%, rgba(255, 255, 255, 0.8) 0%, rgba(0, 0, 0, 0) 100%, rgba(255, 255, 255, 0) 100%), #0B041A;
	background-blend-mode: overlay, normal;
	border: 1px solid #1A0742;
	border-radius: 10px;
	color: #fff;
	font-size: 16px;
	font-weight: 700;
	padding: 14px 30px;
	transition: all 0.3s ease;
	text-decoration: none;
	display: inline-block;
}

.pricing-add-section .pricing-add-btn:hover {
	background: #fff;
	color: #0B041A;
}


/* blog banner styles */
.blog-banner {
	background-image: url(../images/blog-banner-bg.png);
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	border-radius: 50px;
	padding-bottom: 80px;
}

/* blog section styles */
.blog-section .blog-header {
	padding: 15px;
	display: flex;
	flex-direction: column;
	margin-bottom: 15px;
	border-bottom: 1px solid rgb(202 198 221 / 25%);
	position: relative;
	z-index: 5;
	isolation: isolate;
}

.blog-section .blog-header .blog-header-inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 20px;
}

.blog-section .blog-header h2 {
	color: #ffffff;
	font-size: 25px;
	margin-bottom: 0;
	transition: all 0.3s ease;
	font-weight: 600;
}

.blog-section .blog-search {
	flex: 0 0 auto;
}

.blog-section .search-form {
	display: flex;
	align-items: center;
	position: relative;
	z-index: 2;
}

.blog-section .search-input {
	padding: 10px 15px;
	padding-right: 40px;
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 30px;
	font-size: 14px;
	width: 300px;
	transition: all 0.3s ease;
	outline: none;
	background: rgba(255, 255, 255, 0.04);
	color: rgba(255, 255, 255, 71%);
}

.blog-section .search-input:focus {
	border: 1px solid rgba(255, 255, 255, 0.2);
	box-shadow: 0 0 0 3px rgba(0, 119, 181, 0.1);
}

.blog-section .search-input::placeholder {
	color: rgba(255, 255, 255, 0.32);
	font-size: 15px;
}

.blog-section .search-button {
	position: absolute;
	right: 15px;
	background: transparent;
	border: none;
	cursor: pointer;
	color: #5F586F;
	transition: all 0.3s ease;
}

.blog-section .search-button:hover {
	color: #1a1a1a;
}

.blog-section .all-blog-tabs {
	display: flex;
	flex-wrap: wrap;
	background: #150A2C;
	border-radius: 10px;
	position: relative;
}


.blog-section .blog-container .blog-tab {
	padding: 15px 25px;
	cursor: pointer;
	font-weight: 600;
	color: #ffffff;
	transition: all 0.3s ease;
	position: relative;
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 16px;
}

.blog-section .blog-container .blog-tab i {
	font-size: 14px;
}

.blog-section .blog-container .blog-tab:hover {
	color: #cac6dd;
}

.blog-section .blog-container .blog-tab.active {
	color: #cac6dd;
	background: rgb(236 236 236 / 5%);
}

.blog-section .blog-container .blog-tab.active::after {
	content: '';
	position: absolute;
	bottom: -1px;
	left: 0;
	width: 100%;
	height: 3px;
	background: #cac6dd;
}

.blog-section .tab-content {
	display: none;
	padding: 25px;
}

.blog-section .tab-content.active {
	display: block;
	animation: fadeIn 0.5s ease;
}

.blog-section .tab-content .blog-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
	gap: 25px;
}

.blog-section .blog-empty-state {
	grid-column: 1 / -1;
	padding: 40px 20px;
	text-align: center;
	background: linear-gradient(80.42deg, rgba(0, 0, 0, 0.25) 25.25%, rgba(83, 84, 108, 0.25) 98.05%);
	backdrop-filter: blur(8px);
	border-radius: 12px;
	border: 1px dashed rgba(255, 255, 255, 0.25);
	color: #CAC6DD;
}

.blog-section .blog-empty-title {
	font-size: 20px;
	font-weight: 600;
	margin-bottom: 10px;
}

.blog-section .blog-empty-text {
	font-size: 15px;
	color: rgba(202, 198, 221, 0.9);
	margin-bottom: 0;
}

.blog-section .blog-empty-text span {
	font-weight: 600;
	color: #ffffff;
}

.blog-section .blog-card {
	overflow: hidden;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	display: flex;
	flex-direction: column;
	background: linear-gradient(80.42deg, rgba(0, 0, 0, 0.25) 25.25%, rgba(83, 84, 108, 0.25) 98.05%);
	backdrop-filter: blur(8px);
	border-radius: 8px;
	padding: 25px;
	border: 1px solid rgb(255 255 255 / 8%);
}


.blog-section .blog-card:hover {
	transform: translateY(-4px) !important;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.blog-section .blog-card .blog-image a {
	display: inline-block;
}

.blog-section .blog-card .blog-image img {
	width: 100%;
	border-radius: 8px;
	margin-bottom: 30px;
}

.blog-section .blog-card .blog-content {
	flex: 1;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.blog-section .blog-card .blog-category {
	display: inline-block;
	background: #F9F5FF;
	color: #110725;
	padding: 4px 10px;
	border-radius: 20px;
	font-size: 12px;
	margin-bottom: 15px;
	font-weight: 600;
	width: fit-content;
}

.blog-section .blog-card .blog-title {
	margin-bottom: 15px;
}

.blog-section .blog-card .blog-title a {
	font-size: 18px;
	margin-bottom: 0;
	color: #FFFFFF;
	font-weight: 600;
	text-decoration: none;
	transition: all 0.3s ease;
	display: inline-block;
	cursor: pointer;
	line-height: 30px;

	&:hover {
		color: #cac6dd;
	}
}

.blog-section .blog-card .blog-excerpt {
	color: #C0C5D0;
	font-size: 15px;
	margin-bottom: 0;
	display: -webkit-box;
	-webkit-line-clamp: 4;
	-webkit-box-orient: vertical;
	overflow: hidden;
	line-height: 30px;
}

.blog-section .blog-card .blog-meta {
	font-size: 16px;
	color: #CAD1E9;
	margin-top: 20px;
	border-top: 1px solid rgb(202 198 221 / 25%);
	padding-top: 20px;
}

.blog-section .blog-card .blog-date {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 15px;
	line-height: normal;
}

.blog-section .search-suggestions {
	list-style: none;
	margin: 0;
	padding: 0;
	position: absolute;
	top: calc(100% + 8px);
	left: 0;
	width: 100%;
	background: #140a29;
	z-index: 50;
	display: none;
	max-height: 300px;
	overflow-y: auto;
	border-radius: 10px;
	border: 1px solid rgb(202 198 221 / 30%);
	box-shadow: 0 12px 35px rgb(0 0 0 / 35%);
	backdrop-filter: blur(6px);
}

.blog-section .search-suggestions li {
	padding: 10px 10px;
	cursor: pointer;
	font-size: 15px;
	color: #CAC6DD;
	transition: all 0.3s ease;
	border-bottom: 1px solid rgb(255 255 255 / 8%);
	line-height: 1.4;
}

.blog-section .search-suggestions li:hover {
	background-color: #140a29;
	color: #CAC6DD;
}

.blog-section .search-suggestions .search-loader {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 10px;
	height: 80px;
}

.blog-section .search-suggestions .loader-gif {
	width: 80px;
	height: 80px;
}

.blog-section .blog-pagination {
	margin-top: 24px;
	padding-top: 16px;
	border-top: 1px solid rgba(202, 198, 221, 0.25);
	display: flex;
	align-items: center;
	justify-content: end;
	gap: 10px;
	font-size: 14px;
	color: #ffffff;
}

.blog-section .blog-pagination .pagination-btn {
	background: transparent;
	border: none;
	color: rgba(255, 255, 255, 0.85);
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 8px 14px;
	border-radius: 12px;
	cursor: pointer;
	transition: all 0.25s ease;
	font-weight: 500;
}

.blog-section .blog-pagination .pagination-btn:disabled {
	opacity: 0.4;
	cursor: default;
}

.blog-section .blog-pagination .pagination-btn:not(:disabled):hover {
	background: rgba(255, 255, 255, 0.08);
}

.blog-section .blog-pagination .pagination-pages {
	display: inline-flex;
	align-items: center;
	gap: 10px;
}

.blog-section .blog-pagination .pagination-page {
	min-width: 40px;
	height: 40px;
	padding: 0 10px;
	border-radius: 8px;
	border: none;
	background: transparent;
	color: rgba(255, 255, 255, 0.8);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	font-weight: 500;
	transition: all 0.25s ease;
	font-size: 16px;
}

.blog-section .blog-pagination .pagination-page:hover {
	background: rgba(255, 255, 255, 0.08);
}

.blog-section .blog-pagination .pagination-page.active {
	background: #ffffff;
	color: #0B041A;
	box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.15);
}

.blog-section .blog-pagination .pagination-ellipsis {
	color: #9D9BA6;
	padding: 0 2px;
}


/* blog add section styles */
.blog-add-section {
	background: linear-gradient(80.42deg, rgba(0, 0, 0, 0.16) 25.25%, rgba(83, 84, 108, 0.16) 98.05%);
	backdrop-filter: blur(8px);
}


.blog-add-section .blog-add-btn-wrapper {
	text-align: center;
	margin-top: 30px;
}

.blog-add-section .blog-add-btn {
	background: radial-gradient(163.33% 163.33% at 50% 100%, rgba(255, 255, 255, 0.8) 0%, rgba(0, 0, 0, 0) 100%, rgba(255, 255, 255, 0) 100%), #0B041A;
	background-blend-mode: overlay, normal;
	border: 1px solid #1A0742;
	border-radius: 10px;
	color: #fff;
	font-size: 16px;
	font-weight: 700;
	padding: 14px 30px;
	transition: all 0.3s ease;
	text-decoration: none;
	display: inline-block;
}

.blog-add-section .blog-add-btn:hover {
	background: #fff;
	color: #0B041A;
}


/* blog-details-banner styles */
.blog-details-banner {
	position: relative;
	background-image: url(../images/blog-details-bg.png);
}

.blog-details-banner .banner-title {
	font-size: 50px;
}

.blog-details-banner .blog-image-wrapper {
	position: relative;
}

.blog-details-banner .blog-image-wrapper .blog-details-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 10px;
	background: linear-gradient(180deg, rgba(169, 163, 194, 0.2) 0%, rgba(169, 163, 194, 0.047) 100%);
}


/* blog-details-section styles */
.blog-details-section {
	position: relative;
}

.blog-details-section .blog-table-of-content {
	background: linear-gradient(80.42deg, rgba(0, 0, 0, 0.25) 25.25%, rgba(83, 84, 108, 0.25) 98.05%);
	backdrop-filter: blur(8px);
	border-radius: 12px;
	padding: 20px;
	border: 1px solid rgba(255, 255, 255, 0.1);
	position: sticky;
	top: 100px;
	margin-bottom: 20px;
}

.blog-details-section .blog-table-of-content h2 {
	color: #fff;
	font-size: 24px;
	font-weight: 600;
	margin-bottom: 20px;
}

.blog-details-section .blog-table-of-content ul {
	list-style: none;
	padding-left: 5px;
}

.blog-details-section .blog-table-of-content ul li {
	margin-bottom: 15px;
}

.blog-details-section .blog-table-of-content a {
	color: #C0C5D0;
	text-decoration: none;
	font-size: 16px;
}

.blog-details-section .blog-table-of-content a:hover {
	text-decoration: underline;
	color: #e0e0e0;
}

.blog-details-section .blog-content-area {
	background: linear-gradient(80.42deg, rgb(0 0 0 / 2%) 25.25%, rgb(83 84 108 / 20%) 98.05%);
	backdrop-filter: blur(8px);
	border-radius: 12px;
	padding: 20px;
	border: 1px solid rgb(255 255 255 / 4%);
}

.blog-details-section .blog-content-area .blog-data-block {
	margin-bottom: 30px;
}

.blog-details-section .blog-content-area .blog-data-block .blog-data {
	color: #C0C5D0;
	font-size: 16px;
	margin-bottom: 10px;
	line-height: 30px;
}

.blog-details-section .blog-content-area .blog-data-block .blog-data-title {
	color: #fff;
	font-size: 25px;
	font-weight: 600;
	margin-bottom: 10px;
	line-height: 30px;
}

.blog-details-section .blog-content-area .blog-data-block h3 {
	color: #fff;
	font-size: 20px;
	font-weight: 600;
	margin-bottom: 10px;
	line-height: 30px;
}

.blog-details-section .blog-content-area ul li {
	color: #C0C5D0;
	font-size: 16px;
	margin-bottom: 15px;
	line-height: 30px;
}

.blog-details-section .blog-content-area ol li {
	color: #C0C5D0;
	font-size: 16px;
	margin-bottom: 15px;
	line-height: 30px;
}

.blog-details-section .blog-content-area ul li b a {
	color: #fff;
	font-weight: 600;
	text-decoration: none;
}

.blog-details-section .blog-content-area b {
	color: #fff;
	font-weight: 600;
}

.blog-details-section .blog-content-area a {
	color: #C0C5D0;
	text-decoration: underline;

	&:hover {
		color: #e0e0e0;
	}
}

.blog-details-section .blog-content-area .blog-data-table {
	overflow-x: auto;
}

.blog-details-section .blog-content-area .blog-data-table table {
	width: 100%;
}

.blog-details-section .blog-content-area .blog-data-table table thead {
	background: linear-gradient(180deg, #130534 0%, #23075e3f 51.44%, #220f5773 100%);
}

.blog-details-section .blog-content-area .blog-data-table table tr td {
	padding: 10px;
	border: 1px solid rgba(255, 255, 255, 0.1);
	color: #fff;
	font-size: 16px;
	line-height: 30px;
}

.blog-details-section .blog-content-area .blog-data-table table tr th {
	padding: 10px;
	border: 1px solid rgba(255, 255, 255, 0.1);
	color: #fff;
	font-size: 16px;
	line-height: 30px;
}



/* integration-banner styles */
.integration-banner {
	position: relative;
	background: linear-gradient(180deg, #130534 0%, #22075E 51.44%, #220F57 100%);
}

/* integration-section styles */
.integrations-details-section {
	position: relative;
}

.integrations-details-section .integrations-container .integrations-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
}

.integrations-details-section .integrations-container .integrations-card {
	background: radial-gradient(57.89% 132% at 65.79% -35%, rgba(120, 123, 255, 0.06) 0%, rgba(120, 123, 255, 0) 100%), linear-gradient(180deg, rgba(255, 255, 255, 0) 54.17%, rgba(255, 255, 255, 0.04) 100%), rgba(255, 255, 255, 0.01);
	backdrop-filter: blur(0.624565px);
	border-radius: 12px;
	border: 1px solid rgba(255, 255, 255, 0.1);
	padding: 20px;
	position: relative;
	transition: all 0.3s ease;

	&:hover {
		transform: translateY(-3px);
	}
}

.integrations-details-section .integrations-card .integrations-icon {
	margin-bottom: 20px;
}

.integrations-details-section .integrations-card .integrations-icon img {
	width: 50px;
	height: 50px;
	object-fit: contain;
}

.integrations-details-section .integrations-card .integrations-title {
	color: #fff;
	font-size: 24px;
	font-weight: 600;
	margin-bottom: 20px;
}

.integrations-details-section .integrations-card .integrations-description {
	color: #C0C5D0;
	font-size: 16px;
	line-height: 30px;
	margin-bottom: 0;
}

.integrations-details-section .integrations-card .integrations-badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 4px 12px;
	border-radius: 999px;
	border: 1px solid rgba(255, 255, 255, 0.3);
	background: rgb(255 255 255 / 15%);
	color: #EBEBEB;
	font-size: 12px;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	position: absolute;
	top: 14px;
	right: 14px;
}

.integrations-details-section .integrations-card .integrations-button {
	margin-top: 16px;
	padding: 0;
	border-radius: 0;
	border: none;
	background: transparent;
	color: #EBEBEB;
	font-size: 18px;
	font-weight: 500;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	gap: 6px;
	transition: color 0.25s ease, transform 0.25s ease;
}

.integrations-details-section .integrations-card .integrations-button:hover {
	color: #ffffff;
	transform: translateX(2px);
}

.integrations-details-section .integrations-card .integrations-button::after {
	content: "→";
	font-size: 14px;
}


.integrations-add-icons {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	margin: 0 auto 80px;
	flex-wrap: nowrap;
}

.integrations-add-icon-item {
	width: 68px;
	height: 68px;
	border-radius: 20px;
	background: radial-gradient(120% 120% at 50% 0%, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.02) 60%, rgba(255, 255, 255, 0) 100%);
	box-shadow:
		0 0 0 1px rgba(255, 255, 255, 0.1),
		0 12px 30px rgba(0, 0, 0, 0.45);
	display: flex;
	align-items: center;
	justify-content: center;
	backdrop-filter: blur(10px);
	border: 1px solid rgba(204, 118, 255, 0.15);
}

.integrations-add-icon-item img {
	max-width: 42px;
	max-height: 42px;
	object-fit: contain;
}

/* create subtle arc + emphasis like design */
.integrations-add-icons .integrations-add-icon-item:nth-child(4) {
	transform: translateY(-14px) scale(1.18);
}

.integrations-add-icons .integrations-add-icon-item:nth-child(3),
.integrations-add-icons .integrations-add-icon-item:nth-child(5) {
	transform: translateY(16px) scale(1.08);
}

.integrations-add-icons .integrations-add-icon-item:nth-child(2),
.integrations-add-icons .integrations-add-icon-item:nth-child(6) {
	transform: translateY(50px) scale(1.03);
}

.integrations-add-icons .integrations-add-icon-item:first-child,
.integrations-add-icons .integrations-add-icon-item:last-child {
	opacity: 0.9;
	transform: translateY(110px) scale(1.03);
}


/* affiliate-banner styles */
.affiliate-banner {
	background-image: url('../images/affiliate-bg.png');
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	padding-bottom: 80px;
}

/* affiliate-section styles */
.affiliate-section {
	position: relative;
}

.affiliate-section .affiliate-block {
	background: linear-gradient(80.42deg, rgba(0, 0, 0, 0.06) 25.25%, rgba(83, 84, 108, 0.1) 98.05%);
	backdrop-filter: blur(8px);
	border-radius: 20px;
	padding: 30px;
	position: relative;
	z-index: 1;
	border: 1px solid rgba(204, 118, 255, 0.15);
}

.affiliate-section .affiliate-block .affiliate-data .step-bage {
	background: linear-gradient(80.42deg, rgba(0, 0, 0, 0.1) 25.25%, rgba(83, 84, 108, 0.1) 98.05%);
	border-radius: 6px;
	backdrop-filter: blur(8px);
	border: 1px solid rgba(204, 118, 255, 0.15);
	font-size: 22px;
	padding: 12px 30px;
	display: inline-block;
	margin-bottom: 25px;
	line-height: normal;
}

.affiliate-section .affiliate-block .affiliate-data h3 {
	margin-bottom: 25px;
	font-size: 26px;
	font-weight: 600;
	color: #CAD1E9;
	line-height: 35px;
}

.affiliate-section .affiliate-block .affiliate-data p {
	font-size: 18px;
	font-weight: 400;
	color: #CAC6DD;
	line-height: 30px;
	margin-bottom: 0;
}

.affiliate-section .affiliate-block .affiliate-img img {
	width: 100%;
	border-radius: 12px;
}

.affiliate-section .affiliate-gradient-inner {
	position: relative;
	height: 100%;
	left: 0;
	background: linear-gradient(135deg, #746BAE 5.21%, #5E7CF1 85.94%);
	opacity: 0.1;
	filter: blur(50px);
	transform: rotate(90deg);
}


/* affiliate-add-section styles */
.affiliate-add-section {
	background: radial-gradient(130% 107.13% at 50% 10%, rgba(0, 0, 0, 0) 37.41%, #6633EE 69.27%, #FFFFFF 100%);
	padding: 70px 0;
}


.affiliate-add-section .affiliate-add-title {
	position: relative;
	max-width: 845px;
	font-weight: 700;
	font-size: 35px;
	text-align: center;
	letter-spacing: 0;
	line-height: 40px;
	background: radial-gradient(50% 50% at 50% 50%, rgba(255, 255, 255, 1) 30%, rgba(255, 255, 255, 0.4) 100%);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	color: transparent;
	margin-bottom: 25px;
}

.affiliate-add-section .affiliate-add-description {
	max-width: 845px;
	font-size: 18px;
	font-weight: 400;
	color: #CAC6DD;
	line-height: 30px;
	margin-bottom: 0;
	text-align: center;
}

.affiliate-add-section .affiliate-add-data-wrapper {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
}


/* affiliate-add-section styles */
.alternative-banner {
	background-image: url('../images/alternative-bg.png');
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
}


/* privacy-policy-banner styles */
.privacy-policy-banner {
	background-image: url('../images/privacy-policy-bg.png');
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
}


/* privicy-policy css */
.privacy-policy-section {
	position: relative;
}

.privacy-policy-section h1 {
	font-size: 38px;
	margin-bottom: 20px;
	color: #ebebeb;
	font-weight: 600;
}

.privacy-policy-section h2 {
	font-size: 24px;
	margin: 0 0 25px;
	color: #ebebeb;
	line-height: normal;
}

.privacy-policy-section h3 {
	font-size: 22px;
	margin: 30px 0 15px;
	color: #ebebeb;
}

.privacy-policy-section p {
	margin-bottom: 15px;
	font-size: 16px;
	color: #cac6dd;
	line-height: 32px;
}

.privacy-policy-section ul,
.privacy-policy-section ol {
	margin-bottom: 20px;
	padding-left: 20px;
}

.privacy-policy-section li {
	margin-bottom: 10px;
	color: #cac6dd;
	font-size: 16px;
	line-height: 32px;
}

.privacy-policy-section a {
	color: #c4b5ff;
	text-decoration: none;
	transition: color 0.3s;
}

.privacy-policy-section a:hover {
	color: #ffffff;
	text-decoration: underline;
}

.privacy-policy-section .privacy-policy-block {
	margin-bottom: 40px;
	padding: 20px;
	background: linear-gradient(80.42deg, rgba(0, 0, 0, 0.25) 25.25%, rgba(83, 84, 108, 0.25) 98.05%);
	border-radius: 12px;
	border: 1px solid rgba(255, 255, 255, 0.08);
	backdrop-filter: blur(6px);
}

.privacy-policy-section .privacy-policy-block:last-child {
	margin-bottom: 0;
}

.privacy-policy-section .privacy-policy-table-of-contents {
	background: linear-gradient(80.42deg, rgba(0, 0, 0, 0.25) 25.25%, rgba(83, 84, 108, 0.25) 98.05%);
	padding: 20px;
	border-radius: 12px;
	margin-bottom: 40px;
	border: 1px solid rgba(255, 255, 255, 0.08);
	backdrop-filter: blur(6px);
}

.privacy-policy-section .privacy-policy-table-of-contents ul {
	list-style-type: none;
	padding-left: 0;
}

.privacy-policy-section .privacy-policy-table-of-contents li {
	margin-bottom: 10px;
	color: #cac6dd;
}

.privacy-policy-section .privacy-policy-table-of-contents li::marker {
	color: #c4b5ff;
}

.privacy-policy-section .privacy-policy-highlight {
	background-color: rgba(255, 255, 255, 0.04);
	padding: 20px;
	border-left: 4px solid #8a7bff;
	margin: 0 0 25px;
	border-radius: 4px;
}

.privacy-policy-section .privacy-policy-table-container {
	overflow-x: auto;
}

.privacy-policy-section table {
	width: 100%;
	border-collapse: collapse;
	margin: 20px 0;
	color: #ebebeb;
	background: rgba(255, 255, 255, 0.02);
}

.privacy-policy-section th,
.privacy-policy-section td {
	padding: 12px 15px;
	text-align: left;
	border: 1px solid rgba(255, 255, 255, 0.12);
}

.privacy-policy-section th {
	background-color: rgba(255, 255, 255, 0.05);
	font-weight: 600;
}

.privacy-policy-section tr:hover {
	background-color: rgba(255, 255, 255, 0.04);
}

.privacy-policy-section b {
	color: #ebebeb;
	font-size: 18px;
}

.error-msg {
	color: #ff0000;
	font-size: 16px;
	padding: 5px;
	width: fit-content;
	margin-top: 10px;
	border-radius: 5px;
	display: inline-block;
	background: #fff;
	display: none;
}

.error-message-wrapper {
	margin: 0 auto;
	width: fit-content;
	z-index: 1;
	position: relative;
}

.loader-overlay {
	position: fixed;
	inset: 0;
	width: 100vw;
	height: 100vh;
	background: linear-gradient(135deg, rgba(3, 0, 20, 0.7), rgba(11, 1, 33, 0.68));
	backdrop-filter: blur(4px);
	pointer-events: all;
	display: none;
	align-items: center;
	justify-content: center;
	z-index: 2147483647 !important;
}

.loader-overlay.is-visible {
	display: flex;
}

.loader {
	width: 50px;
	height: 50px;
	border: 5px solid rgba(233, 223, 255, 0.22);
	border-top-color: #e9e9eb;
	border-radius: 50%;
	animation: spin 0.8s linear infinite;
	box-shadow:
		0 0 18px rgba(233, 223, 255, 0.35),
		0 0 32px rgba(99, 73, 248, 0.28);
}

@keyframes spin {
	to {
		transform: rotate(360deg);
	}
}

.loader-gif {
	width: 100px;
	height: 100px;
}

/* Video Tutorials Section Styles */
.video-tutorials-section .tutorials-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(304px, 1fr));
	gap: 25px;
}

.video-tutorials-section .tutorial-card {
	background: linear-gradient(80.42deg, rgba(0, 0, 0, 0.25) 25.25%, rgba(83, 84, 108, 0.25) 98.05%);
	backdrop-filter: blur(8px);
	border-radius: 8px;
	padding: 25px;
	border: 1px solid rgb(255 255 255 / 8%);
	overflow: hidden;
	transition: all 0.3s ease;
	position: relative;
	cursor: pointer;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.video-tutorials-section .tutorial-card:hover {
	transform: translateY(-3px) !important;
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.video-tutorials-section .tutorial-card .thumbnail-container {
	position: relative;
	overflow: hidden;
	margin-bottom: 20px;
}

.video-tutorials-section .tutorial-card .thumbnail {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
	border-radius: 8px;
}

.video-tutorials-section .tutorial-card .play-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.4);
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transition: opacity 0.3s ease;
}

.video-tutorials-section .tutorial-card .play-icon {
	width: 60px;
	height: 60px;
	background: #1a1a1a;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-size: 20px;
	transition: all 0.3s ease;
}

.video-tutorials-section .tutorial-card:hover .play-overlay {
	opacity: 1;
}

.video-tutorials-section .tutorial-card .play-icon:hover {
	background: #1a1a1ad4;
	transform: scale(1.1);
}

.video-tutorials-section .tutorial-card .thumbnail-content h3 {
	margin: 0 0 10px;
	color: #FFFFFF;
	font-size: 21px;
	font-weight: 500;
	line-height: 30px;
}

.video-tutorials-section .tutorial-card .thumbnail-content p {
	color: #C0C5D0;
	margin-bottom: 15px;
	font-size: 16px;
	line-height: 30px;
}

.video-tutorials-section .tutorial-card .meta {
	display: flex;
	justify-content: space-between;
	font-size: 16px;
	color: #CAD1E9;
	font-weight: 500;
	margin-top: 15px;
}

.video-tutorials-section .tutorial-card .duration {
	display: flex;
	align-items: center;
	gap: 5px;
}

.video-tutorials-section .tutorial-card .type {
	padding: 3px 10px;
	border-radius: 20px;
	font-size: 12px;
	font-weight: 600;
}

.video-tutorials-section .tutorial-card .level-first {
	background: #e3f9e5;
	color: #2e8b57;
}

.video-tutorials-section .tutorial-card .level-second {
	background: #fff4e5;
	color: #cc8b00;
}

.video-tutorials-section .tutorial-card .level-third {
	background: #ffecec;
	color: #cc3d3d;
}

.video-tutorials-section .video-tutorials-botton {
	text-align: center;
	margin-top: 35px;
	padding-top: 35px;
	border-top: 1px solid rgba(0, 0, 0, 0.1);
}

/*video Modal styles */
.video-modal {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgb(0 0 0 / 54%);
	z-index: 1000;
	align-items: center;
	justify-content: center;
	z-index: 9999;
}

.video-modal-content {
	width: 90%;
	max-width: 900px;
	background: white;
	border-radius: 10px;
	overflow: hidden;
	position: relative;
}

.close-modal {
	position: absolute;
	top: 15px;
	right: 15px;
	color: white;
	background: rgba(0, 0, 0, 0.5);
	width: 30px;
	height: 30px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	z-index: 10;
	transition: all 0.3s ease;
}

.close-modal:hover {
	background: rgba(0, 0, 0, 0.8);
}

.video-container {
	position: relative;
	padding-bottom: 56.25%;
	/* 16:9 aspect ratio */
	height: 0;
	overflow: hidden;
}

.video-container iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border: none;
}


/* quicklead-section css */
.quicklead-section .quicklead-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(370px, 1fr));
	gap: 30px;
}

.quicklead-section .quicklead-card {
	background: linear-gradient(80.42deg, rgba(0, 0, 0, 0.25) 25.25%, rgba(83, 84, 108, 0.25) 98.05%);
	backdrop-filter: blur(8px);
	border-radius: 12px;
	padding: 25px;
	border: 1px solid rgb(255 255 255 / 8%);
	transition: all 0.3s ease;
	justify-content: space-between;
	display: flex;
	flex-direction: column;
}

.quicklead-section .quicklead-card:hover {
	transform: translateY(-3px) !important;
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.quicklead-section .quicklead-card .quicklead-icon {
	width: 50px;
	height: 50px;
	background-color: #1a1330;
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 20px;
	color: #110725;
	font-size: 20px;
	transition: all 0.3s ease;
}

.quicklead-section .quicklead-card .quicklead-icon i {
	color: #e7e7e7;
	font-size: 25px;
}

.quicklead-section .quicklead-card .quicklead-icon svg {
	fill: #e7e7e7;
	width: 30px;
	height: 30px;
}

.quicklead-section .quicklead-card h2 {
	color: #FFFFFF;
	margin-bottom: 15px;
	font-size: 22px;
	font-weight: 600;
	line-height: 1.3;
}

.quicklead-section .quicklead-card p {
	color: #efefef;
	margin-bottom: 20px;
	font-weight: 400;
	font-size: 16px;
	line-height: 30px;
}

.quicklead-section .quicklead-card .quicklead-list {
	list-style: none;
	margin-bottom: 25px;
	padding-left: 0;
}

.quicklead-section .quicklead-card .quicklead-list li {
	margin-bottom: 20px;
	position: relative;
	color: #C0C5D0;
	line-height: normal;
	font-weight: 500;
	font-size: 15px;
	display: flex;
	align-items: center;
	gap: 10px;

	&:last-child {
		margin-bottom: 0;
	}
}

.quicklead-section .quicklead-card .learn-more {
	display: inline-flex;
	align-items: center;
	color: #EBEBEB;
	font-weight: 500;
	text-decoration: none;
	transition: all 0.3s ease;
	font-size: 18px;
}

.quicklead-section .quicklead-card .learn-more i {
	margin-left: 8px;
	transition: transform 0.3s ease;
	font-size: 14px;
}

.quicklead-section .quicklead-card .learn-more:hover {
	color: #FFFFFF;
}

.quicklead-section .quicklead-card .learn-more:hover i {
	transform: translateX(3px);
}

.quicklead-section .quicklead-botton {
	text-align: center;
	margin-top: 35px;
	padding-top: 35px;
	border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.quicklead-section .quicklead-button {
	display: inline-block;
	padding: 14px 40px;
	font-size: 18px;
	font-weight: 600;
	color: #fff;
	background: #1a1a1a !important;
	border: none;
	border-radius: 8px;
	cursor: pointer;
	transition: all 300ms;
	box-shadow: 0 4px 6px rgb(50 49 105 / 25%);
	text-decoration: none;
}

.quicklead-section .quicklead-button:hover {
	background: #3e3e3e !important;
	transform: translateY(-2px);
	box-shadow: 0 4px 6px rgb(50 49 105 / 25%);
}


/* features-overview-section styles */
.features-overview-section {
	/* background: #fff;
	border-radius: 40px; */
	background-image: url(../images/section-bg.png);
	background-size: cover;
	background-repeat: no-repeat;
	border-radius: 50px;
	margin: 0 15px;
}

/* .features-overview-section .section-subtitle {
    background: rgb(11 3 26 / 72%);
    box-shadow: 0px 0px 12px rgb(255 255 255 / 48%), 0px 4px 50px rgb(159 100 239 / 68%);
}

.features-overview-section .section-title {
	color: #000000;
}

.features-overview-section .section-description {
	color: #141414;
} */

.features-overview-section .features-grid-three {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
	max-width: 1200px;
	margin: 0 auto;
}

@media (max-width: 992px) {
	.features-overview-section .features-grid-three {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 768px) {
	.features-overview-section .features-grid-three {
		grid-template-columns: 1fr;
	}
}

.features-overview-section .feature-column {
	display: flex;
	flex-direction: column;
	gap: 30px;
}

.features-overview-section .features-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(411px, 1fr));
	gap: 30px;
}

.features-overview-section .feature-category {
	transition: all 0.3s ease;
	border-radius: 16px;
	padding: 30px;
	/* background:linear-gradient(180deg, rgb(20 11 41 / 88%) 0%, rgb(22 3 63 / 92%) 100%);
    border: 1px solid rgb(40 40 40 / 40%); */
	background: linear-gradient(#8784be14, #07071c00);
	border: 1px solid #3b3a6096;
}

.features-overview-section .feature-category:hover {
	transform: translateY(-3px) !important;
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.features-overview-section .category-header {
	display: flex;
	align-items: center;
	margin-bottom: 15px;
	padding-bottom: 15px;
	border-bottom: 1px solid rgb(207 207 207 / 8%);
}

.features-overview-section .category-icon {
	width: 50px;
	height: 50px;
	background: rgb(43 34 64 / 35%);
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 15px;
	flex-shrink: 0;
}

.features-overview-section .category-icon i {
	color: #EBEBEB;
	font-size: 20px;
}

.features-overview-section .category-header h3 {
	color: #EBEBEB;
	font-size: 20px;
	font-weight: 600;
	margin: 0;
}

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

.features-overview-section .feature-list li {
	display: flex;
	align-items: center;
	padding: 12px 0;
	border-bottom: 1px solid rgb(40 40 40 / 60%);
	transition: all 0.2s ease;
	gap: 15px;
}

.features-overview-section .feature-list li span {
	color: #cac6dd;
	font-size: 15px;
	font-weight: 400;
}

/* ======================== */
/* Book Demo Modal Styles */
/* ======================== */

.custom-modal-content {
	background: #110725;
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 18px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
	backdrop-filter: blur(10px);
}

.custom-modal-header {
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	padding: 20px 25px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.custom-modal-header .modal-title {
	color: #ebebeb;
	font-weight: 600;
	font-size: 20px;
}

.custom-modal-header .btn-close-white {
	/* filter: invert(1) grayscale(100%) brightness(200%); */
	opacity: 0.8;
	background: transparent;
	border: 1px solid rgba(255, 255, 255, 0.3);
	color: white;
	width: 32px;
	height: 32px;
	border-radius: 4px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 24px;
	line-height: 1;
	padding-bottom: 4px;
	transition: all 0.3s ease;

}

.custom-modal-header .btn-close-white:hover {
	opacity: 1;
	border-color: rgba(255, 255, 255, 0.8);
	background: rgba(255, 255, 255, 0.1);

}

.custom-modal-body {
	padding: 30px;
	color: #ebebeb;
}

.custom-modal-content .form-group {
	margin-bottom: 20px;
}

.custom-modal-content .control-label,
.custom-modal-content .form-label {
	color: #ebebeb;
	font-size: 15px;
	font-weight: 500;
	margin-bottom: 8px;
	display: block;

}

.custom-modal-content .form-control {
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid rgba(255, 255, 255, 0.1);
	color: #ebebeb;
	border-radius: 10px;
	padding: 12px 15px;
	font-size: 15px;
	transition: all 0.3s ease;
}

.custom-modal-content .form-control:focus {
	background: rgba(255, 255, 255, 0.05);
	border-color: #9f64ef;
	box-shadow: 0 0 0 3px rgba(159, 100, 239, 0.15);
	color: #fff;
	outline: none;
}

.custom-modal-content input.form-control {
	height: 48px;
}

.custom-modal-content .form-control::placeholder {
	color: rgba(235, 235, 235, 0.4);
}

.custom-modal-content .form-check-input {
	background-color: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.2);
	width: 1.2em;
	height: 1.2em;
	margin-top: 0.15em;
	cursor: pointer;
}

.custom-modal-content .form-check-input:checked {
	background-color: #9f64ef;
	border-color: #9f64ef;
}

.custom-modal-content .form-check-input:focus {
	box-shadow: 0 0 0 3px rgba(159, 100, 239, 0.15);
}

.custom-modal-content .radio-inline {
	display: inline-flex;
	align-items: center;
	color: #ebebeb;
	font-size: 15px;
	cursor: pointer;
	padding-left: 0;
	margin-right: 20px;
}

.custom-modal-content .radio-inline input[type="radio"] {
	margin-top: 0;
	margin-right: 8px;
	width: 18px;
	height: 18px;
	cursor: pointer;
	accent-color: #9f64ef;
}

.custom-modal-content .form-check-label {
	color: #ebebeb;
	font-size: 15px;
	padding-left: 5px;
	cursor: pointer;
}

.modal-submit-btn {
	background: #ebebeb;
	color: #0b081c;
	border: none;
	padding: 14px;
	border-radius: 10px;
	font-weight: 600;
	font-size: 16px;
	transition: all 0.3s ease;
	width: 100%;
}

.modal-submit-btn:hover {
	background: #d4d4d4;
	transform: translateY(-2px);
	box-shadow: 0 4px 15px rgba(255, 255, 255, 0.1);
	color: #000;
}

.custom-modal-content textarea.form-control {
	resize: none;
	height: 100px;
}

.radio-group {
	display: flex;
	gap: 15px;
}

#bookDemoModal .video-modal-content {
	max-width: 600px;
	background: #110725;
}

/* Meeting/Demo CTA Card Design */
.book-meeting-info-card {
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
	border: 1px solid rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(10px);
	border-radius: 24px;
	padding: 40px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 30px;
	max-width: 800px;
	width: 100%;
	margin: 0 auto;
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.1);
	transition: transform 0.3s ease, border-color 0.3s ease;
}

.book-meeting-info-card:hover {
	border-color: rgba(255, 255, 255, 0.2);
	transform: translateY(-2px);
	box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.meeting-info-pill {
	color: #EBEBEB;
	font-size: 20px;
	line-height: 1.6;
	font-weight: 500;
	max-width: 600px;
	margin: 0 auto;
	text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.meeting-info-cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 16px 40px;
	background: linear-gradient(92.23deg, #746BAE 0%, #5E7CF1 100%);
	border-radius: 50px;
	color: #FFFFFF;
	font-weight: 600;
	font-size: 18px;
	text-decoration: none;
	transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
	box-shadow: 0 4px 15px rgba(94, 124, 241, 0.4), inset 0 1px 1px rgba(255, 255, 255, 0.3);
	border: 1px solid rgba(255, 255, 255, 0.2);
	position: relative;
	overflow: hidden;
	width: auto;
	margin: 0 auto;
}

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

.meeting-info-cta:hover::before {
	left: 100%;
}

.meeting-info-cta:hover {
	transform: translateY(-3px) scale(1.02);
	box-shadow: 0 8px 25px rgba(94, 124, 241, 0.6), inset 0 1px 1px rgba(255, 255, 255, 0.4);
	color: #fff;
	cursor: pointer;
}

.meeting-info-cta:active {
	transform: translateY(1px) scale(0.98);
}

/* Toggle Switch Styles */
.toggle-container {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-top: 8px;
}

.toggle-label {
	color: #ebebeb;
	font-size: 15px;
	font-weight: 400;
}

.switch {
	position: relative;
	display: inline-block;
	width: 50px;
	height: 26px;
	margin-bottom: 0;
}

.switch input {
	opacity: 0;
	width: 0;
	height: 0;
}

.slider {
	position: absolute;
	cursor: pointer;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: #3b3b3b;
	transition: .4s;
	border: 1px solid rgba(255, 255, 255, 0.2);
}

.slider:before {
	position: absolute;
	content: "";
	height: 20px;
	width: 20px;
	left: 2px;
	bottom: 2px;
	background-color: white;
	transition: .4s;
}

input:checked+.slider {
	background-color: #5E7CF1;
	border-color: #5E7CF1;
}

input:focus+.slider {
	box-shadow: 0 0 1px #5E7CF1;
}

input:checked+.slider:before {
	transform: translateX(24px);
}

.slider.round {
	border-radius: 34px;
}

.slider.round:before {
	border-radius: 50%;
}

/* Lead Generation Section */
.lead-generation-section {
	position: relative;
	z-index: 1;
}

.lead-gen-card {
	background: linear-gradient(120deg, rgb(17 7 37), rgb(25 10 45));
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 20px;
	padding: 40px;
	box-shadow: 0px 8px 30px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
	.lead-gen-card {
		padding: 20px;
	}
}

.lead-gen-form .form-label {
	color: #ebebeb;
	font-weight: 500;
	margin-bottom: 8px;
	font-size: 15px;
}

.lead-gen-form .form-control {
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 10px;
	padding: 12px 15px;
	color: #fff;
	font-size: 15px;
	width: 100%;
	transition: all 0.3s ease;
}

.lead-gen-form .form-control:focus {
	outline: none;
	border-color: rgba(159, 100, 239, 0.6);
	background: rgba(255, 255, 255, 0.08);
	box-shadow: 0 0 0 3px rgba(159, 100, 239, 0.25);
}

.lead-gen-form .form-control::placeholder {
	color: rgba(255, 255, 255, 0.4);
}

.form-text.text-white-50 {
	font-size: 13px;
	margin-top: 5px;
	color: rgba(255, 255, 255, 0.5) !important;
}


/* Custom Dropdown Styles */
.custom-select-wrapper {
	position: relative;
	user-select: none;
	width: 100%;
}

.custom-select-trigger {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 10px;
	padding: 12px 15px;
	color: rgba(255, 255, 255, 0.4);
	/* Placeholder color by default */
	font-size: 15px;
	cursor: pointer;
	transition: all 0.3s ease;
}

.custom-select-trigger.has-value {
	color: #fff;
}

.custom-select-trigger:hover {
	background: rgba(255, 255, 255, 0.08);
	border-color: rgba(255, 255, 255, 0.3);
}

.custom-select-wrapper.open .custom-select-trigger {
	border-color: rgba(159, 100, 239, 0.6);
	background: rgba(255, 255, 255, 0.08);
	box-shadow: 0 0 0 3px rgba(159, 100, 239, 0.25);
}

.custom-select-trigger .arrow {
	transition: transform 0.3s ease;
	opacity: 0.7;
}

.custom-select-wrapper.open .custom-select-trigger .arrow {
	transform: rotate(180deg);
}

.custom-options {
	position: absolute;
	display: block;
	top: calc(100% + 8px);
	left: 0;
	right: 0;
	background: linear-gradient(120deg, rgb(17, 7, 37), rgb(25, 10, 45));
	border: 1px solid rgba(255, 255, 255, 0.15);
	border-radius: 10px;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
	z-index: 100;
	overflow: hidden;
	opacity: 0;
	visibility: hidden;
	transform: translateY(-10px);
	transition: all 0.3s ease;
	pointer-events: none;
	max-height: 260px;
	overflow-y: auto;
}

.custom-select-wrapper.open .custom-options {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
	pointer-events: all;
}

.custom-option {
	padding: 12px 15px;
	color: #ebebeb;
	font-size: 15px;
	cursor: pointer;
	transition: background 0.2s ease;
	border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.custom-option:last-child {
	border-bottom: none;
}

.custom-option:hover,
.custom-option.selected {
	background: rgba(159, 100, 239, 0.15);
	color: #fff;
}

/* Invalid State for Custom Select */
.custom-select-wrapper.is-invalid .custom-select-trigger {
	border-color: #dc3545;
	background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");
	background-repeat: no-repeat;
	background-position: right 2.5rem center;
	padding-right: 4.125rem;
}

.custom-select-wrapper.is-invalid~.invalid-feedback {
	display: block;
}

.custom-select-wrapper .selected-text {
	color: rgba(255, 255, 255, 0.4);
}


.custom-select-trigger.has-value .selected-text {
	color: #fff;
}


/* Steps Section Styles */
.steps-section {
	position: relative;
	overflow: hidden;
	background-image: url(../images/section-bg.png);
	background-size: cover;
	background-repeat: no-repeat;
	border-radius: 50px;
	margin: 0 15px;
}

.steps-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
	position: relative;
	z-index: 2;
}

.step-card {
	position: relative;
	background: linear-gradient(180deg, rgb(20 11 41 / 55%) 0%, rgb(22 3 63 / 35%) 100%);
	border: 1px solid rgb(54 54 54 / 55%);
	border-radius: 24px;
	padding: 40px 30px 30px;
	display: flex;
	flex-direction: column;
	gap: 20px;
	transition: all 0.3s ease;
	backdrop-filter: blur(10px);
	overflow: hidden;
}

.step-card:hover {
	transform: translateY(-5px);
	border-color: rgba(123, 93, 255, 0.3);
	background: linear-gradient(180deg, rgba(20, 11, 41, 0.8) 0%, rgba(22, 3, 63, 0.6) 100%);
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.step-header {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	margin-bottom: 5px;
}

.step-number {
	font-size: 80px;
	font-weight: 700;
	color: rgb(255 255 255 / 10%);
	line-height: 0.8;
	position: absolute;
	top: 20px;
	right: 20px;
	transition: color 0.3s ease;
	user-select: none;
}

.step-card:hover .step-number {
	color: rgba(123, 93, 255, 0.1);
}

.step-icon-box {
	width: 56px;
	height: 56px;
	border-radius: 14px;
	background: linear-gradient(135deg, rgba(123, 93, 255, 0.1) 0%, rgba(123, 93, 255, 0.05) 100%);
	border: 1px solid rgba(123, 93, 255, 0.2);
	display: flex;
	align-items: center;
	justify-content: center;
	color: #f5f5f5;
	font-size: 24px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
	transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease;
}

.step-card:hover .step-icon-box {
	color: #ffffff;
}

.step-card:hover .step-number {
	color: rgba(255, 255, 255, 0.2);
}

.step-content {
	display: flex;
	flex-direction: column;
	gap: 12px;
	position: relative;
	z-index: 2;
}

.step-title {
	font-size: 20px;
	font-weight: 600;
	color: #fff;
	margin: 0;
	line-height: 1.4;
}

.step-desc {
	font-size: 15px;
	color: #b4b4b4;
	line-height: 1.6;
	margin: 0;
}

.steps-cta-container {
	margin-top: 50px;
	display: flex;
	justify-content: center;
	width: 100%;
}

@media (max-width: 992px) {
	.steps-grid {
		grid-template-columns: 1fr;
		gap: 20px;
	}

	.step-card {
		padding: 30px 24px;
	}
}

/* Reviews Grid Styles */
.quicklead-reviews-section .quicklead-review-card {
	background: linear-gradient(80.42deg, rgba(0, 0, 0, 0.25) 25.25%, rgba(83, 84, 108, 0.25) 98.05%);
	backdrop-filter: blur(8px);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 12px;
	padding: 20px;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	position: relative;
	overflow: hidden;
}

.quicklead-reviews-section .quicklead-review-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
	border-color: rgba(255, 255, 255, 0.2);
}

.quicklead-reviews-section .quicklead-review-card-top {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 20px;
}

.quicklead-reviews-section .quicklead-review-stars {
	color: #FFD43B;
	font-size: 14px;
	display: flex;
	gap: 4px;
}

.quicklead-reviews-section .quicklead-review-quote-icon {
	font-size: 24px;
	color: rgba(255, 255, 255, 0.1);
}

.quicklead-reviews-section .quicklead-review-text {
	font-size: 16px;
	line-height: 1.6;
	color: #C0C5D0;
	margin-bottom: 25px;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	/* -webkit-line-clamp: 3; */
	-webkit-box-orient: vertical;
	line-height: 30px;
}

.quicklead-reviews-section .quicklead-review-card-footer {
	display: flex;
	align-items: center;
	gap: 15px;
	padding-top: 20px;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	margin-top: auto;
}

.quicklead-reviews-section .quicklead-review-card-footer .quicklead-review-avatar {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	object-fit: cover;
	border: 2px solid rgba(255, 255, 255, 0.1);
}

.quicklead-reviews-section .quicklead-review-card-footer .quicklead-review-user-info {
	display: flex;
	flex-direction: column;
}

.quicklead-reviews-section .quicklead-review-card-footer .quicklead-review-user-name {
	font-size: 16px;
	font-weight: 600;
	color: #FFFFFF;
	margin-bottom: 2px;
}

.quicklead-reviews-section .quicklead-review-card-footer .quicklead-review-user-handle {
	font-size: 13px;
	color: #9CA3AF;
}

.quicklead-reviews-section .quicklead-review-bottom {
	margin-top: 20px;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	justify-content: center;
	display: flex;
}

.quicklead-reviews-section .quicklead-review-bottom .btn-cta-primary {
	margin-top: 20px;
}

.quicklead-reviews-section .quicklead-review-divider {
	border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.quicklead-reviews-section .quicklead-review-logo {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	object-fit: cover;
	padding-top: 15px;
}

/* Comparison Cards Styles */
.comparison-card {
	border-radius: 24px;
	padding: 2.5rem;
	transition: all 0.3s ease;
	border: 1px solid rgba(255, 255, 255, 0.1);
	height: 100%;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
	backdrop-filter: blur(10px);
}

.card-negative {
	background: linear-gradient(180deg, rgba(255, 99, 99, 0.05) 0%, rgba(255, 99, 99, 0.01) 100%);
	border-color: rgba(255, 99, 99, 0.2);
}

.card-positive {
	background: linear-gradient(180deg, rgba(82, 214, 127, 0.05) 0%, rgba(82, 214, 127, 0.01) 100%);
	border-color: rgba(82, 214, 127, 0.2);
}

.card-header-custom {
	margin-bottom: 2rem;
}

.comparison-card .card-title {
	font-size: 1.5rem;
	font-weight: 700;
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 0;
	color: #fff;
}

.card-description {
	color: rgba(235, 235, 235, 0.8);
	font-size: 1.1rem;
	line-height: 1.6;
	margin-bottom: 2rem;
}

.card-negative .card-title {
	color: #ffc5c5 !important;
}

.card-positive .card-title {
	color: #7ff0b1 !important;
}

.title-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 28px;
	border-radius: 50%;
	margin-right: 16px;
	flex-shrink: 0;
	font-size: 0.9rem;
}

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

.comparison-list li {
	display: flex;
	align-items: center;
	margin-bottom: 1.25rem;
	font-size: 1.1rem;
	color: #ebebeb;
	font-weight: 500;
}

.comparison-list li:last-child {
	margin-bottom: 0;
}

.list-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 28px;
	border-radius: 50%;
	margin-right: 16px;
	flex-shrink: 0;
	font-size: 0.9rem;
	background: rgba(255, 255, 255, 0.05);
}

.list-negative .list-icon {
	background: rgba(255, 99, 99, 0.15);
	color: #ffc5c5;
}

.list-positive .list-icon {
	background: rgba(82, 214, 127, 0.15);
	color: #7ff0b1;
}

/* Hover effects */
.comparison-card:hover {
	transform: translateY(-5px);
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.02) 100%);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.card-negative:hover {
	background: linear-gradient(180deg, rgba(255, 99, 99, 0.08) 0%, rgba(255, 99, 99, 0.02) 100%);
	box-shadow: 0 10px 30px rgba(255, 99, 99, 0.1);
	border-color: rgba(255, 99, 99, 0.3);
}

.card-positive:hover {
	background: linear-gradient(180deg, rgba(82, 214, 127, 0.08) 0%, rgba(82, 214, 127, 0.02) 100%);
	box-shadow: 0 10px 30px rgba(82, 214, 127, 0.1);
	border-color: rgba(82, 214, 127, 0.3);
}

.card-negative .title-icon {
	background: rgba(255, 99, 99, 0.15);
	color: #ffc5c5;
}

.card-positive .title-icon {
	background: rgba(82, 214, 127, 0.15);
	color: #7ff0b1;
}

/* Why Quicklead Section Styles */
.why-quicklead-section {
	position: relative;
}

.why-quicklead-grid {
	display: grid;
	width: 100%;
	gap: 20px;
	justify-content: center;
	grid-template-columns: repeat(2, 1fr);
}

.why-quicklead-card {
	position: relative;
	display: flex;
	flex-direction: column;
	border: none;
	overflow: hidden;
	border-radius: 16px;
	padding: 24px;
	background: linear-gradient(180deg, rgb(20 11 41 / 55%) 0%, rgb(22 3 63 / 35%) 100%);
	border: 1px solid rgb(54 54 54 / 55%);
	transition: all 0.3s ease;
}

.why-quicklead-card:hover {
	transform: translateY(-2px);
}

.why-quicklead-card-content {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 25px;
	height: 100%;
	z-index: 1;
}

.why-quicklead-card-icon {
	width: 55px;
	height: 55px;
	font-size: 26px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(92.23deg, #746BAE 0%, #5E7CF1 100%);
	color: #ffffff;
	border-radius: 16px;
	box-shadow: 0 4px 15px rgba(94, 124, 241, 0.3);
}

.why-quicklead-card-title {
	font-weight: 500;
	color: #d5ddf8;
	font-size: 20px;
	letter-spacing: 0;
	margin-bottom: 20px;
}

.why-quicklead-card-text {
	font-weight: 400;
	color: #cac6dd;
	font-size: 15px;
	letter-spacing: 0;
	line-height: 30px;
	margin-bottom: 0;
}

/* Demo Section Styles */
.demo-section .video-details-card {
	background: linear-gradient(180deg, rgb(20 11 41 / 74%) 0%, rgb(22 3 63 / 55%) 100%);
	border: 1px solid rgb(140 131 158 / 20%);
	grid-template-columns: repeat(2, 1fr) !important;
	display: grid;
	gap: 30px;
	padding: 20px;
	border-radius: 12px;
	align-items: center;
}

.demo-video-wrapper {
	cursor: pointer;
	border-radius: 12px;
	overflow: hidden;
	position: relative;
	width: 100%;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.demo-video-wrapper:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.thumbnail-container {
	position: relative;
	width: 100%;
	height: 0;
	padding-bottom: 56.25%;
	/* 16:9 Aspect Ratio */
	overflow: hidden;
	border-radius: 12px;
	border: 1px solid rgba(255, 255, 255, 0.1);
	background-color: #0b041a;
	/* Fallback color matching theme */
}

.thumbnail {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}

.play-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgb(11 4 26 / 15%);
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background 0.3s ease;
}

.play-icon {
	width: 64px;
	height: 64px;
	background: rgba(255, 255, 255, 0.15);
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.3);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-size: 22px;
	transition: all 0.3s ease;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.demo-video-wrapper {
	border-radius: 24px;
	overflow: hidden;
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.1);
	background: #000;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.demo-video-wrapper:hover {
	transform: translateY(-5px);
	box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.2);
}

.demo-video-iframe {
	border-radius: 24px;
	display: block;
}

.demo-wrapper-inner {
	padding: 20px;
}

.demo-overview-text {
	margin-bottom: 0;
	color: rgba(235, 235, 235, 0.7);
}

/* Responsive adjustments for Lead Gen Modal & Video Modal */
@media (max-width: 991px) {
	#leadGenModal .video-modal-content {
		max-width: 90% !important;
		width: 90%;
		margin: 40px auto;
		max-height: 90vh;
		overflow-y: auto;
	}
}

@media (max-width: 576px) {
	#leadGenModal .video-modal-content {
		max-width: 95% !important;
		width: 95%;
		margin: 20px auto;
		border-radius: 15px;
	}

	#leadGenModal .custom-modal-header {
		padding: 15px 20px;
	}

	#leadGenModal .custom-modal-body {
		padding: 20px 15px;
	}

	#leadGenModal .btn-cta {
		width: 100%;
	}

	/* Ensure scrollability on small screens */
	#leadGenModal {
		align-items: flex-start;
		padding-top: 10px;
		padding-bottom: 20px;
		overflow-y: auto;
	}

	/* Stack inputs nicely */
	#leadGenModal .col-md-6 {
		margin-bottom: 15px !important;
	}

	#leadGenModal .mb-4 {
		margin-bottom: 15px !important;
	}
}

/* Toast Notification */
#toast-container {
	position: fixed;
	top: 100px;
	/* Adjusted to be clearly below header */
	right: 20px;
	z-index: 99999;
	/* Very high z-index */
	display: flex;
	flex-direction: column;
	gap: 10px;
	pointer-events: none;
	/* Allow clicks through container */
}

.toast-notification {
	background: #ffffff;
	color: #1a1a1a;
	padding: 16px 24px;
	border-radius: 12px;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
	display: flex;
	align-items: center;
	gap: 16px;
	min-width: 320px;
	max-width: 450px;
	animation: slideInToast 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
	border: 1px solid rgba(0, 0, 0, 0.05);
	background-clip: padding-box;
	font-size: 15px;
	line-height: 1.5;
	font-weight: 500;
	pointer-events: auto;

	/* Re-enable pointer events for toasts */
}

.toast-notification i {
	font-size: 20px;
}

.toast-notification.success {
	border-left: 4px solid #4CAF50;
}

.toast-notification.error {
	border-left: 4px solid #F44336;
}

.toast-notification.warning {
	border-left: 4px solid #FF9800;
}

.toast-notification.hiding {
	animation: fadeOutToast 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes slideInToast {
	from {
		transform: translateX(100%);
		opacity: 0;
	}

	to {
		transform: translateX(0);
		opacity: 1;
	}
}

@keyframes fadeOutToast {
	from {
		transform: translateX(0);
		opacity: 1;
	}

	to {
		transform: translateX(100%);
		opacity: 0;
	}
}

/* Results Showcase Section */
.results-showcase-section {
	padding-bottom: 0;
}

.results-card {
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	border: 1px solid rgba(255, 255, 255, 0.1);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25), inset 0 0 0 1px rgba(255, 255, 255, 0.05);
	border-radius: 20px;
	padding: 50px 40px;
	position: relative;
	overflow: hidden;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.results-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3), inset 0 0 0 1px rgba(255, 255, 255, 0.1);
}

.results-number {
	font-size: 72px;
	font-weight: 800;
	color: #fff;
	line-height: 1;
	background: linear-gradient(180deg, #FFFFFF 0%, #E2E2E2 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	display: inline-block;
	filter: drop-shadow(0 2px 10px rgba(255, 255, 255, 0.1));
}

.results-icon {
	font-size: 42px;
	background: linear-gradient(135deg, #746BAE 0%, #5E7CF1 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	filter: drop-shadow(0 0 15px rgba(94, 124, 241, 0.4));
	animation: flamePulse 3s infinite ease-in-out;
	flex-shrink: 0;
}

.results-text {
	font-size: 18px;
	color: #C0C5D0;
	font-weight: 500;
	line-height: 1.5;
	text-align: left;
	letter-spacing: 0.01em;
}

.results-background-pattern {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image:
		radial-gradient(circle at 10% 20%, rgba(94, 124, 241, 0.08) 0%, transparent 40%),
		radial-gradient(circle at 90% 80%, rgba(116, 107, 174, 0.08) 0%, transparent 40%),
		linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
	background-size: 100% 100%, 100% 100%, 40px 40px, 40px 40px;
	opacity: 0.6;
	pointer-events: none;
	z-index: 0;
}

.results-content {
	position: relative;
	z-index: 1;
}

.border-end-lg {
	border-right: 1px solid rgba(255, 255, 255, 0.15);
}

@keyframes flamePulse {

	0%,
	100% {
		transform: scale(1);
		filter: drop-shadow(0 0 15px rgba(94, 124, 241, 0.4));
		opacity: 0.9;
	}

	50% {
		transform: scale(1.1);
		filter: drop-shadow(0 0 25px rgba(94, 124, 241, 0.6));
		opacity: 1;
	}
}

@media (max-width: 991px) {
	.border-end-lg {
		border-right: none;
		border-bottom: 1px solid rgba(255, 255, 255, 0.1);
		padding-bottom: 30px;
		margin-bottom: 30px;
	}

	.results-number {
		font-size: 56px;
	}

	.results-text {
		text-align: center;
		/* Center align on tablet/mobile for better balance when stacked */
	}

	.text-lg-start .d-flex {
		justify-content: center !important;
		/* Center the icon field group on mobile */
	}
}

@media (max-width: 768px) {
	.results-card {
		padding: 40px 25px;
	}

	.results-number {
		font-size: 48px;
	}

	.results-icon {
		font-size: 36px;
	}

	.results-text {
		font-size: 16px;
	}
}



/* event-section css */
.event-section .events-container {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
	gap: 25px;
}

.event-section .event-card {
	background: rgba(255, 255, 255, 0.03);
	border-radius: 12px;
	overflow: hidden;
	transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
	border: 1px solid rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	height: 100%;
	display: flex;
	flex-direction: column;
}

.event-section .event-card:hover {
	transform: translateY(-5px);
	box-shadow: 0px 10px 40px rgba(0, 0, 0, 0.5);
	border-color: rgba(255, 255, 255, 0.25);
}

.event-section .event-image {
	height: 200px;
	overflow: hidden;
	position: relative;
	border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.event-section .event-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}

.event-section .event-card:hover .event-image img {
	transform: scale(1.05);
}

.event-section .event-header {
	padding: 20px 20px 10px;
	background: transparent;
	color: #fff;
	border-bottom: 1px solid #232132;
	margin-bottom: 15px;
}

.event-section .event-title {
	font-size: 22px;
	font-weight: 600;
	margin-bottom: 10px;
	color: #fff;
}

.event-section .event-location {
	display: flex;
	align-items: center;
	margin-bottom: 8px;
	font-size: 15px;
	color: rgba(255, 255, 255, 0.8);
}

.event-section .event-date {
	display: flex;
	align-items: center;
	font-size: 15px;
	color: rgba(255, 255, 255, 0.8);
}

.event-section .event-icon {
	margin-right: 10px;
	width: 20px;
	text-align: center;
	color: #746BAE;
	/* Primary purple-ish color from theme */
}

.event-section .event-content {
	padding: 0 20px 20px;
	flex-grow: 1;
	display: flex;
	flex-direction: column;
}

.event-section .event-description {
	color: rgba(235, 235, 235, 0.8);
	margin-bottom: 0;
	line-height: 1.6;
	font-size: 16px;
	flex-grow: 1;
}

.event-section .status-badge {
	display: inline-block;
	padding: 5px 12px;
	border-radius: 20px;
	font-size: 12px;
	font-weight: 600;
	margin-bottom: 15px;
	align-self: flex-start;
}

.event-section .status-upcoming {
	background: rgba(89, 255, 0, 0.1);
	color: #CCFF66;
	border: 1px solid rgba(89, 255, 0, 0.3);
}

.event-section .status-past {
	background: rgba(255, 0, 128, 0.15);
	color: #FF80BF;
	border: 1px solid rgba(255, 0, 128, 0.3);
}

.event-card .event-image-slider {
	height: 365px;
	position: relative;
	overflow: hidden;
}

.event-card .event-slider-container {
	width: 100%;
	height: 100%;
	position: relative;
}

.event-card .event-slider {
	width: 100%;
	height: 100%;
	display: flex;
	transition: transform 0.5s ease;
}

.event-card .event-img-slide {
	min-width: 100%;
	height: 100%;
}

.event-card .event-img-slide img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.event-card .slider-nav {
	position: absolute;
	bottom: 15px;
	left: 0;
	right: 0;
	display: flex;
	justify-content: center;
	gap: 8px;
	z-index: 2;
}

.event-card .slider-dot {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.6);
	cursor: pointer;
	transition: background 0.3s ease, transform 0.3s ease;
}

.event-card .slider-dot.active {
	background: white;
	transform: scale(1.2);
}

.event-card .slider-arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 36px;
	height: 36px;
	background: rgba(0, 0, 0, 0.5);
	color: white;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	cursor: pointer;
	z-index: 2;
	transition: background 0.3s ease;
	border: 1px solid rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(4px);
}

.event-card .slider-arrow:hover {
	background: rgba(0, 0, 0, 0.8);
}

.event-card .slider-arrow.prev {
	left: 15px;
}

.event-card .slider-arrow.next {
	right: 15px;
}

/* Homepage refresh (hero + SEO strip) */
.home-hero-modern {
	position: relative;
	overflow: hidden;
	background-image:
		radial-gradient(ellipse 80% 60% at 20% 20%, rgba(94, 124, 241, 0.22), transparent 55%),
		radial-gradient(ellipse 70% 50% at 85% 60%, rgba(116, 107, 174, 0.2), transparent 50%),
		url('../images/banner-bg-1.png');
	background-size: cover, cover, cover;
	background-repeat: no-repeat;
	border: 1px solid rgba(255, 255, 255, 0.06);
	box-shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
}

.home-hero-title {
	line-height: 1.08;
	letter-spacing: -1.4px;
}

.home-hero-lead strong {
	color: #fff;
	font-weight: 600;
}

.home-limited-offer-pill {
	display: inline-flex;
	align-items: center;
	padding: 8px 14px;
	border-radius: 999px;
	font-size: 13px;
	font-weight: 600;
	text-decoration: none;
	color: #0b081c;
	background: linear-gradient(92.23deg, #e8e4ff 0%, #c8d6ff 100%);
	border: 1px solid rgba(255, 255, 255, 0.35);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.home-limited-offer-pill:hover {
	color: #0b081c;
	transform: translateY(-1px);
	box-shadow: 0 8px 24px rgba(94, 124, 241, 0.35);
}

.home-modern-strip {
	padding: 28px 0 8px;
	margin: 0 15px;
	border-radius: 24px;
	background: linear-gradient(180deg, rgba(20, 12, 48, 0.95) 0%, rgba(8, 4, 28, 0.6) 100%);
	border: 1px solid rgba(255, 255, 255, 0.06);
}

.home-modern-strip-label {
	text-align: center;
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 0.14em;
	color: rgba(255, 255, 255, 0.45);
	margin-bottom: 16px;
}

.home-capability-chips {
	list-style: none;
	padding: 0 20px 20px;
	margin: 0;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 10px;
}

.home-capability-chips li {
	font-size: 13px;
	padding: 8px 14px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.1);
	color: rgba(255, 255, 255, 0.88);
}

@media (max-width: 575.98px) {
	.home-capability-chips {
		padding-left: 12px;
		padding-right: 12px;
	}
}

/* Homepage: problem / solution / outcomes */
.home-value-story {
	padding: 56px 0 64px;
	margin: 0 15px 24px;
	border-radius: 24px;
	background: linear-gradient(165deg, rgba(18, 10, 42, 0.92) 0%, rgba(8, 4, 24, 0.75) 100%);
	border: 1px solid rgba(255, 255, 255, 0.07);
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
}

.home-value-story-intro {
	max-width: 720px;
	margin-bottom: 40px;
}

.home-value-story-title {
	font-size: clamp(1.5rem, 4vw, 2rem);
	font-weight: 700;
	letter-spacing: -0.03em;
	color: #fff;
	margin-bottom: 14px;
	line-height: 1.2;
}

.home-value-story-lead {
	font-size: 1.05rem;
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.72);
	margin: 0;
}

.home-value-story-lead strong {
	color: rgba(255, 255, 255, 0.95);
	font-weight: 600;
}

.home-value-card {
	height: 100%;
	padding: 26px 22px;
	border-radius: 18px;
	border: 1px solid rgba(255, 255, 255, 0.08);
	background: rgba(255, 255, 255, 0.03);
	transition:
		border-color 0.2s ease,
		box-shadow 0.2s ease;
}

.home-value-card:hover {
	border-color: rgba(124, 245, 196, 0.2);
	box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.home-value-card--problem {
	border-color: rgba(255, 138, 154, 0.18);
}

.home-value-card--solution {
	border-color: rgba(94, 124, 241, 0.25);
}

.home-value-card--outcomes {
	border-color: rgba(124, 245, 196, 0.2);
}

.home-value-card-eyebrow {
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.14em;
	color: rgba(143, 168, 255, 0.9);
	margin-bottom: 8px;
}

.home-value-card--problem .home-value-card-eyebrow {
	color: rgba(255, 158, 176, 0.95);
}

.home-value-card--outcomes .home-value-card-eyebrow {
	color: rgba(124, 245, 196, 0.9);
}

.home-value-card-title {
	font-size: 1.15rem;
	font-weight: 700;
	color: #fff;
	margin-bottom: 14px;
	line-height: 1.25;
}

.home-value-card-text {
	font-size: 14px;
	line-height: 1.65;
	color: rgba(255, 255, 255, 0.78);
	margin: 0;
}

.home-value-card-text strong {
	color: rgba(255, 255, 255, 0.95);
	font-weight: 600;
}

.home-value-list {
	margin: 0;
	padding-left: 1.15rem;
	font-size: 14px;
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.78);
}

.home-value-list li {
	margin-bottom: 10px;
}

.home-value-list li:last-child {
	margin-bottom: 0;
}

.home-value-list--check {
	list-style: none;
	padding-left: 0;
}

.home-value-list--check li {
	position: relative;
	padding-left: 22px;
	margin-bottom: 12px;
}

.home-value-list--check li::before {
	content: "✓";
	position: absolute;
	left: 0;
	color: #7cf5c4;
	font-weight: 700;
}

.home-value-card-link {
	display: inline-flex;
	align-items: center;
	margin-top: 18px;
	font-size: 14px;
	font-weight: 600;
	color: #c8d6ff !important;
	text-decoration: none !important;
}

.home-value-card-link:hover {
	color: #fff !important;
}

@media (max-width: 991.98px) {
	.home-value-story {
		padding: 40px 0 48px;
		margin-bottom: 16px;
	}

	.home-value-story-grid .col-md-12 {
		max-width: 520px;
		margin-left: auto;
		margin-right: auto;
	}
}

/* Homepage product UI showcase */
.home-platform-showcase {
	background: linear-gradient(180deg, rgba(12, 6, 32, 0.4) 0%, transparent 45%);
	border-top: 1px solid rgba(255, 255, 255, 0.06);
	border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.home-ui-feature-block {
	margin-bottom: 56px;
}

.home-ui-feature-block:last-child {
	margin-bottom: 0;
}

.home-ui-eyebrow {
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: rgba(143, 168, 255, 0.95);
	margin-bottom: 10px;
}

.home-ui-eyebrow--center {
	text-align: center;
}

.home-ui-title {
	font-size: clamp(1.2rem, 2.2vw, 1.45rem);
	font-weight: 700;
	color: #fff;
	margin-bottom: 10px;
	line-height: 1.25;
}

.home-ui-text {
	font-size: 15px;
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.72);
	margin-bottom: 0;
}

.home-ui-frame {
	border-radius: 16px;
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.1);
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
	background: #0a0618;
}

.home-ui-frame img {
	width: 100%;
	height: auto;
	display: block;
}

.home-ui-frame--wide {
	max-width: 920px;
}

.home-import-thumbs {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 12px;
}

@media (min-width: 576px) {
	.home-import-thumbs {
		grid-template-columns: repeat(4, 1fr);
	}
}

.home-import-thumbs figure {
	margin: 0;
	border-radius: 12px;
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.08);
	background: rgba(0, 0, 0, 0.2);
}

.home-import-thumbs img {
	width: 100%;
	aspect-ratio: 4/3;
	object-fit: cover;
	object-position: top center;
	display: block;
}

.home-import-thumbs figcaption {
	padding: 8px 10px 10px;
	font-size: 12px;
	font-weight: 600;
	color: rgba(255, 255, 255, 0.9);
	text-align: center;
}

.home-integration-icons {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 12px 18px;
}

.home-integration-icons img {
	height: 44px;
	width: auto;
	opacity: 0.92;
	transition: transform 0.35s ease, opacity 0.35s ease;
}

.home-integration-icons img:hover {
	transform: translateY(-4px) scale(1.06);
	opacity: 1;
}

/* Platform showcase: larger frames + motion */
.home-platform-showcase--motion .home-ui-feature-block {
	margin-bottom: 72px;
}

.home-ui-frame {
	border-radius: 20px;
	box-shadow: 0 24px 72px rgba(0, 0, 0, 0.38), 0 0 0 1px rgba(94, 124, 241, 0.06);
}

.home-ui-frame--wide {
	max-width: 100%;
}

@media (min-width: 992px) {
	.home-ui-frame--wide {
		max-width: 1000px;
	}
}

@keyframes home-ui-glow {

	0%,
	100% {
		box-shadow: 0 24px 72px rgba(0, 0, 0, 0.38), 0 0 0 1px rgba(94, 124, 241, 0.06);
	}

	50% {
		box-shadow: 0 28px 88px rgba(0, 0, 0, 0.35), 0 0 40px rgba(94, 124, 241, 0.1), 0 0 0 1px rgba(94, 124, 241, 0.12);
	}
}

@keyframes home-ui-reveal-up {
	from {
		opacity: 0;
		transform: translateY(32px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes home-thumb-float {

	0%,
	100% {
		transform: translateY(0);
	}

	50% {
		transform: translateY(-5px);
	}
}

.home-ui-frame--animated {
	animation: home-ui-glow 5s ease-in-out infinite;
	transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.45s ease;
}

.home-ui-frame--animated:hover {
	transform: translateY(-10px) scale(1.02);
	animation: none;
	box-shadow: 0 32px 96px rgba(0, 0, 0, 0.45), 0 16px 48px rgba(94, 124, 241, 0.14);
}

.home-platform-showcase--motion .home-ui-reveal {
	animation: home-ui-reveal-up 0.85s cubic-bezier(0.22, 1, 0.36, 1) backwards;
}

.home-platform-showcase--motion .home-ui-reveal:nth-of-type(1) {
	animation-delay: 0.05s;
}

.home-platform-showcase--motion .home-ui-reveal:nth-of-type(2) {
	animation-delay: 0.12s;
}

.home-platform-showcase--motion .home-ui-reveal:nth-of-type(3) {
	animation-delay: 0.18s;
}

.home-platform-showcase--motion .home-ui-reveal:nth-of-type(4) {
	animation-delay: 0.24s;
}

.home-platform-showcase--motion .home-ui-reveal:nth-of-type(5) {
	animation-delay: 0.3s;
}

.home-platform-showcase--motion .home-ui-reveal:nth-of-type(6) {
	animation-delay: 0.36s;
}

.home-platform-showcase--motion .home-ui-reveal:nth-of-type(7) {
	animation-delay: 0.42s;
}

.home-import-thumbs {
	gap: 16px;
}

.home-import-thumbs figure {
	min-height: 0;
}

.home-import-thumbs--animated figure {
	animation: home-thumb-float 5.5s ease-in-out infinite;
}

.home-import-thumbs--animated figure:nth-child(1) {
	animation-delay: 0s;
}

.home-import-thumbs--animated figure:nth-child(2) {
	animation-delay: 0.35s;
}

.home-import-thumbs--animated figure:nth-child(3) {
	animation-delay: 0.7s;
}

.home-import-thumbs--animated figure:nth-child(4) {
	animation-delay: 1.05s;
}

.home-import-thumbs figcaption {
	padding: 10px 12px 12px;
	font-size: 13px;
}

.home-ui-title {
	font-size: clamp(1.28rem, 2.4vw, 1.55rem);
}

.home-carousel-heading {
	font-size: clamp(1.15rem, 2vw, 1.35rem);
	font-weight: 700;
	margin-bottom: 0.35rem;
}

.home-screens-carousel {
	max-width: 920px;
	margin-left: auto;
	margin-right: auto;
	border-radius: 14px;
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.1);
	box-shadow: 0 20px 64px rgba(0, 0, 0, 0.35);
	background: #0a0618;
}

.home-screens-carousel--lightui {
	border-color: rgba(255, 255, 255, 0.12);
}

.home-screens-carousel .carousel-inner {
	background: #0a0618;
}

.home-screens-carousel--lightui .carousel-inner {
	background: #e8e8ee;
}

.home-carousel-figure {
	margin: 0;
}

.home-screens-carousel .carousel-item img {
	width: 100%;
	height: auto;
	max-height: min(52vh, 480px);
	object-fit: contain;
	object-position: center top;
	background: #0a0618;
}

.home-screens-carousel--lightui .carousel-item img {
	background: #e8e8ee;
}

.home-carousel-caption {
	padding: 10px 14px;
	text-align: center;
	font-size: 13px;
	font-weight: 600;
	color: rgba(255, 255, 255, 0.88);
	background: linear-gradient(180deg, rgba(10, 6, 24, 0.45) 0%, rgba(10, 6, 24, 0.92) 100%);
	border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.home-screens-carousel .carousel-control-prev,
.home-screens-carousel .carousel-control-next {
	width: 10%;
	min-width: 44px;
}

.home-screens-carousel .carousel-control-prev-icon,
.home-screens-carousel .carousel-control-next-icon {
	width: 2rem;
	height: 2rem;
	filter: invert(1);
	opacity: 0.8;
}

.home-screens-carousel .carousel-indicators [data-bs-target] {
	width: 7px;
	height: 7px;
	border-radius: 50%;
	border: 0;
	background-color: rgba(255, 255, 255, 0.35);
}

.home-screens-carousel .carousel-indicators .active {
	background-color: #5e7cf1;
}

@media (max-width: 575.98px) {
	.home-screens-carousel .carousel-indicators {
		position: static;
		margin-top: 6px;
		margin-bottom: 0;
	}
}

@media (prefers-reduced-motion: reduce) {

	.home-screens-carousel .carousel-item {
		transition: none !important;
	}

	.home-ui-frame--animated,
	.home-import-thumbs--animated figure,
	.home-platform-showcase--motion .home-ui-reveal {
		animation: none !important;
	}

	.home-platform-showcase--motion .home-ui-reveal {
		opacity: 1;
		transform: none;
	}

	.home-ui-frame--animated:hover {
		transform: none;
	}

	.home-integration-icons img:hover {
		transform: none;
	}
}
